From 21e3d24ebce639a307a02473da648a9e7d896e78 Mon Sep 17 00:00:00 2001
From: sajolida <sajolida@pimienta.org>
Date: Wed, 8 Feb 2023 20:37:30 +0100
Subject: [PATCH 001/187] Set screencast feature to never stop automatically
 (#12723)

---
 .../chroot_local-includes/etc/dconf/db/local.d/00_Tails_defaults | 1 +
 1 file changed, 1 insertion(+)

diff --git a/config/chroot_local-includes/etc/dconf/db/local.d/00_Tails_defaults b/config/chroot_local-includes/etc/dconf/db/local.d/00_Tails_defaults
index 5d8e3a21165..4972b60f5bf 100644
--- a/config/chroot_local-includes/etc/dconf/db/local.d/00_Tails_defaults
+++ b/config/chroot_local-includes/etc/dconf/db/local.d/00_Tails_defaults
@@ -55,6 +55,7 @@ default-zoom-level = 'small'
 [org/gnome/settings-daemon/plugins/media-keys]
 custom-keybindings=['/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0/']
 screensaver=['']
+max-screencast-length=uint32 0
 
 [org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0]
 binding='<Super>l'
-- 
GitLab


From 8ee1ba94b41d1ec74331251964fd98058d775b5a Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Sun, 12 Feb 2023 21:51:03 +0100
Subject: [PATCH 002/187] Unlock VeraCrypt Volumes: Use Gtk.show_uri_on_window
 to open directories

I can't reproduce the issue mentioned in the comment anymore.

Closes #19423
---
 .../dist-packages/unlock_veracrypt_volumes/volume_manager.py | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py b/config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py
index 5a1e3e39e8a..cf7863933ab 100644
--- a/config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py
+++ b/config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py
@@ -243,10 +243,7 @@ class VolumeManager(object):
         self.remove_volume(Volume(self, gio_volume, with_udisks=False))
 
     def open_uri(self, uri: str):
-        # This is the recommended way, but it turns the cursor into wait status for up to
-        # 10 seconds after the file manager was already opened.
-        # Gtk.show_uri_on_window(self.window, uri, Gtk.get_current_event_time())
-        subprocess.Popen(["xdg-open", uri])
+        Gtk.show_uri_on_window(self.window, uri, Gtk.get_current_event_time())
 
     def show_warning(self, title: str, body: str):
         dialog = Gtk.MessageDialog(self.window,
-- 
GitLab


From 5e28a0f984ceef019d5f5276cf82193d977b9bcf Mon Sep 17 00:00:00 2001
From: sajolida <sajolida@pimienta.org>
Date: Wed, 15 Feb 2023 11:19:54 +0100
Subject: [PATCH 003/187] Avoid double negation

---
 .../lib/python3/dist-packages/tailsgreeter/ui/main_window.py    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py
index db657a276f1..ca6323f47e8 100644
--- a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py
+++ b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py
@@ -164,7 +164,7 @@ class GreeterMainWindow(Gtk.Window, TranslatableWindow):
         # Add confirm dialog
         self.confirm_dialog = MessageDialog(
             message_type=Gtk.MessageType.WARNING,
-            title=_("Persistent Storage Not Unlocked"),
+            title=_("Persistent Storage Still Locked"),
             text=_("Do you really want to start Tails without unlocking your Persistent Storage?"),
             cancel_label=_("Cancel"),
             ok_label=_("Continue Without Persistent Storage"),
-- 
GitLab


From 04739aba90f4b9ff7f6ff5e693a47db80402567e Mon Sep 17 00:00:00 2001
From: sajolida <sajolida@pimienta.org>
Date: Wed, 15 Feb 2023 11:23:52 +0100
Subject: [PATCH 004/187] Be more explicit

---
 .../lib/python3/dist-packages/tailsgreeter/ui/main_window.py    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py
index ca6323f47e8..0379590ea3c 100644
--- a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py
+++ b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py
@@ -167,7 +167,7 @@ class GreeterMainWindow(Gtk.Window, TranslatableWindow):
             title=_("Persistent Storage Still Locked"),
             text=_("Do you really want to start Tails without unlocking your Persistent Storage?"),
             cancel_label=_("Cancel"),
-            ok_label=_("Continue Without Persistent Storage"),
+            ok_label=_("Start Without Persistent Storage"),
         )
         self.confirm_dialog.set_transient_for(self)
 
-- 
GitLab


From fd1c246176ff17ed3fa3993963984f5c68a5e05a Mon Sep 17 00:00:00 2001
From: intrigeri <intrigeri@boum.org>
Date: Thu, 16 Feb 2023 08:31:18 +0100
Subject: [PATCH 005/187] Remove UDFs for versions we'll never release

---
 .../v2/Tails/5.10~rc1/amd64/alpha/upgrades.yml   |  5 -----
 .../Tails/5.10~rc1/amd64/alpha/upgrades.yml.pgp  |  7 -------
 .../v2/Tails/5.10~rc1/amd64/stable/upgrades.yml  |  5 -----
 .../Tails/5.10~rc1/amd64/stable/upgrades.yml.pgp |  7 -------
 .../v2/Tails/5.9.1/amd64/alpha/upgrades.yml      |  5 -----
 .../v2/Tails/5.9.1/amd64/alpha/upgrades.yml.pgp  | 16 ----------------
 .../v2/Tails/5.9.1/amd64/stable/upgrades.yml     |  5 -----
 .../v2/Tails/5.9.1/amd64/stable/upgrades.yml.pgp | 16 ----------------
 8 files changed, 66 deletions(-)
 delete mode 100644 wiki/src/upgrade/v2/Tails/5.10~rc1/amd64/alpha/upgrades.yml
 delete mode 100644 wiki/src/upgrade/v2/Tails/5.10~rc1/amd64/alpha/upgrades.yml.pgp
 delete mode 100644 wiki/src/upgrade/v2/Tails/5.10~rc1/amd64/stable/upgrades.yml
 delete mode 100644 wiki/src/upgrade/v2/Tails/5.10~rc1/amd64/stable/upgrades.yml.pgp
 delete mode 100644 wiki/src/upgrade/v2/Tails/5.9.1/amd64/alpha/upgrades.yml
 delete mode 100644 wiki/src/upgrade/v2/Tails/5.9.1/amd64/alpha/upgrades.yml.pgp
 delete mode 100644 wiki/src/upgrade/v2/Tails/5.9.1/amd64/stable/upgrades.yml
 delete mode 100644 wiki/src/upgrade/v2/Tails/5.9.1/amd64/stable/upgrades.yml.pgp

diff --git a/wiki/src/upgrade/v2/Tails/5.10~rc1/amd64/alpha/upgrades.yml b/wiki/src/upgrade/v2/Tails/5.10~rc1/amd64/alpha/upgrades.yml
deleted file mode 100644
index 604212ee9f4..00000000000
--- a/wiki/src/upgrade/v2/Tails/5.10~rc1/amd64/alpha/upgrades.yml
+++ /dev/null
@@ -1,5 +0,0 @@
----
-build-target: amd64
-channel: alpha
-initial-install-version: 5.10~rc1
-product-name: Tails
diff --git a/wiki/src/upgrade/v2/Tails/5.10~rc1/amd64/alpha/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/5.10~rc1/amd64/alpha/upgrades.yml.pgp
deleted file mode 100644
index 0b2181fadec..00000000000
--- a/wiki/src/upgrade/v2/Tails/5.10~rc1/amd64/alpha/upgrades.yml.pgp
+++ /dev/null
@@ -1,7 +0,0 @@
------BEGIN PGP SIGNATURE-----
-
-iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCY6BedwAKCRCQsrS9eu0j
-XwHRAQDz+Xk/IB53QPZhJxcXE35o4RIm6m2bt7cZ8dsYFBUGWgD+Lx6f4aJss+7I
-S1+54YFD0cz6yXmfyOD8wyVopZttLwk=
-=8Khk
------END PGP SIGNATURE-----
diff --git a/wiki/src/upgrade/v2/Tails/5.10~rc1/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/5.10~rc1/amd64/stable/upgrades.yml
deleted file mode 100644
index e283e195358..00000000000
--- a/wiki/src/upgrade/v2/Tails/5.10~rc1/amd64/stable/upgrades.yml
+++ /dev/null
@@ -1,5 +0,0 @@
----
-build-target: amd64
-channel: stable
-initial-install-version: 5.10~rc1
-product-name: Tails
diff --git a/wiki/src/upgrade/v2/Tails/5.10~rc1/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/5.10~rc1/amd64/stable/upgrades.yml.pgp
deleted file mode 100644
index 42ca6951b05..00000000000
--- a/wiki/src/upgrade/v2/Tails/5.10~rc1/amd64/stable/upgrades.yml.pgp
+++ /dev/null
@@ -1,7 +0,0 @@
------BEGIN PGP SIGNATURE-----
-
-iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCY6BedgAKCRCQsrS9eu0j
-X24mAPwOwdqFcDfLCWmlknuKFJoSQUS5VCjVDHK2hC2chDYXFQEAhtEKchWMWt3c
-KUA2vs593Sad4MY+LWdLJX1dbubWHQA=
-=uKH6
------END PGP SIGNATURE-----
diff --git a/wiki/src/upgrade/v2/Tails/5.9.1/amd64/alpha/upgrades.yml b/wiki/src/upgrade/v2/Tails/5.9.1/amd64/alpha/upgrades.yml
deleted file mode 100644
index a7a8e6b6ff6..00000000000
--- a/wiki/src/upgrade/v2/Tails/5.9.1/amd64/alpha/upgrades.yml
+++ /dev/null
@@ -1,5 +0,0 @@
----
-build-target: amd64
-channel: alpha
-initial-install-version: 5.9.1
-product-name: Tails
diff --git a/wiki/src/upgrade/v2/Tails/5.9.1/amd64/alpha/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/5.9.1/amd64/alpha/upgrades.yml.pgp
deleted file mode 100644
index 132965e8726..00000000000
--- a/wiki/src/upgrade/v2/Tails/5.9.1/amd64/alpha/upgrades.yml.pgp
+++ /dev/null
@@ -1,16 +0,0 @@
------BEGIN PGP SIGNATURE-----
-
-iQIzBAABCgAdFiEEdT+QE3ejCfJzH6M/e/vSuQLuE9AFAmPOkuYACgkQe/vSuQLu
-E9CVFA//TcsEthM0/d96NyVjLhTDXBZ0TtETcS8J1Pp7c1dpnVett/N+G2IdrohX
-39FpS9nm/482dcMLgUy64tsNm/UwBu2UbPppBbKurJm4z8djsLO099QD7hlj7PE1
-/YjygjBoGy0GP6jgiVrLrndOJ9nBRORdbRi/75CAhOUktELSPdxC+7PU6+/9eL2H
-k2rNvBB3IJA9022jiTHc/GigGbleGRFof44TX3EpgL5Sub0o5dZRe1CTNJmvrK1H
-CWutUSuysuK3+a5dDZ1vsi3kZB2Rp2118WB4rqh8WryK101EpFt1oR6FN3mD1mZ/
-mzGkK2Se0oUch5rWard960zO+Cl0p2nnvr0X8mZAtaamnMMfL6P1C5M85eL4hvbK
-0oTNDtKGSLkWbDA2v89cgT/lup+s9aW1e0f1a/XIBSpfiDwB/J5CmdOy2F6LgFOX
-o/mW4LKhJLI3KeM7y6oj/n7epiR+u45lLkeuydEkURsC7Xw/FFJDjtjPvp+xQnVs
-zfDxBl6WGCMhgAjlCN1KrAoxm5c1oiK6LEJezGRDKIGYRZ3gd+34SjNhxXnquD2N
-xOhWlSGtuIlRToiTrQujbwTSlcOVIrARMr6ltIDo1sFM+m5oC6XTvEGFQRkz/u35
-NCuQOyEv43u807po7j8Vee51rWLD+CqPIIIYtkt0y7uQxBqOQQQ=
-=Uonk
------END PGP SIGNATURE-----
diff --git a/wiki/src/upgrade/v2/Tails/5.9.1/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/5.9.1/amd64/stable/upgrades.yml
deleted file mode 100644
index 91b37ad8c78..00000000000
--- a/wiki/src/upgrade/v2/Tails/5.9.1/amd64/stable/upgrades.yml
+++ /dev/null
@@ -1,5 +0,0 @@
----
-build-target: amd64
-channel: stable
-initial-install-version: 5.9.1
-product-name: Tails
diff --git a/wiki/src/upgrade/v2/Tails/5.9.1/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/5.9.1/amd64/stable/upgrades.yml.pgp
deleted file mode 100644
index 7a10f0471a2..00000000000
--- a/wiki/src/upgrade/v2/Tails/5.9.1/amd64/stable/upgrades.yml.pgp
+++ /dev/null
@@ -1,16 +0,0 @@
------BEGIN PGP SIGNATURE-----
-
-iQIzBAABCgAdFiEEdT+QE3ejCfJzH6M/e/vSuQLuE9AFAmPOkuIACgkQe/vSuQLu
-E9BG2BAAtBUDeLQIyILsy1VWw566xydxdZC3m4edvfmB1HrBpgWSO0iiM2bFfVM+
-P5mczi8lCCJstTtMKM7aq8R4eLecaca3bwqGDgR730e7qmTehx0VQFVEwfgy2wMP
-IlJ0grWMyeWS1PbhW6rVdpJdOJ4k/NzTH0Fg9I/kznG6rQTNowL6jsTNgq7mwYYP
-ARnRbfU1Lcg1OmO9n2j80e0SlEePrEip/Wl+t/baOH5Y+lpNQKIElut6/tQpP2HH
-I73/M7Yedbpzo3jtXO6J+tzPN4FehvXjnOUM4N3VD+eOWj8dWQaStgrtxBltEEU+
-YpIaDFB/BvQeptlrKBOJACPm8EXnMe7W+H47driuFY5S8za5homlUH4auweSLNEV
-Xuj5xxQ2jp94zO+jQ/UVC29j86NLbfIsnitd8dVXiDUb9Y25WBksF/7d7f7lSoKy
-I2bnCU0HJtmtE2PHbX8tWsfxfFBo5dRLE3eLBmnWpL24T8f+8etR9zWkWckCCRMh
-Y4XQXCy+F7qgMnM85TwoqIUNLH+Q8Q2FXosB202MdAHnKatV0/iB07YUGbWAgbS3
-6B4tdPVUvXMZVQGEbbAcX67Ax3CcBpiUYJHil++gbUwDC7BxGxc2vM4rvyQRfNiO
-ioo5Z4QThFR290qTDIdo0Fhwb/qF0LiOx+8F66lgdI0AI+oTvmA=
-=U8YT
------END PGP SIGNATURE-----
-- 
GitLab


From 2b863353c0a9c3b42615da066ac4a8f519c1c5ca Mon Sep 17 00:00:00 2001
From: intrigeri <intrigeri@boum.org>
Date: Thu, 16 Feb 2023 07:33:54 +0000
Subject: [PATCH 006/187] Add dummy changelog entry for 5.11.

---
 debian/changelog | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index 61f68655e21..23cd5cdf47f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+tails (5.11) UNRELEASED; urgency=medium
+
+  * Dummy entry for next release.
+
+ -- intrigeri <intrigeri@debian.org>  Thu, 16 Feb 2023 07:33:54 +0000
+
 tails (5.10) unstable; urgency=medium
 
   * Upgrade Tor Browser to 12.0.3-build1 (tails/tails!1046)
-- 
GitLab


From 04aec0cfc43cf2af67ec418b94358987db4072c3 Mon Sep 17 00:00:00 2001
From: boyska <boyska@riseup.net>
Date: Mon, 20 Feb 2023 11:44:32 +0100
Subject: [PATCH 007/187] release: no need for *every* mirror to be working

refs #19335
---
 wiki/src/contribute/release_process.mdwn | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/wiki/src/contribute/release_process.mdwn b/wiki/src/contribute/release_process.mdwn
index cc0ab534559..058f89cfddb 100644
--- a/wiki/src/contribute/release_process.mdwn
+++ b/wiki/src/contribute/release_process.mdwn
@@ -1769,8 +1769,7 @@ Go wild!
 Wait for the HTTP mirrors to catch up
 -------------------------------------
 
-Look at the mirror status. Wait for each of these pages to include at least 6
-working mirrors:
+Look at the mirror status.
 
     (
       base='https://download.tails.net/tails/stable'
@@ -1780,11 +1779,10 @@ working mirrors:
         "${base}/tails-amd64-${VERSION:?}/tails-amd64-${VERSION:?}.img?mirrorlist" \
     )
 
-Check if every active mirror in the pool has the new version:
+Wait for each of these pages to include:
+ - at least 6 working mirrors
+ - at least one among the fallback mirrors: https://download.tails.net/tails/?mirrorlist
 
-	./check-mirrors.rb --channel ${DIST:?} \
-        --allow-multiple --fast --stats \
-        tails-amd64-${VERSION:?}
 
 To disable mirrors that are lagging behind:
 
-- 
GitLab


From 45ccd9a82bf3443e2cb499356123be72d3dcbac2 Mon Sep 17 00:00:00 2001
From: tous <tous@disroot.org>
Date: Sun, 26 Feb 2023 02:28:28 +0000
Subject: [PATCH 008/187] Tails Installer: open link from local documentation

---
 .../usr/lib/python3/dist-packages/tails_installer/gui.py   | 7 +++++++
 .../usr/share/tails-installer/tails-installer.ui.in        | 3 ++-
 2 files changed, 9 insertions(+), 1 deletion(-)

diff --git a/config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py b/config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py
index ef5d7a81f79..48a5cd566b6 100644
--- a/config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py
+++ b/config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py
@@ -28,6 +28,7 @@ A graphical interface for the Tails Installer
 
 import os
 import logging
+import subprocess
 import threading
 import traceback
 import time
@@ -334,6 +335,12 @@ class TailsInstallerWindow(Gtk.ApplicationWindow):
                             ' from on_radio_button_source_iso_toggled')
         self.populate_devices()
 
+    def on_activate_link_button(self, link_button: Gtk.LinkButton):
+        uri = link_button.get_uri()
+        self.live.log.debug("Opening Documentation: %s", uri)
+        subprocess.run(["tails-documentation", uri])
+        return True
+
     def on_force_reinstall_clicked(self, button):
         # If the user has chosen install from ISO, but no ISO is selected
         if not self.live.opts.clone and not self.is_ISO_selected():
diff --git a/config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in b/config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in
index 4b8e3f2cefa..e6a1b50eb53 100644
--- a/config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in
+++ b/config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in
@@ -134,7 +134,8 @@
         <property name="receives_default">False</property>
         <property name="margin_right">18</property>
         <property name="xalign">1</property>
-        <property name="uri">https://tails.boum.org/install/</property>
+        <property name="uri">install</property>
+	<signal name="activate-link" handler="on_activate_link_button" swapped="no"/>
       </object>
       <packing>
         <property name="expand">False</property>
-- 
GitLab


From 81ccf7832318ff7ccd17ee919b68608a0c837548 Mon Sep 17 00:00:00 2001
From: boyska <boyska@riseup.net>
Date: Mon, 27 Feb 2023 10:54:23 +0100
Subject: [PATCH 009/187] Sanitize input

closes tails/tails#19464
---
 .../usr/local/lib/tails-shell-library/gnome.sh         | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/config/chroot_local-includes/usr/local/lib/tails-shell-library/gnome.sh b/config/chroot_local-includes/usr/local/lib/tails-shell-library/gnome.sh
index e3f26da012b..38817cd5e9c 100644
--- a/config/chroot_local-includes/usr/local/lib/tails-shell-library/gnome.sh
+++ b/config/chroot_local-includes/usr/local/lib/tails-shell-library/gnome.sh
@@ -23,11 +23,13 @@ DISPLAY=:0"
   fi
 
   if ! echo "${vars}" | grep -E "^XAUTHORITY="; then
-    for xauth in /run/user/1000/.mutter-Xwaylandauth.*; do
-      vars="${vars}
+    xauth=$(find /run/user/1000/ \
+        -maxdepth 1 -type f \
+        -user amnesia \
+        -regextype egrep -regex \
+        '/run/user/1000/[.]mutter-Xwaylandauth[.][A-Za-z0-9]+' -print -quit)
+    vars="${vars}
 XAUTHORITY=${xauth}"
-      break
-    done
   fi
 
   if ! echo "${vars}" | grep -E "^WAYLAND_DISPLAY="; then
-- 
GitLab


From f1ba54918139c1b797a2153846edae7fcd985819 Mon Sep 17 00:00:00 2001
From: boyska <boyska@riseup.net>
Date: Mon, 27 Feb 2023 10:55:33 +0100
Subject: [PATCH 010/187] sanitize WAYLAND_DISPLAY

refs tails/tails#19464
---
 .../usr/local/lib/tails-shell-library/gnome.sh         | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/config/chroot_local-includes/usr/local/lib/tails-shell-library/gnome.sh b/config/chroot_local-includes/usr/local/lib/tails-shell-library/gnome.sh
index 38817cd5e9c..b43872bb062 100644
--- a/config/chroot_local-includes/usr/local/lib/tails-shell-library/gnome.sh
+++ b/config/chroot_local-includes/usr/local/lib/tails-shell-library/gnome.sh
@@ -33,11 +33,13 @@ XAUTHORITY=${xauth}"
   fi
 
   if ! echo "${vars}" | grep -E "^WAYLAND_DISPLAY="; then
-    for wayland_display in /run/user/1000/wayland-*; do
-      vars="${vars}
+    wayland_display=$(find /run/user/1000/ \
+        -maxdepth 1 -type s \
+        -user amnesia \
+        -regextype egrep -regex \
+        '/run/user/1000/[.]wayland-[0-9]+' -print -quit)
+    vars="${vars}
 WAYLAND_DISPLAY=${wayland_display#/run/user/1000/}"
-      break
-    done
   fi
 
   echo "${vars}"
-- 
GitLab


From 1c3facf70ec97dc47fbc75443b7c0c8bcd880686 Mon Sep 17 00:00:00 2001
From: intrigeri <intrigeri@boum.org>
Date: Thu, 9 Feb 2023 08:26:50 +0000
Subject: [PATCH 011/187] Enable non-free-firmware archive area for
 distributions that support it

We can't enable it everywhere yet: Bullseye does not support this archive area.
See you on tails/tails#19425 for the follow-ups.

refs #19411
---
 bin/import-package                                             | 2 +-
 .../chroot_local-includes/lib/live/config/1500-reconfigure-APT | 3 +++
 config/chroot_sources/sid.chroot                               | 2 +-
 3 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/bin/import-package b/bin/import-package
index e9bef156f11..4796eeb8952 100755
--- a/bin/import-package
+++ b/bin/import-package
@@ -52,7 +52,7 @@ set -e
 set -u
 
 umask 0022
-sed --regexp-extended -e 's,^deb(\s+.*),deb\1 contrib non-free,' \
+sed --regexp-extended -e 's,^deb(\s+.*),deb\1 contrib non-free non-free-firmware,' \
    /etc/apt/sources.list \
    > /etc/apt/sources.list.d/tmp-deb.list
 sed --regexp-extended -e 's,^deb(\s+),deb-src\1,' \
diff --git a/config/chroot_local-includes/lib/live/config/1500-reconfigure-APT b/config/chroot_local-includes/lib/live/config/1500-reconfigure-APT
index 740e9cca6e2..73c6c01fcf8 100755
--- a/config/chroot_local-includes/lib/live/config/1500-reconfigure-APT
+++ b/config/chroot_local-includes/lib/live/config/1500-reconfigure-APT
@@ -5,6 +5,9 @@ echo "- configuring APT sources"
 sed -i 's,^\(\#\?\s*deb\(-src\)\?\s\+\)http://,\1tor+http://,' \
            /etc/apt/sources.list /etc/apt/sources.list.d/*.list
 
+sed -E -i 's,\s+non-free-firmware$,,' \
+           /etc/apt/sources.list /etc/apt/sources.list.d/*.list
+
 sed -E -i 's,\s+non-free$,,' \
            /etc/apt/sources.list /etc/apt/sources.list.d/*.list
 
diff --git a/config/chroot_sources/sid.chroot b/config/chroot_sources/sid.chroot
index c8eea4f09da..067cf0f20b2 100644
--- a/config/chroot_sources/sid.chroot
+++ b/config/chroot_sources/sid.chroot
@@ -1 +1 @@
-deb http://ftp.us.debian.org/debian/ sid main contrib non-free
+deb http://ftp.us.debian.org/debian/ sid main contrib non-free non-free-firmware
-- 
GitLab


From d4bf9f72d73e0ee31b0e40e1080228b93d1f9e8f Mon Sep 17 00:00:00 2001
From: intrigeri <intrigeri@boum.org>
Date: Mon, 27 Feb 2023 13:47:52 +0000
Subject: [PATCH 012/187] Bump the debian APT snapshot to one that supports the
 non-free-firmware archive area

refs tails/tails#19411
---
 config/APT_snapshots.d/debian/serial | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/config/APT_snapshots.d/debian/serial b/config/APT_snapshots.d/debian/serial
index 5382b06fb6b..f240944c120 100644
--- a/config/APT_snapshots.d/debian/serial
+++ b/config/APT_snapshots.d/debian/serial
@@ -1 +1 @@
-2023010301
+2023022701
-- 
GitLab


From c55ba742b5e2eab04fe3f61af45a866dda021a7c Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Wed, 22 Feb 2023 19:50:19 +0100
Subject: [PATCH 013/187] Fix FTBFS by installing b43-fwcutter from bullseye
 instead of sid

The b43-fwcutter in sid depends on libc6 >= 2.34 and we only have 2.31.
Using the version from bullseye instead should be no problem because
they are only one minor version apart (1:019-7 vs 1:019-8) and
according to the changelog the only changes are in debian/copyright and
translations.

Closes #19456
---
 config/chroot_apt/preferences | 12 ------------
 1 file changed, 12 deletions(-)

diff --git a/config/chroot_apt/preferences b/config/chroot_apt/preferences
index ee403d84314..e9037c7214e 100644
--- a/config/chroot_apt/preferences
+++ b/config/chroot_apt/preferences
@@ -2,18 +2,6 @@ Package: amd64-microcode
 Pin: release o=Debian,n=sid
 Pin-Priority: 999
 
-Package: b43-fwcutter
-Pin: release o=Debian,n=sid
-Pin-Priority: 999
-
-Package: firmware-b43-installer
-Pin: release o=Debian,n=sid
-Pin-Priority: 999
-
-Package: firmware-b43legacy-installer
-Pin: release o=Debian,n=sid
-Pin-Priority: 999
-
 Package: firmware-linux-free
 Pin: release o=Debian,n=sid
 Pin-Priority: 999
-- 
GitLab


From 808837d454525460f201dd63d1198592e55cb752 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Tue, 21 Feb 2023 22:14:33 +0100
Subject: [PATCH 014/187] tps: Fix strings not translatable

---
 .../usr/share/tails/persistent-storage/features_view.ui.in  | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in b/config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in
index 610180dd739..b63b7902fc2 100644
--- a/config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in
+++ b/config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in
@@ -216,7 +216,7 @@ Its content is available until you shut down Tails.
                               <object class="HdyActionRow">
                                 <property name="visible">True</property>
                                 <property name="can-focus">False</property>
-                                <property name="title">Welcome Screen</property>
+                                <property name="title" translatable="yes">Welcome Screen</property>
                                 <property name="icon-name">preferences-system</property>
                                 <child>
                                   <object class="GtkSwitch" id="welcome_screen_switch">
@@ -237,7 +237,7 @@ Its content is available until you shut down Tails.
                               <object class="HdyActionRow">
                                 <property name="visible">True</property>
                                 <property name="can-focus">False</property>
-                                <property name="title">Printers</property>
+                                <property name="title" translatable="yes">Printers</property>
                                 <property name="icon-name">printer</property>
                                 <child>
                                   <object class="GtkSwitch" id="printers_switch">
@@ -385,7 +385,7 @@ Its content is available until you shut down Tails.
                               <object class="HdyActionRow">
                                 <property name="visible">True</property>
                                 <property name="can-focus">True</property>
-                                <property name="title">Tor Browser Bookmarks</property>
+                                <property name="title" translatable="yes">Tor Browser Bookmarks</property>
                                 <property name="icon-name">user-bookmarks</property>
                                 <child>
                                   <object class="GtkSwitch" id="browser_bookmarks_switch">
-- 
GitLab


From b7de1fce57f3d91876fe8a5dbd1e1f82590cd4f0 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Mon, 27 Feb 2023 15:31:39 +0100
Subject: [PATCH 015/187] tails-backup: Fix strings not translatable

---
 .../usr/share/applications/tails-backup.desktop.in            | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in b/config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in
index aad6f67c742..dd260b95951 100644
--- a/config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in
+++ b/config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in
@@ -1,7 +1,7 @@
 [Desktop Entry]
 Type=Application
-Name=Back Up Persistent Storage
-Comment=Make a backup of the Tails Persistent Storage to another Tails USB stick
+_Name=Back Up Persistent Storage
+_Comment=Make a backup of the Tails Persistent Storage to another Tails USB stick
 Icon=tails-persistence-setup.png
 Exec=/usr/bin/gnome-terminal --title 'Log of Persistent Storage Backup' --hide-menubar -- /usr/local/bin/tails-backup
 Terminal=false
-- 
GitLab


From df8305e196312716e42293c1e2616aafe576df46 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Mon, 27 Feb 2023 19:29:52 +0100
Subject: [PATCH 016/187] Test Suite: Fix PersistentStorageNotUnlocked.png not
 matching

The title was changed by !1048 so the screenshot didn't match anymore.

Closes #19468
---
 .../images/PersistentStorageNotUnlocked.png   | Bin 15068 -> 37139 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/features/images/PersistentStorageNotUnlocked.png b/features/images/PersistentStorageNotUnlocked.png
index 8fb04a098d6257c4d8902869b0986c629048c4ca..44df5966ffbb8857f81c9f4280ef29d60973cc98 100644
GIT binary patch
literal 37139
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

literal 15068
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

-- 
GitLab


From 8a7593b28de7d3cce4e4f78d3b98a4a51e985fbe Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Mon, 27 Feb 2023 12:28:18 +0100
Subject: [PATCH 017/187] Welcome Screen: Don't allow unlocking with empty
 passphrase

Attempting to unlock with an empty passphrase failed with:

    Failed to unlock the Persistent Storage. Please start Tails and send an error report.

and made the unlock button non-sensitive, forcing the user to reboot to
unlock their Persistent Storage.

We now only make the unlock button sensitive when the passphrase is
non-empty.

Closes #19357
---
 .../python3/dist-packages/tailsgreeter/ui/main_window.py    | 6 ++++--
 .../dist-packages/tailsgreeter/ui/persistent_storage.py     | 2 +-
 .../usr/share/tails/greeter/main.ui.in                      | 1 +
 3 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py
index 0379590ea3c..23f33b0cfd6 100644
--- a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py
+++ b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py
@@ -393,8 +393,10 @@ class GreeterMainWindow(Gtk.Window, TranslatableWindow):
         # button was clicked, but changed that behavior (see #17136), so
         # we now force users to click the "Unlock" button first before
         # they can click "Start Tails".
-        allow_start = not bool(editable.get_text())
-        self.button_start.set_sensitive(allow_start)
+        passphrase_empty = not bool(editable.get_text())
+        self.button_start.set_sensitive(passphrase_empty)
+        button_unlock = self.persistent_storage.button_storage_unlock
+        button_unlock.set_sensitive(not passphrase_empty)
         return False
 
     def _storagecreate_updateui(self, enabled=None):
diff --git a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py
index 7427d45b515..f36bf44bdde 100644
--- a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py
+++ b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py
@@ -29,7 +29,7 @@ class PersistentStorage(object):
         self.box_storagecreate = builder.get_object('box_storagecreate')
         self.box_storage_unlock = builder.get_object('box_storage_unlock')
         self.box_storage_unlocked = builder.get_object('box_storage_unlocked')
-        self.button_storage_unlock = builder.get_object('button_storage_unlock')
+        self.button_storage_unlock = builder.get_object('button_storage_unlock')  # type: Gtk.Button
         self.checkbutton_storage_show_passphrase = builder.get_object('checkbutton_storage_show_passphrase')
         self.entry_storage_passphrase = builder.get_object('entry_storage_passphrase')
         self.image_storage_state = builder.get_object('image_storage_state')
diff --git a/config/chroot_local-includes/usr/share/tails/greeter/main.ui.in b/config/chroot_local-includes/usr/share/tails/greeter/main.ui.in
index 16b8bf871a7..fe5f9d475ac 100644
--- a/config/chroot_local-includes/usr/share/tails/greeter/main.ui.in
+++ b/config/chroot_local-includes/usr/share/tails/greeter/main.ui.in
@@ -507,6 +507,7 @@
                   <object class="GtkButton" id="button_storage_unlock">
                     <property name="label" translatable="yes">Unlock</property>
                     <property name="visible">True</property>
+                    <property name="sensitive">False</property>
                     <property name="can_focus">True</property>
                     <property name="receives_default">True</property>
                     <signal name="clicked" handler="cb_button_storage_unlock_clicked" swapped="no"/>
-- 
GitLab


From a9b5537c8958875fe7d0122cc62b52564a117eff Mon Sep 17 00:00:00 2001
From: boyska <boyska@riseup.net>
Date: Thu, 26 Jan 2023 12:53:41 +0100
Subject: [PATCH 018/187] fix FTBFS: patch wasnt applying

closes #19398
---
 .../usr/share/tails/uBlock-disable-autoUpdate.diff          | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/config/chroot_local-includes/usr/share/tails/uBlock-disable-autoUpdate.diff b/config/chroot_local-includes/usr/share/tails/uBlock-disable-autoUpdate.diff
index 91106dbf018..06c08fd5a14 100644
--- a/config/chroot_local-includes/usr/share/tails/uBlock-disable-autoUpdate.diff
+++ b/config/chroot_local-includes/usr/share/tails/uBlock-disable-autoUpdate.diff
@@ -1,6 +1,6 @@
---- /usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/background.js	2021-11-26 23:10:11.000000000 +0100
-+++ /usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/background.js	2021-11-29 12:26:50.129438199 +0100
-@@ -89,7 +89,7 @@
+--- /usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/background.js	2023-01-23 21:02:37.000000000 +0000
++++ /usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net/js/background.js	2023-01-26 11:42:12.811555615 +0000
+@@ -91,7 +91,7 @@
  const userSettingsDefault = {
      advancedUserEnabled: false,
      alwaysDetachLogger: true,
-- 
GitLab


From 5e37dec78c0dd458ea035bcf72f127f21dabd242 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Wed, 22 Feb 2023 20:18:21 +0100
Subject: [PATCH 019/187] Upgrade to Linux 6.1.12-1 from sid

It fixes several security issues that were fixed via DSA 5324-1 in Bullseye, such as:

* https://security-tracker.debian.org/tracker/CVE-2023-0179
* https://security-tracker.debian.org/tracker/CVE-2023-0266

Closes: #19444
---
 config/chroot_apt/preferences | 14 +-------------
 config/variables              |  2 +-
 2 files changed, 2 insertions(+), 14 deletions(-)

diff --git a/config/chroot_apt/preferences b/config/chroot_apt/preferences
index e9037c7214e..dee116304ce 100644
--- a/config/chroot_apt/preferences
+++ b/config/chroot_apt/preferences
@@ -25,19 +25,7 @@ Pin: release o=Debian,n=sid
 Pin-Priority: 999
 
 Package: linux-compiler-* linux-headers-* linux-image-* linux-kbuild-* linux-source-*
-Pin: release o=Debian,n=bullseye-backports
-Pin-Priority: 999
-
-Package: linux-compiler-* linux-headers-* linux-image-* linux-kbuild-* linux-source-*
-Pin: release o=Debian,n=bullseye-security
-Pin-Priority: 999
-
-Package: linux-compiler-* linux-headers-* linux-image-* linux-kbuild-* linux-source-*
-Pin: release o=Debian,n=bullseye-proposed-updates
-Pin-Priority: 999
-
-Package: linux-compiler-* linux-headers-* linux-image-* linux-kbuild-* linux-source-*
-Pin: release o=Debian,n=bullseye-updates
+Pin: release o=Debian,n=sid
 Pin-Priority: 999
 
 Explanation: src:live-boot (#15477)
diff --git a/config/variables b/config/variables
index 11099929f91..0cbe760db11 100644
--- a/config/variables
+++ b/config/variables
@@ -15,7 +15,7 @@ CMDLINE_APPEND="live-media=removable ${CMDLINE_APPEND_NON_REMOVABLE}"
 ISOHYBRID_OPTS="-h 255 -s 63 --id 42 --verbose"
 
 # Kernel version
-KERNEL_VERSION='6.0.0-0.deb11.6'
+KERNEL_VERSION='6.1.0-5'
 
 ### You should not have to change anything below this line ####################
 
-- 
GitLab


From d7f8cc356eda3644801439fe2cb80c424a68ee79 Mon Sep 17 00:00:00 2001
From: intrigeri <intrigeri@boum.org>
Date: Mon, 27 Feb 2023 12:53:25 +0000
Subject: [PATCH 020/187] Test suite: disable bridge QR code automated tests

Building DKMS modules requires linux-kbuild-6.1, which when installed from
testing/sid, depends on testing/sid's libc6 and cannot be installed on Bullseye.

refs tails/tails#19467
---
 config/chroot_local-hooks/50-dkms | 43 -------------------------------
 features/tor_bridges.feature      | 36 ++++++++++++++------------
 2 files changed, 19 insertions(+), 60 deletions(-)
 delete mode 100755 config/chroot_local-hooks/50-dkms

diff --git a/config/chroot_local-hooks/50-dkms b/config/chroot_local-hooks/50-dkms
deleted file mode 100755
index 9bf692d4ccc..00000000000
--- a/config/chroot_local-hooks/50-dkms
+++ /dev/null
@@ -1,43 +0,0 @@
-#!/bin/sh
-
-set -e
-set -u
-set -x
-
-echo "Building DKMS modules"
-
-. /usr/share/tails/build/variables
-
-# Import ensure_hook_dependency_is_installed()
-. /usr/local/lib/tails-shell-library/build.sh
-
-ensure_hook_dependency_is_installed \
-   "linux-headers-${KERNEL_VERSION}-amd64" \
-   v4l2loopback-dkms
-
-for log in /var/lib/dkms/*/*/build/make.log; do
-   [ -e "$log" ] || break  # handle the case when no file matched the glob
-   echo "---- $log"
-   cat "$log"
-done
-
-# Ensure the modules were actually built and installed: when
-# dkms.conf for a DKMS module includes a BUILD_EXCLUSIVE directive
-# which does not match our kernel version, the modules won't be built
-# and then we should abort the build.
-# shellcheck disable=SC2043 # we currently build only 1 DKMS module
-for module in v4l2loopback ; do
-   for modules_dir in /lib/modules/* ; do
-      found=$(find "$modules_dir" -name "${module}.ko" | wc -l)
-      if [ "$found" = 0 ]; then
-	  echo "Can not find ${module} module in '${modules_dir}" >&2
-	  exit 1
-      fi
-   done
-done
-
-# v4l2loopback-dkms's postrm script deletes any previously
-# built binary module; let's delete it before the package gets purged.
-rm /var/lib/dpkg/info/v4l2loopback-dkms.prerm
-
-rm -r /var/lib/dkms/
diff --git a/features/tor_bridges.feature b/features/tor_bridges.feature
index 69bc3338cb2..1d991413149 100644
--- a/features/tor_bridges.feature
+++ b/features/tor_bridges.feature
@@ -24,24 +24,26 @@ Feature: Using Tor bridges and pluggable transports
     And available upgrades have been checked
     And all Internet traffic has only flowed through the configured bridges
 
-  Scenario: Using obfs4 pluggable transports from a QR code
-    When I configure some obfs4 bridges from a QR code in the Tor Connection Assistant in hide mode
-    Then I wait until Tor is ready
-    And tca.conf includes the configured bridges
-    And available upgrades have been checked
-    And all Internet traffic has only flowed through the configured bridges
+  # Disabled on Bullseye, see #19467
+  # Scenario: Using obfs4 pluggable transports from a QR code
+  #   When I configure some obfs4 bridges from a QR code in the Tor Connection Assistant in hide mode
+  #   Then I wait until Tor is ready
+  #   And tca.conf includes the configured bridges
+  #   And available upgrades have been checked
+  #   And all Internet traffic has only flowed through the configured bridges
 
-  Scenario: TCA can scan QR code after a connection failure
-    Given the Tor network and default bridges are blocked
-    When I unsuccessfully configure a direct connection in the Tor Connection Assistant
-    Then the Tor Connection Assistant reports that it failed to connect
-    And tca.conf is empty
-    Given I scan a QR code from the error page in Tor Connection Assistant
-    And I retry connecting to Tor
-    Then I wait until Tor is ready
-    And tca.conf includes the configured bridges
-    And available upgrades have been checked
-    And all Internet traffic has only flowed through the configured bridges or connectivity check service
+  # Disabled on Bullseye, see #19467
+  # Scenario: TCA can scan QR code after a connection failure
+  #   Given the Tor network and default bridges are blocked
+  #   When I unsuccessfully configure a direct connection in the Tor Connection Assistant
+  #   Then the Tor Connection Assistant reports that it failed to connect
+  #   And tca.conf is empty
+  #   Given I scan a QR code from the error page in Tor Connection Assistant
+  #   And I retry connecting to Tor
+  #   Then I wait until Tor is ready
+  #   And tca.conf includes the configured bridges
+  #   And available upgrades have been checked
+  #   And all Internet traffic has only flowed through the configured bridges or connectivity check service
 
   @supports_real_tor
   Scenario: Default Tor bridges
-- 
GitLab


From ad005e68a45852b37a1a97222e2be3999670a291 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Wed, 8 Feb 2023 18:17:55 +0100
Subject: [PATCH 021/187] Test Suite: Make clicking notification buttons more
 robust

Using the button position was fragile on my system.
---
 .../additional_software_packages.rb              | 16 +++++++++-------
 features/support/helpers/dogtail.rb              |  4 ++++
 2 files changed, 13 insertions(+), 7 deletions(-)

diff --git a/features/step_definitions/additional_software_packages.rb b/features/step_definitions/additional_software_packages.rb
index c975894fdbd..0e46e15b513 100644
--- a/features/step_definitions/additional_software_packages.rb
+++ b/features/step_definitions/additional_software_packages.rb
@@ -38,14 +38,15 @@ end
 
 def click_gnome_shell_notification_button(title)
   # The notification buttons do not expose any actions through AT-SPI,
-  # so Dogtail is unable to click it. Luckily the buttons report the
-  # correct position (unlike most applications under Wayland) so we
-  # at least can learn where to click using other methods.
-  @screen.click(
-    *Dogtail::Application.new('gnome-shell')
+  # so Dogtail is unable to click it directly. We let it grab focus
+  # and activate it via the keyboard instead.
+  try_for(10) do
+    button = Dogtail::Application.new('gnome-shell')
        .child(title, roleName: 'push button')
-       .position
-  )
+    button.grabFocus
+    button.focused
+  end
+  @screen.press('Return')
 end
 
 Then /^I create a persistent storage and activate the Additional Software feature$/ do
@@ -110,6 +111,7 @@ When /^I (refuse|accept) (adding|removing) "([^"]*)" (?:to|from) Additional Soft
   end
   try_for(300) do
     click_gnome_shell_notification_button(button_title)
+    true
   end
 end
 
diff --git a/features/support/helpers/dogtail.rb b/features/support/helpers/dogtail.rb
index faf2e8d8007..a556af9179b 100644
--- a/features/support/helpers/dogtail.rb
+++ b/features/support/helpers/dogtail.rb
@@ -217,6 +217,10 @@ module Dogtail
       get_field('checked') == 'True'
     end
 
+    def focused
+      get_field('focused') == 'True'
+    end
+
     def text
       get_field('text')
     end
-- 
GitLab


From 5f6885b2d157635e1f938fb64b0ff7d6a928c6fc Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Wed, 8 Feb 2023 19:03:16 +0100
Subject: [PATCH 022/187] Test Suite: Support restricting chutney memory
 consumption

---
 features/scripts/chutney             | 18 ++++++++++++++++++
 features/step_definitions/chutney.rb | 14 ++------------
 2 files changed, 20 insertions(+), 12 deletions(-)
 create mode 100755 features/scripts/chutney

diff --git a/features/scripts/chutney b/features/scripts/chutney
new file mode 100755
index 00000000000..4b628c46604
--- /dev/null
+++ b/features/scripts/chutney
@@ -0,0 +1,18 @@
+#!/bin/bash
+
+set -eu
+
+GIT_DIR=$(git rev-parse --show-toplevel)
+CHUTNEY_DIR="${GIT_DIR}/submodules/chutney"
+CHUTNEY_SCRIPT="${CHUTNEY_DIR}/chutney"
+
+cd "${CHUTNEY_DIR}"
+
+if [ -n "${RESTRICT_CHUTNEY_MEMORY:-}" ]; then
+  systemd-run --scope \
+  --property=MemoryHigh="${CHUTNEY_MEMORY_HIGH:-4G}" \
+  --property=MemoryMax="${CHUTNEY_MEMORY_MAX:-6G}" \
+  "${CHUTNEY_SCRIPT}" "$@"
+else
+  "${CHUTNEY_SCRIPT}" "$@"
+fi
diff --git a/features/step_definitions/chutney.rb b/features/step_definitions/chutney.rb
index d45f833ed22..1421b3d7dd8 100644
--- a/features/step_definitions/chutney.rb
+++ b/features/step_definitions/chutney.rb
@@ -1,7 +1,3 @@
-def chutney_src_dir
-  "#{GIT_DIR}/submodules/chutney"
-end
-
 def chutney_status_log(cmd)
   action = case cmd
            when 'start'
@@ -34,11 +30,7 @@ def ensure_chutney_is_running
   return if $chutney_initialized
 
   chutney_listen_address = $vmnet.bridge_ip_addr
-  chutney_script = "#{chutney_src_dir}/chutney"
-  assert(
-    File.executable?(chutney_script),
-    "It does not look like '#{chutney_src_dir}' is the Chutney source tree"
-  )
+  chutney_script = "#{GIT_DIR}/features/scripts/chutney"
   network_definition = "#{GIT_DIR}/features/chutney/test-network"
   env = {
     'CHUTNEY_LISTEN_ADDRESS' => chutney_listen_address,
@@ -57,9 +49,7 @@ def ensure_chutney_is_running
   chutney_cmd = proc do |cmd|
     chutney_status_log(cmd)
     cmd = 'stop' if cmd == 'stop_old'
-    Dir.chdir(chutney_src_dir) do
-      cmd_helper([chutney_script, cmd, network_definition], env: env)
-    end
+    cmd_helper([chutney_script, cmd, network_definition], env: env)
   end
 
   # After an unclean shutdown of the test suite (e.g. Ctrl+C) the
-- 
GitLab


From c15cabca1f32353c86b78f3ece01304e03b36d2b Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Wed, 8 Feb 2023 19:12:02 +0100
Subject: [PATCH 023/187] Test Suite: Print chutney error

Even if it's possible that chutney failed because of the existing data
directory, it's still helpful to print the error that caused chutney to
fail.
---
 features/step_definitions/chutney.rb | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/features/step_definitions/chutney.rb b/features/step_definitions/chutney.rb
index 1421b3d7dd8..1685b80044d 100644
--- a/features/step_definitions/chutney.rb
+++ b/features/step_definitions/chutney.rb
@@ -67,9 +67,10 @@ def ensure_chutney_is_running
   if KEEP_CHUTNEY
     begin
       chutney_cmd.call('start')
-    rescue Test::Unit::AssertionFailedError
+    rescue Test::Unit::AssertionFailedError => e
       if File.directory?(env['CHUTNEY_DATA_DIR'])
-        raise 'You are running with --keep-snapshots or --keep-chutney, ' \
+        raise e, "#{e.message}\n" \
+              'You are running with --keep-snapshots or --keep-chutney, ' \
               'but Chutney failed ' \
               'to start with its current data directory. To recover you ' \
               "likely want to delete '#{env['CHUTNEY_DATA_DIR']}' and " \
-- 
GitLab


From 12461ba28a27a033118be6f95989f335bf7b31d0 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Wed, 8 Feb 2023 19:31:46 +0100
Subject: [PATCH 024/187] Test Suite: Fix waiting for synaptic UI to get
 responsive

get_field('sensitive') returns either 'True' or 'False' which both
evaluate to true.

Also, to ensure that pressing Return in the correct entry after a
grabFocus call, we should check for 'focused' not 'sensitive'.
---
 features/step_definitions/apt.rb    | 4 ++--
 features/support/helpers/dogtail.rb | 4 ++++
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/features/step_definitions/apt.rb b/features/step_definitions/apt.rb
index 368b39cf509..e464df365c6 100644
--- a/features/step_definitions/apt.rb
+++ b/features/step_definitions/apt.rb
@@ -205,12 +205,12 @@ Then /^I install "(.+)" using Synaptic$/ do |package_name|
     # search has completed.
     try_for(10) do
       package_entry.grabFocus
-      package_entry.get_field('selected')
+      package_entry.focused
     end
     @screen.press('Return')
     # Now we have marked the package for installation and we have to
     # wait for the Apply button to become available
-    try_for(10) { @synaptic.button('Apply').get_field('sensitive') }
+    try_for(10) { @synaptic.button('Apply').sensitive }
     # This button is also problematic when clicking with Dogtail
     @synaptic.button('Apply').grabFocus
     @screen.press('Return')
diff --git a/features/support/helpers/dogtail.rb b/features/support/helpers/dogtail.rb
index a556af9179b..37704535ddb 100644
--- a/features/support/helpers/dogtail.rb
+++ b/features/support/helpers/dogtail.rb
@@ -221,6 +221,10 @@ module Dogtail
       get_field('focused') == 'True'
     end
 
+    def sensitive
+      get_field('sensitive') == 'True'
+    end
+
     def text
       get_field('text')
     end
-- 
GitLab


From 9a05e7c1bd16038bedb796ad9328f59d39fe7633 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Wed, 8 Feb 2023 19:49:22 +0100
Subject: [PATCH 025/187] Test Suite: Simplify some statements

---
 features/step_definitions/tor.rb | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/features/step_definitions/tor.rb b/features/step_definitions/tor.rb
index 938378d421d..9fc8f33c46e 100644
--- a/features/step_definitions/tor.rb
+++ b/features/step_definitions/tor.rb
@@ -481,7 +481,7 @@ When(/^I look at the hide mode but then I go back$/) do
       '_Back',
       roleName: 'push button'
     )
-    assert_equal('True', btn.get_field('sensitive'))
+    assert btn.sensitive
     btn.click
   end
 end
@@ -779,7 +779,7 @@ def click_connect_to_tor
     '_Connect to Tor',
     roleName: 'push button'
   )
-  assert_equal('True', btn.get_field('sensitive'))
+  assert btn.sensitive
   btn.click
 end
 
@@ -788,10 +788,7 @@ When /^(?:I click "Connect to Tor"|I retry connecting to Tor)$/ do
 end
 
 Then /^I cannot click the "Connect to Tor" button$/ do
-  assert_equal(
-    'False',
-    tor_connection_assistant.child('_Connect to Tor').get_field('sensitive')
-  )
+  assert !tor_connection_assistant.child('_Connect to Tor').sensitive
 end
 
 When /^I set the time zone in Tor Connection to "([^"]*)"$/ do |timezone|
-- 
GitLab


From 9d1559d045fa03ab384da0f066116fad7e2e1d27 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Mon, 13 Feb 2023 12:15:39 +0100
Subject: [PATCH 026/187] Test Suite: Make the Chutney test network smaller

refs #15211
---
 features/chutney/test-network | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/features/chutney/test-network b/features/chutney/test-network
index 5b56a3e85e5..643f1d87e73 100644
--- a/features/chutney/test-network
+++ b/features/chutney/test-network
@@ -53,12 +53,12 @@ BridgeDefault = Node(
     torrc="bridge-obfs4.tmpl"
 )
 
-NODES = Authority.getN(4) + \
+NODES = Authority.getN(3) + \
         BridgeAuthority.getN(1) + \
-        NonExitRelay.getN(20) + \
-        ExitRelay.getN(10) + \
-        Bridge.getN(3) + \
-        BridgeObfs4.getN(3) + \
+        NonExitRelay.getN(10) + \
+        ExitRelay.getN(5) + \
+        Bridge.getN(2) + \
+        BridgeObfs4.getN(2) + \
         BridgeDefault.getN(1) + \
         Client.getN(1)
 
-- 
GitLab


From bf3b6ea77e398194b00a1fb9728520b89d7cd9fa Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Thu, 9 Feb 2023 13:36:56 +0100
Subject: [PATCH 027/187] Test Suite: Improve error message when Chutney fails
 to start

---
 features/step_definitions/chutney.rb | 19 +++++++++++++------
 1 file changed, 13 insertions(+), 6 deletions(-)

diff --git a/features/step_definitions/chutney.rb b/features/step_definitions/chutney.rb
index 1685b80044d..97785622bc8 100644
--- a/features/step_definitions/chutney.rb
+++ b/features/step_definitions/chutney.rb
@@ -69,12 +69,19 @@ def ensure_chutney_is_running
       chutney_cmd.call('start')
     rescue Test::Unit::AssertionFailedError => e
       if File.directory?(env['CHUTNEY_DATA_DIR'])
-        raise e, "#{e.message}\n" \
-              'You are running with --keep-snapshots or --keep-chutney, ' \
-              'but Chutney failed ' \
-              'to start with its current data directory. To recover you ' \
-              "likely want to delete '#{env['CHUTNEY_DATA_DIR']}' and " \
-              'all test suite snapshots and then start over.'
+        raise e, %{#{e.message}
+
+Note: You are running with --keep-snapshots or --keep-chutney, but Chutney
+failed to start with its current data directory. To recover you likely
+want to delete Chutney's data directory and all test suite snapshots:
+
+    sudo rm -r #{env['CHUTNEY_DATA_DIR']}
+
+    for snapshot in $(virsh snapshot-list --name TailsToaster); do
+      virsh snapshot-delete TailsToaster --snapshotname "${snapshot}"
+    done
+
+}
       else
         chutney_cmd.call('configure')
         chutney_cmd.call('start')
-- 
GitLab


From bd428d4a74e8d24ab9b79c661791effdeb1f6049 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Fri, 10 Feb 2023 19:06:59 +0100
Subject: [PATCH 028/187] early_patch: Run different hook in test suite

This allows to do different things when early-patching test suite runs.
Developers who don't need this feature can just create a symlink from
hook-test-suite to hook.

We still also set early_patch=umount to also support early-patching ISOs
which don't have this commit yet.
---
 .gitignore                                           |  1 +
 .../initramfs-tools/scripts/init-bottom/early_patch  | 12 +++++++++---
 features/step_definitions/common_steps.rb            |  2 +-
 run_test_suite                                       |  2 +-
 4 files changed, 12 insertions(+), 5 deletions(-)

diff --git a/.gitignore b/.gitignore
index c7eb7a9a79b..c83597310a1 100644
--- a/.gitignore
+++ b/.gitignore
@@ -82,3 +82,4 @@
 
 # early_patch= (aka. --early-patch) hook
 /hook
+/hook-test-suite
diff --git a/config/chroot_local-includes/usr/share/initramfs-tools/scripts/init-bottom/early_patch b/config/chroot_local-includes/usr/share/initramfs-tools/scripts/init-bottom/early_patch
index 448430b283a..2fb5fcc394e 100755
--- a/config/chroot_local-includes/usr/share/initramfs-tools/scripts/init-bottom/early_patch
+++ b/config/chroot_local-includes/usr/share/initramfs-tools/scripts/init-bottom/early_patch
@@ -26,9 +26,15 @@ done
 mountpoint=/root/mnt
 mkdir -p "$mountpoint"
 mount -t 9p src "$mountpoint"
-if [ -x "${mountpoint}/hook" ]
-then
-    "${mountpoint}/hook" /root || true
+
+# early_patch=test-suite runs a different hook
+if echo "$option" | grep -qw test-suite; then
+    hook="${mountpoint}/hook-test-suite"
+else
+    hook="${mountpoint}/hook"
+fi
+if [ -x "${hook}" ]; then
+    "${hook}" /root || true
 fi
 
 # early_patch=umount will umount the filesystem immediately after running the hook
diff --git a/features/step_definitions/common_steps.rb b/features/step_definitions/common_steps.rb
index c18e35e9164..85c8c65b67f 100644
--- a/features/step_definitions/common_steps.rb
+++ b/features/step_definitions/common_steps.rb
@@ -318,7 +318,7 @@ end
 Given /^the computer (?:re)?boots Tails( with genuine APT sources)?$/ do |keep_apt_sources|
   enter_boot_menu_cmdline
   boot_key = @os_loader == 'UEFI' ? 'F10' : 'Return'
-  early_patch = $config['EARLY_PATCH'] ? ' early_patch=umount' : ''
+  early_patch = $config['EARLY_PATCH'] ? ' early_patch=test-suite,umount' : ''
   @screen.type(' autotest_never_use_this_option' \
                ' blacklist=psmouse' \
                " #{early_patch} #{@boot_options}",
diff --git a/run_test_suite b/run_test_suite
index 03e4dce6c36..2fe6a0da45e 100755
--- a/run_test_suite
+++ b/run_test_suite
@@ -92,7 +92,7 @@ Options for '@product' features:
                      source and destination.
                      lines without a tab are ignored.
                      lines with a leading \"#\" are ignored.
-  --early-patch      Boots the system with the \"early_patch=umount\" cmdline option.
+  --early-patch      Boots the system with the \"early_patch=test-suite,umount\" cmdline option.
                      See wiki/src/contribute/build/early-patch.mdwn for details
                      This is useful when you need something to be patched early
                      in the boot process; or if you need to run arbitrary
-- 
GitLab


From 4877fc2937a1169eb9d3c6c5c4a419843dddb9e2 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Fri, 10 Feb 2023 19:28:57 +0100
Subject: [PATCH 029/187] Test Suite: Save boot.log

---
 features/support/hooks.rb | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/features/support/hooks.rb b/features/support/hooks.rb
index 4dabeefe890..35e355d0538 100644
--- a/features/support/hooks.rb
+++ b/features/support/hooks.rb
@@ -142,6 +142,15 @@ def save_journal
   )
 end
 
+def save_boot_log
+  save_vm_command_output(
+    command:  'cat /var/log/boot.log*',
+    id:       'boot-log',
+    basename: 'artifact.boot-log',
+    desc:     'boot log'
+  )
+end
+
 def save_vm_file_content(file, desc: nil)
   _save_vm_file_content(
     file:     file,
@@ -354,6 +363,7 @@ After('@product') do |scenario|
     # on the remote shell here:
     if $vm&.remote_shell_is_up?
       save_journal
+      save_boot_log
       if scenario.feature.file \
          == 'features/additional_software_packages.feature'
         save_vm_command_output(
-- 
GitLab


From 3537d50a80491bcde01713bba1801846aadb22c2 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Sun, 12 Feb 2023 19:18:34 +0100
Subject: [PATCH 030/187] Test Suite: Print previous exceptions

Since Ruby 2.1, when an unhandled exceptions is printed, any previous
exceptions at the time the exception was raised are also printed. That's
useful to for debugging to figure out the exact cause of an exception.

Cucumber does not print previous exceptions, so we extend it's
print_exception method to also print any previous exceptions.
---
 features/support/extra_hooks.rb | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/features/support/extra_hooks.rb b/features/support/extra_hooks.rb
index 3d1e5a975e5..7417ed1d0d5 100644
--- a/features/support/extra_hooks.rb
+++ b/features/support/extra_hooks.rb
@@ -124,6 +124,15 @@ module ExtraFormatters
       @io.puts(format_string(message, options[:color]))
       @io.flush
     end
+
+    # Recursively print the exception and all previous exceptions
+    def print_exception(e, status, indent)
+        super(e, status, indent)
+        if e.cause
+          cause = Cucumber::Formatter::BacktraceFilter.new(e.cause.dup).exception
+          print_exception(cause, status, indent)
+        end
+    end
   end
 end
 
-- 
GitLab


From 4a1e094eec69ce39aa80db0d90012ac23e83f8c0 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Sun, 12 Feb 2023 19:23:57 +0100
Subject: [PATCH 031/187] Test Suite: Use cyan for debug logs instead of blue

The blue ansi color code (34) is often hard to read in terminals with a
dark background. Lets use cyan instead, which should be readable with
both bright and dark background.
---
 features/support/extra_hooks.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/features/support/extra_hooks.rb b/features/support/extra_hooks.rb
index 7417ed1d0d5..6fa719605fb 100644
--- a/features/support/extra_hooks.rb
+++ b/features/support/extra_hooks.rb
@@ -120,7 +120,7 @@ module ExtraFormatters
     end
 
     def debug_log(message, **options)
-      options[:color] ||= :blue
+      options[:color] ||= :cyan
       @io.puts(format_string(message, options[:color]))
       @io.flush
     end
-- 
GitLab


From a7656d7c641d501e1493579fa4c74a2ad73e312f Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Wed, 15 Feb 2023 15:12:46 +0100
Subject: [PATCH 032/187] Test Suite: Support sharing clipboard with
 TailsToaster VM

... for easier debugging. The clipboard is only shared when connecting
to the SPICE display with e.g. virt-manager to debug things, not when
the VNC viewer is connected via --view or --view-interact.
---
 features/domains/default.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/features/domains/default.xml b/features/domains/default.xml
index 0288b872585..ed7d1fb8c5e 100644
--- a/features/domains/default.xml
+++ b/features/domains/default.xml
@@ -33,7 +33,7 @@
       <target type='virtio' name='com.redhat.spice.0'/>
     </channel>
     <graphics type='spice' port='-1' tlsPort='-1' autoport='yes'>
-      <clipboard copypaste='no'/>
+      <clipboard copypaste='yes'/>
       <mouse mode='client'/>
     </graphics>
     <sound model='ich6'/>
-- 
GitLab


From fe72dc293e758892024c160108e625a1782a8f15 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Thu, 16 Feb 2023 12:23:18 +0100
Subject: [PATCH 033/187] Remote shell: Use subprocess.Popen in text mode

Instead of converting all input/output from/to string.
---
 .../usr/local/lib/tails-autotest-remote-shell          | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell b/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell
index f08ec24732d..d9086a30da8 100755
--- a/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell
+++ b/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell
@@ -105,6 +105,7 @@ class PythonSession:
             stdin=subprocess.PIPE,
             stdout=subprocess.PIPE,
             stderr=subprocess.PIPE,
+            text=True,
             env=env,
             cwd=cwd,
             preexec_fn=mk_switch_user_fn(user))
@@ -115,7 +116,7 @@ class PythonSession:
             orig_stdout = sys.stdout
             orig_stderr = sys.stderr
             """.replace('            ', '').lstrip()
-        self.process.stdin.write(init_code.encode())
+        self.process.stdin.write(init_code)
         self.process.stdin.flush()
 
     def execute(self, code):
@@ -143,7 +144,7 @@ class PythonSession:
             """.replace('            ', '').lstrip()
         indented_code = textwrap.indent(code, prefix=' ' * 4)
         wrapped_code = wrapper.format(code=indented_code)
-        self.process.stdin.write(wrapped_code.encode())
+        self.process.stdin.write(wrapped_code)
         self.process.stdin.flush()
         return self.process.stdout.readline().strip()
 
@@ -156,6 +157,7 @@ def run_cmd_as_user(cmd, user):
                             stdout=subprocess.PIPE,
                             stderr=subprocess.PIPE,
                             shell=True,  # nosec subprocess_popen_with_shell_equals_true
+                            text=True,
                             env=env,
                             cwd=cwd,
                             preexec_fn=switch_user_fn)
@@ -209,9 +211,7 @@ def main():
                 if cmd_type == "sh_spawn":
                     returncode, stdout, stderr = 0, "", ""
                 else:
-                    stdout_b, stderr_b = p.communicate()
-                    stdout = stdout_b.decode('utf-8')
-                    stderr = stderr_b.decode('utf-8')
+                    stdout, stderr = p.communicate()
                     returncode = p.returncode
                 ret = json.dumps([id, 'success', returncode, stdout, stderr])
             elif cmd_type == 'python_execute':
-- 
GitLab


From 840107dd789b9f431a92d78d1104a0b32837f0e8 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Thu, 16 Feb 2023 12:50:33 +0100
Subject: [PATCH 034/187] Test Suite: Set AT_SPI_BUS_ADDRESS when executing
 Dogtail command

Sometimes importing "dogtail.tree" failed with:

    dbind-ERROR **: 11:16:00.750: AT-SPI: Couldn't connect to accessibility bus. Is at-spi-bus-launcher running?

Setting the AT_SPI_BUS_ADDRESS environment variable fixes that.
---
 features/support/helpers/dogtail.rb | 17 ++++++++++++++++-
 1 file changed, 16 insertions(+), 1 deletion(-)

diff --git a/features/support/helpers/dogtail.rb b/features/support/helpers/dogtail.rb
index 37704535ddb..80f17916996 100644
--- a/features/support/helpers/dogtail.rb
+++ b/features/support/helpers/dogtail.rb
@@ -78,7 +78,22 @@ module Dogtail
       @opts = opts
       @opts[:user] ||= LIVE_USER
       @find_code = "dogtail.tree.root.application('#{@app_name}')"
-      init = [
+
+      init = []
+      if @opts[:user] == LIVE_USER
+        cmd = "dbus-send --print-reply=literal --session --dest=org.a11y.Bus /org/a11y/bus org.a11y.Bus.GetAddress"
+        c = RemoteShell::ShellCommand.new($vm, cmd, user: @opts[:user])
+        if c.returncode != 0
+          raise Failure, "dbus-send exited with exit code #{c.returncode}"
+        end
+        a11y_bus = c.stdout.strip
+        init = [
+          'import os',
+          "os.environ['AT_SPI_BUS_ADDRESS'] = '#{a11y_bus}'",
+        ]
+      end
+
+      init += [
         'import dogtail.config',
         'import dogtail.tree',
         'import dogtail.predicate',
-- 
GitLab


From 387b114aa8bcc7ded01e6b807989c92d332f66db Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Thu, 2 Feb 2023 13:52:39 +0100
Subject: [PATCH 035/187] Test Suite: Quote path for consistency

In other steps (e.g. "the file exists") filepaths are quoted, so lets do
that consistently
---
 features/backup.feature                   | 2 +-
 features/step_definitions/common_steps.rb | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/features/backup.feature b/features/backup.feature
index 45e530b545a..a3d8c1ed738 100644
--- a/features/backup.feature
+++ b/features/backup.feature
@@ -10,7 +10,7 @@ Feature: Backing up the persistent storage
     And I shutdown Tails and wait for the computer to power off
     And I clone USB drive "__internal" to a temporary USB drive "backup"
     Given I have started Tails without network from a USB drive with a persistent partition enabled and logged in
-    And I write a file /live/persistence/TailsData_unlocked/new with contents "foo"
+    And I write a file "/live/persistence/TailsData_unlocked/new" with contents "foo"
     When I start Tails' custom backup tool
     Then the backup tool displays "Plug in your backup Tails USB stick"
     When I plug USB drive "backup"
diff --git a/features/step_definitions/common_steps.rb b/features/step_definitions/common_steps.rb
index 85c8c65b67f..2de3129ae2f 100644
--- a/features/step_definitions/common_steps.rb
+++ b/features/step_definitions/common_steps.rb
@@ -1403,7 +1403,7 @@ Then(/^the layout of the screen keyboard is set to "([^"]+)"$/) do |layout|
   @screen.find("ScreenKeyboardLayout#{layout.upcase}.png")
 end
 
-Given /^I write a file (\S+) with contents "([^"]*)"$/ do |path, content|
+Given /^I write a file "(\S+)" with contents "([^"]*)"$/ do |path, content|
   $vm.file_overwrite(path, content)
 end
 
-- 
GitLab


From 1cf5a1f56ccee8120aed7c6e55b8148dc6e88017 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Wed, 8 Feb 2023 23:07:20 +0100
Subject: [PATCH 036/187] Test Suite: Print stacktrace of caught exception

---
 features/support/helpers/misc_helpers.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/features/support/helpers/misc_helpers.rb b/features/support/helpers/misc_helpers.rb
index 4a1619bf0b8..6b1bb043c42 100644
--- a/features/support/helpers/misc_helpers.rb
+++ b/features/support/helpers/misc_helpers.rb
@@ -92,7 +92,7 @@ def try_for(timeout, **options)
         # print it in case of a timeout.
         last_exception = e
         debug_log('try_for: failed with exception: ' \
-                  "#{last_exception.class}: #{last_exception}") if options[:log]
+                  "#{last_exception.class}: #{last_exception}\n#{last_exception.backtrace.join("\n")}") if options[:log]
       rescue Exception => e # rubocop:disable Lint/RescueException
         # Any other exception is rethrown as-is: it is probably not
         # the kind of failure that try_for is supposed to mask.
-- 
GitLab


From 2aae3eb67c81261f00d62dea419ce96e169e32eb Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Thu, 9 Feb 2023 12:24:26 +0100
Subject: [PATCH 037/187] Remote Shell: Handle exceptions during JSON decoding

Handle exceptions during JSON decoding by returning the exception to the
caller instead of letting the Remote Shell exit abruptly which makes
things hard to debug.
---
 .../usr/local/lib/tails-autotest-remote-shell | 27 ++++++++++++-------
 1 file changed, 17 insertions(+), 10 deletions(-)

diff --git a/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell b/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell
index d9086a30da8..d9276c9bf6a 100755
--- a/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell
+++ b/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell
@@ -46,6 +46,8 @@ import traceback
 
 from tailslib.gnome import gnome_env
 
+from typing import Tuple, Optional
+
 REMOTE_SHELL_DEV = '/dev/virtio-ports/org.tails.remote_shell.0'
 
 
@@ -119,7 +121,7 @@ class PythonSession:
         self.process.stdin.write(init_code)
         self.process.stdin.flush()
 
-    def execute(self, code):
+    def execute(self, code) -> Tuple[str, str, str]:
         # This wrapping ensures that we can run almost any reasonable
         # code and capture what it does.
         wrapper = """
@@ -127,26 +129,32 @@ class PythonSession:
             fake_stderr = io.StringIO()
             sys.stdout = fake_stdout
             sys.stderr = fake_stderr
-            exc = None
+            exc_str = None
             try:
             {code}
             except Exception as e:
-                exc = '%s: %s' % (type(e).__name__, str(e))
+                exc_str = '%s: %s' % (type(e).__name__, str(e))
             # This newline is needed to end the `try` statement.
 
             sys.stdout = orig_stdout
             sys.stderr = orig_stderr
-            out_data = fake_stdout.getvalue()
-            err_data = fake_stderr.getvalue()
+            out_str = fake_stdout.getvalue()
+            err_str = fake_stderr.getvalue()
             fake_stdout.close()
             fake_stderr.close()
-            print(json.dumps([exc, out_data, err_data]))
+            print(json.dumps([exc_str, out_str, err_str]))
             """.replace('            ', '').lstrip()
         indented_code = textwrap.indent(code, prefix=' ' * 4)
         wrapped_code = wrapper.format(code=indented_code)
         self.process.stdin.write(wrapped_code)
         self.process.stdin.flush()
-        return self.process.stdout.readline().strip()
+        return_str = self.process.stdout.readline().strip()
+        try:
+            exc_str, out_str, err_str = json.loads(return_str)
+            return exc_str, out_str, err_str
+        except Exception as e:
+            exc_str = '%s: %s' % (type(e).__name__, str(e))
+            return exc_str, "", ""
 
 
 def run_cmd_as_user(cmd, user):
@@ -219,9 +227,8 @@ def main():
                 if user not in python_sessions:
                     python_sessions[user] = PythonSession(user)
                 session = python_sessions[user]
-                result_str = session.execute(code)
-                result = json.loads(result_str)
-                ret = json.dumps([id, 'success'] + result)
+                exc, out_str, err_str = session.execute(code)
+                ret = json.dumps([id, 'success', exc, out_str, err_str])
             elif cmd_type in ['file_read', 'file_write', 'file_append']:
                 path, *rest = rest
                 open_mode = cmd_type[5] + 'b'
-- 
GitLab


From a98ebb2be2b271967647708bc92edc901ed10486 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Thu, 16 Feb 2023 14:45:25 +0100
Subject: [PATCH 038/187] Remote shell: Print stderr if Python exits
 unexpectedly

When importing "dogtail.tree" when the AT SPI bus was inaccessible, the
Python process was terminated via SIGTRAP:

    (.:3116166): dbind-ERROR **: 14:35:52.927: AT-SPI: Couldn't connect to accessibility bus. Is at-spi-bus-launcher running?

That was hard to debug because we didn't print the stderr of the failed
Python command. With this commit, failures like the one above should be
a lot easier to debug.
---
 .../usr/local/lib/tails-autotest-remote-shell | 19 ++++++++++++++++++-
 1 file changed, 18 insertions(+), 1 deletion(-)

diff --git a/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell b/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell
index d9276c9bf6a..83fb47e18ff 100755
--- a/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell
+++ b/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell
@@ -42,6 +42,7 @@ import subprocess
 import sys
 import systemd.daemon
 import textwrap
+import time
 import traceback
 
 from tailslib.gnome import gnome_env
@@ -83,6 +84,7 @@ def get_user_env(user):
 # Python shell started as a subprocess.
 class PythonSession:
     def __init__(self, user=None):
+        print("Starting new Python session", file=sys.stderr)
         interactive_shell_code = '; '.join([
             "import sys",
             "import code",
@@ -148,11 +150,25 @@ class PythonSession:
         wrapped_code = wrapper.format(code=indented_code)
         self.process.stdin.write(wrapped_code)
         self.process.stdin.flush()
+
+        if self.process.poll() is not None:
+            exc_str = f"Python process exited unexpectedly with {self.process.returncode}"
+            out_str = self.process.stdout.read()
+            err_str = self.process.stderr.read()
+            return exc_str, out_str, err_str
+
         return_str = self.process.stdout.readline().strip()
         try:
             exc_str, out_str, err_str = json.loads(return_str)
             return exc_str, out_str, err_str
         except Exception as e:
+            time.sleep(1)
+            if self.process.poll() is not None:
+                exc_str = f"Python process exited unexpectedly with {self.process.returncode}"
+                out_str = self.process.stdout.read()
+                err_str = self.process.stderr.read()
+                return exc_str, out_str, err_str
+
             exc_str = '%s: %s' % (type(e).__name__, str(e))
             return exc_str, "", ""
 
@@ -224,7 +240,8 @@ def main():
                 ret = json.dumps([id, 'success', returncode, stdout, stderr])
             elif cmd_type == 'python_execute':
                 user, code = rest
-                if user not in python_sessions:
+                if user not in python_sessions or \
+                        python_sessions[user].process.poll() is not None:
                     python_sessions[user] = PythonSession(user)
                 session = python_sessions[user]
                 exc, out_str, err_str = session.execute(code)
-- 
GitLab


From 6ab5a9b1f8139a00e32fa1f4c5af37dc11668199 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Thu, 16 Feb 2023 16:03:44 +0100
Subject: [PATCH 039/187] Test Suite: Print stdout and stderr of failed Dogtail
 command

---
 features/support/helpers/dogtail.rb | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/features/support/helpers/dogtail.rb b/features/support/helpers/dogtail.rb
index 80f17916996..5148044de09 100644
--- a/features/support/helpers/dogtail.rb
+++ b/features/support/helpers/dogtail.rb
@@ -116,11 +116,17 @@ module Dogtail
       if init
         init = init.join("\n") if init.instance_of?(Array)
         c = RemoteShell::PythonCommand.new($vm, init, user: @opts[:user], debug_log: false)
-        raise Failure, "The Dogtail init script raised: #{c.exception}" if c.failure?
+        if c.failure?
+          msg = "The Dogtail init script raised: #{c.exception}\nSTDOUT:\n#{c.stdout}\nSTDERR:\n#{c.stderr}\n"
+          raise Failure, msg
+        end
       end
       code = code.join("\n") if code.instance_of?(Array)
       c = RemoteShell::PythonCommand.new($vm, code, user: @opts[:user])
-      raise Failure, "The Dogtail script raised: #{c.exception}" if c.failure?
+      if c.failure?
+        msg = "The Dogtail init script raised: #{c.exception}\nSTDOUT:\n#{c.stdout.strip}\nSTDERR:\n#{c.stderr.strip}\n"
+        raise Failure, msg
+      end
 
       c
     end
-- 
GitLab


From 70dcdc8aeef48fee8e797958387756a34bb5d159 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Tue, 21 Feb 2023 11:40:59 +0100
Subject: [PATCH 040/187] Test Suite: Set rootpw=root for easier debugging

This allows us to inspect the journal and do other things as root when
debugging test failures in the VM.
---
 features/step_definitions/common_steps.rb | 1 +
 1 file changed, 1 insertion(+)

diff --git a/features/step_definitions/common_steps.rb b/features/step_definitions/common_steps.rb
index 2de3129ae2f..0b159a3ab1f 100644
--- a/features/step_definitions/common_steps.rb
+++ b/features/step_definitions/common_steps.rb
@@ -321,6 +321,7 @@ Given /^the computer (?:re)?boots Tails( with genuine APT sources)?$/ do |keep_a
   early_patch = $config['EARLY_PATCH'] ? ' early_patch=test-suite,umount' : ''
   @screen.type(' autotest_never_use_this_option' \
                ' blacklist=psmouse' \
+               ' rootpw=root' \
                " #{early_patch} #{@boot_options}",
                [boot_key])
   @screen.wait('TailsGreeter.png', 5 * 60)
-- 
GitLab


From 209921dae9c0d5b3b58bc46a3e399e57daf292e5 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Tue, 28 Feb 2023 14:26:38 +0100
Subject: [PATCH 041/187] Revert "Test Suite: Set rootpw=root for easier
 debugging"

We decided to add a --extra-boot-options to run_test_suite instead.
---
 features/step_definitions/common_steps.rb | 1 -
 1 file changed, 1 deletion(-)

diff --git a/features/step_definitions/common_steps.rb b/features/step_definitions/common_steps.rb
index 0b159a3ab1f..2de3129ae2f 100644
--- a/features/step_definitions/common_steps.rb
+++ b/features/step_definitions/common_steps.rb
@@ -321,7 +321,6 @@ Given /^the computer (?:re)?boots Tails( with genuine APT sources)?$/ do |keep_a
   early_patch = $config['EARLY_PATCH'] ? ' early_patch=test-suite,umount' : ''
   @screen.type(' autotest_never_use_this_option' \
                ' blacklist=psmouse' \
-               ' rootpw=root' \
                " #{early_patch} #{@boot_options}",
                [boot_key])
   @screen.wait('TailsGreeter.png', 5 * 60)
-- 
GitLab


From 6ef8a16461e42ec4639a62ba989150d340017fad Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Tue, 21 Feb 2023 19:51:48 +0100
Subject: [PATCH 042/187] Test Suite: Remove dogtail init lines without effect

Changing the config of 'dogtail.config' doesn't have any effect on the
config of 'dogtail.tree'. To do that, 'dogtail.tree.config' needs to be
changed.
---
 features/support/helpers/dogtail.rb | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/features/support/helpers/dogtail.rb b/features/support/helpers/dogtail.rb
index 5148044de09..dc89e58f635 100644
--- a/features/support/helpers/dogtail.rb
+++ b/features/support/helpers/dogtail.rb
@@ -94,13 +94,8 @@ module Dogtail
       end
 
       init += [
-        'import dogtail.config',
         'import dogtail.tree',
         'import dogtail.predicate',
-        'dogtail.config.logDebugToFile = False',
-        'dogtail.config.logDebugToStdOut = False',
-        'dogtail.config.blinkOnActions = True',
-        'dogtail.config.searchShowingOnly = True',
       ]
       code = [
         "#{@var} = #{@find_code}",
-- 
GitLab


From a65d829ebad3a569f674d162f2bb0ba531bb3827 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Wed, 22 Feb 2023 11:47:45 +0100
Subject: [PATCH 043/187] Fix debug=greeter not spawning terminal

---
 config/chroot_local-includes/usr/local/lib/tails-greeter | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/config/chroot_local-includes/usr/local/lib/tails-greeter b/config/chroot_local-includes/usr/local/lib/tails-greeter
index 434846bfd41..e031d507987 100755
--- a/config/chroot_local-includes/usr/local/lib/tails-greeter
+++ b/config/chroot_local-includes/usr/local/lib/tails-greeter
@@ -9,7 +9,7 @@ if grep -qw "debug=greeter" /proc/cmdline && [ -z "${DEBUG_GREETER:-}" ]; then
   # it - belong to the GDM session, we have to run it as a child process.
   # By default, gnome-terminals are spawned by systemd. This is a
   # workaround based on https://unix.stackexchange.com/a/201915.
-  /usr/lib/gnome-terminal/gnome-terminal-server --app-id greeter.debug.Terminal &
+  /usr/libexec/gnome-terminal-server --app-id greeter.debug.Terminal &
   sleep 1
   gnome-terminal --app-id greeter.debug.Terminal -- /bin/bash
 else
-- 
GitLab


From 637945180f5a307034a8aee29d93923b93ca1947 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Wed, 22 Feb 2023 11:49:40 +0100
Subject: [PATCH 044/187] Test Suite: Use Dogtail for some Greeter steps

Clicking on screenshots is flaky, both locally and in Jenkins. Using
Dogtail should be more robust.
---
 .../dist-packages/tailsgreeter/ui/setting.py  |  10 +++++++++
 features/images/TailsGreeterLanguage.png      | Bin 1287 -> 0 bytes
 .../images/TailsGreeterLanguagePopover.png    | Bin 492 -> 0 bytes
 .../TailsGreeterPersistenceUnlocked.png       | Bin 4801 -> 0 bytes
 .../TailsGreeterPersistenceUnlockedGerman.png | Bin 9336 -> 0 bytes
 features/step_definitions/common_steps.rb     |  17 ++++++++++++++--
 features/step_definitions/usb.rb              |  19 ++++++++++++++++--
 7 files changed, 42 insertions(+), 4 deletions(-)
 delete mode 100644 features/images/TailsGreeterLanguage.png
 delete mode 100644 features/images/TailsGreeterLanguagePopover.png
 delete mode 100644 features/images/TailsGreeterPersistenceUnlocked.png
 delete mode 100644 features/images/TailsGreeterPersistenceUnlockedGerman.png

diff --git a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/setting.py b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/setting.py
index 39d4dfb9d51..d538b6ca8a0 100644
--- a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/setting.py
+++ b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/setting.py
@@ -48,6 +48,16 @@ class GreeterSetting(object):
         self.value_label = self.builder.get_object("label_value")
         self.title_label.set_label(self.title)
 
+        # Strip the underscore which marks the mnemonic
+        setting_name = self.title.replace('_', '', 1)
+        # This is a hack to make the listboxrow usable in the Test Suite:
+        # We configure a tooltip text which allows us to use it through
+        # AT-SPI, but we set has_tooltip to false to not display that
+        # tooltip, because the UI is self-explanatory without a tooltip
+        # and the tooltip would just be noise.
+        self.listboxrow.set_tooltip_text(f"Configure {setting_name}")
+        self.listboxrow.set_has_tooltip(False)
+
     def apply(self):
         self.update_value_label()
 
diff --git a/features/images/TailsGreeterLanguage.png b/features/images/TailsGreeterLanguage.png
deleted file mode 100644
index b194ebacdd7154b530dbb0a4bab6b205ae6dead9..0000000000000000000000000000000000000000
GIT binary patch
literal 0
HcmV?d00001

literal 1287
zcmV+i1^D`jP)<h;3K|Lk000e1NJLTq003bC001Ef0ssI2Mm$oO000EeNkl<Zc-rlm
zi&Gm_6vq1(C0TaEBSDn%Dg|0CU|U5L6-%*7UkVKcEvZ1YP)ncMirV57pPi1>zG#{0
zsHGKBol<HYYbB5e1d>1qB!nb>m(6S*>?T16jm>7xWNz;6e#!mabH01;WQBb1h#28x
zg@{08Br=LoMrv)srZcj<N=a&tBryf=viw)+iZkdJ8IfRi^-D80NSH)6q-puml$E}A
z<_27icSb-UQD$*~5KR63gwi%YGG!K{>W^baYAwkic@kZ9o(p-y5Tnv?AF1^XvdoQ-
zUeQI%2p&X|C72N#Ox=Kd&jXeb?x8C><CGCG>3}MersYXfSFzMkU-afq?h-6KP8pF^
zj02RYgcH$~UlJmD6@=iL*Zl-jb9fbw_DtUV!|_NnN>l{q5mmAuoz%KFnd)Aq`i4ZF
z?7y0%j8{ehdBlQXcJ#>A!*cbIEW0G=Qrzaz;-I%(CXGE0s3&&@GLjW+iJp<7N%vW=
zO>1^JT%Mr`*IVbz+@(Ri^T@Ty0iAPZ&U4>5SN`c3+n?Mx^2rZVdh5J(#(h>Zt(|Z^
zb;O8%i`~8Hl!?8k?Bg-J(-U4_NJqKwh;ee>JnjCve>!cSE{G9TdMKJ;wp}6HrTTkR
zVJ)-u5^3+~p$b(jBl!1{^5|f<wX(ys`k<lVTeHjUDLiWA81)Z1o;x|3eL(;DE!((l
z9s@>yN3ZQy!`w3`M%NrNU<_WbHw>dN`a(MAZriU6&Sbah^V<x4e>ysE*@74am5gvu
zB`vsFs?1(k*OI9s6%AK<<2p$q;r&rGwT67*rW%aYUA{IZ)8qB7|6nw=S?6?lN<Z@D
zl(JbDkrA)HkWNO6-tF<`9MH4<ubeU=(ZVuHeu65hmF2$3%P92bl=Ovtwnk|DLX5In
z_4_YbF?ByZbYNgj-&qzjLZIR>a$rI(B)#M7L|sH=#H%l)g9kAg;KIh()cn+}I~*g~
zx*AePDh)P45g8$a!XHF<89n~4Zp7j`eZy99nv}yY!%iVa7#;@j?1@p#b4sI*mk~rl
z7zybM=@cI~q5-Ueo*go5`n4{ya$)-uymI*%k#oO-ocjy55D$uU1mR_bpKf!wxsSKC
z5g1|27~AF!(_%)L_Uf-DLKq3@3+bSNgoSfO$4HThbv@ywljObZ_+my&4KUISIWk-H
zTwofDj*)q5zF>hz?mlY{Q)?_E;;BE|u?D@+J_avu|9*;NbaB9bXT(|1W<bDqSw>;>
zg>*i=K7|zxHjkh8eES%_RFDx>Tt|#~Wf5I<LB9J=;4blRGx7$%wswxAzwN5kY<HvV
zy9Z~k-kXWY=&^meZ#2_*#AKVt+60}ohYje@ec$lo@3Y7Ptnr7hO+t`;P)J`$2PTC_
z9*(<a=RCt^*WNCRAS1f!qP%`kmRnB0+)m1ERoOpev>X90uvn~0%c{fA2<v)?zo6)1
zkP$Kw`@`kd;b%lW{WfdWQbjrf<;K+AmB>?Kfl=`><IXR})8Es>Yko7%HJ-ODw+=re
zdV4ohbJLHku$CZOT^<XJ;7WIO&e;XuX}xUy7j*a-VJo<+FJWVozw{ItOif=xNo%at
x+JA7SUD8=ZWF#^Y|AQ16iHt->BBTFf`~}hbDJT+)-zWe8002ovPDHLkV1nYSZ4&?h

diff --git a/features/images/TailsGreeterLanguagePopover.png b/features/images/TailsGreeterLanguagePopover.png
deleted file mode 100644
index abad6f47fe70c94968e80b0d97144c7e28f60f4c..0000000000000000000000000000000000000000
GIT binary patch
literal 0
HcmV?d00001

literal 492
zcmV<I0Tcd-P)<h;3K|Lk000e1NJLTq002+`001cn0{{R3mEvBO0002nP)t-sE;Keu
zkl9#WURhpWT3=vWU}0OD-CUd9Uu0!rW@ln&XJTh)W@~I{Y;9?7Zfb6CYj1FGrr~gO
zb#SNQa&~ugczJbtdUtz#d3}C{iHe4bi-(Jgh>MJjkdcm&l8%y+kCKy?nVOfHo0yxM
zn7-wioSmA#=9`|Lo51FrpP-+jqt4IJ)6~_}*4EVJ_SWY1*xA|I+uYmS+}z#W+}+;Z
z-{0Th;Njxp;^O1x=ji9?=;-L@=;`U}>+9?6?CtIC@9^;O@bK~R@$vHV_4W4n`1tz!
z`~Lp^|NsBpsEd98007KML_t(|+U?fG4gxU%1W<O6E{nUnySwZ1|6c@c!XFGAVCOQI
z=A}v1wjt+F!Btggv`DZXadAN*1`k>!sA&%i{48kuaq!R%8{zhW2KGFVF}fshZy+^1
z4byP%IA9AI^HpXR4GtK@SoIVE4(P;H^$iY_0{SsiJ%^7o!y0m`^QdsZt&YOtzAVB%
zA??GC4jDV*7t%>tm%Z?oMlnQ>w6iSN_bf%~<#3E5$pe)bPrQd%7p(P+eghPu&jsrt
i^8awvB!YkVX@3HzUi=`YO*H8M0000<MNUMnLSTY#Zv<cf

diff --git a/features/images/TailsGreeterPersistenceUnlocked.png b/features/images/TailsGreeterPersistenceUnlocked.png
deleted file mode 100644
index 357ec2ec2d65408e671dff8a344b85e77c61e2f2..0000000000000000000000000000000000000000
GIT binary patch
literal 0
HcmV?d00001

literal 4801
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
b{Lk<o1Ws%mB+M8)00000NkvXXu0mjfOfN@t

diff --git a/features/images/TailsGreeterPersistenceUnlockedGerman.png b/features/images/TailsGreeterPersistenceUnlockedGerman.png
deleted file mode 100644
index 153c396de4cfce01c575dc1a3d4e76cb13db9fd7..0000000000000000000000000000000000000000
GIT binary patch
literal 0
HcmV?d00001

literal 9336
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
Q_rGRFdPv<OZP#=E1zMnpumAu6

diff --git a/features/step_definitions/common_steps.rb b/features/step_definitions/common_steps.rb
index 2de3129ae2f..98745990ba9 100644
--- a/features/step_definitions/common_steps.rb
+++ b/features/step_definitions/common_steps.rb
@@ -352,8 +352,21 @@ end
 
 Given /^I set the language to (.*)$/ do |lang|
   $language = lang
-  @screen.wait('TailsGreeterLanguage.png', 10).click
-  @screen.wait('TailsGreeterLanguagePopover.png', 10)
+  # The listboxrow does not expose any actions through AT-SPI,
+  # so Dogtail is unable to click it directly. We let it grab focus
+  # and activate it via the keyboard instead.
+  try_for(10) do
+    row = greeter
+         .child(description: 'Configure Language', showingOnly: true)
+    row.grabFocus
+    row.focused
+  end
+  @screen.press('Return')
+  try_for(10) do
+    greeter
+      .child('Search', roleName: 'text', showingOnly: true)
+      .focused
+  end
   @screen.type($language)
   sleep(2) # Gtk needs some time to filter the results
   @screen.press('Return')
diff --git a/features/step_definitions/usb.rb b/features/step_definitions/usb.rb
index 4d3c19f9780..c15df5cb353 100644
--- a/features/step_definitions/usb.rb
+++ b/features/step_definitions/usb.rb
@@ -74,6 +74,10 @@ def recover_from_upgrader_failure
   $vm.spawn('tails-upgrade-frontend-wrapper --no-wait', user: LIVE_USER)
 end
 
+def greeter
+  Dogtail::Application.new('Welcome to Tails!', user:'Debian-gdm')
+end
+
 Given /^I clone USB drive "([^"]+)" to a (new|temporary) USB drive "([^"]+)"$/ do |from, mode, to|
   $vm.storage.clone_to_new_disk(from, to)
   if mode == 'temporary'
@@ -372,10 +376,21 @@ Then /^a Tails persistence partition exists on USB drive "([^"]+)"$/ do |name|
 end
 
 Given /^I enable persistence$/ do
-  @screen.wait('TailsGreeterPersistencePassphrase.png', 60).click
+  try_for(60) do
+    greeter.child(roleName: 'password text').grabFocus
+  end
   sleep 1
   @screen.type(@persistence_password, ['Return'])
-  @screen.wait_any(['TailsGreeterPersistenceUnlocked.png', 'TailsGreeterPersistenceUnlockedGerman.png'], 30)
+
+  english_label = "Your persistent storage is unlocked. Restart Tails to lock it again."
+  german_label = "Dein beständiger Speicherbereich ist entsperrt. Starte Tails neu, um ihn wieder zu sperren."
+  try_for(30) do
+    greeter.child(english_label, roleName: 'label', showingOnly: true)
+  rescue Dogtail::Failure
+    greeter.child(german_label, roleName: 'label', showingOnly: true)
+    $language = 'German'
+    true
+  end
 end
 
 def tails_persistence_enabled?
-- 
GitLab


From 2b9ae63a02d9a871cb03eaf3a28128ce4788b821 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Wed, 22 Feb 2023 15:17:52 +0100
Subject: [PATCH 045/187] Test Suite: Filter printed stacktrace

---
 features/support/helpers/misc_helpers.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/features/support/helpers/misc_helpers.rb b/features/support/helpers/misc_helpers.rb
index 6b1bb043c42..5705265bd0d 100644
--- a/features/support/helpers/misc_helpers.rb
+++ b/features/support/helpers/misc_helpers.rb
@@ -90,7 +90,7 @@ def try_for(timeout, **options)
         # Most other exceptions, that inherit from StandardError, are ignored
         # while trying the block. We save the last exception so we can
         # print it in case of a timeout.
-        last_exception = e
+        last_exception = Cucumber::Formatter::BacktraceFilter.new(e).exception
         debug_log('try_for: failed with exception: ' \
                   "#{last_exception.class}: #{last_exception}\n#{last_exception.backtrace.join("\n")}") if options[:log]
       rescue Exception => e # rubocop:disable Lint/RescueException
-- 
GitLab


From cfa94816d2b00fce57b4007739ae6e82aa187635 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Wed, 22 Feb 2023 15:18:14 +0100
Subject: [PATCH 046/187] Test Suite: Fix Dogtail not working when running as
 Debian-gdm user

Closes #19420
---
 .../usr/local/lib/tails-autotest-remote-shell            | 9 +++++++++
 config/chroot_local-includes/usr/local/lib/tails-greeter | 6 ++++++
 2 files changed, 15 insertions(+)

diff --git a/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell b/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell
index 83fb47e18ff..b55ca3bab3a 100755
--- a/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell
+++ b/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell
@@ -64,6 +64,15 @@ def mk_switch_user_fn(user):
 
 
 def get_user_env(user):
+    # We need special handling for the Debian-gdm user because running
+    # 'su -s /bin/sh -c env' doesn't print the same environment which
+    # the Greeter is running in - in particular, DBUS_SESSION_BUS_ADDRESS
+    # does not have the value we need to successfully run Dogtail.
+    if user == "Debian-gdm":
+        with open(f"/tmp/gdm-env") as f:
+            env_data = f.read()
+        return dict((line.split('=', 1) for line in env_data.splitlines()))
+
     # We try to create an environment identical to what's expected
     # inside Tails for the user by logging in (via `su`) as the user,
     # setting up the GNOME shell environment, and extracting the
diff --git a/config/chroot_local-includes/usr/local/lib/tails-greeter b/config/chroot_local-includes/usr/local/lib/tails-greeter
index e031d507987..8acf71f83ce 100755
--- a/config/chroot_local-includes/usr/local/lib/tails-greeter
+++ b/config/chroot_local-includes/usr/local/lib/tails-greeter
@@ -1,5 +1,11 @@
 #!/bin/bash
 export LANG="en_US.UTF-8"
+
+if grep -qw "autotest_never_use_this_option" /proc/cmdline; then
+  # Store the environment for usage by tails-autotest-remove-shell
+  env > "/tmp/gdm-env"
+fi
+
 if grep -qw "debug=greeter" /proc/cmdline && [ -z "${DEBUG_GREETER:-}" ]; then
   # Export DEBUG_GREETER=1 so that when this file is executed again
   # from the gnome-terminal, we actually start the greeter and not
-- 
GitLab


From 2512ed46188cba5f7b207f7b1cc9a5b98486681f Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Wed, 22 Feb 2023 19:10:18 +0100
Subject: [PATCH 047/187] Test Suite: Fix flaky step "I disable the first
 persistence preset"

In one scenario, the next step after this one was to shut down, which
caused a race: Because the step did wait until deactivation completed,
sometimes the feature was not deactivated yet, causing it to be active
again after reboot.
---
 features/step_definitions/usb.rb         | 22 +++++++++++++++++++++-
 features/support/helpers/misc_helpers.rb | 11 ++++++++++-
 2 files changed, 31 insertions(+), 2 deletions(-)

diff --git a/features/step_definitions/usb.rb b/features/step_definitions/usb.rb
index c15df5cb353..de66c6e385d 100644
--- a/features/step_definitions/usb.rb
+++ b/features/step_definitions/usb.rb
@@ -67,6 +67,19 @@ def persistent_storage_main_frame
   persistent_storage_frontend.child('Persistent Storage', roleName: 'frame')
 end
 
+def persistent_directory_is_active(**opts)
+  opts[:user] = "root"
+  opts[:use_system_bus] = true
+  dbus_send(
+    'org.boum.tails.PersistentStorage',
+    '/org/boum/tails/PersistentStorage/Features/PersistentDirectory',
+    "org.freedesktop.DBus.Properties.Get",
+    "org.boum.tails.PersistentStorage.Feature",
+    "IsActive",
+    **opts
+  )
+end
+
 def recover_from_upgrader_failure
   $vm.execute('pkill --full tails-upgrade-frontend-wrapper')
   $vm.execute('killall tails-upgrade-frontend zenity')
@@ -218,7 +231,14 @@ When /^I disable the first persistence preset$/ do
   )
   assert persistent_folder_switch.checked
   persistent_folder_switch.toggle
-  try_for(10) { !persistent_folder_switch.checked }
+  try_for(10) do
+    assert !persistent_folder_switch.checked
+    # GtkSwitch does not expose its underlying state via AT-SPI (the
+    # accessible has the "check" state when the switch is on but the
+    # underlying state is false) so we check via D-Bus that the
+    # Persistent Directory feature is inactive.
+    !persistent_directory_is_active
+  end
   @screen.press('alt', 'F4')
 end
 
diff --git a/features/support/helpers/misc_helpers.rb b/features/support/helpers/misc_helpers.rb
index 5705265bd0d..3c2b7ab653d 100644
--- a/features/support/helpers/misc_helpers.rb
+++ b/features/support/helpers/misc_helpers.rb
@@ -395,11 +395,15 @@ end
 def dbus_send_ret_conv(ret)
   type, val = /^\s*(\S+)\s+(.+)$/m.match(ret)[1, 2]
   case type
+  when 'variant'
+    return dbus_send_ret_conv(val)
   when 'string'
     # Unquote
     val[1...-1]
   when 'int32'
     val.to_i
+  when 'boolean'
+    val == 'true'
   when 'array'
     # Drop array start/stop markers ([])
     val.split("\n")[1...-1].map { |e| dbus_send_ret_conv(e) }
@@ -410,6 +414,9 @@ end
 
 def dbus_send_get_shellcommand(service, object_path, method, *args, **opts)
   opts ||= {}
+  opts[:use_system_bus] ||= false
+  bus_arg = opts[:use_system_bus] ? "--system" : "--session"
+
   ruby_type_to_dbus_type = {
     String  => 'string',
     Integer => 'int32',
@@ -420,8 +427,10 @@ def dbus_send_get_shellcommand(service, object_path, method, *args, **opts)
                    "No D-Bus type conversion for Ruby type '#{arg.class}'")
     "#{type}:#{arg}"
   end
+
   $vm.execute(
-    "dbus-send --print-reply --dest=#{service} #{object_path} " \
+    "dbus-send #{bus_arg} --print-reply " \
+    "--dest=#{service} #{object_path} " \
     "    #{method} #{typed_args.join(' ')}",
     **opts
   )
-- 
GitLab


From 9cd2a314309656a43efa61086684d235992964d6 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Wed, 22 Feb 2023 19:25:53 +0100
Subject: [PATCH 048/187] Welcome Screen: Print instructions when using
 debug=greeter

---
 .../chroot_local-includes/usr/local/lib/tails-greeter  | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/config/chroot_local-includes/usr/local/lib/tails-greeter b/config/chroot_local-includes/usr/local/lib/tails-greeter
index 8acf71f83ce..bd8ad9b0a86 100755
--- a/config/chroot_local-includes/usr/local/lib/tails-greeter
+++ b/config/chroot_local-includes/usr/local/lib/tails-greeter
@@ -17,7 +17,17 @@ if grep -qw "debug=greeter" /proc/cmdline && [ -z "${DEBUG_GREETER:-}" ]; then
   # workaround based on https://unix.stackexchange.com/a/201915.
   /usr/libexec/gnome-terminal-server --app-id greeter.debug.Terminal &
   sleep 1
+
+  text="To start the greeter, run:
+
+  /usr/local/lib/tails-greeter
+
+To spawn more terminals, run:
+
   gnome-terminal --app-id greeter.debug.Terminal -- /bin/bash
+"
+
+  gnome-terminal --app-id greeter.debug.Terminal -- /bin/bash -c "echo '${text}'; /bin/bash"
 else
   cd /usr/share/tails/greeter/
   /usr/share/tails/greeter/set-cursor.py watch
-- 
GitLab


From 734434d77b1c614ad0ae22d7a0318f519b7ff735 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Fri, 24 Feb 2023 09:34:02 +0100
Subject: [PATCH 049/187] Revert "Test Suite: Use Dogtail for some Greeter
 steps"

The test suite changes of this commit require the updates to
tails-autotest-remote-shell from commit
"Test Suite: Fix Dogtail not working when running as Debian-gdm user"
to work. That causes some scenarios of the
"Upgrading an old Tails USB installation" feature to fail, because the
old version of Tails used by that test does not have the updates to
tails-autotest-remote-shell yet.

To avoid that, lets wait until the next release and then revert this
commit again.
---
 .../dist-packages/tailsgreeter/ui/setting.py  |  10 ---------
 features/images/TailsGreeterLanguage.png      | Bin 0 -> 1287 bytes
 .../images/TailsGreeterLanguagePopover.png    | Bin 0 -> 492 bytes
 .../TailsGreeterPersistenceUnlocked.png       | Bin 0 -> 4801 bytes
 .../TailsGreeterPersistenceUnlockedGerman.png | Bin 0 -> 9336 bytes
 features/step_definitions/common_steps.rb     |  17 ++--------------
 features/step_definitions/usb.rb              |  19 ++----------------
 7 files changed, 4 insertions(+), 42 deletions(-)
 create mode 100644 features/images/TailsGreeterLanguage.png
 create mode 100644 features/images/TailsGreeterLanguagePopover.png
 create mode 100644 features/images/TailsGreeterPersistenceUnlocked.png
 create mode 100644 features/images/TailsGreeterPersistenceUnlockedGerman.png

diff --git a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/setting.py b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/setting.py
index d538b6ca8a0..39d4dfb9d51 100644
--- a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/setting.py
+++ b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/setting.py
@@ -48,16 +48,6 @@ class GreeterSetting(object):
         self.value_label = self.builder.get_object("label_value")
         self.title_label.set_label(self.title)
 
-        # Strip the underscore which marks the mnemonic
-        setting_name = self.title.replace('_', '', 1)
-        # This is a hack to make the listboxrow usable in the Test Suite:
-        # We configure a tooltip text which allows us to use it through
-        # AT-SPI, but we set has_tooltip to false to not display that
-        # tooltip, because the UI is self-explanatory without a tooltip
-        # and the tooltip would just be noise.
-        self.listboxrow.set_tooltip_text(f"Configure {setting_name}")
-        self.listboxrow.set_has_tooltip(False)
-
     def apply(self):
         self.update_value_label()
 
diff --git a/features/images/TailsGreeterLanguage.png b/features/images/TailsGreeterLanguage.png
new file mode 100644
index 0000000000000000000000000000000000000000..b194ebacdd7154b530dbb0a4bab6b205ae6dead9
GIT binary patch
literal 1287
zcmV+i1^D`jP)<h;3K|Lk000e1NJLTq003bC001Ef0ssI2Mm$oO000EeNkl<Zc-rlm
zi&Gm_6vq1(C0TaEBSDn%Dg|0CU|U5L6-%*7UkVKcEvZ1YP)ncMirV57pPi1>zG#{0
zsHGKBol<HYYbB5e1d>1qB!nb>m(6S*>?T16jm>7xWNz;6e#!mabH01;WQBb1h#28x
zg@{08Br=LoMrv)srZcj<N=a&tBryf=viw)+iZkdJ8IfRi^-D80NSH)6q-puml$E}A
z<_27icSb-UQD$*~5KR63gwi%YGG!K{>W^baYAwkic@kZ9o(p-y5Tnv?AF1^XvdoQ-
zUeQI%2p&X|C72N#Ox=Kd&jXeb?x8C><CGCG>3}MersYXfSFzMkU-afq?h-6KP8pF^
zj02RYgcH$~UlJmD6@=iL*Zl-jb9fbw_DtUV!|_NnN>l{q5mmAuoz%KFnd)Aq`i4ZF
z?7y0%j8{ehdBlQXcJ#>A!*cbIEW0G=Qrzaz;-I%(CXGE0s3&&@GLjW+iJp<7N%vW=
zO>1^JT%Mr`*IVbz+@(Ri^T@Ty0iAPZ&U4>5SN`c3+n?Mx^2rZVdh5J(#(h>Zt(|Z^
zb;O8%i`~8Hl!?8k?Bg-J(-U4_NJqKwh;ee>JnjCve>!cSE{G9TdMKJ;wp}6HrTTkR
zVJ)-u5^3+~p$b(jBl!1{^5|f<wX(ys`k<lVTeHjUDLiWA81)Z1o;x|3eL(;DE!((l
z9s@>yN3ZQy!`w3`M%NrNU<_WbHw>dN`a(MAZriU6&Sbah^V<x4e>ysE*@74am5gvu
zB`vsFs?1(k*OI9s6%AK<<2p$q;r&rGwT67*rW%aYUA{IZ)8qB7|6nw=S?6?lN<Z@D
zl(JbDkrA)HkWNO6-tF<`9MH4<ubeU=(ZVuHeu65hmF2$3%P92bl=Ovtwnk|DLX5In
z_4_YbF?ByZbYNgj-&qzjLZIR>a$rI(B)#M7L|sH=#H%l)g9kAg;KIh()cn+}I~*g~
zx*AePDh)P45g8$a!XHF<89n~4Zp7j`eZy99nv}yY!%iVa7#;@j?1@p#b4sI*mk~rl
z7zybM=@cI~q5-Ueo*go5`n4{ya$)-uymI*%k#oO-ocjy55D$uU1mR_bpKf!wxsSKC
z5g1|27~AF!(_%)L_Uf-DLKq3@3+bSNgoSfO$4HThbv@ywljObZ_+my&4KUISIWk-H
zTwofDj*)q5zF>hz?mlY{Q)?_E;;BE|u?D@+J_avu|9*;NbaB9bXT(|1W<bDqSw>;>
zg>*i=K7|zxHjkh8eES%_RFDx>Tt|#~Wf5I<LB9J=;4blRGx7$%wswxAzwN5kY<HvV
zy9Z~k-kXWY=&^meZ#2_*#AKVt+60}ohYje@ec$lo@3Y7Ptnr7hO+t`;P)J`$2PTC_
z9*(<a=RCt^*WNCRAS1f!qP%`kmRnB0+)m1ERoOpev>X90uvn~0%c{fA2<v)?zo6)1
zkP$Kw`@`kd;b%lW{WfdWQbjrf<;K+AmB>?Kfl=`><IXR})8Es>Yko7%HJ-ODw+=re
zdV4ohbJLHku$CZOT^<XJ;7WIO&e;XuX}xUy7j*a-VJo<+FJWVozw{ItOif=xNo%at
x+JA7SUD8=ZWF#^Y|AQ16iHt->BBTFf`~}hbDJT+)-zWe8002ovPDHLkV1nYSZ4&?h

literal 0
HcmV?d00001

diff --git a/features/images/TailsGreeterLanguagePopover.png b/features/images/TailsGreeterLanguagePopover.png
new file mode 100644
index 0000000000000000000000000000000000000000..abad6f47fe70c94968e80b0d97144c7e28f60f4c
GIT binary patch
literal 492
zcmV<I0Tcd-P)<h;3K|Lk000e1NJLTq002+`001cn0{{R3mEvBO0002nP)t-sE;Keu
zkl9#WURhpWT3=vWU}0OD-CUd9Uu0!rW@ln&XJTh)W@~I{Y;9?7Zfb6CYj1FGrr~gO
zb#SNQa&~ugczJbtdUtz#d3}C{iHe4bi-(Jgh>MJjkdcm&l8%y+kCKy?nVOfHo0yxM
zn7-wioSmA#=9`|Lo51FrpP-+jqt4IJ)6~_}*4EVJ_SWY1*xA|I+uYmS+}z#W+}+;Z
z-{0Th;Njxp;^O1x=ji9?=;-L@=;`U}>+9?6?CtIC@9^;O@bK~R@$vHV_4W4n`1tz!
z`~Lp^|NsBpsEd98007KML_t(|+U?fG4gxU%1W<O6E{nUnySwZ1|6c@c!XFGAVCOQI
z=A}v1wjt+F!Btggv`DZXadAN*1`k>!sA&%i{48kuaq!R%8{zhW2KGFVF}fshZy+^1
z4byP%IA9AI^HpXR4GtK@SoIVE4(P;H^$iY_0{SsiJ%^7o!y0m`^QdsZt&YOtzAVB%
zA??GC4jDV*7t%>tm%Z?oMlnQ>w6iSN_bf%~<#3E5$pe)bPrQd%7p(P+eghPu&jsrt
i^8awvB!YkVX@3HzUi=`YO*H8M0000<MNUMnLSTY#Zv<cf

literal 0
HcmV?d00001

diff --git a/features/images/TailsGreeterPersistenceUnlocked.png b/features/images/TailsGreeterPersistenceUnlocked.png
new file mode 100644
index 0000000000000000000000000000000000000000..357ec2ec2d65408e671dff8a344b85e77c61e2f2
GIT binary patch
literal 4801
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
b{Lk<o1Ws%mB+M8)00000NkvXXu0mjfOfN@t

literal 0
HcmV?d00001

diff --git a/features/images/TailsGreeterPersistenceUnlockedGerman.png b/features/images/TailsGreeterPersistenceUnlockedGerman.png
new file mode 100644
index 0000000000000000000000000000000000000000..153c396de4cfce01c575dc1a3d4e76cb13db9fd7
GIT binary patch
literal 9336
zcmeHMXH=6*w+_9FQlttoDAGbgPa?ge5PFxAMhq>Ggf7K`ihxKFsR{y$f*?f@P>O(3
zL{Ow7O^Sso9Yt<H&pDp^o%?<Ftab0dleI|RnR)iJ_dK)r%)E;zGo%3rs~{@?0N^k(
z)U^NrXv(S2Jj}GzZ+A79lK=pdbFh^i#R3%o^dS-52%b0~CCCQ{#03)E0D!>32RA&f
zN>_2{@AOHP(#Izl`oe>02eguJi4DC=ttB(@12L5a_ot+yCf0%5vpe6us_sl2jbD}Q
zNsqLju)cl4U)CYGZtJtey(d?T`y_5jZ^FMDZmQ<8<6doU6U)}^YoBXyp2^H3Tkk;4
z({DkZcS0u0A}U<O->gfHUY=jwGUmAzRa#rOaphrM<#m~~o&LeFTN<5p-Ssn7m)?Y3
z+`hY$Is2duVef};jmmKgWxBR-Orwf?SePt+=oGv!LCB!vOKQx8Z?dKzInCATZhr|~
zWs@R&6G`%1I4;5%Cf;4!S$F8hR{IA2+069`jlztXnG@kxZ+w5+6nA8_6JDS;GrK+?
zEN9_<%Ouom$*(!qvv9Hx^L%L2s%U$4-^kqAr`#>JX;_rcq1*MO+?E7cgSF49I4<<-
z2e0h?&NUtK7*L{2uSA$t5#gWUUuYp6+<^)?TZf{b^v3p)ECtyh<49id#FLRTBHyFd
zU67Plc~4rTv)^Bro_KRo``P1`cVYoFmop$DJ+|lSM(S#1iv;LDOLxR_tSOFI#z={J
zJBdv3b)^bP&s6p{_2FqPng*}C9yzZm-)e1~P*BYr<T=)znop2LL}<GA=p{Ljl<Nt>
zebWLr`kp$hs>R@GbUQ9)2m<^bO7RPQTY58QR$P_rP+(pBKz}azft`{<rAOGiGQMK(
z`4QD8mBS|rI?^iF%1^5)%1_%hKFiV5U62_}ty-qcTpYP{Rkba@@nW1ZdW9v_E!A&u
zW#Fbj8N?}QoVz`_xB|Tj7LuAP{ai6uGuOYZ`6$s8zS_Ukjm-ESo2E*%+gbVkHNTb5
zeM|e($cNGVrTnjbJfyi?=a-ts(Gibb=z-<VFD()+R;s$3URt=4tE9|(*<K|?^D`%d
z9pcVl)-@)>#@3R)gpc2GX;I^=4yUb}(O&0k*%qiA&8qNzlq#tKxlqJTw6N3<yIY=J
z;Lh=lRpE6`sEKNEGXK?t-kYudnFNm6q?)hyzZ#+1liYQNar4+m2>}6f4YVQ0h#u7k
z#Rkq~PQS`bic6B_kF9v=(e_S6<nqlk^i!_)9(sNvH?Xvu<I0`VdL;dVGw;sk4<;)x
zoAL;G8GJ@Qn8AxcOH*Ph)C33aVGP<&GFA23O>!5O#*VjNwN8!i1{f1(HO2i(GG3d9
z3w_-f?4mi50S@XdB|lyE(y$v47<`eh;814iCure%n?=ZrRyRIq60Tm|K8)!=eDGzJ
zn88w1gyzRqNHLAF>RqB%h5>il=o0$)^D>;O%L6OUF^miDSJdD}X3{n16{>$a+)0Km
ze5txe<8)tK+Xs?j>nKgh5bka#KewBjtWaj5;qDHV!hmhL;O(vplj>()`M)$3we@Lw
zYTAFjH{)9NhFC#Uxy5=!TnJH=P5c8^!LWU0%_P5F_pS1Qv0OGSnk<g8UXFk~#43}l
zpKiiEU&>*YD@<Oom#{-MVEM>kySJU1CP98&O#3sxPrtMtyq@u4mg0GBT+n#_jNF2_
z*qG>k3mGF=0ea%KzP<Oc)qIg^v#Z+8E!wr&_Tj9^plhOPgZ&t{;?gzwazVd7*Rw5&
zF`FsY@r7~aj|4k&+`nYF+9ytR>fdbCNRP~1mXDKvALQw1{`j;P`e1d4e%*j4+p|$#
z+Qt*reB!JjTl3?x9!0NNMsPlT?A9JM%Zu^cChiTN(8~1&y<<R4=jGcC^=d;!YXD_<
zK~<N3k@Llpa%~gl`A=QZm+&=%CmL6qys*eB9!I*Vhb-vxlBNod*FbZJW&%e~A7)~8
z-%xp_(_4)(U~Q+Y8hdnZU1bl}M-8-sN(GjTTbTs=f>P_A&$nM1wP9hjmR5+9Tl{dN
zIB6)+<b`N9yqDBF2(vkPYz1y3Unv~y3c;Bm?bkr#V3&#&ez3C*cJi5#PeOmezL!q8
z12;Exb2@KtI@G__;?v9WKY|K6#~y2c?!jfFgQ`8B-b);Rv`=tbDyv?mhyUPemDj?Z
zuW8>lG$r{BZ+{`&u~>-^5;M&`%&&@Mio-{-*QH{6pVD#_U)>&+I#-}|!Nc#e=EOC?
zLV0=<vs|9an*$FMVszHw4?i3}#;^B+|ERJcUezNZ!A_w3D0I_pzt{Lpp+w)U^T#bC
zm5-!x*(3YF^Z~gq1{q|6UOI+?3ZF|E2Ku9O*=}o(IIjd3DOje5@hW)s)CM%Wc4;&t
z8U}U1g<X1~>W!)mpivdk#AHD~ZYPnx>Nj8>CRx+j&Skkb;-uJ+F(}Up*>TFmFD1_F
z30sfIv4N~;ot9eWyL#EODIXW}d60!?Gi1(MKZdE}qXZ9Jz96%(wlTLjZz@jfuCL`T
z<DG{}?>EY*e<}F=8=C8~NrfV}s#RnC+?~%j=xGjEn%85^KCO-O>Reh~M>eyQ%`YJJ
zUof|{r6wisI{=7qH{Ld}GEL(Y;MCYZ$Jo3@UxPZLA)9sSy=<O~<w+-@@FcQSsOk=b
zkYaO}rh>2n_2`Wx=;)Xk>FE4+(o)aYjL>*B!$vcnNK?x^5HG{=%Mxz+$b-6i!jD+>
z^7p$(+8i==-V#$J7+RbXX6QS2UL)F?i4X5|=oEw2B2!aOv(an46Hg$L<(HQ(8mPaj
znOPhOjWCmz>u?vMQ+%gv8TB}&wdiuTEj{#t$QC2cO`t3x=>jqIoux{TQw)A{ecRs2
z{S{hM^T<uqMFMv*x2e}4<4ouTvvix(5_~D&i0Me!Wc9?7(9F4Z+Rm7ik8g#2FWAYH
zKYa77@U(kVVw1Ubx1>u;U?FK_qVT#@p)WG5(Ff_`Jb`#XbL3%!p5gxNtaBVmu44M(
znLKQggK=LszB<+E%0`|Na-B>u5D>)naeim4!+T5}d;T=nNBDHOZ$=ynSkCsg;OcVd
zENqn<xWRtvqe*xbqj7kGvzPm8v8)iG$B(_;+eCb-=vLGON+oM7t|edVq+7tR7~5y9
zAN+7?b-K6z#YehpckGW6BhKr%=4uXjsISkT&K#;!i{0D?IB1YE=er!k0RYZu0`=-+
zXJU-N5WQqkSRxuH8|dXjy&3@ksv3blD2xY=0z~8R1aCFaLQNeANWiLrY?Vx)CO$g2
z(*(m{63#LhX@v>)z`(H}4Ru!4Km?V*3r9f#1HC-G$%sHT&>k;>`n=l>0Ri_Q6c06!
zorxJxhe*N!6=fA=p<um0g1<aSofW7`!nz?WboGByP+MxC(-evi0s;vL2#^g>kR_7v
z5IHy;4uQ%;<mJIs1ehG;O+f{My~$#`6hAn0abygM;6ou0y@9)&C^XTJq6Pv{$ALe|
zsiPRZKx*et2fOV(dNKtIF`_mUsq>)%Ao5Ts3=EYA%flhR+EYhOOn$faCjV5CswX56
z<pYtEg+jc%{$xR>==uNQ?=LOLR@56P!~#bq`jId=J%5}xMeJ9nKAwK$Uw!(Kal2i6
zaeHFjAk?7tJpXEAU}R$UyUnhQc!HPDp2aTuS0onmJI=?C<hh5zVjwtAoEJ3^GL>2G
zPk0K!?T-ce(|mSE{v{BqyWjc$g#Jyhy;$~iMd%VSe!EVMbk#t+@glH93;~PSdqlZG
z(QphJ26mG}D}xm=SPU4BQig-!SPTq}Lu0V=D3xERjJ(Mdls5*qOGPD@B~W=(+!U2D
zP@D=F3PsC-6=7})V3;xn4VHIPfh)q~l+kcE)GrjKBm%V(P@ca=wM&JiQYk88l(1MB
z9P9>{hl3SW<P^auC{zxttOQk5L_w7lR1_5VsCL%@p=D;I29lSB{?TLRiK4g>NnUCo
zV}iF|;2#541TUN=1+^=hoU)3N983-ll~-1gmsf)Q0kXl7$kZg?<&=ZU%FFMKU@-`N
zDkF-TYy>Y99tZL9#_tX6E(?M>8LF_T-P)is@AXsXg3ux1P!uA`ib(WS1MS8N+@;(r
zDWK}lVnG-aF?)u4U>tV0-hNh`HVO~fYpO#29r$0EEKd^yy#IGRe?Wg{(IQa-h$IhF
zk}299hoSs?p1%VB&SXK|>&O&RkkNmb)PKXN{zz9tsx6Te^oxH>obQj;j}6I_uqPD|
zxVH%)P?#U`lTrRS?A{Vkb^I}eIgRqh<EXps&r<uXpYRuHOigq-n3A$G80H350xLr0
zVbt7Hf`XM$3T_H$6bz@RqV#8WGSQ6^fFj|v@YEcjt~0f?_SP9Fv6p?4e?|wK#!+)b
z8Y+i?LP0;47pMx^-B5p<p6c$FV`75%RRGo9EeT<?n|YRgK0clV9O=)({FW&H1MV05
zpGo<j%zuUbu+|~^1W}9jG{rQ)``^0%3*Zk1V*&=}O(y=k(0_&ekmZ+ihZ^&bKI(Z!
zJsu&ypN~J&Vz+YsA3s0S?f=mOmHHnie@owg<oZXhzoo$60{@d;|H$>X6!=@<f3oZU
zOfJ?x-mr1r)QesK_5E4Y{}ey<-J8Y7(4GtcuyODH(E!pib~~9UMkabpGc=<6xelVE
zq7G2UB8_yltO5t;P7&-Z`wptHuteoEGt(QUFtNz%?AJbOVSekf&HV>sW||&sHasO;
z5|7@}m^(6*KVY2zOjz<f>dh|J^Wx>DIVu4H<(#9@HKau`r;fz+D~b=NpXAyaDGLbQ
zRF{RTcoaYF9K4hfq60l;1J*oC%fQM*q>WAnP=6)5nh)&$?1x+px(hMRtTg_9pn`Ip
z0`qR{)!B@6U;J|E;s)*6w(i>#b&tb77kycBj5&PP_0tm^WDqfOB1oFsQkM5!m)ZGq
zK_p~G?9fAAz_rxSGmXjb-0$X8q{eI3MvcVT*Mu#r;CQVaW|Ll@KL^;9YGB{S@qaAM
zYX1JrC_J#rBH&CaFy!F*21CvdVK*y!lie5RJJi)L8eZNBl-ycpio7_TjTqpfECB#2
z_j4js?+uo_rwbg;H93-CXg3Er*(RN6(S1XP-LWLFVJGme1oO3Gu9sb-G{t-dhYn?y
zU{;eZ-3Wzp&RO&9IMKg(LPr<@M0~W|RvH)ZQfN;z9Bt?wXy|=C;?{lj<ygI>e{a%G
zj(elk$At>Pv9U{ip^u{HXI2}AQ{NooK98&kS`X`9wz(oeaPmy5iRK1ml~16MVJJ(s
z_Wl-Ehb)&_1JSVXNtZWIdj{I|<f5PDfTlTF=m%bOe)BKzGz7YK5ehJ%C|z3P;fHwz
z6-S#xsw`*#aUMck7XIHHuF>Ua9pMs1m<O)vw~mdungL?%R|D6lIk03dt5Xspk`;NP
zJj@J^D$h@*j>g$HW_5F6asU9@Y$(NdHe1cnQ>GO<$u{$9YtzBk#7XB9p9kS)5hxxu
zql<doahz`Z{P)_MUmO8SlcC!koEYY6BM;jX;cDiAOH19)=UP3Q(Y|5h&9{nq$-#m1
ziJ4p)QJ_?$RjYW1Z|)Z!t|Yv)WU<V~Qd_(2J1c{)s|B~g;FqrXR%!U9XAcX9&kf;T
zzLKrDS7QG5_GZ~RI-FymgaUi|)hDTsJW^0gS8v@Y%XtT>dv_)J>VD?PMz^z1EVJkf
zjg3=zg#({HE+4m#esmPR)E$>`XfErSWTz9MS%-n9R7%n#5t1eDCS*Q^i!eG-v%UIU
z$p8>xCL=67*)Bqx?bE+0Tadq{D!WDTuZ}L$X)6k)&3<^JZ)a-lCH!#AvcY=Z(PPGJ
ziwuB5=USL2<NNbf3gH^Jgm~pd0oQz?H+p(~VVKY3F%LRj9+qCcWgY^z?F9f}DYj-d
z=8u*O{NMsZP&?z#qPD`W6Z_i57^oRwyJ;wMkPaZyr^L>3Az)rEPsh5)G?s&dD*obR
z2<KD>`<;c+>k~*ndH{BcH_66oZa66rreGb`)|1HhjQMeBv4s>T!0eRG0j^0-04&MH
z?#%l4waE(^D_{h_@iW`w7qsI~D6dXR9+8N9<-In|vGigsPe1^9*>vR9%yM@AwG^hf
z#`q4Sp+xR4wW9|FxsobWzHUY<Z%Aq7iE+*eGP1tf=MRPq0sv<AG5J)HPt`gISE|bI
z)T<OF&T?D$FKum&MT=_$w9#TC1l}}xx?4H3rsS3nxm=0H;Cd1TM8jl4CJ&zC_b<gW
zG9d<r_ys>e9ATBw9bULc0sek$y0-yoFE)IG{d;-v2FIstR~NU6PDwl0V$U|vhg!am
zk_Pedj6N-1o5(LbtD#8wZt?ngPx~Ry!k5OeeTAp494V5I^E`c}GF?+5*rJafke^?8
zmHk%7+_(|GBxVyTQEz*6^U6^+ox4l}Lv~!u^tGBk$bv85LWd)@%~!h_0h)a2Lo0>X
zk;{{u9GO*%3$X<^hU_g{rgKfAe1}Iyj;~8um)<*Os;(8ulBOcvKXMU`ls9r%mSc?g
zT-lbjD<5FLh#(qoQUX<Qs`e>@x8_b0#4-ecZ_FPvWIHu#HZ-+FbT?Y2GCV_`<$4J8
zyqI2=6BR%HiT5P?>I;{eAU<{Bm&1qaF6G=Acza*<33vI3%atK_7tX#IuN__ILkgA{
zP&^b`AK+iUO3IUU%+y_9O*`(97WWl9mFVa&)P!E*yC+aQO2?*0_w8^;F>{OJ!$FrT
zN6^QPf9?xN)aSQ-E*5eztKjp(d*|ncq*QG9f|eipl$BSgCA{nk8YzWSKM@mcVTA1J
zxqhgU;3y(;2}8dzEc?KR?El2lS?g}l0p<%Ar)^jO`znfaKExij$eeX_um^0^m+i?S
z@nK@gTQ>3Lqte2b=|+nIJBNHlPC!KCTvc${B+BGaWo2c0V|*=d<b5tH#FwsWR94qO
zM@cDE=Vs(Z+J|<9(mf@SJ^MuWwGKDrTwk?ND<jx#q7vPO9t||za{_+k@RB*0o|<N5
zzdG5rn%+tX2_4QSxD;8!$ipx-fF^RQmu2g{K|Q1a_!h_&)r5|+lW9Qr#6+93HZx~s
z)|^q2KjV*A8S1?<vGCd6;uW@w;JFW9nz((rg@N{L?^Gm|cFj#RF4n<{S~X9?jhO(<
z^g5stLr{E+Iw32%ar}}89fNYmR6|i5OjU$QFS1FMj_#YOiYLpRZZv2*(Ktq9^c(oh
z^{h8R%cVEgI22@VzExrD-oA#<t^yolPu2tiA!)&8L!N0?B2xEWe<)U|=n;I@-2o4p
zJI3Un$8*Dm;$P<C@`C4SEh7pkf0&D<vMsfRB}(_*bTS{aX$4e_1|VW1{arLy&=;50
z{p3^H&3Cf+t;aRgZTgIww1}Ey)lLL*`8m2o40J3#o#1q{GW{f^xVWgKs-kwFvz-^9
zSpqaVGS=|kVc_Ve!7aBCp*9zYDRp}L+;1um+MAEv8|$!i9BrDLYSuUCcQ9XhzTdj&
zgxSZK3RIFgX+g^|1mDkou}wztBM(5+#iefc@txY&y;oG<+-{`@3S0a>G00;f`Sa(`
zTqs@`Uv;YWFDpy$m|2z<Rin;m>-`HFfN|`xWCc;bk}4|5NmX55RZ+Tf?0choiQVw)
z&HEL#_FJUTZQsH*B;k0gXpQADCz-9MIm^}tGX>Fg-x-Uwi0r;=H4A5Ib__eZ8I|uE
z_&4x~7oDJ{V{nx@`Aa8qiF%y#3kh87FkUv@QS2GT=T7Dv=8SGevSlRrLLv1pbok<!
z05L+x{rwk@hpdSfJRr_b`zUZurKa#}d081)kEGrTyZ3<TMh;#RJ%03H^xdtm+UAGl
z;^JRlsIC1jT72rgPskPT;d{j3B4<R7npmm$CsBUS)81;n^Cb7Jv#SN@T+#Wnt+c4S
z^<ypfmMhy*guOdoC(e9jWaOs|UcMp@0gQLK5R?Z>0oRib;>n#2n9-?8Y43tO6)d(B
z*(Dk-8Lq*lvltkvGM|K>I=HgVVVBThnb^C3F%Y1+k+I*+&jdTW6+n0Q$OC(Ur>E89
zHCtdQeM|Q}Zf7?nFrX5JJpq9Dg~&VjDJ69e6MNBP;ot0yCtod)lEad*Xe{j55$3x&
zITK<Ax5COHGfmIEJ|YnP0_@e4O#nc%S&x=6v*PO|v09PDoj}M(d!KQ<C@0?lOG_*6
z%OV0%rgKhWIyYWk0;6wMKX9^6-{8WIz){&x^{*|B?uF>0OK#m5nlDxX<-RFWC91fS
z9Nc#5vo5vgh7wv~8T)v6wU?Xp4TRN$WRLHZ7vGicXg8Uo=np~Ph(AM@Bp-A`t|{Ax
zRJ3S2#&=|wYW7P)vx2HcV8LH_)8BuZT?`!*SKY_N?VVC1Ok~xB<yH;sw{Z@$k2rC{
zk#YXR?6dca;og;_wZy59XmVrD`)F3qlgBw2u2l9zsTazTbTy~yAOq=Qrzepvs^)$D
z#>xtMw)#BzsIE2-+TkJdDg1-N8OY#Mr_37IaN%%w{6eQz<|SGsc84H}FTJXB_{c{#
zNB;$t%+oLpMeInS>)S{Pv&O9Jef0b*>GkGWnrF2IKHPYBn|c*)hHh}KJ$%M+ekWvj
Q_rGRFdPv<OZP#=E1zMnpumAu6

literal 0
HcmV?d00001

diff --git a/features/step_definitions/common_steps.rb b/features/step_definitions/common_steps.rb
index 98745990ba9..2de3129ae2f 100644
--- a/features/step_definitions/common_steps.rb
+++ b/features/step_definitions/common_steps.rb
@@ -352,21 +352,8 @@ end
 
 Given /^I set the language to (.*)$/ do |lang|
   $language = lang
-  # The listboxrow does not expose any actions through AT-SPI,
-  # so Dogtail is unable to click it directly. We let it grab focus
-  # and activate it via the keyboard instead.
-  try_for(10) do
-    row = greeter
-         .child(description: 'Configure Language', showingOnly: true)
-    row.grabFocus
-    row.focused
-  end
-  @screen.press('Return')
-  try_for(10) do
-    greeter
-      .child('Search', roleName: 'text', showingOnly: true)
-      .focused
-  end
+  @screen.wait('TailsGreeterLanguage.png', 10).click
+  @screen.wait('TailsGreeterLanguagePopover.png', 10)
   @screen.type($language)
   sleep(2) # Gtk needs some time to filter the results
   @screen.press('Return')
diff --git a/features/step_definitions/usb.rb b/features/step_definitions/usb.rb
index de66c6e385d..dead7516746 100644
--- a/features/step_definitions/usb.rb
+++ b/features/step_definitions/usb.rb
@@ -87,10 +87,6 @@ def recover_from_upgrader_failure
   $vm.spawn('tails-upgrade-frontend-wrapper --no-wait', user: LIVE_USER)
 end
 
-def greeter
-  Dogtail::Application.new('Welcome to Tails!', user:'Debian-gdm')
-end
-
 Given /^I clone USB drive "([^"]+)" to a (new|temporary) USB drive "([^"]+)"$/ do |from, mode, to|
   $vm.storage.clone_to_new_disk(from, to)
   if mode == 'temporary'
@@ -396,21 +392,10 @@ Then /^a Tails persistence partition exists on USB drive "([^"]+)"$/ do |name|
 end
 
 Given /^I enable persistence$/ do
-  try_for(60) do
-    greeter.child(roleName: 'password text').grabFocus
-  end
+  @screen.wait('TailsGreeterPersistencePassphrase.png', 60).click
   sleep 1
   @screen.type(@persistence_password, ['Return'])
-
-  english_label = "Your persistent storage is unlocked. Restart Tails to lock it again."
-  german_label = "Dein beständiger Speicherbereich ist entsperrt. Starte Tails neu, um ihn wieder zu sperren."
-  try_for(30) do
-    greeter.child(english_label, roleName: 'label', showingOnly: true)
-  rescue Dogtail::Failure
-    greeter.child(german_label, roleName: 'label', showingOnly: true)
-    $language = 'German'
-    true
-  end
+  @screen.wait_any(['TailsGreeterPersistenceUnlocked.png', 'TailsGreeterPersistenceUnlockedGerman.png'], 30)
 end
 
 def tails_persistence_enabled?
-- 
GitLab


From 0dc18fd1e718306e7a584b502e0810ec4f6b337f Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Fri, 24 Feb 2023 12:05:35 +0100
Subject: [PATCH 050/187] Test Suite: Avoid defining methods dynamically

To be able to find the method definition via IDE navigation.

This also drops some unused methods.
---
 features/support/helpers/dogtail.rb | 146 +++++++++++++++-------------
 1 file changed, 79 insertions(+), 67 deletions(-)

diff --git a/features/support/helpers/dogtail.rb b/features/support/helpers/dogtail.rb
index dc89e58f635..4c289a3546c 100644
--- a/features/support/helpers/dogtail.rb
+++ b/features/support/helpers/dogtail.rb
@@ -7,52 +7,6 @@ module Dogtail
   private_constant :MIDDLE_CLICK
   private_constant :RIGHT_CLICK
 
-  TREE_API_NODE_SEARCHES = [
-    :button,
-    :child,
-    :childLabelled,
-    :childNamed,
-    :dialog,
-    :menu,
-    :menuItem,
-    :panel,
-    :tab,
-    :textentry,
-  ].freeze
-  private_constant :TREE_API_NODE_SEARCHES
-
-  TREE_API_NODE_SEARCH_FIELDS = [
-    :labelee,
-    :parent,
-  ].freeze
-  private_constant :TREE_API_NODE_SEARCH_FIELDS
-
-  TREE_API_NODE_ACTIONS = [
-    :click,
-    :doActionNamed,
-    :doubleClick,
-    :grabFocus,
-    :keyCombo,
-    :point,
-  ].freeze
-  private_constant :TREE_API_NODE_ACTIONS
-
-  TREE_API_NODE_AT_SPI_ACTIONS = [
-    :activate,
-    :click,
-    :open,
-    :press,
-    :select,
-    :toggle,
-  ].freeze
-  private_constant :TREE_API_NODE_AT_SPI_ACTIONS
-
-  TREE_API_APP_SEARCHES = TREE_API_NODE_SEARCHES + [
-    :dialog,
-    :window,
-  ]
-  private_constant :TREE_API_APP_SEARCHES
-
   class Failure < StandardError
   end
 
@@ -261,19 +215,63 @@ module Dogtail
       get_field('showing') == 'True'
     end
 
-    TREE_API_APP_SEARCHES.each do |method|
-      define_method(method) do |*args, **kwargs|
-        args[0] = translate(args[0], **@opts) if args[0].instance_of?(String)
+    def call_tree_api_method(method, *args, **kwargs)
+      args[0] = translate(args[0], **@opts) if args[0].instance_of?(String)
         args_str = self.class.args_to_s(*args, **kwargs)
         method_call = "#{method}(#{args_str})"
         Node.new("#{@var}.#{method_call}", **@opts)
-      end
     end
 
-    TREE_API_NODE_SEARCH_FIELDS.each do |field|
-      define_method(field) do
-        Node.new("#{@var}.#{field}", **@opts)
-      end
+    def button(*args, **kwargs)
+      call_tree_api_method("button", *args, **kwargs)
+    end
+
+    def child(*args, **kwargs)
+      call_tree_api_method("child", *args, **kwargs)
+    end
+
+    def childLabelled(*args, **kwargs)
+      call_tree_api_method("childLabelled", *args, **kwargs)
+    end
+
+    def childNamed(*args, **kwargs)
+      call_tree_api_method("childNamed", *args, **kwargs)
+    end
+
+    def menu(*args, **kwargs)
+      call_tree_api_method("menu", *args, **kwargs)
+    end
+
+    def menuItem(*args, **kwargs)
+      call_tree_api_method("menuItem", *args, **kwargs)
+    end
+
+    def panel(*args, **kwargs)
+      call_tree_api_method("panel", *args, **kwargs)
+    end
+
+    def tab(*args, **kwargs)
+      call_tree_api_method("tab", *args, **kwargs)
+    end
+
+    def textentry(*args, **kwargs)
+      call_tree_api_method("textentry", *args, **kwargs)
+    end
+
+    def dialog(*args, **kwargs)
+      call_tree_api_method("dialog", *args, **kwargs)
+    end
+
+    def window(*args, **kwargs)
+      call_tree_api_method("window", *args, **kwargs)
+    end
+
+    def labelee
+      Node.new("#{@var}.labelee", **@opts)
+    end
+
+    def parent
+      Node.new("#{@var}.parent", **@opts)
     end
 
     # Override the `child` method to add support for regex matching of
@@ -312,23 +310,37 @@ module Dogtail
       run("#{@var} = #{@find_code}")
     end
 
-    TREE_API_NODE_ACTIONS.each do |method|
-      define_method(method) do |*args, **kwargs|
-        args_str = self.class.args_to_s(*args, **kwargs)
-        method_call = "#{method}(#{args_str})"
-        run("#{@var}.#{method_call}")
-      end
+    def call_tree_node_method(method, *args, **kwargs)
+      args_str = self.class.args_to_s(*args, **kwargs)
+      method_call = "#{method}(#{args_str})"
+      run("#{@var}.#{method_call}")
     end
 
-    # Custom methods that use at-spi actions instead of actions
-    # that rely on rawinput (which don't work on Wayland)
-    TREE_API_NODE_AT_SPI_ACTIONS.each do |action|
-      define_method(action) { doActionNamed(action.to_s) }
+    def doActionNamed(action_name)
+      call_tree_node_method("doActionNamed", action_name)
     end
 
-    def doubleClick
-      doActionNamed('click')
-      doActionNamed('click')
+    def grabFocus
+      call_tree_node_method("grabFocus")
+    end
+
+    def activate
+      doActionNamed("activate")
+    end
+    def click
+      doActionNamed("click")
+    end
+    def open
+      doActionNamed("open")
+    end
+    def press
+      doActionNamed("press")
+    end
+    def select
+      doActionNamed("select")
+    end
+    def toggle
+      doActionNamed("toggle")
     end
 
     def position
-- 
GitLab


From 94c95be5e03a9019b2051422eeb2701ec3b054fd Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Fri, 24 Feb 2023 15:08:53 +0100
Subject: [PATCH 051/187] Test Suite: Remove too verbose debug output

---
 features/support/helpers/dogtail.rb      | 2 +-
 features/support/helpers/remote_shell.rb | 5 +++--
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/features/support/helpers/dogtail.rb b/features/support/helpers/dogtail.rb
index 4c289a3546c..03796d50bdb 100644
--- a/features/support/helpers/dogtail.rb
+++ b/features/support/helpers/dogtail.rb
@@ -36,7 +36,7 @@ module Dogtail
       init = []
       if @opts[:user] == LIVE_USER
         cmd = "dbus-send --print-reply=literal --session --dest=org.a11y.Bus /org/a11y/bus org.a11y.Bus.GetAddress"
-        c = RemoteShell::ShellCommand.new($vm, cmd, user: @opts[:user])
+        c = RemoteShell::ShellCommand.new($vm, cmd, user: @opts[:user], debug_log: false)
         if c.returncode != 0
           raise Failure, "dbus-send exited with exit code #{c.returncode}"
         end
diff --git a/features/support/helpers/remote_shell.rb b/features/support/helpers/remote_shell.rb
index e3ff5b928f0..921aeb24cee 100644
--- a/features/support/helpers/remote_shell.rb
+++ b/features/support/helpers/remote_shell.rb
@@ -97,10 +97,11 @@ module RemoteShell
     def self.execute(vm, cmd, **opts)
       opts[:user] ||= 'root'
       opts[:spawn] = false unless opts.key?(:spawn)
+      opts[:debug_log] = true unless opts.key?(:debug_log)
       type = opts[:spawn] ? 'spawn' : 'call'
-      debug_log("Remote shell: #{type}ing as #{opts[:user]}: #{cmd}")
+      debug_log("Remote shell: #{type}ing as #{opts[:user]}: #{cmd}") if opts[:debug_log]
       ret = RemoteShell.communicate(vm, 'sh_' + type, opts[:user], cmd, **opts)
-      debug_log("Remote shell: #{type} returned: #{ret}") unless opts[:spawn]
+      debug_log("Remote shell: #{type} returned: #{ret}") unless opts[:spawn] if opts[:debug_log]
       ret
     end
 
-- 
GitLab


From c3d50620548ea1a9defc2e5a881423230464e09e Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Sun, 12 Feb 2023 20:02:10 +0100
Subject: [PATCH 052/187] Remote Shell: Add debug output

---
 .../usr/local/lib/tails-autotest-remote-shell                 | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell b/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell
index b55ca3bab3a..f2443b04d4b 100755
--- a/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell
+++ b/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell
@@ -240,6 +240,7 @@ def main():
             ret = ""
             if cmd_type in ['sh_call', 'sh_spawn']:
                 user, cmd = rest
+                print(f"Executing as {user}: {cmd}", file=sys.stderr)
                 p = run_cmd_as_user(cmd, user)
                 if cmd_type == "sh_spawn":
                     returncode, stdout, stderr = 0, "", ""
@@ -247,14 +248,17 @@ def main():
                     stdout, stderr = p.communicate()
                     returncode = p.returncode
                 ret = json.dumps([id, 'success', returncode, stdout, stderr])
+                print(f"Result: {ret}")
             elif cmd_type == 'python_execute':
                 user, code = rest
                 if user not in python_sessions or \
                         python_sessions[user].process.poll() is not None:
                     python_sessions[user] = PythonSession(user)
                 session = python_sessions[user]
+                print(f"Executing as {user}:\n{code}", file=sys.stderr)
                 exc, out_str, err_str = session.execute(code)
                 ret = json.dumps([id, 'success', exc, out_str, err_str])
+                print(f"Result: {ret}")
             elif cmd_type in ['file_read', 'file_write', 'file_append']:
                 path, *rest = rest
                 open_mode = cmd_type[5] + 'b'
-- 
GitLab


From 76720346ff801d581ed7c6578bc0db5f1efd962b Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Fri, 24 Feb 2023 16:54:49 +0100
Subject: [PATCH 053/187] Test Suite: Don't print exception for FindFailed
 errors

Those are printed repeatedly so often that it's too much noise.
---
 features/support/helpers/misc_helpers.rb | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/features/support/helpers/misc_helpers.rb b/features/support/helpers/misc_helpers.rb
index 3c2b7ab653d..f2e6134b598 100644
--- a/features/support/helpers/misc_helpers.rb
+++ b/features/support/helpers/misc_helpers.rb
@@ -91,8 +91,13 @@ def try_for(timeout, **options)
         # while trying the block. We save the last exception so we can
         # print it in case of a timeout.
         last_exception = Cucumber::Formatter::BacktraceFilter.new(e).exception
-        debug_log('try_for: failed with exception: ' \
-                  "#{last_exception.class}: #{last_exception}\n#{last_exception.backtrace.join("\n")}") if options[:log]
+        if options[:log]
+          msg = "try_for: failed with exception: #{e.class}: #{e}"
+          if e.class != FindFailed
+            msg += "\n#{last_exception.backtrace.join("\n")}"
+          end
+          debug_log(msg)
+        end
       rescue Exception => e # rubocop:disable Lint/RescueException
         # Any other exception is rethrown as-is: it is probably not
         # the kind of failure that try_for is supposed to mask.
-- 
GitLab


From 6f6cafa61750c6ea7ae10b47a79b464ada67f885 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Fri, 24 Feb 2023 17:04:10 +0100
Subject: [PATCH 054/187] Fix "Then the screen keyboard works in Tor Browser"

The step was failing on my system because a few pixels are missing on
the bottom of the screen keyboard.
---
 features/images/ScreenKeyboardKeyComma_alt.png | Bin 0 -> 383 bytes
 features/step_definitions/browser.rb           |   6 +++---
 2 files changed, 3 insertions(+), 3 deletions(-)
 create mode 100644 features/images/ScreenKeyboardKeyComma_alt.png

diff --git a/features/images/ScreenKeyboardKeyComma_alt.png b/features/images/ScreenKeyboardKeyComma_alt.png
new file mode 100644
index 0000000000000000000000000000000000000000..52fb42844cbcf5bd3cf52eebfc852837d1b585aa
GIT binary patch
literal 383
zcmeAS@N?(olHy`uVBq!ia0vp^hCr;w!3HFA{fq5^6icy_X9x!n)NrJ9FfcHhdAc};
zM6|xWVc5lFDAMrI{=B(L%7$3}2a<1|O?WLTw*Il)fn(eqWs?s0Bt2Cq(@yD~uzv2N
zz4KX^lFerOvUM0v3OZ!ze!aAV<CsL&gyOVWYR3vyS{gbM*3R9p?ZCkpnz}P4Z1WH0
zWS&)BtCH3}t=cQ(bik6m;fO?F=&yb2jULQ2Y}@xfFf^%$!NZI5{omQ)zpdZfTBaW>
zbeU5uU&wU6$1oy$<}%KgyWZXXy~iiiQ&Umt)4SNXZ4o*rES2Y1Onvumcl|p<n+(CN
zc#wwF#@l~4+^w4~!zj|T<G-=(T)(AmXS!S~-U|wzdtSU!aC4I2>Z{@m?S~g$>4@Ce
z@wLkL+|0lKwgWjAJ05@hp@01(&*2H({+cg}c5W$OBxNq45Twmnef2IdL>W9?{an^L
HB{Ts5@uZ@|

literal 0
HcmV?d00001

diff --git a/features/step_definitions/browser.rb b/features/step_definitions/browser.rb
index 105f5585ea0..1244a21a0d6 100644
--- a/features/step_definitions/browser.rb
+++ b/features/step_definitions/browser.rb
@@ -333,18 +333,18 @@ Then /^DuckDuckGo is the default search engine$/ do
 end
 
 Then(/^the screen keyboard works in Tor Browser$/) do
-  osk_key = 'ScreenKeyboardKeyComma.png'
+  osk_key_images = ['ScreenKeyboardKeyComma.png', 'ScreenKeyboardKeyComma_alt.png']
   browser_bar_x = 'BrowserAddressBarComma.png'
   case $language
   when 'Arabic'
     browser_bar_x = 'BrowserAddressBarCommaRTL.png'
   when 'Persian'
-    osk_key = 'ScreenKeyboardKeyCommaPersian.png'
+    osk_key_images = ['ScreenKeyboardKeyCommaPersian.png']
   end
   step 'I start the Tor Browser'
   step 'I open a new tab in the Tor Browser'
   @screen.wait(xul_application_info('Tor Browser')[:address_bar_image], 10).click
   @screen.wait('ScreenKeyboard.png', 20)
-  @screen.wait(osk_key, 20).click
+  @screen.wait_any(osk_key_images, 20)[:match].click
   @screen.wait(browser_bar_x, 20)
 end
-- 
GitLab


From 64477fd328908051d0e95855db7f2879addd7d07 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Sat, 25 Feb 2023 17:11:02 +0100
Subject: [PATCH 055/187] Test Suite: Don't override Dogtail's child method

The original child method already has regex support, we don't need to
implement it ourselves.
---
 features/support/helpers/dogtail.rb | 25 -------------------------
 1 file changed, 25 deletions(-)

diff --git a/features/support/helpers/dogtail.rb b/features/support/helpers/dogtail.rb
index 03796d50bdb..c96e29a3635 100644
--- a/features/support/helpers/dogtail.rb
+++ b/features/support/helpers/dogtail.rb
@@ -273,31 +273,6 @@ module Dogtail
     def parent
       Node.new("#{@var}.parent", **@opts)
     end
-
-    # Override the `child` method to add support for regex matching of
-    # node names, which offers much greater flexibility.
-    def override_child(pattern = nil, **opts)
-      if pattern.instance_of?(Regexp)
-        retries = 20
-        if opts.key?(:retry)
-          retries = 1 unless opts[:retry]
-          opts.delete(:retry)
-        end
-        child = nil
-        retry_action(retries, delay: 1, exception: Failure, msg: "Found no child matching /#{pattern.source}/") do
-          child = children(**opts).find do |c|
-            pattern.match(c.name)
-          end
-          assert_not_nil(child)
-        end
-        child
-      else
-        original_child_method(pattern, **opts)
-      end
-    end
-
-    alias original_child_method child
-    alias child override_child
   end
 
   class Node < Application
-- 
GitLab


From 40a2e9d6d73c1d6a2e8fe117230f67a68ee4d6e3 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Sat, 25 Feb 2023 17:42:30 +0100
Subject: [PATCH 056/187] Test Suite: Make pasting into the browser more robust

refs #19237
---
 features/step_definitions/browser.rb | 19 +++++++++----------
 features/support/helpers/dogtail.rb  | 15 +++++++++++++++
 2 files changed, 24 insertions(+), 10 deletions(-)

diff --git a/features/step_definitions/browser.rb b/features/step_definitions/browser.rb
index 1244a21a0d6..68aa457c59c 100644
--- a/features/step_definitions/browser.rb
+++ b/features/step_definitions/browser.rb
@@ -1,3 +1,7 @@
+def browser
+  Dogtail::Application.new('Firefox')
+end
+
 When /^I (?:try to )?start the Unsafe Browser$/ do
   # XXX:Bookworm: switch to "gio launch" and drop the whole
   # language_has_non_latin_input_source / switch_input_source system.
@@ -109,13 +113,8 @@ When /^I open the address "([^"]*)" in the (.* Browser)( without waiting)?$/ do
   open_address = proc do
     step "I open a new tab in the #{browser_name}"
     @screen.click(info[:address_bar_image])
-    # This static here since we have no reliable visual indicators
-    # that we can watch to know when typing is "safe".
-    sleep 5
-    # The browser sometimes loses keypresses when suggestions are
-    # shown, which we work around by pasting the address from the
-    # clipboard, in one go.
-    @screen.paste(address)
+    # Insert string via Dogtail which is more robust than @screen.paste
+    browser.focused_child.text = address
     @screen.press('Return')
   end
   recovery_on_failure = proc do
@@ -326,9 +325,9 @@ Then /^DuckDuckGo is the default search engine$/ do
     ddg_search_prompt = "DuckDuckGoSearchPrompt#{$language}.png"
   end
   step 'I open a new tab in the Tor Browser'
-  # Typing would require maintaining keymaps for every language in
-  # which we run this step ⇒ instead, paste the search string.
-  @screen.paste('a random search string')
+
+  # Insert string via Dogtail which is more robust than @screen.paste
+  browser.focused_child.text = 'a random search string'
   @screen.wait(ddg_search_prompt, 20)
 end
 
diff --git a/features/support/helpers/dogtail.rb b/features/support/helpers/dogtail.rb
index c96e29a3635..1d8e7f7093c 100644
--- a/features/support/helpers/dogtail.rb
+++ b/features/support/helpers/dogtail.rb
@@ -167,6 +167,21 @@ module Dogtail
       end
     end
 
+    def focused_child
+      node_var = "node#{@@node_counter += 1}"
+      find_script_lines = [
+        "class IsFocused(dogtail.predicate.Predicate):",
+        "    def __init__(self):",
+        "        self.satisfiedByNode = lambda node: node.focused",
+        "    def describeSearchResult(self):",
+        "        return 'focused'",
+        "",
+        "#{node_var} = #{@var}.findChild(IsFocused(), recursive=True, showingOnly=True)",
+      ]
+      run(find_script_lines)
+      Node.new("#{node_var}", **@opts)
+    end
+
     def get_field(key)
       run("print(#{@var}.#{key})").stdout.chomp
     end
-- 
GitLab


From 0b18755de38e98715c7976cad9cd9cdf073a648a Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Tue, 28 Feb 2023 14:24:58 +0100
Subject: [PATCH 057/187] Revert "early_patch: Run different hook in test
 suite"

We decided that developers who want to do different things in the hook
when running in test suite can check for the "unmount" and
"autotest_never_use_this_option".
---
 .gitignore                                           |  1 -
 .../initramfs-tools/scripts/init-bottom/early_patch  | 12 +++---------
 features/step_definitions/common_steps.rb            |  2 +-
 run_test_suite                                       |  2 +-
 4 files changed, 5 insertions(+), 12 deletions(-)

diff --git a/.gitignore b/.gitignore
index c83597310a1..c7eb7a9a79b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -82,4 +82,3 @@
 
 # early_patch= (aka. --early-patch) hook
 /hook
-/hook-test-suite
diff --git a/config/chroot_local-includes/usr/share/initramfs-tools/scripts/init-bottom/early_patch b/config/chroot_local-includes/usr/share/initramfs-tools/scripts/init-bottom/early_patch
index 2fb5fcc394e..448430b283a 100755
--- a/config/chroot_local-includes/usr/share/initramfs-tools/scripts/init-bottom/early_patch
+++ b/config/chroot_local-includes/usr/share/initramfs-tools/scripts/init-bottom/early_patch
@@ -26,15 +26,9 @@ done
 mountpoint=/root/mnt
 mkdir -p "$mountpoint"
 mount -t 9p src "$mountpoint"
-
-# early_patch=test-suite runs a different hook
-if echo "$option" | grep -qw test-suite; then
-    hook="${mountpoint}/hook-test-suite"
-else
-    hook="${mountpoint}/hook"
-fi
-if [ -x "${hook}" ]; then
-    "${hook}" /root || true
+if [ -x "${mountpoint}/hook" ]
+then
+    "${mountpoint}/hook" /root || true
 fi
 
 # early_patch=umount will umount the filesystem immediately after running the hook
diff --git a/features/step_definitions/common_steps.rb b/features/step_definitions/common_steps.rb
index 2de3129ae2f..0f1532155f4 100644
--- a/features/step_definitions/common_steps.rb
+++ b/features/step_definitions/common_steps.rb
@@ -318,7 +318,7 @@ end
 Given /^the computer (?:re)?boots Tails( with genuine APT sources)?$/ do |keep_apt_sources|
   enter_boot_menu_cmdline
   boot_key = @os_loader == 'UEFI' ? 'F10' : 'Return'
-  early_patch = $config['EARLY_PATCH'] ? ' early_patch=test-suite,umount' : ''
+  early_patch = $config['EARLY_PATCH'] ? ' early_patch=umount' : ''
   @screen.type(' autotest_never_use_this_option' \
                ' blacklist=psmouse' \
                " #{early_patch} #{@boot_options}",
diff --git a/run_test_suite b/run_test_suite
index 2fe6a0da45e..03e4dce6c36 100755
--- a/run_test_suite
+++ b/run_test_suite
@@ -92,7 +92,7 @@ Options for '@product' features:
                      source and destination.
                      lines without a tab are ignored.
                      lines with a leading \"#\" are ignored.
-  --early-patch      Boots the system with the \"early_patch=test-suite,umount\" cmdline option.
+  --early-patch      Boots the system with the \"early_patch=umount\" cmdline option.
                      See wiki/src/contribute/build/early-patch.mdwn for details
                      This is useful when you need something to be patched early
                      in the boot process; or if you need to run arbitrary
-- 
GitLab


From 9ddc0741a695ccfe3a553b9bd839ee71e60986ae Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Tue, 28 Feb 2023 14:27:53 +0100
Subject: [PATCH 058/187] run_test_suite: Add --extra-boot-options

---
 features/step_definitions/common_steps.rb | 7 ++++++-
 features/support/config.rb                | 1 +
 run_test_suite                            | 7 ++++++-
 3 files changed, 13 insertions(+), 2 deletions(-)

diff --git a/features/step_definitions/common_steps.rb b/features/step_definitions/common_steps.rb
index 0f1532155f4..a5edddbc5ca 100644
--- a/features/step_definitions/common_steps.rb
+++ b/features/step_definitions/common_steps.rb
@@ -319,9 +319,14 @@ Given /^the computer (?:re)?boots Tails( with genuine APT sources)?$/ do |keep_a
   enter_boot_menu_cmdline
   boot_key = @os_loader == 'UEFI' ? 'F10' : 'Return'
   early_patch = $config['EARLY_PATCH'] ? ' early_patch=umount' : ''
+  if $config['EXTRA_BOOT_OPTIONS']
+    extra_boot_options = $config['EXTRA_BOOT_OPTIONS']
+  else
+    extra_boot_options = ''
+  end
   @screen.type(' autotest_never_use_this_option' \
                ' blacklist=psmouse' \
-               " #{early_patch} #{@boot_options}",
+               " #{early_patch} #{@boot_options} #{extra_boot_options}",
                [boot_key])
   @screen.wait('TailsGreeter.png', 5 * 60)
   # When enter_boot_menu_cmdline has rebooted the system after the Greeter
diff --git a/features/support/config.rb b/features/support/config.rb
index 1919ec1e53a..93d0867d248 100644
--- a/features/support/config.rb
+++ b/features/support/config.rb
@@ -46,6 +46,7 @@ KEEP_SNAPSHOTS = !ENV['KEEP_SNAPSHOTS'].nil?
 DISABLE_CHUTNEY = !ENV['DISABLE_CHUTNEY'].nil?
 LATE_PATCH = ENV['LATE_PATCH']
 EARLY_PATCH = !ENV['EARLY_PATCH'].nil?
+EXTRA_BOOT_OPTIONS = ENV['EXTRA_BOOT_OPTIONS']
 LIVE_USER = cmd_helper(
   '. config/chroot_local-includes/etc/live/config.d/username.conf; ' \
   'echo ${LIVE_USERNAME}'
diff --git a/run_test_suite b/run_test_suite
index 03e4dce6c36..b6abe68c731 100755
--- a/run_test_suite
+++ b/run_test_suite
@@ -236,8 +236,9 @@ KEEP_SNAPSHOTS=
 TAILS_ISO=
 OLD_TAILS_ISO=
 EARLY_PATCH=
+EXTRA_BOOT_OPTIONS=
 
-LONGOPTS="allow-non-root,artifacts-base-uri:,view,view-interact,vnc-server-only,capture,capture-all,help,tmpdir:,keep-chutney,keep-snapshots,disable-chutney,late-patch:,early-patch,iso:,old-iso:,interactive-debugging,image-bumping-mode"
+LONGOPTS="allow-non-root,artifacts-base-uri:,view,view-interact,vnc-server-only,capture,capture-all,help,tmpdir:,keep-chutney,keep-snapshots,disable-chutney,late-patch:,early-patch,extra-boot-options:,iso:,old-iso:,interactive-debugging,image-bumping-mode"
 OPTS=$(getopt -o "" --longoptions $LONGOPTS -n "${NAME}" -- "$@")
 eval set -- "$OPTS"
 while [ $# -gt 0 ]; do
@@ -303,6 +304,10 @@ while [ $# -gt 0 ]; do
         --early-patch)
             export EARLY_PATCH="yes"
             ;;
+        --extra-boot-options)
+            shift
+            export EXTRA_BOOT_OPTIONS="$1"
+            ;;
         --tmpdir)
             shift
             TMPDIR="$(readlink -f "$1")"
-- 
GitLab


From 49852633ac3558efa8222b07d7b08d0b93b81192 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Tue, 28 Feb 2023 18:19:36 +0100
Subject: [PATCH 059/187] Test suite usage doc: Document EXTRA_BOOT_OPTIONS

---
 wiki/src/contribute/release_process/test/usage.mdwn | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/wiki/src/contribute/release_process/test/usage.mdwn b/wiki/src/contribute/release_process/test/usage.mdwn
index 0b665967e02..f8957dac9ff 100644
--- a/wiki/src/contribute/release_process/test/usage.mdwn
+++ b/wiki/src/contribute/release_process/test/usage.mdwn
@@ -102,6 +102,9 @@ by the local configuration file:
 * `CAPTURE_ALL`: Keep videos for all scenarios, including those that
   succeed (implies `CAPTURE`). Defaults to `false`.
 
+* `EXTRA_BOOT_OPTIONS`: String value. Specify additional kernel
+  command-line options for the VM, for example `"rootpw=root"`.
+
 * `MAX_NEW_TOR_CIRCUIT_RETRIES`: Integer. Upon failure, some test steps may be
   run again after requesting that connections are made using new Tor circuits. This
   configuration variable limits how many times forcing a circuit will be
-- 
GitLab


From 88ec9b35a26838f2e1da4c42ef4a64a7345dc4df Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Tue, 28 Feb 2023 18:25:26 +0100
Subject: [PATCH 060/187] Test suite usage doc: Document
 RESTRICT_CHUTNEY_MEMORY

---
 wiki/src/contribute/release_process/test/usage.mdwn | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/wiki/src/contribute/release_process/test/usage.mdwn b/wiki/src/contribute/release_process/test/usage.mdwn
index f8957dac9ff..5cbebcea60d 100644
--- a/wiki/src/contribute/release_process/test/usage.mdwn
+++ b/wiki/src/contribute/release_process/test/usage.mdwn
@@ -127,6 +127,12 @@ by the local configuration file:
   you (and display the match in a pop-up, so you can confirm) but
   YMMV. Defaults to `false`.
 
+* `RESTRICT_CHUTNEY_MEMORY`: Boolean value. If set to `true`, the
+  simulated Tor network (Chutney) will be run in a systemd scope with
+  memory restriction. By default, `MemoryHigh=4G` and `MemoryMax=6G` are
+  used. To use different values, set the `CHUTNEY_MEMORY_HIGH` and
+  `CHUTNEY_MEMORY_MAX` environment variables.
+
 * `TMPDIR`: String value. Directory where various temporary files
   are written during a test, e.g. VM snapshots and memory dumps,
   failure screenshots, pcap files and disk images. Defaults to
-- 
GitLab


From 15cb271b410c350068e4808083ffe6af2972e4a6 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Tue, 28 Feb 2023 23:49:27 +0100
Subject: [PATCH 061/187] Replace swapon

We used to disable swapon to avoid any initscripts to set up swap. We do
want to use swap now, but only zram swap. So instead of replacing swapon
with a noop, we check if its arguments contain a zram device and call
the real swapon in that case.
---
 config/chroot_local-hooks/05-disable_swapon | 21 --------------
 config/chroot_local-hooks/05-replace_swapon | 31 +++++++++++++++++++++
 2 files changed, 31 insertions(+), 21 deletions(-)
 delete mode 100755 config/chroot_local-hooks/05-disable_swapon
 create mode 100755 config/chroot_local-hooks/05-replace_swapon

diff --git a/config/chroot_local-hooks/05-disable_swapon b/config/chroot_local-hooks/05-disable_swapon
deleted file mode 100755
index 16af130d713..00000000000
--- a/config/chroot_local-hooks/05-disable_swapon
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/bin/sh
-
-set -e
-
-echo "Disabling swapon"
-
-# Disable swapon to avoid initscripts to setup swap space.
-# Rationale: security-in-depth model.
-
-SWAPON=/sbin/swapon
-
-# Move any /sbin/swapon installed by any package out of the way,
-# now (--rename) as well for any future one (hint: apt-get upgrade...).
-dpkg-divert --rename --add /sbin/swapon
-
-# Install a custom noop swapon executable instead.
-cat > $SWAPON << 'EOF'
-#!/bin/sh
-/bin/true
-EOF
-chmod 755 $SWAPON
diff --git a/config/chroot_local-hooks/05-replace_swapon b/config/chroot_local-hooks/05-replace_swapon
new file mode 100755
index 00000000000..45c64e675dd
--- /dev/null
+++ b/config/chroot_local-hooks/05-replace_swapon
@@ -0,0 +1,31 @@
+#!/bin/sh
+
+set -e
+
+echo "Replacing swapon executable"
+
+# Only allow setting up swap for zram devices. This is not perfect,
+# swapon could be called with multiple devices at once which will
+# result in the real swapon being called if any of the devices is a
+# zram device. It's still better than nothing.
+# Rationale: security-in-depth model.
+
+SWAPON=/sbin/swapon
+
+# Move any /sbin/swapon installed by any package out of the way,
+# now (--rename) as well for any future one (hint: apt-get upgrade...).
+dpkg-divert --rename --add /sbin/swapon
+
+cat > $SWAPON << 'EOF'
+#!/bin/sh
+
+set -eu
+
+if ! echo "$@" | grep -q /dev/zram; then
+  echo >&2 "Setting up swap is only allowed for zram devices"
+  exit 1
+fi
+
+/sbin/swapon.distrib "$@"
+EOF
+chmod 755 $SWAPON
-- 
GitLab


From bf41c635475c2e10d283dee1ca3bde388339dbd9 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Tue, 28 Feb 2023 23:31:22 +0100
Subject: [PATCH 062/187] Use zram

zram allows us to use swap securely (i.e. without writing anything to
a physical drive) and fast (because nothing is written to a physical
drive).

Refs:
* https://fedoraproject.org/wiki/Changes/SwapOnZRAM
* https://fedoraproject.org/wiki/Changes/Scale_ZRAM_to_full_memory_size

Closes #5740
---
 .../etc/default/zramswap                      | 22 +++++++++++++++++++
 .../tails-common.list                         |  1 +
 2 files changed, 23 insertions(+)
 create mode 100644 config/chroot_local-includes/etc/default/zramswap

diff --git a/config/chroot_local-includes/etc/default/zramswap b/config/chroot_local-includes/etc/default/zramswap
new file mode 100644
index 00000000000..f49f46907c2
--- /dev/null
+++ b/config/chroot_local-includes/etc/default/zramswap
@@ -0,0 +1,22 @@
+# Compression algorithm selection
+# speed: lz4 > zstd > lzo
+# compression: zstd > lzo > lz4
+# This is not inclusive of all that is available in latest kernels
+# See /sys/block/zram0/comp_algorithm (when zram module is loaded) to see
+# what is currently set and available for your kernel[1]
+# [1]  https://github.com/torvalds/linux/blob/master/Documentation/blockdev/zram.txt#L86
+#ALGO=lz4
+
+# Specifies the amount of RAM that should be used for zram
+# based on a percentage the total amount of available memory
+# This takes precedence and overrides SIZE below
+PERCENT=100
+
+# Specifies a static amount of RAM that should be used for
+# the ZRAM devices, this is in MiB
+#SIZE=256
+
+# Specifies the priority for the swap devices, see swapon(2)
+# for more details. Higher number = higher priority
+# This should probably be higher than hdd/ssd swaps.
+PRIORITY=100
diff --git a/config/chroot_local-packageslists/tails-common.list b/config/chroot_local-packageslists/tails-common.list
index 4b318035adf..8ce94f05f1f 100644
--- a/config/chroot_local-packageslists/tails-common.list
+++ b/config/chroot_local-packageslists/tails-common.list
@@ -240,6 +240,7 @@ wireless-tools
 xdg-user-dirs-gtk
 xsel
 xz-utils
+zram-tools
 
 #if ARCHITECTURE amd64
 open-vm-tools
-- 
GitLab


From 95b26e672cef3c8b0753ead7295b6fc26d90b63c Mon Sep 17 00:00:00 2001
From: boyska <boyska@riseup.net>
Date: Wed, 1 Mar 2023 12:05:33 +0100
Subject: [PATCH 063/187] rubocop --auto-correct

---
 features/step_definitions/common_steps.rb |  6 +--
 features/step_definitions/usb.rb          |  8 +--
 features/support/extra_hooks.rb           | 10 ++--
 features/support/helpers/dogtail.rb       | 64 +++++++++++++----------
 features/support/helpers/misc_helpers.rb  | 60 ++++++++++-----------
 features/support/helpers/remote_shell.rb  |  4 +-
 6 files changed, 77 insertions(+), 75 deletions(-)

diff --git a/features/step_definitions/common_steps.rb b/features/step_definitions/common_steps.rb
index a5edddbc5ca..513195fb220 100644
--- a/features/step_definitions/common_steps.rb
+++ b/features/step_definitions/common_steps.rb
@@ -319,11 +319,7 @@ Given /^the computer (?:re)?boots Tails( with genuine APT sources)?$/ do |keep_a
   enter_boot_menu_cmdline
   boot_key = @os_loader == 'UEFI' ? 'F10' : 'Return'
   early_patch = $config['EARLY_PATCH'] ? ' early_patch=umount' : ''
-  if $config['EXTRA_BOOT_OPTIONS']
-    extra_boot_options = $config['EXTRA_BOOT_OPTIONS']
-  else
-    extra_boot_options = ''
-  end
+  extra_boot_options = $config['EXTRA_BOOT_OPTIONS'] || ''
   @screen.type(' autotest_never_use_this_option' \
                ' blacklist=psmouse' \
                " #{early_patch} #{@boot_options} #{extra_boot_options}",
diff --git a/features/step_definitions/usb.rb b/features/step_definitions/usb.rb
index dead7516746..614c43ebb83 100644
--- a/features/step_definitions/usb.rb
+++ b/features/step_definitions/usb.rb
@@ -68,14 +68,14 @@ def persistent_storage_main_frame
 end
 
 def persistent_directory_is_active(**opts)
-  opts[:user] = "root"
+  opts[:user] = 'root'
   opts[:use_system_bus] = true
   dbus_send(
     'org.boum.tails.PersistentStorage',
     '/org/boum/tails/PersistentStorage/Features/PersistentDirectory',
-    "org.freedesktop.DBus.Properties.Get",
-    "org.boum.tails.PersistentStorage.Feature",
-    "IsActive",
+    'org.freedesktop.DBus.Properties.Get',
+    'org.boum.tails.PersistentStorage.Feature',
+    'IsActive',
     **opts
   )
 end
diff --git a/features/support/extra_hooks.rb b/features/support/extra_hooks.rb
index 6fa719605fb..a1e313ef158 100644
--- a/features/support/extra_hooks.rb
+++ b/features/support/extra_hooks.rb
@@ -127,11 +127,11 @@ module ExtraFormatters
 
     # Recursively print the exception and all previous exceptions
     def print_exception(e, status, indent)
-        super(e, status, indent)
-        if e.cause
-          cause = Cucumber::Formatter::BacktraceFilter.new(e.cause.dup).exception
-          print_exception(cause, status, indent)
-        end
+      super(e, status, indent)
+      if e.cause
+        cause = Cucumber::Formatter::BacktraceFilter.new(e.cause.dup).exception
+        print_exception(cause, status, indent)
+      end
     end
   end
 end
diff --git a/features/support/helpers/dogtail.rb b/features/support/helpers/dogtail.rb
index 1d8e7f7093c..0d483b90dda 100644
--- a/features/support/helpers/dogtail.rb
+++ b/features/support/helpers/dogtail.rb
@@ -35,11 +35,12 @@ module Dogtail
 
       init = []
       if @opts[:user] == LIVE_USER
-        cmd = "dbus-send --print-reply=literal --session --dest=org.a11y.Bus /org/a11y/bus org.a11y.Bus.GetAddress"
+        cmd = 'dbus-send --print-reply=literal --session --dest=org.a11y.Bus /org/a11y/bus org.a11y.Bus.GetAddress'
         c = RemoteShell::ShellCommand.new($vm, cmd, user: @opts[:user], debug_log: false)
         if c.returncode != 0
           raise Failure, "dbus-send exited with exit code #{c.returncode}"
         end
+
         a11y_bus = c.stdout.strip
         init = [
           'import os',
@@ -170,16 +171,16 @@ module Dogtail
     def focused_child
       node_var = "node#{@@node_counter += 1}"
       find_script_lines = [
-        "class IsFocused(dogtail.predicate.Predicate):",
-        "    def __init__(self):",
-        "        self.satisfiedByNode = lambda node: node.focused",
-        "    def describeSearchResult(self):",
+        'class IsFocused(dogtail.predicate.Predicate):',
+        '    def __init__(self):',
+        '        self.satisfiedByNode = lambda node: node.focused',
+        '    def describeSearchResult(self):',
         "        return 'focused'",
-        "",
+        '',
         "#{node_var} = #{@var}.findChild(IsFocused(), recursive=True, showingOnly=True)",
       ]
       run(find_script_lines)
-      Node.new("#{node_var}", **@opts)
+      Node.new(node_var.to_s, **@opts)
     end
 
     def get_field(key)
@@ -232,53 +233,53 @@ module Dogtail
 
     def call_tree_api_method(method, *args, **kwargs)
       args[0] = translate(args[0], **@opts) if args[0].instance_of?(String)
-        args_str = self.class.args_to_s(*args, **kwargs)
-        method_call = "#{method}(#{args_str})"
-        Node.new("#{@var}.#{method_call}", **@opts)
+      args_str = self.class.args_to_s(*args, **kwargs)
+      method_call = "#{method}(#{args_str})"
+      Node.new("#{@var}.#{method_call}", **@opts)
     end
 
     def button(*args, **kwargs)
-      call_tree_api_method("button", *args, **kwargs)
+      call_tree_api_method('button', *args, **kwargs)
     end
 
     def child(*args, **kwargs)
-      call_tree_api_method("child", *args, **kwargs)
+      call_tree_api_method('child', *args, **kwargs)
     end
 
     def childLabelled(*args, **kwargs)
-      call_tree_api_method("childLabelled", *args, **kwargs)
+      call_tree_api_method('childLabelled', *args, **kwargs)
     end
 
     def childNamed(*args, **kwargs)
-      call_tree_api_method("childNamed", *args, **kwargs)
+      call_tree_api_method('childNamed', *args, **kwargs)
     end
 
     def menu(*args, **kwargs)
-      call_tree_api_method("menu", *args, **kwargs)
+      call_tree_api_method('menu', *args, **kwargs)
     end
 
     def menuItem(*args, **kwargs)
-      call_tree_api_method("menuItem", *args, **kwargs)
+      call_tree_api_method('menuItem', *args, **kwargs)
     end
 
     def panel(*args, **kwargs)
-      call_tree_api_method("panel", *args, **kwargs)
+      call_tree_api_method('panel', *args, **kwargs)
     end
 
     def tab(*args, **kwargs)
-      call_tree_api_method("tab", *args, **kwargs)
+      call_tree_api_method('tab', *args, **kwargs)
     end
 
     def textentry(*args, **kwargs)
-      call_tree_api_method("textentry", *args, **kwargs)
+      call_tree_api_method('textentry', *args, **kwargs)
     end
 
     def dialog(*args, **kwargs)
-      call_tree_api_method("dialog", *args, **kwargs)
+      call_tree_api_method('dialog', *args, **kwargs)
     end
 
     def window(*args, **kwargs)
-      call_tree_api_method("window", *args, **kwargs)
+      call_tree_api_method('window', *args, **kwargs)
     end
 
     def labelee
@@ -307,30 +308,35 @@ module Dogtail
     end
 
     def doActionNamed(action_name)
-      call_tree_node_method("doActionNamed", action_name)
+      call_tree_node_method('doActionNamed', action_name)
     end
 
     def grabFocus
-      call_tree_node_method("grabFocus")
+      call_tree_node_method('grabFocus')
     end
 
     def activate
-      doActionNamed("activate")
+      doActionNamed('activate')
     end
+
     def click
-      doActionNamed("click")
+      doActionNamed('click')
     end
+
     def open
-      doActionNamed("open")
+      doActionNamed('open')
     end
+
     def press
-      doActionNamed("press")
+      doActionNamed('press')
     end
+
     def select
-      doActionNamed("select")
+      doActionNamed('select')
     end
+
     def toggle
-      doActionNamed("toggle")
+      doActionNamed('toggle')
     end
 
     def position
diff --git a/features/support/helpers/misc_helpers.rb b/features/support/helpers/misc_helpers.rb
index f2e6134b598..5cb1cecae4f 100644
--- a/features/support/helpers/misc_helpers.rb
+++ b/features/support/helpers/misc_helpers.rb
@@ -198,36 +198,34 @@ def retry_action(max_retries, **options, &block)
 
   retries = 1
   loop do
-    begin
-      debug_log("retry_action: trying #{options[:operation_name]} (attempt " \
-                "#{retries} of #{max_retries})...")
-      block.call
-      debug_log('retry_action: success!')
-      return
-    rescue NameError => e
-      # NameError most likely means typos, and hiding that is rarely
-      # (never?) a good idea, so we rethrow them.
-      raise e
-    rescue StandardError => e
-      if retries <= max_retries
-        debug_log("retry_action: #{options[:operation_name]} failed with " \
-                  "exception: #{e.class}: #{e.message}")
-        options[:recovery_proc]&.call
-        retries += 1
-        sleep options[:delay]
-      else
-        raise MaxRetriesFailure,
-              "#{options[:operation_name]} failed (despite retrying " \
-              "#{max_retries} times) with\n" \
-              "#{e.class}: #{e.message}"
-      end
-    rescue Exception => e # rubocop:disable Lint/RescueException
-      # Any other exception is rethrown as-is: it is probably not
-      # the kind of failure that retry_action is supposed to mask.
-      # For example, retry_action should not prevent a SignalException
-      # from being handled by Ruby.
-      raise e
+    debug_log("retry_action: trying #{options[:operation_name]} (attempt " \
+              "#{retries} of #{max_retries})...")
+    block.call
+    debug_log('retry_action: success!')
+    return
+  rescue NameError => e
+    # NameError most likely means typos, and hiding that is rarely
+    # (never?) a good idea, so we rethrow them.
+    raise e
+  rescue StandardError => e
+    if retries <= max_retries
+      debug_log("retry_action: #{options[:operation_name]} failed with " \
+                "exception: #{e.class}: #{e.message}")
+      options[:recovery_proc]&.call
+      retries += 1
+      sleep options[:delay]
+    else
+      raise MaxRetriesFailure,
+            "#{options[:operation_name]} failed (despite retrying " \
+            "#{max_retries} times) with\n" \
+            "#{e.class}: #{e.message}"
     end
+  rescue Exception => e # rubocop:disable Lint/RescueException
+    # Any other exception is rethrown as-is: it is probably not
+    # the kind of failure that retry_action is supposed to mask.
+    # For example, retry_action should not prevent a SignalException
+    # from being handled by Ruby.
+    raise e
   end
 end
 
@@ -401,7 +399,7 @@ def dbus_send_ret_conv(ret)
   type, val = /^\s*(\S+)\s+(.+)$/m.match(ret)[1, 2]
   case type
   when 'variant'
-    return dbus_send_ret_conv(val)
+    dbus_send_ret_conv(val)
   when 'string'
     # Unquote
     val[1...-1]
@@ -420,7 +418,7 @@ end
 def dbus_send_get_shellcommand(service, object_path, method, *args, **opts)
   opts ||= {}
   opts[:use_system_bus] ||= false
-  bus_arg = opts[:use_system_bus] ? "--system" : "--session"
+  bus_arg = opts[:use_system_bus] ? '--system' : '--session'
 
   ruby_type_to_dbus_type = {
     String  => 'string',
diff --git a/features/support/helpers/remote_shell.rb b/features/support/helpers/remote_shell.rb
index 921aeb24cee..250a0f4dae4 100644
--- a/features/support/helpers/remote_shell.rb
+++ b/features/support/helpers/remote_shell.rb
@@ -101,7 +101,9 @@ module RemoteShell
       type = opts[:spawn] ? 'spawn' : 'call'
       debug_log("Remote shell: #{type}ing as #{opts[:user]}: #{cmd}") if opts[:debug_log]
       ret = RemoteShell.communicate(vm, 'sh_' + type, opts[:user], cmd, **opts)
-      debug_log("Remote shell: #{type} returned: #{ret}") unless opts[:spawn] if opts[:debug_log]
+      if opts[:debug_log]
+        debug_log("Remote shell: #{type} returned: #{ret}") unless opts[:spawn]
+end
       ret
     end
 
-- 
GitLab


From 340f12f9c2e20d9b34ac9de4eb0086c39f277826 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Thu, 2 Feb 2023 13:16:59 +0100
Subject: [PATCH 064/187] Test Suite: Add scenario "Creating a Persistent
 Storage"

---
 features/persistence.feature              | 12 ++++++++++++
 features/step_definitions/common_steps.rb |  4 ++++
 2 files changed, 16 insertions(+)

diff --git a/features/persistence.feature b/features/persistence.feature
index ea3e4c2469a..5e1b8bdc286 100644
--- a/features/persistence.feature
+++ b/features/persistence.feature
@@ -16,6 +16,18 @@ Feature: Tails persistence
     And persistence is disabled
     But a Tails persistence partition exists on USB drive "__internal"
 
+  Scenario: Creating a Persistent Storage
+    Given I have started Tails without network from a USB drive without a persistent partition and logged in
+    Then Tails is running from USB drive "__internal"
+    When I create a directory "/home/amnesia/Persistent"
+    And I write a file "/home/amnesia/Persistent/foo" with contents "foo"
+    And I create a persistent partition with the default settings
+    Then the file "/live/persistence/TailsData_unlocked/Persistent/foo" exists
+    And I shutdown Tails and wait for the computer to power off
+    And I start Tails from USB drive "__internal" with network unplugged and I login with persistence enabled
+    Then persistence for "Persistent" is enabled
+    And the file "/home/amnesia/Persistent/foo" exists
+
   Scenario: Booting Tails from a USB drive with an enabled persistent partition and reconfiguring it
     Given I have started Tails without network from a USB drive with a persistent partition enabled and logged in
     Then Tails is running from USB drive "__internal"
diff --git a/features/step_definitions/common_steps.rb b/features/step_definitions/common_steps.rb
index 513195fb220..d58af4b4dd7 100644
--- a/features/step_definitions/common_steps.rb
+++ b/features/step_definitions/common_steps.rb
@@ -1404,6 +1404,10 @@ Then(/^the layout of the screen keyboard is set to "([^"]+)"$/) do |layout|
   @screen.find("ScreenKeyboardLayout#{layout.upcase}.png")
 end
 
+Given /^I create a directory "(\S+)"$/ do |path|
+  $vm.execute_successfully("mkdir #{path}")
+end
+
 Given /^I write a file "(\S+)" with contents "([^"]*)"$/ do |path, content|
   $vm.file_overwrite(path, content)
 end
-- 
GitLab


From af6491cfb7c7f611522b825c4d97c42ab5bebb73 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Thu, 2 Feb 2023 14:08:57 +0100
Subject: [PATCH 065/187] Test Suite: Add scenario "Activating and deactivating
 Persistent Storage features"

---
 features/persistence.feature     | 13 +++++++++++++
 features/step_definitions/usb.rb | 21 +++++++++++++++------
 2 files changed, 28 insertions(+), 6 deletions(-)

diff --git a/features/persistence.feature b/features/persistence.feature
index 5e1b8bdc286..7568a350e81 100644
--- a/features/persistence.feature
+++ b/features/persistence.feature
@@ -38,6 +38,19 @@ Feature: Tails persistence
     And I start Tails from USB drive "__internal" with network unplugged and I login with persistence enabled
     Then all persistence presets but the first one are enabled
 
+  Scenario: Activating and deactivating Persistent Storage features
+    Given I have started Tails without network from a USB drive with a persistent partition enabled and logged in
+    Then persistence for "Persistent" is enabled
+    And the directory "/home/amnesia/Persistent" exists
+    When I write a file "/home/amnesia/Persistent/foo" with contents "foo"
+    Then the file "/live/persistence/TailsData_unlocked/Persistent/foo" exists
+    When I disable the first persistence preset
+    Then persistence for "Persistent" is not enabled
+    And the directory "/home/amnesia/Persistent" does not exist
+    When I enable the first persistence preset
+    Then persistence for "Persistent" is enabled
+    And the file "/home/amnesia/Persistent/foo" exists
+
   Scenario: Writing files to a read/write-enabled persistent partition
     Given I have started Tails without network from a USB drive with a persistent partition enabled and logged in
     And the network is plugged
diff --git a/features/step_definitions/usb.rb b/features/step_definitions/usb.rb
index 614c43ebb83..ee610bdd600 100644
--- a/features/step_definitions/usb.rb
+++ b/features/step_definitions/usb.rb
@@ -218,22 +218,31 @@ def enable_all_persistence_presets
   end
 end
 
-When /^I disable the first persistence preset$/ do
+When /^I (enable|disable) the first persistence preset$/ do |mode|
   step 'I start "Persistent Storage" via GNOME Activities Overview'
   assert persistent_storage_main_frame.child('Personal Documents', roleName: 'label')
   persistent_folder_switch = persistent_storage_main_frame.child(
     'Activate Persistent Folder',
     roleName: 'toggle button'
   )
-  assert persistent_folder_switch.checked
+  if mode == "enable"
+    assert !persistent_folder_switch.checked
+  else
+    assert persistent_folder_switch.checked
+  end
+
   persistent_folder_switch.toggle
   try_for(10) do
-    assert !persistent_folder_switch.checked
     # GtkSwitch does not expose its underlying state via AT-SPI (the
     # accessible has the "check" state when the switch is on but the
-    # underlying state is false) so we check via D-Bus that the
-    # Persistent Directory feature is inactive.
-    !persistent_directory_is_active
+    # underlying state is false) so we check the state via D-Bus.
+    if mode == "enable"
+      assert persistent_folder_switch.checked
+      persistent_directory_is_active
+    else
+      assert !persistent_folder_switch.checked
+      !persistent_directory_is_active
+    end
   end
   @screen.press('alt', 'F4')
 end
-- 
GitLab


From 23990117bc7e794c8a60b04df73f19acfcc60fcf Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Thu, 2 Feb 2023 14:30:38 +0100
Subject: [PATCH 066/187] Test Suite: Add scenario "Changing the Persistent
 Storage passphrase"

---
 features/persistence.feature              | 10 ++++
 features/step_definitions/common_steps.rb |  3 +-
 features/step_definitions/usb.rb          | 56 ++++++++++++++++++++++-
 features/support/hooks.rb                 |  1 +
 4 files changed, 67 insertions(+), 3 deletions(-)

diff --git a/features/persistence.feature b/features/persistence.feature
index 7568a350e81..6b1e0f83754 100644
--- a/features/persistence.feature
+++ b/features/persistence.feature
@@ -95,6 +95,16 @@ Feature: Tails persistence
     When I log in to a new session after having activated the Persistent Storage
     Then all Greeter options are set to non-default values
 
+  Scenario: Changing the Persistent Storage passphrase
+    Given I have started Tails without network from a USB drive with a persistent partition enabled and logged in
+    # Note that if anything fails after the passphrase was changed and
+    # before it's changed back below, subsequent scenarios might fail
+    # because the Persistent Storage doesn't have the expected passphrase.
+    When I change the passphrase of the Persistent Storage
+    And I shutdown Tails and wait for the computer to power off
+    Then I start Tails from USB drive "__internal" with network unplugged and I login with the changed persistence passphrase
+    And I change the passphrase of the Persistent Storage back to the original
+
   Scenario: Deleting a Tails persistent partition
     Given I have started Tails without network from a USB drive with a persistent partition and stopped at Tails Greeter's login screen
     And I log in to a new session without activating the Persistent Storage
diff --git a/features/step_definitions/common_steps.rb b/features/step_definitions/common_steps.rb
index d58af4b4dd7..67a82bac85d 100644
--- a/features/step_definitions/common_steps.rb
+++ b/features/step_definitions/common_steps.rb
@@ -165,7 +165,7 @@ Given /^I start Tails( from DVD)?( with network unplugged)?( and genuine APT sou
   end
 end
 
-Given /^I start Tails from (.+?) drive "(.+?)"( with network unplugged)?( and I login( with persistence enabled)?( (?:and|with) an administration password)?)?$/ do |drive_type, drive_name, network_unplugged, do_login, persistence_on, admin_password| # rubocop:disable Metrics/ParameterLists
+Given /^I start Tails from (.+?) drive "(.+?)"( with network unplugged)?( and I login( with persistence enabled)?( with the changed persistence passphrase)?( (?:and|with) an administration password)?)?$/ do |drive_type, drive_name, network_unplugged, do_login, persistence_on, persistence_with_changed_passphrase, admin_password| # rubocop:disable Metrics/ParameterLists
   step "the computer is set to boot from #{drive_type} drive \"#{drive_name}\""
   if network_unplugged
     step 'the network is unplugged'
@@ -176,6 +176,7 @@ Given /^I start Tails from (.+?) drive "(.+?)"( with network unplugged)?( and I
   step 'the computer boots Tails'
   if do_login
     step 'I enable persistence' if persistence_on
+    step 'I enable persistence with the changed passphrase' if persistence_with_changed_passphrase
     step 'I set an administration password' if admin_password
     step 'I log in to a new session'
     step 'the Additional Software installation service has started'
diff --git a/features/step_definitions/usb.rb b/features/step_definitions/usb.rb
index ee610bdd600..ae6be3f82eb 100644
--- a/features/step_definitions/usb.rb
+++ b/features/step_definitions/usb.rb
@@ -276,6 +276,53 @@ Given /^I create a persistent partition( with the default settings| for Addition
   enable_all_persistence_presets unless default_settings
 end
 
+Given /^I change the passphrase of the Persistent Storage( back to the original)?$/ do |change_back|
+  if change_back
+    current_passphrase = @changed_persistence_password
+    new_passphrase = @persistence_password
+  else
+    current_passphrase = @persistence_password
+    new_passphrase = @changed_persistence_password
+  end
+
+  step 'I start "Persistent Storage" via GNOME Activities Overview'
+
+  # We can't use the click action here because this button causes a
+  # modal dialog to be run via gtk_dialog_run() which causes the
+  # application to hang when triggered via a ATSPI action. See
+  # https://gitlab.gnome.org/GNOME/gtk/-/issues/1281
+  persistent_storage_main_frame.button('Change Passphrase').grabFocus
+  @screen.press("Return")
+  change_passphrase_dialog = persistent_storage_frontend.child(
+    'Change Passphrase', roleName: 'dialog',
+  )
+  change_passphrase_dialog
+    .child('Current Passphrase', roleName: 'label')
+    .labelee
+    .grabFocus
+  @screen.type(current_passphrase)
+  change_passphrase_dialog
+    .child('New Passphrase', roleName: 'label')
+    .labelee
+    .grabFocus
+  @screen.type(new_passphrase)
+  change_passphrase_dialog
+    .child('Confirm New Passphrase', roleName: 'label')
+    .labelee
+    .grabFocus
+  @screen.type(new_passphrase)
+  change_passphrase_dialog.button('Change').click
+  # Wait for the dialog to close
+  try_for(30) do
+    persistent_storage_frontend.child('Change Passphrase', roleName: 'dialog')
+  rescue Dogtail::Failure
+    # The dialog couldn't be found, which is what we want
+    true
+  else
+    false
+  end
+end
+
 def check_disk_integrity(name, dev, scheme)
   info = $vm.execute("udisksctl info --block-device '#{dev}'").stdout
   info_split = info.split("\n  org\.freedesktop\.UDisks2\.PartitionTable:\n")
@@ -400,10 +447,15 @@ Then /^a Tails persistence partition exists on USB drive "([^"]+)"$/ do |name|
   $vm.execute("cryptsetup luksClose #{name}")
 end
 
-Given /^I enable persistence$/ do
+Given /^I enable persistence( with the changed passphrase)?$/ do |with_changed_passphrase|
   @screen.wait('TailsGreeterPersistencePassphrase.png', 60).click
   sleep 1
-  @screen.type(@persistence_password, ['Return'])
+  if with_changed_passphrase
+    password = @changed_persistence_password
+  else
+    password = @persistence_password
+  end
+  @screen.type(password, ['Return'])
   @screen.wait_any(['TailsGreeterPersistenceUnlocked.png', 'TailsGreeterPersistenceUnlockedGerman.png'], 30)
 end
 
diff --git a/features/support/hooks.rb b/features/support/hooks.rb
index 35e355d0538..69780760d88 100644
--- a/features/support/hooks.rb
+++ b/features/support/hooks.rb
@@ -271,6 +271,7 @@ Before('@product') do |scenario|
   # as a regression test for #17792
   @sudo_password = 'asdf !'
   @persistence_password = 'asdf !'
+  @changed_persistence_password = "foo123"
   @has_been_reset = false
   # See comment for add_extra_allowed_host() above.
   @extra_allowed_hosts ||= []
-- 
GitLab


From 8c95331bdd5edf0e911c52063c2ff34eb16a9c15 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Mon, 27 Feb 2023 20:37:05 +0100
Subject: [PATCH 067/187] Test Suite: Improve Gherkin of "Creating a Persistent
 Storage" scenario

---
 features/persistence.feature              |  9 ++++-----
 features/step_definitions/common_steps.rb |  4 ++++
 features/step_definitions/usb.rb          | 17 +++++++++++++++++
 3 files changed, 25 insertions(+), 5 deletions(-)

diff --git a/features/persistence.feature b/features/persistence.feature
index 6b1e0f83754..709a2728983 100644
--- a/features/persistence.feature
+++ b/features/persistence.feature
@@ -19,14 +19,13 @@ Feature: Tails persistence
   Scenario: Creating a Persistent Storage
     Given I have started Tails without network from a USB drive without a persistent partition and logged in
     Then Tails is running from USB drive "__internal"
-    When I create a directory "/home/amnesia/Persistent"
-    And I write a file "/home/amnesia/Persistent/foo" with contents "foo"
+    When I create a file in the Persistent directory
     And I create a persistent partition with the default settings
-    Then the file "/live/persistence/TailsData_unlocked/Persistent/foo" exists
-    And I shutdown Tails and wait for the computer to power off
+    Then the file I created was copied to the Persistent Storage
+    When I shutdown Tails and wait for the computer to power off
     And I start Tails from USB drive "__internal" with network unplugged and I login with persistence enabled
     Then persistence for "Persistent" is enabled
-    And the file "/home/amnesia/Persistent/foo" exists
+    And the file I created in the Persistent directory exists
 
   Scenario: Booting Tails from a USB drive with an enabled persistent partition and reconfiguring it
     Given I have started Tails without network from a USB drive with a persistent partition enabled and logged in
diff --git a/features/step_definitions/common_steps.rb b/features/step_definitions/common_steps.rb
index 67a82bac85d..5fdf9f976e0 100644
--- a/features/step_definitions/common_steps.rb
+++ b/features/step_definitions/common_steps.rb
@@ -900,6 +900,10 @@ When /^the directory "([^"]+)" does not exist$/ do |directory|
   assert(!$vm.directory_exist?(directory))
 end
 
+When /^the file "([^"]+)" has the content "([^"]+)"$/ do |file, content|
+  $vm.file_content(file) == content
+end
+
 When /^I copy "([^"]+)" to "([^"]+)" as user "([^"]+)"$/ do |source, destination, user|
   c = $vm.execute("cp \"#{source}\" \"#{destination}\"", user: user)
   assert(c.success?, "Failed to copy file:\n#{c.stdout}\n#{c.stderr}")
diff --git a/features/step_definitions/usb.rb b/features/step_definitions/usb.rb
index ae6be3f82eb..0f2de3c4457 100644
--- a/features/step_definitions/usb.rb
+++ b/features/step_definitions/usb.rb
@@ -1328,3 +1328,20 @@ When /^I give the Persistent Storage on drive "([^"]+)" its own UUID$/ do |name|
   uuid = SecureRandom.uuid
   $vm.execute_successfully("cryptsetup luksUUID --uuid #{uuid} #{dev}")
 end
+
+When /^I create a file in the Persistent directory$/ do
+  step 'I create a directory "/home/amnesia/Persistent"'
+  step 'I write a file "/home/amnesia/Persistent/foo" with contents "foo"'
+end
+
+Then /^the file I created was copied to the Persistent Storage$/ do
+  file = '/live/persistence/TailsData_unlocked/Persistent/foo'
+  step "the file \"#{file}\" exists"
+  step "the file \"#{file}\" has the content \"foo\""
+end
+
+Then /^the file I created in the Persistent directory exists$/ do
+  file = '/home/amnesia/Persistent/foo'
+  step "the file \"#{file}\" exists"
+  step "the file \"#{file}\" has the content \"foo\""
+end
-- 
GitLab


From 7552a34dcc959dc3e1327eac7d921391b211cb60 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Wed, 1 Mar 2023 13:18:26 +0100
Subject: [PATCH 068/187] rubocop --auto-correct

---
 features/scripts/vm-execute                    |  2 +-
 features/scripts/vm-file                       |  2 +-
 .../additional_software_packages.rb            |  2 +-
 features/step_definitions/usb.rb               | 18 +++++++++---------
 features/support/helpers/remote_shell.rb       |  6 +++---
 features/support/helpers/screen.rb             |  4 ++--
 features/support/hooks.rb                      |  2 +-
 7 files changed, 18 insertions(+), 18 deletions(-)

diff --git a/features/scripts/vm-execute b/features/scripts/vm-execute
index c099b71fe73..d1e02a2d64d 100755
--- a/features/scripts/vm-execute
+++ b/features/scripts/vm-execute
@@ -22,7 +22,7 @@ class FakeVM
       virt = Libvirt.open('qemu:///system')
       domain = virt.lookup_domain_by_name('TailsToaster')
       @domain_xml = domain.xml_desc
-    rescue
+    rescue StandardError
       raise 'There was a problem with the TailsToaster VM (is it running?)'
     ensure
       virt.close
diff --git a/features/scripts/vm-file b/features/scripts/vm-file
index a71691b5a84..988641d58fc 100755
--- a/features/scripts/vm-file
+++ b/features/scripts/vm-file
@@ -22,7 +22,7 @@ class FakeVM
       virt = Libvirt.open('qemu:///system')
       domain = virt.lookup_domain_by_name('TailsToaster')
       @domain_xml = domain.xml_desc
-    rescue
+    rescue StandardError
       raise 'There was a problem with the TailsToaster VM (is it running?)'
     ensure
       virt.close
diff --git a/features/step_definitions/additional_software_packages.rb b/features/step_definitions/additional_software_packages.rb
index 0e46e15b513..52634ba3b0c 100644
--- a/features/step_definitions/additional_software_packages.rb
+++ b/features/step_definitions/additional_software_packages.rb
@@ -42,7 +42,7 @@ def click_gnome_shell_notification_button(title)
   # and activate it via the keyboard instead.
   try_for(10) do
     button = Dogtail::Application.new('gnome-shell')
-       .child(title, roleName: 'push button')
+                                 .child(title, roleName: 'push button')
     button.grabFocus
     button.focused
   end
diff --git a/features/step_definitions/usb.rb b/features/step_definitions/usb.rb
index 0f2de3c4457..fd21a15158a 100644
--- a/features/step_definitions/usb.rb
+++ b/features/step_definitions/usb.rb
@@ -225,7 +225,7 @@ When /^I (enable|disable) the first persistence preset$/ do |mode|
     'Activate Persistent Folder',
     roleName: 'toggle button'
   )
-  if mode == "enable"
+  if mode == 'enable'
     assert !persistent_folder_switch.checked
   else
     assert persistent_folder_switch.checked
@@ -236,7 +236,7 @@ When /^I (enable|disable) the first persistence preset$/ do |mode|
     # GtkSwitch does not expose its underlying state via AT-SPI (the
     # accessible has the "check" state when the switch is on but the
     # underlying state is false) so we check the state via D-Bus.
-    if mode == "enable"
+    if mode == 'enable'
       assert persistent_folder_switch.checked
       persistent_directory_is_active
     else
@@ -292,9 +292,9 @@ Given /^I change the passphrase of the Persistent Storage( back to the original)
   # application to hang when triggered via a ATSPI action. See
   # https://gitlab.gnome.org/GNOME/gtk/-/issues/1281
   persistent_storage_main_frame.button('Change Passphrase').grabFocus
-  @screen.press("Return")
+  @screen.press('Return')
   change_passphrase_dialog = persistent_storage_frontend.child(
-    'Change Passphrase', roleName: 'dialog',
+    'Change Passphrase', roleName: 'dialog'
   )
   change_passphrase_dialog
     .child('Current Passphrase', roleName: 'label')
@@ -450,11 +450,11 @@ end
 Given /^I enable persistence( with the changed passphrase)?$/ do |with_changed_passphrase|
   @screen.wait('TailsGreeterPersistencePassphrase.png', 60).click
   sleep 1
-  if with_changed_passphrase
-    password = @changed_persistence_password
-  else
-    password = @persistence_password
-  end
+  password = if with_changed_passphrase
+               @changed_persistence_password
+             else
+               @persistence_password
+             end
   @screen.type(password, ['Return'])
   @screen.wait_any(['TailsGreeterPersistenceUnlocked.png', 'TailsGreeterPersistenceUnlockedGerman.png'], 30)
 end
diff --git a/features/support/helpers/remote_shell.rb b/features/support/helpers/remote_shell.rb
index 250a0f4dae4..2692e39d9cf 100644
--- a/features/support/helpers/remote_shell.rb
+++ b/features/support/helpers/remote_shell.rb
@@ -101,9 +101,9 @@ module RemoteShell
       type = opts[:spawn] ? 'spawn' : 'call'
       debug_log("Remote shell: #{type}ing as #{opts[:user]}: #{cmd}") if opts[:debug_log]
       ret = RemoteShell.communicate(vm, 'sh_' + type, opts[:user], cmd, **opts)
-      if opts[:debug_log]
-        debug_log("Remote shell: #{type} returned: #{ret}") unless opts[:spawn]
-end
+      if opts[:debug_log] && !(opts[:spawn])
+        debug_log("Remote shell: #{type} returned: #{ret}")
+      end
       ret
     end
 
diff --git a/features/support/helpers/screen.rb b/features/support/helpers/screen.rb
index 9e410a9aedc..b9628b0c8fc 100644
--- a/features/support/helpers/screen.rb
+++ b/features/support/helpers/screen.rb
@@ -134,8 +134,8 @@ class Screen
   end
 
   def check_and_raise_display_output_not_active
-      p = match_screen('DisplayOutputIsNotActive.png', OPENCV_MIN_SIMILARITY, false)
-      raise DisplayOutputIsNotActive, 'screen reached "Display output is not active"' unless p.nil?
+    p = match_screen('DisplayOutputIsNotActive.png', OPENCV_MIN_SIMILARITY, false)
+    raise DisplayOutputIsNotActive, 'screen reached "Display output is not active"' unless p.nil?
   end
 
   def real_find(pattern, **opts)
diff --git a/features/support/hooks.rb b/features/support/hooks.rb
index 69780760d88..f2e4f92407a 100644
--- a/features/support/hooks.rb
+++ b/features/support/hooks.rb
@@ -271,7 +271,7 @@ Before('@product') do |scenario|
   # as a regression test for #17792
   @sudo_password = 'asdf !'
   @persistence_password = 'asdf !'
-  @changed_persistence_password = "foo123"
+  @changed_persistence_password = 'foo123'
   @has_been_reset = false
   # See comment for add_extra_allowed_host() above.
   @extra_allowed_hosts ||= []
-- 
GitLab


From 80fcd8a4ab7e2cdde5452ae9731315f224098cec Mon Sep 17 00:00:00 2001
From: boyska <boyska@riseup.net>
Date: Wed, 1 Mar 2023 12:22:39 +0000
Subject: [PATCH 069/187] Quote variable used in shell command

---
 features/step_definitions/common_steps.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/features/step_definitions/common_steps.rb b/features/step_definitions/common_steps.rb
index 5fdf9f976e0..56573056d1c 100644
--- a/features/step_definitions/common_steps.rb
+++ b/features/step_definitions/common_steps.rb
@@ -1410,7 +1410,7 @@ Then(/^the layout of the screen keyboard is set to "([^"]+)"$/) do |layout|
 end
 
 Given /^I create a directory "(\S+)"$/ do |path|
-  $vm.execute_successfully("mkdir #{path}")
+  $vm.execute_successfully("mkdir '#{path}'")
 end
 
 Given /^I write a file "(\S+)" with contents "([^"]*)"$/ do |path, content|
-- 
GitLab


From ab416d173f17791216a45209c489ceb68e8aa365 Mon Sep 17 00:00:00 2001
From: boyska <boyska@riseup.net>
Date: Wed, 1 Mar 2023 15:37:40 +0100
Subject: [PATCH 070/187] avoid symlink attacks

---
 .../create-persistent-tor-browser-directory              | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/config/chroot_local-includes/usr/local/lib/persistent-storage/on-activated-hooks/PersistentDirectory/create-persistent-tor-browser-directory b/config/chroot_local-includes/usr/local/lib/persistent-storage/on-activated-hooks/PersistentDirectory/create-persistent-tor-browser-directory
index 70df37d9bc8..5a8fe356ab8 100755
--- a/config/chroot_local-includes/usr/local/lib/persistent-storage/on-activated-hooks/PersistentDirectory/create-persistent-tor-browser-directory
+++ b/config/chroot_local-includes/usr/local/lib/persistent-storage/on-activated-hooks/PersistentDirectory/create-persistent-tor-browser-directory
@@ -4,4 +4,11 @@ set -e
 set -u
 
 TOR_BROWSER_PERSISTENT_DIR='/home/amnesia/Persistent/Tor Browser'
-install -d -o amnesia -g amnesia -m 0700 "$TOR_BROWSER_PERSISTENT_DIR"
+
+# it's tempting to use --owner option, but that will follow symlinks,
+# which could pave the way for symlink attacks
+install --directory "$TOR_BROWSER_PERSISTENT_DIR"
+chown --no-dereference amnesia:amnesia "$TOR_BROWSER_PERSISTENT_DIR"
+
+# chmod never changes the permissions of symbolic links; see chmod(1)
+chmod 0700 "$TOR_BROWSER_PERSISTENT_DIR"
-- 
GitLab


From f6f6a901564553d4e245d414bdb44a2e094e822d Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Thu, 2 Mar 2023 09:54:09 +0100
Subject: [PATCH 071/187] 05-replace_swapon: Fail if any argument contains
 non-zram device

---
 config/chroot_local-hooks/05-replace_swapon | 15 +++++++--------
 1 file changed, 7 insertions(+), 8 deletions(-)

diff --git a/config/chroot_local-hooks/05-replace_swapon b/config/chroot_local-hooks/05-replace_swapon
index 45c64e675dd..de28e74b81e 100755
--- a/config/chroot_local-hooks/05-replace_swapon
+++ b/config/chroot_local-hooks/05-replace_swapon
@@ -4,10 +4,7 @@ set -e
 
 echo "Replacing swapon executable"
 
-# Only allow setting up swap for zram devices. This is not perfect,
-# swapon could be called with multiple devices at once which will
-# result in the real swapon being called if any of the devices is a
-# zram device. It's still better than nothing.
+# Only allow setting up swap for zram devices.
 # Rationale: security-in-depth model.
 
 SWAPON=/sbin/swapon
@@ -21,10 +18,12 @@ cat > $SWAPON << 'EOF'
 
 set -eu
 
-if ! echo "$@" | grep -q /dev/zram; then
-  echo >&2 "Setting up swap is only allowed for zram devices"
-  exit 1
-fi
+for param in "$@"; do
+  if echo "${param}" | grep -v /dev/zram | grep -q /dev; then
+    echo >&2 "Setting up swap is only allowed for zram devices"
+    exit 1
+  fi
+done
 
 /sbin/swapon.distrib "$@"
 EOF
-- 
GitLab


From 6a40c364a5205237cd5686687419c535ce9ae2b4 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Wed, 1 Mar 2023 18:45:49 +0100
Subject: [PATCH 072/187] run_test_suite: Support setting options via
 environment variables

There are cases in which it's more convenient to configure options via
environment variables than command-line options. As usual, if both
are used, command-line options take precedence.
---
 run_test_suite | 35 +++++++++++++++++------------------
 1 file changed, 17 insertions(+), 18 deletions(-)

diff --git a/run_test_suite b/run_test_suite
index b6abe68c731..5f4bb59f290 100755
--- a/run_test_suite
+++ b/run_test_suite
@@ -219,24 +219,23 @@ start_vnc_viewer() {
 
 # main script
 
-# Unset all environment variables used by this script to pass options
-# to cucumber, except TMPDIR since we explicitly want to support
-# setting it that way.
-ALLOW_NON_ROOT=
-ARTIFACTS_BASE_URI=
-CAPTURE=
-CAPTURE_ALL=
-VNC_VIEWER=
-VNC_VIEWER_VIEWONLY=yes
-VNC_SERVER=
-INTERACTIVE_DEBUGGING=
-IMAGE_BUMPING_MODE=
-KEEP_CHUTNEY=
-KEEP_SNAPSHOTS=
-TAILS_ISO=
-OLD_TAILS_ISO=
-EARLY_PATCH=
-EXTRA_BOOT_OPTIONS=
+# Set default values of environment variables used by this script to
+# pass options to cucumber (unless they are already set).
+ALLOW_NON_ROOT=${ALLOW_NON_ROOT-}
+ARTIFACTS_BASE_URI=${ARTIFACTS_BASE_URI-}
+CAPTURE=${CAPTURE-}
+CAPTURE_ALL=${CAPTURE_ALL-}
+VNC_VIEWER=${VNC_VIEWER-}
+VNC_VIEWER_VIEWONLY=${VNC_VIEWER_VIEWONLY-yes}
+VNC_SERVER=${VNC_SERVER-}
+INTERACTIVE_DEBUGGING=${INTERACTIVE_DEBUGGING-}
+IMAGE_BUMPING_MODE=${IMAGE_BUMPING_MODE-}
+KEEP_CHUTNEY=${KEEP_CHUTNEY-}
+KEEP_SNAPSHOTS=${KEEP_SNAPSHOTS-}
+TAILS_ISO=${TAILS_ISO-}
+OLD_TAILS_ISO=${OLD_TAILS_ISO-}
+EARLY_PATCH=${EARLY_PATCH-}
+EXTRA_BOOT_OPTIONS=${EXTRA_BOOT_OPTIONS-}
 
 LONGOPTS="allow-non-root,artifacts-base-uri:,view,view-interact,vnc-server-only,capture,capture-all,help,tmpdir:,keep-chutney,keep-snapshots,disable-chutney,late-patch:,early-patch,extra-boot-options:,iso:,old-iso:,interactive-debugging,image-bumping-mode"
 OPTS=$(getopt -o "" --longoptions $LONGOPTS -n "${NAME}" -- "$@")
-- 
GitLab


From 5474b5815eaab5b37158f7f20d3f11fa7f44f027 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Tue, 28 Feb 2023 16:16:18 +0100
Subject: [PATCH 073/187] Welcome Screen: Update string shown when Persistent
 Storage is unlocked

---
 config/chroot_local-includes/usr/share/tails/greeter/main.ui.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/config/chroot_local-includes/usr/share/tails/greeter/main.ui.in b/config/chroot_local-includes/usr/share/tails/greeter/main.ui.in
index fe5f9d475ac..6508e421b52 100644
--- a/config/chroot_local-includes/usr/share/tails/greeter/main.ui.in
+++ b/config/chroot_local-includes/usr/share/tails/greeter/main.ui.in
@@ -539,7 +539,7 @@
                   <object class="GtkLabel" id="label_storage_unlocked">
                     <property name="visible">True</property>
                     <property name="can_focus">False</property>
-                    <property name="label" translatable="yes">Your persistent storage is unlocked. Restart Tails to lock it again.</property>
+                    <property name="label" translatable="yes">Your Persistent Storage is unlocked. Its content will be available until you shut down Tails.</property>
                     <property name="xalign">0</property>
                   </object>
                   <packing>
-- 
GitLab


From aae68b97a534942836f25587b06b0388b7883d08 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Tue, 28 Feb 2023 16:39:52 +0100
Subject: [PATCH 074/187] Welcome Screen: Update label

---
 config/chroot_local-includes/usr/share/tails/greeter/main.ui.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/config/chroot_local-includes/usr/share/tails/greeter/main.ui.in b/config/chroot_local-includes/usr/share/tails/greeter/main.ui.in
index 6508e421b52..7310b87b6f9 100644
--- a/config/chroot_local-includes/usr/share/tails/greeter/main.ui.in
+++ b/config/chroot_local-includes/usr/share/tails/greeter/main.ui.in
@@ -396,7 +396,7 @@
                   <object class="GtkLabel" id="label_storage_header_title">
                     <property name="visible">True</property>
                     <property name="can_focus">False</property>
-                    <property name="label" translatable="yes">Encrypted _Persistent Storage</property>
+                    <property name="label" translatable="yes">_Persistent Storage</property>
                     <property name="use_underline">True</property>
                     <property name="mnemonic_widget">entry_storage_passphrase</property>
                     <attributes>
-- 
GitLab


From 828fe0f283371a93985781e75653c6ee79750da8 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Tue, 28 Feb 2023 17:25:21 +0100
Subject: [PATCH 075/187] Welcome Screen: Remove unnecessary GtkBox

---
 .../usr/share/tails/greeter/main.ui.in        | 35 +++++--------------
 1 file changed, 8 insertions(+), 27 deletions(-)

diff --git a/config/chroot_local-includes/usr/share/tails/greeter/main.ui.in b/config/chroot_local-includes/usr/share/tails/greeter/main.ui.in
index 7310b87b6f9..2c770dd46d5 100644
--- a/config/chroot_local-includes/usr/share/tails/greeter/main.ui.in
+++ b/config/chroot_local-includes/usr/share/tails/greeter/main.ui.in
@@ -175,36 +175,17 @@
             <property name="orientation">vertical</property>
             <property name="spacing">6</property>
             <child>
-              <object class="GtkBox" id="box_storagecreate_header">
+              <object class="GtkLabel" id="label_storage_header_title1">
                 <property name="visible">True</property>
                 <property name="can-focus">False</property>
-                <property name="spacing">12</property>
-                <child>
-                  <object class="GtkLabel" id="label_storage_header_title1">
-                    <property name="visible">True</property>
-                    <property name="can-focus">False</property>
-                    <property name="label" translatable="yes">_Persistent Storage</property>
-                    <property name="use-underline">True</property>
-                    <property name="mnemonic-widget">entry_storage_passphrase</property>
-                    <attributes>
-                      <attribute name="weight" value="bold"/>
-                    </attributes>
-                  </object>
-                  <packing>
-                    <property name="expand">False</property>
-                    <property name="fill">True</property>
-                    <property name="position">0</property>
-                  </packing>
-                </child>
-                <child>
-                  <placeholder/>
-                </child>
+                <property name="label" translatable="yes">_Persistent Storage</property>
+                <property name="use-underline">True</property>
+                <property name="mnemonic-widget">entry_storage_passphrase</property>
+                <property name="halign">start</property>
+                <attributes>
+                  <attribute name="weight" value="bold"/>
+                </attributes>
               </object>
-              <packing>
-                <property name="expand">False</property>
-                <property name="fill">True</property>
-                <property name="position">0</property>
-              </packing>
             </child>
             <child>
               <object class="GtkBox">
-- 
GitLab


From 5eccedf07f90d26bc2b51e0a00aaaa348e615e3f Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Tue, 28 Feb 2023 17:27:02 +0100
Subject: [PATCH 076/187] Welcome Screen: Align section header icons / link
 buttons

---
 .../chroot_local-includes/usr/share/tails/greeter/main.ui.in  | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/config/chroot_local-includes/usr/share/tails/greeter/main.ui.in b/config/chroot_local-includes/usr/share/tails/greeter/main.ui.in
index 2c770dd46d5..58447962688 100644
--- a/config/chroot_local-includes/usr/share/tails/greeter/main.ui.in
+++ b/config/chroot_local-includes/usr/share/tails/greeter/main.ui.in
@@ -273,7 +273,6 @@
               <object class="GtkBox" id="box_language_header">
                 <property name="visible">True</property>
                 <property name="can-focus">False</property>
-                <property name="spacing">12</property>
                 <child>
                   <object class="GtkLabel" id="label_language_header_title">
                     <property name="visible">True</property>
@@ -372,7 +371,7 @@
               <object class="GtkBox" id="box_storage_header">
                 <property name="visible">True</property>
                 <property name="can_focus">False</property>
-                <property name="spacing">12</property>
+                <property name="spacing">8</property>
                 <child>
                   <object class="GtkLabel" id="label_storage_header_title">
                     <property name="visible">True</property>
@@ -553,7 +552,6 @@
               <object class="GtkBox" id="box_settings_header">
                 <property name="visible">True</property>
                 <property name="can_focus">False</property>
-                <property name="spacing">12</property>
                 <child>
                   <object class="GtkLabel" id="label_settings_header_title">
                     <property name="visible">True</property>
-- 
GitLab


From f4a4ab204c3243397876d78db0b3a8790aff242f Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Tue, 28 Feb 2023 17:28:30 +0100
Subject: [PATCH 077/187] Welcome Screen: Replace passphrase entry placeholder
 with a label

---
 .../tailsgreeter/ui/persistent_storage.py     |  1 +
 .../usr/share/tails/greeter/main.ui.in        | 75 ++++++++++++-------
 2 files changed, 51 insertions(+), 25 deletions(-)

diff --git a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py
index f36bf44bdde..eb917d1e3dd 100644
--- a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py
+++ b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py
@@ -135,6 +135,7 @@ class PersistentStorage(object):
             self.activation_failed()
             return
 
+        self.box_storage_unlock.set_visible(False)
         self.spinner_storage_unlock.set_visible(False)
         self.entry_storage_passphrase.set_visible(False)
         self.button_storage_unlock.set_visible(False)
diff --git a/config/chroot_local-includes/usr/share/tails/greeter/main.ui.in b/config/chroot_local-includes/usr/share/tails/greeter/main.ui.in
index 58447962688..bf49e2229c7 100644
--- a/config/chroot_local-includes/usr/share/tails/greeter/main.ui.in
+++ b/config/chroot_local-includes/usr/share/tails/greeter/main.ui.in
@@ -376,9 +376,7 @@
                   <object class="GtkLabel" id="label_storage_header_title">
                     <property name="visible">True</property>
                     <property name="can_focus">False</property>
-                    <property name="label" translatable="yes">_Persistent Storage</property>
-                    <property name="use_underline">True</property>
-                    <property name="mnemonic_widget">entry_storage_passphrase</property>
+                    <property name="label" translatable="yes">Persistent Storage</property>
                     <attributes>
                       <attribute name="weight" value="bold"/>
                     </attributes>
@@ -465,46 +463,73 @@
             <child>
               <object class="GtkBox" id="box_storage_unlock">
                 <property name="can_focus">False</property>
+                <property name="spacing">6</property>
                 <child>
-                  <object class="GtkEntry" id="entry_storage_passphrase">
+                  <object class="GtkLabel" id="label_passphrase">
                     <property name="visible">True</property>
-                    <property name="can_focus">True</property>
-                    <property name="visibility">False</property>
-                    <property name="placeholder_text" translatable="yes" comments="The label for this placeholder text is not very big, so keep this string short.">Enter your passphrase to unlock the persistent storage</property>
-                    <signal name="activate" handler="cb_entry_storage_passphrase_activated" swapped="no"/>
-                    <signal name="changed" handler="cb_entry_storage_passphrase_changed" swapped="no"/>
+                    <property name="can_focus">False</property>
+                    <property name="label" translatable="yes">_Passphrase</property>
+                    <property name="use_underline">True</property>
+                    <property name="mnemonic_widget">entry_storage_passphrase</property>
                     <style>
-                      <class name="linked_left"/>
+                      <class name="dim-label"/>
                     </style>
                   </object>
                   <packing>
-                    <property name="expand">True</property>
+                    <property name="expand">False</property>
                     <property name="fill">True</property>
-                    <property name="position">2</property>
+                    <property name="position">0</property>
                   </packing>
                 </child>
                 <child>
-                  <object class="GtkButton" id="button_storage_unlock">
-                    <property name="label" translatable="yes">Unlock</property>
+                  <object class="GtkBox">
                     <property name="visible">True</property>
-                    <property name="sensitive">False</property>
-                    <property name="can_focus">True</property>
-                    <property name="receives_default">True</property>
-                    <signal name="clicked" handler="cb_button_storage_unlock_clicked" swapped="no"/>
+                    <child>
+                      <object class="GtkEntry" id="entry_storage_passphrase">
+                        <property name="visible">True</property>
+                        <property name="can_focus">True</property>
+                        <property name="visibility">False</property>
+                        <signal name="activate" handler="cb_entry_storage_passphrase_activated" swapped="no"/>
+                        <signal name="changed" handler="cb_entry_storage_passphrase_changed" swapped="no"/>
+                        <style>
+                          <class name="linked_left"/>
+                        </style>
+                      </object>
+                      <packing>
+                        <property name="expand">True</property>
+                        <property name="fill">True</property>
+                        <property name="position">1</property>
+                      </packing>
+                    </child>
+                    <child>
+                      <object class="GtkButton" id="button_storage_unlock">
+                        <property name="label" translatable="yes">Unlock</property>
+                        <property name="visible">True</property>
+                        <property name="sensitive">False</property>
+                        <property name="can_focus">True</property>
+                        <property name="receives_default">True</property>
+                        <signal name="clicked" handler="cb_button_storage_unlock_clicked" swapped="no"/>
+                        <style>
+                          <class name="suggested-action"/>
+                          <class name="linked_right"/>
+                        </style>
+                      </object>
+                      <packing>
+                        <property name="expand">False</property>
+                        <property name="fill">True</property>
+                        <property name="position">2</property>
+                      </packing>
+                    </child>
                     <style>
-                      <class name="suggested-action"/>
-                      <class name="linked_right"/>
+                      <class name="linked"/>
                     </style>
                   </object>
                   <packing>
-                    <property name="expand">False</property>
+                    <property name="expand">True</property>
                     <property name="fill">True</property>
-                    <property name="position">3</property>
+                    <property name="position">1</property>
                   </packing>
                 </child>
-                <style>
-                  <class name="linked"/>
-                </style>
               </object>
               <packing>
                 <property name="expand">False</property>
-- 
GitLab


From 4819c15997a87ee5ec62fa2e9c916e4474d19f0b Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Tue, 28 Feb 2023 18:53:51 +0100
Subject: [PATCH 078/187] Welcome Screen: Fix excessive height

refs #19324
---
 .../usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py
index 23f33b0cfd6..88ea660a906 100644
--- a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py
+++ b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py
@@ -127,6 +127,7 @@ class GreeterMainWindow(Gtk.Window, TranslatableWindow):
                                   PREFERRED_WIDTH),
                               min(Gdk.Screen.get_default().get_height(),
                                   PREFERRED_HEIGHT))
+        self.set_valign(Gtk.Align.START)
 
         # Add our icon dir to icon theme
         icon_theme = Gtk.IconTheme.get_default()
-- 
GitLab


From 7d3d1c3c81e1eaed09b582ea2ef8a16e5ab4c7d5 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Wed, 22 Feb 2023 11:49:40 +0100
Subject: [PATCH 079/187] Test Suite: Use Dogtail for some Greeter steps

Clicking on screenshots is flaky, both locally and in Jenkins. Using
Dogtail should be more robust.
---
 .../dist-packages/tailsgreeter/ui/setting.py  |  10 +++++++
 features/images/TailsGreeterLanguage.png      | Bin 1287 -> 0 bytes
 .../images/TailsGreeterLanguagePopover.png    | Bin 492 -> 0 bytes
 .../TailsGreeterPersistenceUnlocked.png       | Bin 4801 -> 0 bytes
 .../TailsGreeterPersistenceUnlockedGerman.png | Bin 9336 -> 0 bytes
 features/step_definitions/common_steps.rb     |  17 ++++++++++--
 features/step_definitions/usb.rb              |  25 +++++++++++++++++-
 7 files changed, 49 insertions(+), 3 deletions(-)
 delete mode 100644 features/images/TailsGreeterLanguage.png
 delete mode 100644 features/images/TailsGreeterLanguagePopover.png
 delete mode 100644 features/images/TailsGreeterPersistenceUnlocked.png
 delete mode 100644 features/images/TailsGreeterPersistenceUnlockedGerman.png

diff --git a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/setting.py b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/setting.py
index 39d4dfb9d51..d538b6ca8a0 100644
--- a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/setting.py
+++ b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/setting.py
@@ -48,6 +48,16 @@ class GreeterSetting(object):
         self.value_label = self.builder.get_object("label_value")
         self.title_label.set_label(self.title)
 
+        # Strip the underscore which marks the mnemonic
+        setting_name = self.title.replace('_', '', 1)
+        # This is a hack to make the listboxrow usable in the Test Suite:
+        # We configure a tooltip text which allows us to use it through
+        # AT-SPI, but we set has_tooltip to false to not display that
+        # tooltip, because the UI is self-explanatory without a tooltip
+        # and the tooltip would just be noise.
+        self.listboxrow.set_tooltip_text(f"Configure {setting_name}")
+        self.listboxrow.set_has_tooltip(False)
+
     def apply(self):
         self.update_value_label()
 
diff --git a/features/images/TailsGreeterLanguage.png b/features/images/TailsGreeterLanguage.png
deleted file mode 100644
index b194ebacdd7154b530dbb0a4bab6b205ae6dead9..0000000000000000000000000000000000000000
GIT binary patch
literal 0
HcmV?d00001

literal 1287
zcmV+i1^D`jP)<h;3K|Lk000e1NJLTq003bC001Ef0ssI2Mm$oO000EeNkl<Zc-rlm
zi&Gm_6vq1(C0TaEBSDn%Dg|0CU|U5L6-%*7UkVKcEvZ1YP)ncMirV57pPi1>zG#{0
zsHGKBol<HYYbB5e1d>1qB!nb>m(6S*>?T16jm>7xWNz;6e#!mabH01;WQBb1h#28x
zg@{08Br=LoMrv)srZcj<N=a&tBryf=viw)+iZkdJ8IfRi^-D80NSH)6q-puml$E}A
z<_27icSb-UQD$*~5KR63gwi%YGG!K{>W^baYAwkic@kZ9o(p-y5Tnv?AF1^XvdoQ-
zUeQI%2p&X|C72N#Ox=Kd&jXeb?x8C><CGCG>3}MersYXfSFzMkU-afq?h-6KP8pF^
zj02RYgcH$~UlJmD6@=iL*Zl-jb9fbw_DtUV!|_NnN>l{q5mmAuoz%KFnd)Aq`i4ZF
z?7y0%j8{ehdBlQXcJ#>A!*cbIEW0G=Qrzaz;-I%(CXGE0s3&&@GLjW+iJp<7N%vW=
zO>1^JT%Mr`*IVbz+@(Ri^T@Ty0iAPZ&U4>5SN`c3+n?Mx^2rZVdh5J(#(h>Zt(|Z^
zb;O8%i`~8Hl!?8k?Bg-J(-U4_NJqKwh;ee>JnjCve>!cSE{G9TdMKJ;wp}6HrTTkR
zVJ)-u5^3+~p$b(jBl!1{^5|f<wX(ys`k<lVTeHjUDLiWA81)Z1o;x|3eL(;DE!((l
z9s@>yN3ZQy!`w3`M%NrNU<_WbHw>dN`a(MAZriU6&Sbah^V<x4e>ysE*@74am5gvu
zB`vsFs?1(k*OI9s6%AK<<2p$q;r&rGwT67*rW%aYUA{IZ)8qB7|6nw=S?6?lN<Z@D
zl(JbDkrA)HkWNO6-tF<`9MH4<ubeU=(ZVuHeu65hmF2$3%P92bl=Ovtwnk|DLX5In
z_4_YbF?ByZbYNgj-&qzjLZIR>a$rI(B)#M7L|sH=#H%l)g9kAg;KIh()cn+}I~*g~
zx*AePDh)P45g8$a!XHF<89n~4Zp7j`eZy99nv}yY!%iVa7#;@j?1@p#b4sI*mk~rl
z7zybM=@cI~q5-Ueo*go5`n4{ya$)-uymI*%k#oO-ocjy55D$uU1mR_bpKf!wxsSKC
z5g1|27~AF!(_%)L_Uf-DLKq3@3+bSNgoSfO$4HThbv@ywljObZ_+my&4KUISIWk-H
zTwofDj*)q5zF>hz?mlY{Q)?_E;;BE|u?D@+J_avu|9*;NbaB9bXT(|1W<bDqSw>;>
zg>*i=K7|zxHjkh8eES%_RFDx>Tt|#~Wf5I<LB9J=;4blRGx7$%wswxAzwN5kY<HvV
zy9Z~k-kXWY=&^meZ#2_*#AKVt+60}ohYje@ec$lo@3Y7Ptnr7hO+t`;P)J`$2PTC_
z9*(<a=RCt^*WNCRAS1f!qP%`kmRnB0+)m1ERoOpev>X90uvn~0%c{fA2<v)?zo6)1
zkP$Kw`@`kd;b%lW{WfdWQbjrf<;K+AmB>?Kfl=`><IXR})8Es>Yko7%HJ-ODw+=re
zdV4ohbJLHku$CZOT^<XJ;7WIO&e;XuX}xUy7j*a-VJo<+FJWVozw{ItOif=xNo%at
x+JA7SUD8=ZWF#^Y|AQ16iHt->BBTFf`~}hbDJT+)-zWe8002ovPDHLkV1nYSZ4&?h

diff --git a/features/images/TailsGreeterLanguagePopover.png b/features/images/TailsGreeterLanguagePopover.png
deleted file mode 100644
index abad6f47fe70c94968e80b0d97144c7e28f60f4c..0000000000000000000000000000000000000000
GIT binary patch
literal 0
HcmV?d00001

literal 492
zcmV<I0Tcd-P)<h;3K|Lk000e1NJLTq002+`001cn0{{R3mEvBO0002nP)t-sE;Keu
zkl9#WURhpWT3=vWU}0OD-CUd9Uu0!rW@ln&XJTh)W@~I{Y;9?7Zfb6CYj1FGrr~gO
zb#SNQa&~ugczJbtdUtz#d3}C{iHe4bi-(Jgh>MJjkdcm&l8%y+kCKy?nVOfHo0yxM
zn7-wioSmA#=9`|Lo51FrpP-+jqt4IJ)6~_}*4EVJ_SWY1*xA|I+uYmS+}z#W+}+;Z
z-{0Th;Njxp;^O1x=ji9?=;-L@=;`U}>+9?6?CtIC@9^;O@bK~R@$vHV_4W4n`1tz!
z`~Lp^|NsBpsEd98007KML_t(|+U?fG4gxU%1W<O6E{nUnySwZ1|6c@c!XFGAVCOQI
z=A}v1wjt+F!Btggv`DZXadAN*1`k>!sA&%i{48kuaq!R%8{zhW2KGFVF}fshZy+^1
z4byP%IA9AI^HpXR4GtK@SoIVE4(P;H^$iY_0{SsiJ%^7o!y0m`^QdsZt&YOtzAVB%
zA??GC4jDV*7t%>tm%Z?oMlnQ>w6iSN_bf%~<#3E5$pe)bPrQd%7p(P+eghPu&jsrt
i^8awvB!YkVX@3HzUi=`YO*H8M0000<MNUMnLSTY#Zv<cf

diff --git a/features/images/TailsGreeterPersistenceUnlocked.png b/features/images/TailsGreeterPersistenceUnlocked.png
deleted file mode 100644
index 357ec2ec2d65408e671dff8a344b85e77c61e2f2..0000000000000000000000000000000000000000
GIT binary patch
literal 0
HcmV?d00001

literal 4801
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
b{Lk<o1Ws%mB+M8)00000NkvXXu0mjfOfN@t

diff --git a/features/images/TailsGreeterPersistenceUnlockedGerman.png b/features/images/TailsGreeterPersistenceUnlockedGerman.png
deleted file mode 100644
index 153c396de4cfce01c575dc1a3d4e76cb13db9fd7..0000000000000000000000000000000000000000
GIT binary patch
literal 0
HcmV?d00001

literal 9336
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
Q_rGRFdPv<OZP#=E1zMnpumAu6

diff --git a/features/step_definitions/common_steps.rb b/features/step_definitions/common_steps.rb
index 56573056d1c..bf87f24d569 100644
--- a/features/step_definitions/common_steps.rb
+++ b/features/step_definitions/common_steps.rb
@@ -354,8 +354,21 @@ end
 
 Given /^I set the language to (.*)$/ do |lang|
   $language = lang
-  @screen.wait('TailsGreeterLanguage.png', 10).click
-  @screen.wait('TailsGreeterLanguagePopover.png', 10)
+  # The listboxrow does not expose any actions through AT-SPI,
+  # so Dogtail is unable to click it directly. We let it grab focus
+  # and activate it via the keyboard instead.
+  try_for(10) do
+    row = greeter
+          .child(description: 'Configure Language', showingOnly: true)
+    row.grabFocus
+    row.focused
+  end
+  @screen.press('Return')
+  try_for(10) do
+    greeter
+      .child('Search', roleName: 'text', showingOnly: true)
+      .focused
+  end
   @screen.type($language)
   sleep(2) # Gtk needs some time to filter the results
   @screen.press('Return')
diff --git a/features/step_definitions/usb.rb b/features/step_definitions/usb.rb
index fd21a15158a..2eb1642296f 100644
--- a/features/step_definitions/usb.rb
+++ b/features/step_definitions/usb.rb
@@ -87,6 +87,10 @@ def recover_from_upgrader_failure
   $vm.spawn('tails-upgrade-frontend-wrapper --no-wait', user: LIVE_USER)
 end
 
+def greeter
+  Dogtail::Application.new('Welcome to Tails!', user: 'Debian-gdm')
+end
+
 Given /^I clone USB drive "([^"]+)" to a (new|temporary) USB drive "([^"]+)"$/ do |from, mode, to|
   $vm.storage.clone_to_new_disk(from, to)
   if mode == 'temporary'
@@ -456,7 +460,26 @@ Given /^I enable persistence( with the changed passphrase)?$/ do |with_changed_p
                @persistence_password
              end
   @screen.type(password, ['Return'])
-  @screen.wait_any(['TailsGreeterPersistenceUnlocked.png', 'TailsGreeterPersistenceUnlockedGerman.png'], 30)
+
+  # Wait until the Persistent Storage was unlocked. We use the fact that
+  # the unlock button is made invisible when the Persistent Storage is
+  # unlocked.
+  try_for(30) do
+    !greeter.child?('Unlock', roleName: 'push button', showingOnly: true)
+  end
+
+  # Figure out which language is set now that the Persistent Storage is
+  # unlocked
+  english_label = 'English - United States'
+  german_label = 'Deutsch - Deutschland (German - Germany)'
+  try_for(30) do
+    greeter.child(english_label, roleName: 'label', showingOnly: true)
+    $language = ''
+  rescue Dogtail::Failure
+    greeter.child(german_label, roleName: 'label', showingOnly: true)
+    $language = 'German'
+    true
+  end
 end
 
 def tails_persistence_enabled?
-- 
GitLab


From 4e85f1c20bacad13e52c15e7bc5e4388548b5460 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Wed, 1 Mar 2023 19:06:15 +0100
Subject: [PATCH 080/187] Test Suite: Use Dogtail to open GNOME Shell menus

Using @screen.click doesn't work on my system.
---
 features/images/GnomePlacesHome.png       | Bin 1037 -> 0 bytes
 features/step_definitions/common_steps.rb |  26 ++++++++--------------
 2 files changed, 9 insertions(+), 17 deletions(-)
 delete mode 100644 features/images/GnomePlacesHome.png

diff --git a/features/images/GnomePlacesHome.png b/features/images/GnomePlacesHome.png
deleted file mode 100644
index 796eb3d3ea80a1491d6025e980209d6c0f3f7496..0000000000000000000000000000000000000000
GIT binary patch
literal 0
HcmV?d00001

literal 1037
zcmV+o1oHcdP)<h;3K|Lk000e1NJLTq002J#000jN1^@s6QzaL2000BjNkl<ZNXO-t
zT}+c_6vuz>+YibGA0aduE0B<hVI2ZCX~=LUGXte}uF0Gc7mJvTuC&Ivni#d6W`^l@
z0hW&??q-s}Ld59?TsZL#Ssa0m1XBkB<pM>((FM}d7P<?h(9r<0PxYU?7w<Vw&hz|p
z&i|YvXtml9FDb;eoEaGzI2@O#tE*+pme*c5@<O!C3xa@7S4?^Nhs4Ch01ylYX=?hG
z#>OTV78YIz@)DIw_327OVqzj^&YVK8e;27#N?ThyE|-g}tSoYKb5W~b$Lah9uh+Yw
z3-<4SpOTUTbadQa<*Ti&K@ebIVBkL?FJ1Yg(P*$*kCT*?gvaBds;Zhhce()R>iP+*
z^*9=hhWh&22;Xz9d6`Ux(O6Dp<$02llIZPqVl<i}$o2H}U^ITj-Mc@NkdT1gZo_K*
z1cgHJ+>)09T)g->YPC9SwApO<{ee}7r>8yGY<Ak)TM<Q(!oqh*Pfy2ew){Pr5JmRw
zdyn0_i-?bpr@#Lmb#?WOkB<Z3a4c3^LBX4(rl#U{yQ!(EW81cDbh=`cN+nLGlj`bA
zOiz0NkjrHl3<h@Yd<&UOPG@H)moI;f&*xjryjrbhczBp#FbF_sjo}vxg_xh82ViJu
zn5|ng*KaHm2?~W`)hCLP!{*ST57@DzfOF?Q!(utg!oob2mFJO4m({s_dmdF))s&W&
z@$lgz9FA&~N+mX%or($zDJdx!42JM|lgUI%$}5=77R+V~X=$mHmKv5bzh{pQfY#RU
zBOcS%_CxrAd-v*@o12U9TP#Nj1On@l&&kQ*`t@sTo{`Jt==FMz9s8J(kr5Uv@=F>T
zzCo+i($%#n!H$mGJa{k!KugOtcI|qbmX>QwO-%uC^X8A}bj1L~#l=xnR7gdIIa~=>
zt~7Asgq8aGuOb^>v@%>GF9^b>%el9=my;(?MeX)WP^n%e6e3Iv!0YvL|NgI}r>BL<
zuY}v}1|TLz9=45+juIOi`!uEsQ53P;?aMlsO2Xq?`hRIYGMOBSL_`n-LMwC^2>9{)
z{n3{cA-XJ=FgrW@v_dU-JikBNhWBq`Y-|ic5XjDcBcfMiW@a)xJhG{n<KvI;`F!N(
z=dVBKm+)up1Khar-9JixW@d(4w>mJJE4Xms3nnKgIe4&yiHQlEPUog#`uzc}UTvYQ
z>@bfXPte!bM{;s9@$vBt4h}|=@9)1yUS95o0=rzU4K=%GK}}69M~)ok>{&Zfsg&;S
zZcd-J{iT?VjZMtW&0#VbQ7V-@dGZ_0&CLuB4o2VYUl#lU9*tt0TuGwK00000NkvXX
Hu0mjfL-F?g

diff --git a/features/step_definitions/common_steps.rb b/features/step_definitions/common_steps.rb
index bf87f24d569..ea12ec2453d 100644
--- a/features/step_definitions/common_steps.rb
+++ b/features/step_definitions/common_steps.rb
@@ -807,30 +807,22 @@ Given /^I shutdown Tails and wait for the computer to power off$/ do
   step 'Tails eventually shuts down'
 end
 
-def open_gnome_menu(name, menu_item)
-  menu_position = Dogtail::Application.new('gnome-shell')
-                                      .child(name, roleName: 'menu')
-                                      .position
-  # On Bullseye the top bar menus are problematic: we generally have
-  # to click several times for them to open.
-  retry_action(20) do
-    @screen.click(*menu_position)
-    # Wait for the menu to be open and to have settled: sometimes menu
-    # components appear too fast, before the menu has settled down to
-    # its final size and the button we want to click is in its final
-    # position. Dogtail might allow us to fix that, but given how rare
-    # this problem is, it's not worth the effort.
-    sleep 5
-    @screen.find(menu_item)
+def open_gnome_menu(name)
+  menu = Dogtail::Application.new('gnome-shell')
+                             .child(name, roleName: 'menu')
+  try_for(5) do
+    menu.grabFocus
+    menu.focused
   end
+  @screen.press('Return')
 end
 
 def open_gnome_places_menu
-  open_gnome_menu('Places', 'GnomePlacesHome.png')
+  open_gnome_menu('Places')
 end
 
 def open_gnome_system_menu
-  open_gnome_menu('System', 'TailsEmergencyShutdownHalt.png')
+  open_gnome_menu('System')
 end
 
 When /^I request a (shutdown|reboot) using the system menu$/ do |action|
-- 
GitLab


From 678054b65b9c6511de883621edda615556f36e90 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Thu, 2 Mar 2023 08:42:24 +0100
Subject: [PATCH 081/187] Test Suite: Fix failure because of outdated
 screenshot

---
 .../images/TailsGreeterPersistencePassphrase.png | Bin 4437 -> 0 bytes
 .../step_definitions/untrusted_partitions.rb     |   6 ++++--
 features/step_definitions/usb.rb                 |  15 ++++++++++++---
 3 files changed, 16 insertions(+), 5 deletions(-)
 delete mode 100644 features/images/TailsGreeterPersistencePassphrase.png

diff --git a/features/images/TailsGreeterPersistencePassphrase.png b/features/images/TailsGreeterPersistencePassphrase.png
deleted file mode 100644
index 2d5c14f8b7a424586d393a97109471d4edd73c36..0000000000000000000000000000000000000000
GIT binary patch
literal 0
HcmV?d00001

literal 4437
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
b5)k|s<$1{=3<iAl00000NkvXXu0mjf)Z}hg

diff --git a/features/step_definitions/untrusted_partitions.rb b/features/step_definitions/untrusted_partitions.rb
index 94c6c98144f..165a5476e5d 100644
--- a/features/step_definitions/untrusted_partitions.rb
+++ b/features/step_definitions/untrusted_partitions.rb
@@ -65,8 +65,10 @@ end
 
 Then /^Tails Greeter has( not)? detected a persistence partition$/ do |no_persistence|
   expecting_persistence = no_persistence.nil?
-  @screen.find('TailsGreeter.png')
-  found_persistence = @screen.exists('TailsGreeterPersistencePassphrase.png')
+  assert !greeter.nil?
+  found_persistence = greeter
+                      .child?('Unlock', roleName:    'push button',
+                                        showingOnly: true)
   assert_equal(expecting_persistence, found_persistence,
                "Persistence is unexpectedly#{no_persistence} enabled")
 end
diff --git a/features/step_definitions/usb.rb b/features/step_definitions/usb.rb
index 2eb1642296f..324f3f5db94 100644
--- a/features/step_definitions/usb.rb
+++ b/features/step_definitions/usb.rb
@@ -452,14 +452,23 @@ Then /^a Tails persistence partition exists on USB drive "([^"]+)"$/ do |name|
 end
 
 Given /^I enable persistence( with the changed passphrase)?$/ do |with_changed_passphrase|
-  @screen.wait('TailsGreeterPersistencePassphrase.png', 60).click
-  sleep 1
+  # @type [Dogtail::Node]
+  passphrase_entry = nil
+  try_for(60) do
+    passphrase_entry = greeter
+                       .child(roleName: 'password text', showingOnly: true)
+    passphrase_entry.grabFocus
+    passphrase_entry.focused
+  end
+  assert !passphrase_entry.nil?
+
   password = if with_changed_passphrase
                @changed_persistence_password
              else
                @persistence_password
              end
-  @screen.type(password, ['Return'])
+  passphrase_entry.text = password
+  @screen.press('Return')
 
   # Wait until the Persistent Storage was unlocked. We use the fact that
   # the unlock button is made invisible when the Persistent Storage is
-- 
GitLab


From 7a55692d249a4b450db8fce9a29275f8ce9ae7cb Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Thu, 2 Mar 2023 09:11:20 +0100
Subject: [PATCH 082/187] Test Suite: Avoid spamming log with stacktrace of the
 same error

---
 features/support/helpers/misc_helpers.rb | 13 ++++++++++---
 1 file changed, 10 insertions(+), 3 deletions(-)

diff --git a/features/support/helpers/misc_helpers.rb b/features/support/helpers/misc_helpers.rb
index 5cb1cecae4f..cb21e5d73f6 100644
--- a/features/support/helpers/misc_helpers.rb
+++ b/features/support/helpers/misc_helpers.rb
@@ -90,14 +90,20 @@ def try_for(timeout, **options)
         # Most other exceptions, that inherit from StandardError, are ignored
         # while trying the block. We save the last exception so we can
         # print it in case of a timeout.
-        last_exception = Cucumber::Formatter::BacktraceFilter.new(e).exception
+        e = Cucumber::Formatter::BacktraceFilter.new(e).exception
         if options[:log]
           msg = "try_for: failed with exception: #{e.class}: #{e}"
-          if e.class != FindFailed
-            msg += "\n#{last_exception.backtrace.join("\n")}"
+          # Log the stack trace unless the exception is the same as the
+          # last exception
+          if last_exception.nil? || (
+            e.class != last_exception.class &&
+            e.message != last_exception.message
+          )
+            msg += "\n#{e.backtrace.join("\n")}"
           end
           debug_log(msg)
         end
+        last_exception = e
       rescue Exception => e # rubocop:disable Lint/RescueException
         # Any other exception is rethrown as-is: it is probably not
         # the kind of failure that try_for is supposed to mask.
@@ -134,6 +140,7 @@ rescue unique_timeout_exception
   if last_exception
     msg += "\nLast ignored exception was: " \
            "#{last_exception.class}: #{last_exception}"
+    msg += "\n#{last_exception.backtrace.join("\n")}"
   end
   raise exc_class, msg
 end
-- 
GitLab


From 56e5aaabf2fed2460ca1cd6f2b8897cf60593fe7 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Thu, 2 Mar 2023 09:18:39 +0100
Subject: [PATCH 083/187] Test Suite: Use Dogtail to check if the Greeter has
 started

---
 features/step_definitions/common_steps.rb | 23 ++++-------------------
 1 file changed, 4 insertions(+), 19 deletions(-)

diff --git a/features/step_definitions/common_steps.rb b/features/step_definitions/common_steps.rb
index ea12ec2453d..e18c312cdfa 100644
--- a/features/step_definitions/common_steps.rb
+++ b/features/step_definitions/common_steps.rb
@@ -325,26 +325,11 @@ Given /^the computer (?:re)?boots Tails( with genuine APT sources)?$/ do |keep_a
                ' blacklist=psmouse' \
                " #{early_patch} #{@boot_options} #{extra_boot_options}",
                [boot_key])
-  @screen.wait('TailsGreeter.png', 5 * 60)
-  # When enter_boot_menu_cmdline has rebooted the system after the Greeter
-  # had already been displayed, after the reboot:
-  # 1. The Greeter shows up, but it's an artifact of the previous boot
-  #    (from graphics memory?)
-  # 2. The screen turns black (for a few seconds on my system).
-  # 3. Finally, the Greeter from this boot starts (one can see the animation).
-  #
-  # In such a situation, the previous instruction will erroneously
-  # succeed at step 1, and then following steps that interact with
-  # the Greeter can fail, if they're performed before step 3 happens.
-  #
-  # To workaround this problem, let's wait a bit for the transition
-  # steps 1 and 3 happens, when we know we had to reboot the VM
-  # in enter_boot_menu_cmdline.
-  if @has_been_reset
-    sleep 15
-    @screen.find('TailsGreeter.png')
+  $vm.wait_until_remote_shell_is_up(5 * 60)
+  try_for(60) do
+    !greeter.nil?
   end
-  $vm.wait_until_remote_shell_is_up
+
   post_vm_start_hook
   configure_simulated_Tor_network unless $config['DISABLE_CHUTNEY']
   # This is required to use APT in the test suite as explained in
-- 
GitLab


From b1356f97bffd7472ec28bb0ac960124b6ef0d639 Mon Sep 17 00:00:00 2001
From: boyska <boyska@riseup.net>
Date: Mon, 6 Mar 2023 09:48:51 +0000
Subject: [PATCH 084/187] 05-replace_swapon: Improve device check
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

I really don't expect any attacker to be able to put their swap partition in /dev/disk/foo/dev/zram123, but just in case, I'm adding the '^' anchor.

The second small change (/dev → /) tries to avoid even swapon /run/user/1000/media/myexternaldisk/swapfile, even if that probably wouldn't happen automatically anyway.
---
 config/chroot_local-hooks/05-replace_swapon | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/config/chroot_local-hooks/05-replace_swapon b/config/chroot_local-hooks/05-replace_swapon
index de28e74b81e..d14bf578119 100755
--- a/config/chroot_local-hooks/05-replace_swapon
+++ b/config/chroot_local-hooks/05-replace_swapon
@@ -19,7 +19,7 @@ cat > $SWAPON << 'EOF'
 set -eu
 
 for param in "$@"; do
-  if echo "${param}" | grep -v /dev/zram | grep -q /dev; then
+  if echo "${param}" | grep -v '^/dev/zram' | grep -q /; then
     echo >&2 "Setting up swap is only allowed for zram devices"
     exit 1
   fi
-- 
GitLab


From dc6a28e49d89f1aed8d954475c7f34e633ca64cc Mon Sep 17 00:00:00 2001
From: boyska <boyska@riseup.net>
Date: Mon, 6 Mar 2023 09:49:43 +0000
Subject: [PATCH 085/187] 05-replace_swapon: Use exec to run the original
 swapon

---
 config/chroot_local-hooks/05-replace_swapon | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/config/chroot_local-hooks/05-replace_swapon b/config/chroot_local-hooks/05-replace_swapon
index d14bf578119..764c5bc1eb6 100755
--- a/config/chroot_local-hooks/05-replace_swapon
+++ b/config/chroot_local-hooks/05-replace_swapon
@@ -25,6 +25,6 @@ for param in "$@"; do
   fi
 done
 
-/sbin/swapon.distrib "$@"
+exec /sbin/swapon.distrib "$@"
 EOF
 chmod 755 $SWAPON
-- 
GitLab


From 3432ed8298be805c8856e2dff327b89bdb65c3b5 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Tue, 7 Mar 2023 15:44:36 +0100
Subject: [PATCH 086/187] tps: Prevent symlink attacks in on-activated-hooks

... by using the nosymfollow mount point when accessing files controlled
by amnesia.

Closes #19474
---
 .../dist-packages/tps/configuration/mount.py      | 15 ++++++++++++++-
 .../GnuPG/maybe-restore-gnupg-pubring             |  3 ++-
 .../create-persistent-tor-browser-directory       | 12 +++---------
 .../delete-persistent-directory                   |  3 ++-
 4 files changed, 21 insertions(+), 12 deletions(-)

diff --git a/config/chroot_local-includes/usr/lib/python3/dist-packages/tps/configuration/mount.py b/config/chroot_local-includes/usr/lib/python3/dist-packages/tps/configuration/mount.py
index e0c2d4d01cf..85d0e17402c 100644
--- a/config/chroot_local-includes/usr/lib/python3/dist-packages/tps/configuration/mount.py
+++ b/config/chroot_local-includes/usr/lib/python3/dist-packages/tps/configuration/mount.py
@@ -10,7 +10,8 @@ from tailslib import LIVE_USERNAME, LIVE_USER_UID, NOSYMFOLLOW_MOUNTPOINT
 import tps.logging
 from tps import _, TPS_MOUNT_POINT
 from tps import executil
-from tps.mountutil import mount, MOUNTFLAG_BIND
+from tps.mountutil import mount, MOUNTFLAG_BIND, MOUNTFLAG_NOSYMFOLLOW, \
+    MOUNTFLAG_REMOUNT
 from tps.dbus.errors import TargetIsBusyError
 
 logger = tps.logging.get_logger(__name__)
@@ -288,7 +289,19 @@ class Mount(object):
         # command, because the latter calls readlink(2) on the target
         # path, which makes it resolve symlinks even though the
         # nosymfollow option is set on the target filesystem.
+        # Note that this actually creates two bind mounts, one below
+        # the nosymfollow mount point (self.dest) and (because the
+        # nosymfollow mount point is a bind mount itself) one in the
+        # actual destination (self.dest_orig).
+        logger.debug(f"Executing: mount --bind {self.src} {self.dest}")
         mount(self.src, self.dest, MOUNTFLAG_BIND)
+        # Remount the mount point with the nosymfollow option. This only
+        # remounts the mount point below the nosymfollow mountpoint
+        # (self.dest) not the actual destination (self.dest_orig).
+        logger.debug(f"Executing: mount -o remount,nosymfollow {self.dest}")
+        mount(src="", dest=self.dest,
+              flags=MOUNTFLAG_REMOUNT | MOUNTFLAG_NOSYMFOLLOW,
+        )
 
     def deactivate(self):
         try:
diff --git a/config/chroot_local-includes/usr/local/lib/persistent-storage/on-activated-hooks/GnuPG/maybe-restore-gnupg-pubring b/config/chroot_local-includes/usr/local/lib/persistent-storage/on-activated-hooks/GnuPG/maybe-restore-gnupg-pubring
index da015d57199..d4a4cfd3a4b 100755
--- a/config/chroot_local-includes/usr/local/lib/persistent-storage/on-activated-hooks/GnuPG/maybe-restore-gnupg-pubring
+++ b/config/chroot_local-includes/usr/local/lib/persistent-storage/on-activated-hooks/GnuPG/maybe-restore-gnupg-pubring
@@ -4,7 +4,8 @@
 
 set -eu
 
-KEYRING="/home/amnesia/.gnupg/pubring.kbx"
+NOSYMFOLLOW_MOUNTPOINT='/var/lib/tails-persistent-storage/nosymfollow'
+KEYRING="${NOSYMFOLLOW_MOUNTPOINT}/home/amnesia/.gnupg/pubring.kbx"
 KEYRING_BAK="${KEYRING}~"
 KEYRING_SIZE="$(stat -c %s ${KEYRING} || echo 0)"
 
diff --git a/config/chroot_local-includes/usr/local/lib/persistent-storage/on-activated-hooks/PersistentDirectory/create-persistent-tor-browser-directory b/config/chroot_local-includes/usr/local/lib/persistent-storage/on-activated-hooks/PersistentDirectory/create-persistent-tor-browser-directory
index 5a8fe356ab8..156db267c51 100755
--- a/config/chroot_local-includes/usr/local/lib/persistent-storage/on-activated-hooks/PersistentDirectory/create-persistent-tor-browser-directory
+++ b/config/chroot_local-includes/usr/local/lib/persistent-storage/on-activated-hooks/PersistentDirectory/create-persistent-tor-browser-directory
@@ -3,12 +3,6 @@
 set -e
 set -u
 
-TOR_BROWSER_PERSISTENT_DIR='/home/amnesia/Persistent/Tor Browser'
-
-# it's tempting to use --owner option, but that will follow symlinks,
-# which could pave the way for symlink attacks
-install --directory "$TOR_BROWSER_PERSISTENT_DIR"
-chown --no-dereference amnesia:amnesia "$TOR_BROWSER_PERSISTENT_DIR"
-
-# chmod never changes the permissions of symbolic links; see chmod(1)
-chmod 0700 "$TOR_BROWSER_PERSISTENT_DIR"
+NOSYMFOLLOW_MOUNTPOINT='/var/lib/tails-persistent-storage/nosymfollow'
+TARGET="${NOSYMFOLLOW_MOUNTPOINT}/home/amnesia/Persistent/Tor Browser"
+install -d -o amnesia -g amnesia -m 0700 "${TARGET}"
diff --git a/config/chroot_local-includes/usr/local/lib/persistent-storage/on-deactivated-hooks/PersistentDirectory/delete-persistent-directory b/config/chroot_local-includes/usr/local/lib/persistent-storage/on-deactivated-hooks/PersistentDirectory/delete-persistent-directory
index 581b4dc6cd6..1689006ad71 100755
--- a/config/chroot_local-includes/usr/local/lib/persistent-storage/on-deactivated-hooks/PersistentDirectory/delete-persistent-directory
+++ b/config/chroot_local-includes/usr/local/lib/persistent-storage/on-deactivated-hooks/PersistentDirectory/delete-persistent-directory
@@ -3,5 +3,6 @@
 set -e
 set -u
 
-PERSISTENT_DIR='/home/amnesia/Persistent'
+NOSYMFOLLOW_MOUNTPOINT='/var/lib/tails-persistent-storage/nosymfollow'
+PERSISTENT_DIR="${NOSYMFOLLOW_MOUNTPOINT}/home/amnesia/Persistent"
 rmdir "${PERSISTENT_DIR}"
-- 
GitLab


From 593c77a008e77ad503ef7e5a5a8c25dc2a8617a5 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Wed, 8 Mar 2023 13:19:50 +0100
Subject: [PATCH 087/187] tps: Use /run/nosymfollow instead of
 /var/lib/tails-persistent-storage/nosymfollow

It fits better below /run than below /var/lib and this avoids that we
have to make /var/lib/tails-persistent-storage traversable by everyone
(/run already is).
---
 .../usr/lib/python3/dist-packages/tailslib/__init__.py |  2 +-
 .../usr/lib/tmpfiles.d/tails-persistent-storage.conf   | 10 +---------
 .../GnuPG/maybe-restore-gnupg-pubring                  |  2 +-
 .../create-persistent-tor-browser-directory            |  2 +-
 .../PersistentDirectory/delete-persistent-directory    |  2 +-
 .../usr/local/lib/persistent-storage/pre-start         |  2 +-
 6 files changed, 6 insertions(+), 14 deletions(-)

diff --git a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/__init__.py b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/__init__.py
index 32bea058146..88ff18a55ec 100644
--- a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/__init__.py
+++ b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/__init__.py
@@ -4,4 +4,4 @@ CLEARNET_USERNAME = "clearnet"
 LIVE_USERNAME = "amnesia"
 LIVE_USER_UID = 1000
 PERSISTENT_STORAGE_USERNAME = "tails-persistent-storage"
-NOSYMFOLLOW_MOUNTPOINT = "/var/lib/tails-persistent-storage/nosymfollow"
+NOSYMFOLLOW_MOUNTPOINT = "/run/nosymfollow"
diff --git a/config/chroot_local-includes/usr/lib/tmpfiles.d/tails-persistent-storage.conf b/config/chroot_local-includes/usr/lib/tmpfiles.d/tails-persistent-storage.conf
index d2bbb4ba36b..0d21e87cfb1 100644
--- a/config/chroot_local-includes/usr/lib/tmpfiles.d/tails-persistent-storage.conf
+++ b/config/chroot_local-includes/usr/lib/tmpfiles.d/tails-persistent-storage.conf
@@ -1,14 +1,6 @@
 # Type	Path						Mode	UID		GID	        Age	Argument
 
-# We need to give traverse ("x") permission to everyone, otherwise you
-# cannot traverse to this, which is needed for "mounts" that use
-# symlinks, such as Dotfiles (see (#19278) It's not a security
-# problem, because under this directory you can only access
-# nosymfollow, which is the bind-mounted root filesystem itself, which
-# is not sensitive of course.
-d	/var/lib/tails-persistent-storage		00701	root		root	        -	-
-
 # We don't care about the exact permissions here: the / will be
 # bind-mounted on this, changing the permissions (most probably to
 # 0755)
-d	/var/lib/tails-persistent-storage/nosymfollow	00700	root		root	        -	-
+d	/run/nosymfollow	00700	root		root	        -	-
diff --git a/config/chroot_local-includes/usr/local/lib/persistent-storage/on-activated-hooks/GnuPG/maybe-restore-gnupg-pubring b/config/chroot_local-includes/usr/local/lib/persistent-storage/on-activated-hooks/GnuPG/maybe-restore-gnupg-pubring
index d4a4cfd3a4b..b0608141a7b 100755
--- a/config/chroot_local-includes/usr/local/lib/persistent-storage/on-activated-hooks/GnuPG/maybe-restore-gnupg-pubring
+++ b/config/chroot_local-includes/usr/local/lib/persistent-storage/on-activated-hooks/GnuPG/maybe-restore-gnupg-pubring
@@ -4,7 +4,7 @@
 
 set -eu
 
-NOSYMFOLLOW_MOUNTPOINT='/var/lib/tails-persistent-storage/nosymfollow'
+NOSYMFOLLOW_MOUNTPOINT='/run/nosymfollow'
 KEYRING="${NOSYMFOLLOW_MOUNTPOINT}/home/amnesia/.gnupg/pubring.kbx"
 KEYRING_BAK="${KEYRING}~"
 KEYRING_SIZE="$(stat -c %s ${KEYRING} || echo 0)"
diff --git a/config/chroot_local-includes/usr/local/lib/persistent-storage/on-activated-hooks/PersistentDirectory/create-persistent-tor-browser-directory b/config/chroot_local-includes/usr/local/lib/persistent-storage/on-activated-hooks/PersistentDirectory/create-persistent-tor-browser-directory
index 156db267c51..53ffd60fba9 100755
--- a/config/chroot_local-includes/usr/local/lib/persistent-storage/on-activated-hooks/PersistentDirectory/create-persistent-tor-browser-directory
+++ b/config/chroot_local-includes/usr/local/lib/persistent-storage/on-activated-hooks/PersistentDirectory/create-persistent-tor-browser-directory
@@ -3,6 +3,6 @@
 set -e
 set -u
 
-NOSYMFOLLOW_MOUNTPOINT='/var/lib/tails-persistent-storage/nosymfollow'
+NOSYMFOLLOW_MOUNTPOINT='/run/nosymfollow'
 TARGET="${NOSYMFOLLOW_MOUNTPOINT}/home/amnesia/Persistent/Tor Browser"
 install -d -o amnesia -g amnesia -m 0700 "${TARGET}"
diff --git a/config/chroot_local-includes/usr/local/lib/persistent-storage/on-deactivated-hooks/PersistentDirectory/delete-persistent-directory b/config/chroot_local-includes/usr/local/lib/persistent-storage/on-deactivated-hooks/PersistentDirectory/delete-persistent-directory
index 1689006ad71..abd1d86f9df 100755
--- a/config/chroot_local-includes/usr/local/lib/persistent-storage/on-deactivated-hooks/PersistentDirectory/delete-persistent-directory
+++ b/config/chroot_local-includes/usr/local/lib/persistent-storage/on-deactivated-hooks/PersistentDirectory/delete-persistent-directory
@@ -3,6 +3,6 @@
 set -e
 set -u
 
-NOSYMFOLLOW_MOUNTPOINT='/var/lib/tails-persistent-storage/nosymfollow'
+NOSYMFOLLOW_MOUNTPOINT='/run/nosymfollow'
 PERSISTENT_DIR="${NOSYMFOLLOW_MOUNTPOINT}/home/amnesia/Persistent"
 rmdir "${PERSISTENT_DIR}"
diff --git a/config/chroot_local-includes/usr/local/lib/persistent-storage/pre-start b/config/chroot_local-includes/usr/local/lib/persistent-storage/pre-start
index ccbde9e79d6..31128ace25d 100755
--- a/config/chroot_local-includes/usr/local/lib/persistent-storage/pre-start
+++ b/config/chroot_local-includes/usr/local/lib/persistent-storage/pre-start
@@ -2,7 +2,7 @@
 
 set -eu
 
-NOSYMFOLLOW_MOUNTPOINT=/var/lib/tails-persistent-storage/nosymfollow
+NOSYMFOLLOW_MOUNTPOINT=/run/nosymfollow
 
 # Create a bind-mount of the root filesystem with the nosymfollow option set.
 # When activating Persistent Storage features, we use this mountpoint to prevent
-- 
GitLab


From 093933093af2f8ff3d52062b178a58662cd4dc76 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Wed, 8 Mar 2023 15:48:16 +0100
Subject: [PATCH 088/187] 10-tor.sh: Add log output

---
 .../etc/NetworkManager/dispatcher.d/10-tor.sh         | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/config/chroot_local-includes/etc/NetworkManager/dispatcher.d/10-tor.sh b/config/chroot_local-includes/etc/NetworkManager/dispatcher.d/10-tor.sh
index a084c1ec37b..600b972fdb8 100755
--- a/config/chroot_local-includes/etc/NetworkManager/dispatcher.d/10-tor.sh
+++ b/config/chroot_local-includes/etc/NetworkManager/dispatcher.d/10-tor.sh
@@ -8,9 +8,12 @@ if [ -z "$1" ] || [ "$1" = "lo" ]; then
     exit 0
 fi
 
+BASENAME=$(basename "$0")
+
 if [ "$2" = "up" ]; then
     : # go on, that's what this script is for
 elif [ "${2}" = "down" ]; then
+    echo >&2 "$BASENAME: $1 down: stopping tails-tor-has-bootstrapped.target"
     systemctl --no-block stop tails-tor-has-bootstrapped.target
     exit 0
 else
@@ -24,21 +27,29 @@ fi
 # * https://gitlab.torproject.org/tpo/core/tor/-/issues/1247
 # * https://gitlab.tails.boum.org/tails/tails/-/blob/7fae4a761a06e5a14048baff21e0bdb71a1f7226/wiki/src/bugs/tor_vs_networkmanager.mdwn
 # To work around this we restart Tor.
+echo >&2 "$BASENAME: $1 up: restarting tor@default.service"
 systemctl restart tor@default.service
 
+echo >&2 "$BASENAME: $1 up: waiting for gnome-shell"
 while ! pgrep --euid amnesia -x gnome-shell > /dev/null; do
     sleep 1
 done
+echo >&2 "$BASENAME: $1 up: waiting for user@1000.service"
 while ! systemctl is-active -q user@1000.service; do
     sleep 1
 done
 
+echo >&2 "$BASENAME: $1 up: starting tca.service"
 /usr/local/lib/systemctl-user amnesia start tca.service
 
 # that's not what it looks: htpdate will not really be started until Tor has bootstrapped
+echo >&2 "$BASENAME: $1 up: restarting htpdate.service"
 systemctl --no-block restart htpdate.service
 
 # Wait until the user is done with configuring Tor
+echo >&2 "$BASENAME: $1 up: waiting until Tor was configured"
 until [ "$(/usr/local/lib/tor_variable get --type=conf DisableNetwork)" = 0 ]; do
     sleep 1
 done
+
+echo >&2 "$BASENAME: $1 up: Finished"
-- 
GitLab


From 38dfb3b940d85a216fe75457d8fcf9e52572c38b Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Wed, 8 Mar 2023 15:52:54 +0100
Subject: [PATCH 089/187] Remote shell: Improve log output

---
 .../usr/local/lib/tails-autotest-remote-shell                   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell b/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell
index f2443b04d4b..c8559b49913 100755
--- a/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell
+++ b/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell
@@ -255,7 +255,7 @@ def main():
                         python_sessions[user].process.poll() is not None:
                     python_sessions[user] = PythonSession(user)
                 session = python_sessions[user]
-                print(f"Executing as {user}:\n{code}", file=sys.stderr)
+                print(f"Executing Python as {user}:\n{code}", file=sys.stderr)
                 exc, out_str, err_str = session.execute(code)
                 ret = json.dumps([id, 'success', exc, out_str, err_str])
                 print(f"Result: {ret}")
-- 
GitLab


From 634b19bd469ede1218aafd2b4b0600f3edb1cc11 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Thu, 2 Mar 2023 15:51:03 +0100
Subject: [PATCH 090/187] Remote Shell: Automatically restart service when it
 fails

I've been debugging a case where the remote-shell service has status
"code=killed signal=IO", i.e. it was killed via a SIGIO for an unclear
reason. To avoid test failures because of problems like this, I'm
configuring systemd to automatically restart the service when it fails.
---
 .../lib/systemd/system/tails-autotest-remote-shell.service       | 1 +
 1 file changed, 1 insertion(+)

diff --git a/config/chroot_local-includes/lib/systemd/system/tails-autotest-remote-shell.service b/config/chroot_local-includes/lib/systemd/system/tails-autotest-remote-shell.service
index aeb31ed0b3d..5a96fc82323 100644
--- a/config/chroot_local-includes/lib/systemd/system/tails-autotest-remote-shell.service
+++ b/config/chroot_local-includes/lib/systemd/system/tails-autotest-remote-shell.service
@@ -8,6 +8,7 @@ Before=gdm.service
 Type=notify
 ExecStart=/usr/local/lib/tails-autotest-remote-shell
 OOMScoreAdjust=-1000
+Restart=always
 
 [Install]
 WantedBy=multi-user.target
-- 
GitLab


From a8ba82dd841eb22c8071764bfdc403be23f9fdaa Mon Sep 17 00:00:00 2001
From: boyska <boyska@riseup.net>
Date: Mon, 6 Mar 2023 11:23:52 +0000
Subject: [PATCH 091/187] Test suite: Make output easier to search for

---
 features/support/hooks.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/features/support/hooks.rb b/features/support/hooks.rb
index f2e4f92407a..b7a42f84f18 100644
--- a/features/support/hooks.rb
+++ b/features/support/hooks.rb
@@ -305,7 +305,7 @@ After('@product') do |scenario|
     mins = format('%<mins>02d', mins: (time_of_fail / 60) % 60)
     hrs  = format('%<hrs>02d',  hrs: time_of_fail / (60 * 60))
     elapsed = "#{hrs}:#{mins}:#{secs}"
-    info_log("Scenario failed at time #{elapsed}")
+    info_log("SCENARIO FAILED: '#{scenario.name}' (at time #{elapsed})")
     unless $vm.display.nil?
       screenshot_path = sanitize_filename("#{scenario.name}.png")
       $vm.display.screenshot(screenshot_path)
-- 
GitLab


From df39faec011738c180884a38dbda99d183f251cc Mon Sep 17 00:00:00 2001
From: sajolida <sajolida@pimienta.org>
Date: Tue, 7 Mar 2023 17:54:01 +0100
Subject: [PATCH 092/187] Help new users understand better the encryption model
 (#18732)

---
 config/chroot_local-includes/usr/share/tails/greeter/main.ui.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/config/chroot_local-includes/usr/share/tails/greeter/main.ui.in b/config/chroot_local-includes/usr/share/tails/greeter/main.ui.in
index bf49e2229c7..30fcbfe2366 100644
--- a/config/chroot_local-includes/usr/share/tails/greeter/main.ui.in
+++ b/config/chroot_local-includes/usr/share/tails/greeter/main.ui.in
@@ -503,7 +503,7 @@
                     </child>
                     <child>
                       <object class="GtkButton" id="button_storage_unlock">
-                        <property name="label" translatable="yes">Unlock</property>
+                        <property name="label" translatable="yes">Unlock Encryption</property>
                         <property name="visible">True</property>
                         <property name="sensitive">False</property>
                         <property name="can_focus">True</property>
-- 
GitLab


From 9d1f50663cd39370510ede94f3f497bb0f0117fc Mon Sep 17 00:00:00 2001
From: boyska <boyska@riseup.net>
Date: Thu, 9 Mar 2023 11:35:03 +0100
Subject: [PATCH 093/187] move swapon.tails in its own file

this enables easier syntax checking
---
 config/chroot_local-hooks/05-replace_swapon    | 16 +---------------
 config/chroot_local-includes/sbin/swapon.tails | 13 +++++++++++++
 2 files changed, 14 insertions(+), 15 deletions(-)
 create mode 100755 config/chroot_local-includes/sbin/swapon.tails

diff --git a/config/chroot_local-hooks/05-replace_swapon b/config/chroot_local-hooks/05-replace_swapon
index 764c5bc1eb6..27d93e77227 100755
--- a/config/chroot_local-hooks/05-replace_swapon
+++ b/config/chroot_local-hooks/05-replace_swapon
@@ -13,18 +13,4 @@ SWAPON=/sbin/swapon
 # now (--rename) as well for any future one (hint: apt-get upgrade...).
 dpkg-divert --rename --add /sbin/swapon
 
-cat > $SWAPON << 'EOF'
-#!/bin/sh
-
-set -eu
-
-for param in "$@"; do
-  if echo "${param}" | grep -v '^/dev/zram' | grep -q /; then
-    echo >&2 "Setting up swap is only allowed for zram devices"
-    exit 1
-  fi
-done
-
-exec /sbin/swapon.distrib "$@"
-EOF
-chmod 755 $SWAPON
+ln -s /sbin/swapon.tails /sbin/swapon
diff --git a/config/chroot_local-includes/sbin/swapon.tails b/config/chroot_local-includes/sbin/swapon.tails
new file mode 100755
index 00000000000..ab2ee85b82f
--- /dev/null
+++ b/config/chroot_local-includes/sbin/swapon.tails
@@ -0,0 +1,13 @@
+#!/bin/sh
+
+set -eu
+
+for param in "$@"; do
+  if echo "${param}" | grep -v '^/dev/zram' | grep -q /; then
+    echo >&2 "Setting up swap is only allowed for zram devices"
+    exit 1
+  fi
+done
+
+exec /sbin/swapon.distrib "$@"
+
-- 
GitLab


From e9b9d1c8d79780a231a428bdc1ec1640a3945405 Mon Sep 17 00:00:00 2001
From: boyska <boyska@riseup.net>
Date: Thu, 9 Mar 2023 11:36:53 +0100
Subject: [PATCH 094/187] chdir / makes paths more predictable

we're grepping for paths, so let's be sure about our *current*
directory.
---
 config/chroot_local-includes/sbin/swapon.tails | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/config/chroot_local-includes/sbin/swapon.tails b/config/chroot_local-includes/sbin/swapon.tails
index ab2ee85b82f..22d684c28de 100755
--- a/config/chroot_local-includes/sbin/swapon.tails
+++ b/config/chroot_local-includes/sbin/swapon.tails
@@ -2,6 +2,8 @@
 
 set -eu
 
+cd /
+
 for param in "$@"; do
   if echo "${param}" | grep -v '^/dev/zram' | grep -q /; then
     echo >&2 "Setting up swap is only allowed for zram devices"
-- 
GitLab


From d24f501c33ae3e3b2d02e347ad983aae86c8cf12 Mon Sep 17 00:00:00 2001
From: boyska <boyska@riseup.net>
Date: Thu, 9 Mar 2023 18:53:51 +0100
Subject: [PATCH 095/187] remove unused variable

---
 config/chroot_local-hooks/05-replace_swapon | 2 --
 1 file changed, 2 deletions(-)

diff --git a/config/chroot_local-hooks/05-replace_swapon b/config/chroot_local-hooks/05-replace_swapon
index 27d93e77227..ccbc06e17ec 100755
--- a/config/chroot_local-hooks/05-replace_swapon
+++ b/config/chroot_local-hooks/05-replace_swapon
@@ -7,8 +7,6 @@ echo "Replacing swapon executable"
 # Only allow setting up swap for zram devices.
 # Rationale: security-in-depth model.
 
-SWAPON=/sbin/swapon
-
 # Move any /sbin/swapon installed by any package out of the way,
 # now (--rename) as well for any future one (hint: apt-get upgrade...).
 dpkg-divert --rename --add /sbin/swapon
-- 
GitLab


From 6e50b4af3db7f6a5863c0e519bb2af4ae9d35b9f Mon Sep 17 00:00:00 2001
From: sajolida <sajolida@pimienta.org>
Date: Fri, 10 Mar 2023 10:58:22 +0100
Subject: [PATCH 096/187] Document screenshot and screencast features (#12723)

---
 .../how/user_experience/recording.mdwn        | 53 ++-----------------
 .../additional_software.mdwn                  |  2 -
 wiki/src/doc/sensitive_documents.index.mdwn   |  1 +
 3 files changed, 5 insertions(+), 51 deletions(-)

diff --git a/wiki/src/contribute/how/user_experience/recording.mdwn b/wiki/src/contribute/how/user_experience/recording.mdwn
index f2ff87e6f10..8153920897b 100644
--- a/wiki/src/contribute/how/user_experience/recording.mdwn
+++ b/wiki/src/contribute/how/user_experience/recording.mdwn
@@ -43,52 +43,6 @@ recording with an external camera:
 - Better image quality
 - Lighter setup
 
-Using <span class="application">Kazam</span>
---------------------------------------------
-
-You can use [*Kazam*](http://recordmydesktop.sourceforge.net/) from Tails:
-
-1. Install *Kazam*:
-
-   <p class="pre command">apt install kazam</span>
-
-1. Start *Kazam* and edit the *Kazam* preferences:
-
-   - In the **General** tab:
-
-     - Adjust the capture microphone
-
-   - In the **Screencast** tag:
-
-     - Lower the framerate to 10 to avoid data loss.
-
-     - Change the file format to WEBM.
-
-     - Enable **Automatic file saving**.
-
-     <div class="bug">
-     <p>The directory preferences is reset to <em>~/Videos</em> every time by <em>Kazam</em>.</p>
-     </div>
-
-### To autosave the recordings in the Persistent Storage
-
-1. Create a *Persistent/Videos* directory.
-
-1. Then, either:
-
-   - Temporarily, mount the *Videos* directory on *Persistent/Videos*.
-
-     To do so, execute the following command:
-
-     <p class="pre command">sudo mount --bind ~/Persistent/Videos ~/Videos</p>
-
-   - Permanently, map the *Videos* directory to *Persistent/Videos* in
-     the configuration of your Persistent Storage.
-
-     To do so, add the following line to your */live/persistence/TailsData_unlocked/persistence.conf*:
-
-     <p class="pre">/home/amnesia/Videos        source=Persistent/Videos</p>
-
 Using GNOME Shell
 -----------------
 
@@ -99,9 +53,10 @@ The video is saved to <span class="filename">~/Videos/</span>.
 
 <div class="bug">
 
-<p>The screencast stops after 30 seconds. See [[!tails_ticket
-12723]].</p>
+<p>Unfortunately, this screencast has no sound and more complete applications
+like <i>Kazam</i> stopped working in Tails 5.8 (December 2022). Tails 6.0 (mid
+2023) should integrate better screencast features. ([[!tails_ticket 19441]])<p>
 
-<p>The screencast has no sound.</p>
+<p>Until then, you can record the sound with <i>Sound Recorder</i>.</p>
 
 </div>
diff --git a/wiki/src/doc/persistent_storage/additional_software.mdwn b/wiki/src/doc/persistent_storage/additional_software.mdwn
index b1fe56f71da..fc1f9fab70d 100644
--- a/wiki/src/doc/persistent_storage/additional_software.mdwn
+++ b/wiki/src/doc/persistent_storage/additional_software.mdwn
@@ -80,8 +80,6 @@ Examples of additional useful software
 
 - [*Scribus*](https://www.scribus.net/), a page layout application.
 
-- [*Kazam*](https://launchpad.net/kazam), an application to record screencasts.
-
 - [*Cheese*](https://wiki.gnome.org/Apps/Cheese), an application
   to take pictures and videos from your webcam.
 
diff --git a/wiki/src/doc/sensitive_documents.index.mdwn b/wiki/src/doc/sensitive_documents.index.mdwn
index efcff17f1b9..203cec5ded9 100644
--- a/wiki/src/doc/sensitive_documents.index.mdwn
+++ b/wiki/src/doc/sensitive_documents.index.mdwn
@@ -3,3 +3,4 @@
   - [[Graphics|sensitive_documents/graphics]]
   - [[Sound and video|sensitive_documents/sound_and_video]]
   - [[Printing and scanning|sensitive_documents/printing_and_scanning]]
+  - [[Screenshot and screencast|sensitive_documents/screenshot_and_screencast]]
-- 
GitLab


From 9c8dbe212fb63f874944dfb8820af4749cde84f8 Mon Sep 17 00:00:00 2001
From: sajolida <sajolida@pimienta.org>
Date: Sat, 11 Mar 2023 17:37:44 +0100
Subject: [PATCH 097/187] Document screenshot and screencast features (#12723)

---
 .../screenshot_and_screencast.mdwn            | 37 +++++++++++++++++++
 1 file changed, 37 insertions(+)
 create mode 100644 wiki/src/doc/sensitive_documents/screenshot_and_screencast.mdwn

diff --git a/wiki/src/doc/sensitive_documents/screenshot_and_screencast.mdwn b/wiki/src/doc/sensitive_documents/screenshot_and_screencast.mdwn
new file mode 100644
index 00000000000..ba5c763bab4
--- /dev/null
+++ b/wiki/src/doc/sensitive_documents/screenshot_and_screencast.mdwn
@@ -0,0 +1,37 @@
+[[!meta title="Screenshot and screencast"]]
+
+[[!toc]]
+
+Taking a screenshot
+===================
+
+To take a screenshot of the entire screen, part of the screen, or a single
+window choose **Applications**&nbsp;â–¸ **Screenhost**.
+
+You can also press the **PrtScn** key of the keyboard to take a screenshot of
+the entire screen instantaneously. The screenshot is saved in **Places**&nbsp;â–¸
+**Pictures**.
+
+Recording a screencast
+======================
+
+To take a screencast:
+
+1. Press the key combination **Ctrl+Alt+Shift+R**.
+
+1. A red dot appears in the system menu near the top-right corner of the
+   desktop when recording starts.
+
+1. Press again the key combination **Ctrl+Alt+Shift+R** to stop the screencast.
+
+1. The video is saved in **Places**&nbsp;â–¸ **Videos**.
+
+<div class="bug">
+
+<p>Unfortunately, this screencast has no sound and more complete applications
+like <i>Kazam</i> stopped working in Tails 5.8 (December 2022). Tails 6.0 (mid
+2023) should integrate better screencast features. ([[!tails_ticket 19441]])<p>
+
+<p>Until then, you can record the sound with <i>Sound Recorder</i>.</p>
+
+</div>
-- 
GitLab


From 9789edc8ec6c0c3a103d4c0188051f9921f418d1 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Thu, 9 Mar 2023 13:41:57 +0100
Subject: [PATCH 098/187] Remove custom window-center extension

... and configure mutter to center all new windows in the gdm context.
---
 .../usr/share/gdm/dconf/50-tails              |   3 +
 .../window-center@tails.boum.org/extension.js | 112 ------------------
 .../metadata.json                             |   9 --
 .../share/gnome-shell/modes/gdm-tails.json    |   2 -
 4 files changed, 3 insertions(+), 123 deletions(-)
 delete mode 100644 config/chroot_local-includes/usr/share/gnome-shell/extensions/window-center@tails.boum.org/extension.js
 delete mode 100644 config/chroot_local-includes/usr/share/gnome-shell/extensions/window-center@tails.boum.org/metadata.json

diff --git a/config/chroot_local-includes/usr/share/gdm/dconf/50-tails b/config/chroot_local-includes/usr/share/gdm/dconf/50-tails
index 528b1caad7b..0750f64a952 100644
--- a/config/chroot_local-includes/usr/share/gdm/dconf/50-tails
+++ b/config/chroot_local-includes/usr/share/gdm/dconf/50-tails
@@ -17,6 +17,9 @@ session-name='gdm-tails'
 event-sounds=false
 allow-volume-above-100-percent=true
 
+[org/gnome/mutter]
+center-new-windows = true
+
 [org/gnome/settings-daemon/plugins/cursor]
 active = false
 
diff --git a/config/chroot_local-includes/usr/share/gnome-shell/extensions/window-center@tails.boum.org/extension.js b/config/chroot_local-includes/usr/share/gnome-shell/extensions/window-center@tails.boum.org/extension.js
deleted file mode 100644
index 072da905107..00000000000
--- a/config/chroot_local-includes/usr/share/gnome-shell/extensions/window-center@tails.boum.org/extension.js
+++ /dev/null
@@ -1,112 +0,0 @@
-const Main = imports.ui.main;
-const GLib = imports.gi.GLib;
-
-/*
-  This extension is based on the All Windows + Save/Restore Window Positions GNOME Shell extension (https://github.com/jkavery/all-windows) by jkavery.
-  It saves/restores window positions automatically.
-*/
-
-const EXTENSION_NAME = 'Window Center';
-
-// At module scope to ride out the extension disable/enable for a system suspend/resume
-// Note that this appears to violate https://gjs.guide/extensions/review-guidelines/review-guidelines.html#destroy-all-objects
-// though the earlier the example shows init() creating an extension object.  The extension object is empty, but it's still an object.
-// This map will contain primitives but never any object references.  Are Gobject references what the guidelines are actually prohibiting?
-// If this extension were written in the style shown in the guidelines, it looks like this would be part of the Extension class,
-// initialized by init().
-const displaySize__windowId__state = new Map();
-
-// The following are only used for logging
-const EXTENSION_LOG_NAME = 'Window Center';
-const START_TIME = GLib.DateTime.new_now_local().format_iso8601();
-
-const LOG_NOTHING = 0;
-const LOG_ERROR = 1;
-const LOG_INFO = 2;
-const LOG_DEBUG = 3;
-const LOG_EVERYTHING = 4;
-
-const LOG_LEVEL = LOG_ERROR;
-
-
-function _getWindows() {
-    return global.get_window_actors().map(a => a.meta_window).filter(w => !w.is_skip_taskbar());
-}
-
-function centerGreeter() {
-    for (const window of this._getWindows()) { // window is a Meta.Window object
-
-        /* We only want to move relevant windows.
-         * This matching method might seem to be incompatible with localization.
-         * However, this is run before the user has a chance to set their preferred language,
-         * which means we can be sure the title is in English. */
-        if (window.get_title() != 'Welcome to Tails!') {
-            continue;
-        }
-
-        let workArea = Main.layoutManager.getWorkAreaForMonitor(Main.layoutManager.primaryIndex);
-        let screenWidth = workArea.width
-        let screenHeight = workArea.height
-        let rect = window.get_frame_rect();
-        let winWidth = rect.width
-        let winHeight = rect.height
-
-        // we need to decide the top-left corner, so to make it centered compared to screen
-        let x = Math.floor(screenWidth/2 - winWidth/2)
-        let y = Math.floor(screenHeight/2 - winHeight/2)
-        if(x != rect.x || y != rect.y) {
-            global.log(`${EXTENSION_LOG_NAME} move Greeter to: ${x},${y}+${rect.width}x${rect.height}`);
-            window.move_resize_frame(true, x, y, rect.width, rect.height);
-        }
-        return true;
-    }
-    return false;
-}
-
-let _interval;
-
-function init() {
-}
-
-
-function enable() {
-    global.log(`${EXTENSION_LOG_NAME} starting`);
-
-    /* This extension is not supposed to be run in amnesia session.
-     * While we could just avoid enabling it in the first place (and we *are* doing that),
-     * we add this as a safeguard to avoid an error ever happening. */
-    let [ok, out] = GLib.spawn_sync(null,
-        ['/usr/bin/whoami'],
-        null, GLib.SpawnFlags.DEFAULT, null);
-    if (out.toString().trim() !== 'Debian-gdm') {
-        global.log(`${EXTENSION_LOG_NAME} we're not in GDM: quitting immediately`);
-        return;
-    }
-
-    centerGreeter();
-    /* this timer is incredibly fast, because that's the easiest way to have a snappy UI.
-     * This might have high CPU cost, but it only happens until a window is found. While it may make sense to
-     * stop as soon as a window is found and moved, it sometimes doesn't work because the screen is resizing.
-     * We wait for more moves to happen, hoping this position is good. */
-    let intervalMS = 50;
-    let movesBeforeQuitting = 10;
-    _interval = GLib.timeout_add(GLib.PRIORITY_DEFAULT,
-        intervalMS, /* milliseconds */
-        () => {
-            if(centerGreeter()) {
-                movesBeforeQuitting-=1;
-            }
-            if (movesBeforeQuitting <= 0) {
-                global.log(`${EXTENSION_LOG_NAME} did its job: quitting`);
-                return GLib.SOURCE_REMOVE;
-            }
-            return GLib.SOURCE_CONTINUE;
-        });
-}
-
-function disable() {
-    if (_interval) {
-        global.log(`${EXTENSION_LOG_NAME} shutting down`);
-        GLib.source_remove(_interval);
-    }
-}
diff --git a/config/chroot_local-includes/usr/share/gnome-shell/extensions/window-center@tails.boum.org/metadata.json b/config/chroot_local-includes/usr/share/gnome-shell/extensions/window-center@tails.boum.org/metadata.json
deleted file mode 100644
index 6affe29aec9..00000000000
--- a/config/chroot_local-includes/usr/share/gnome-shell/extensions/window-center@tails.boum.org/metadata.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-	"shell-version": ["3.20"],
-    "session-modes":  [ "gdm", "gdm-tails"],
-	"uuid": "window-center@tails.boum.org",
-	"name": "Window Centering",
-	"url": "https://tails.boum.org/",
-	"version": 1,
-	"description": "Automatically center the Welcome Screen window"
-}
diff --git a/config/chroot_local-includes/usr/share/gnome-shell/modes/gdm-tails.json b/config/chroot_local-includes/usr/share/gnome-shell/modes/gdm-tails.json
index b14a56d1297..609727c0d1f 100644
--- a/config/chroot_local-includes/usr/share/gnome-shell/modes/gdm-tails.json
+++ b/config/chroot_local-includes/usr/share/gnome-shell/modes/gdm-tails.json
@@ -6,8 +6,6 @@
     "isLocked": true,
     "hasWindows": true,
     "components": ["polkitAgent"],
-    "allowExtensions": true,
-    "enabledExtensions": ["window-center@tails.boum.org"],
     "panel": {
         "left": [],
         "center": ["dateMenu"],
-- 
GitLab


From 5a9e8eab5b4b68223d972257bf99c55ff47c3a4a Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Sat, 11 Mar 2023 23:04:57 +0100
Subject: [PATCH 099/187] Test suite: Fix step "Tails has no disk swap enabled"

We enable zram swap now, so this test should only fail if non-zram swap
is enabled.
---
 features/step_definitions/untrusted_partitions.rb | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/features/step_definitions/untrusted_partitions.rb b/features/step_definitions/untrusted_partitions.rb
index 165a5476e5d..39863c3616a 100644
--- a/features/step_definitions/untrusted_partitions.rb
+++ b/features/step_definitions/untrusted_partitions.rb
@@ -11,14 +11,13 @@ Then /^an? "([^"]+)" partition was detected by Tails on drive "([^"]+)"$/ do |ty
 end
 
 Then /^Tails has no disk swap enabled$/ do
-  # Skip first line which contain column headers
-  swap_info = $vm.execute_successfully('tail -n+2 /proc/swaps').stdout
+  # Skip first line which contain column headers and skip lines which
+  # contain a zram device
+  swap_info = $vm.execute_successfully(
+    'grep -v ^/dev/zram < /proc/swaps | tail -n+2'
+  ).stdout
   assert(swap_info.empty?,
          "Disk swapping is enabled according to /proc/swaps:\n" + swap_info)
-  mem_info = $vm.execute_successfully("grep '^Swap' /proc/meminfo").stdout
-  assert(mem_info.match(/^SwapTotal:\s+0 kB$/),
-         "Disk swapping is enabled according to /proc/meminfo:\n" +
-         mem_info)
 end
 
 Given /^I create an?( (\d+) ([[:alpha:]]+))? ([[:alnum:]]+) partition( labeled "([^"]+)")? with an? ([[:alnum:]]+) filesystem( encrypted with password "([^"]+)")? on disk "([^"]+)"$/ do |with_size, size, unit, parttype, has_label, label, fstype, is_encrypted, luks_password, name| # rubocop:disable Metrics/ParameterLists
-- 
GitLab


From 540ca9ae829044e7162f7a6c004b40ac9a5b3329 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Thu, 9 Mar 2023 16:22:26 +0100
Subject: [PATCH 100/187] Test suite: Fix step "the clearnet user has not sent
 packets out to the Internet"

The Unsafe Browser doesn't run as clearnet anymore, so we have to check
for traffic on veth-clearnet instead.

Closes #19370
---
 features/step_definitions/tor.rb            | 20 +++++---------------
 features/step_definitions/unsafe_browser.rb |  5 ++---
 2 files changed, 7 insertions(+), 18 deletions(-)

diff --git a/features/step_definitions/tor.rb b/features/step_definitions/tor.rb
index 9fc8f33c46e..ca2f1c6ebd8 100644
--- a/features/step_definitions/tor.rb
+++ b/features/step_definitions/tor.rb
@@ -37,21 +37,11 @@ def ip6tables_rules(chain, table = 'filter')
   iptables_rules_parse('ip6tables', chain, table)
 end
 
-def ip4tables_packet_counter_sum(**filters)
-  pkts = 0
-  ip4tables_chains do |name, _, rules|
-    next if filters[:tables] && !filters[:tables].include?(name)
-
-    rules.each do |rule|
-      if filters[:uid] &&
-         !rule.elements["conditions/owner/uid-owner[text()=#{filters[:uid]}]"]
-        next
-      end
-
-      pkts += rule.attribute('packet-count').to_s.to_i
-    end
-  end
-  pkts
+def ip4tables_packet_counter_sum(chain, iface, table = 'filter')
+  cmd = "iptables -t #{table} -L #{chain} -v | grep 'ACCEPT.*#{iface}' | awk '{ print $1 }'"
+  output = $vm.execute_successfully(cmd).stdout
+  incoming_packets, outgoing_packets = output.split(/\n/)
+  Integer(incoming_packets) + Integer(outgoing_packets)
 end
 
 def iptables_filter_add(add, target, address, port)
diff --git a/features/step_definitions/unsafe_browser.rb b/features/step_definitions/unsafe_browser.rb
index 7008d755695..14867602b10 100644
--- a/features/step_definitions/unsafe_browser.rb
+++ b/features/step_definitions/unsafe_browser.rb
@@ -127,9 +127,8 @@ But /^checking for updates is disabled in the Unsafe Browser's configuration$/ d
   assert($vm.file_content(prefs).include?('pref("app.update.enabled", false)'))
 end
 
-Then /^the clearnet user has (|not )sent packets out to the Internet$/ do |sent|
-  uid = $vm.execute_successfully('id -u clearnet').stdout.chomp.to_i
-  pkts = ip4tables_packet_counter_sum(tables: ['OUTPUT'], uid: uid)
+Then /^the Unsafe Browser has (|not )sent packets out to the Internet$/ do |sent|
+  pkts = ip4tables_packet_counter_sum('FORWARD', 'veth-clearnet')
   case sent
   when ''
     assert(pkts.positive?, 'Packets have not gone out to the internet.')
-- 
GitLab


From 1a66a4861224832c8e1a1ba7a8be60a7e7fd4437 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Sun, 12 Mar 2023 19:44:09 +0100
Subject: [PATCH 101/187] Test suite: Add anti test for packets sent by the
 Unsafe Browser

To make sure that the "the Unsafe Browser has not sent packets out to
the Internet" works as expected, we check that packets are sent when the
Unsafe Browser loads a web page.
---
 features/unsafe_browser.feature | 1 +
 1 file changed, 1 insertion(+)

diff --git a/features/unsafe_browser.feature b/features/unsafe_browser.feature
index 5a2d87b9c57..1450d86b07e 100644
--- a/features/unsafe_browser.feature
+++ b/features/unsafe_browser.feature
@@ -36,6 +36,7 @@ Feature: Browsing the web using the Unsafe Browser
     When I successfully start the Unsafe Browser
     When I open the Tails homepage in the Unsafe Browser
     Then the Tails homepage loads in the Unsafe Browser
+    And the clearnet user has sent packets out to the Internet
 
   @not_release_blocker
   Scenario: Closing the Unsafe Browser shows a stop notification and properly tears down the chroot
-- 
GitLab


From 0a333ac1c0e3e1ad3c8fffac792668ac9fea99fc Mon Sep 17 00:00:00 2001
From: Zen Fu <zen@systemli.org>
Date: Mon, 13 Mar 2023 08:51:24 -0300
Subject: [PATCH 102/187] Try again when GitLab CI fails to fetch source

As discussed during a Sysadmin/FT sunc, this is a low-hanging-fruit
attempt to deal with errors when cloning the source repository.

refs sysadmin#11869
---
 .gitlab-ci.yml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 41cb7e485df..a4009d89524 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -6,6 +6,9 @@ workflow:
 
 image: debian:bullseye
 
+variables:
+    GET_SOURCES_ATTEMPTS: 10
+
 before_script:
   - export DEBIAN_FRONTEND=noninteractive
   - apt-get update -qq
-- 
GitLab


From 00147ebeed00b7ed7a18752c9228fa5eb000beaf Mon Sep 17 00:00:00 2001
From: boyska <boyska@riseup.net>
Date: Tue, 14 Mar 2023 16:38:22 +0100
Subject: [PATCH 103/187] Upgrade Tor Browser to 12.0.4-build1

---
 config/chroot_local-includes/usr/share/tails/tbb-dist-url.txt   | 2 +-
 config/chroot_local-includes/usr/share/tails/tbb-sha256sums.txt | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/config/chroot_local-includes/usr/share/tails/tbb-dist-url.txt b/config/chroot_local-includes/usr/share/tails/tbb-dist-url.txt
index a1afdbd39b2..46f901f8086 100644
--- a/config/chroot_local-includes/usr/share/tails/tbb-dist-url.txt
+++ b/config/chroot_local-includes/usr/share/tails/tbb-dist-url.txt
@@ -1 +1 @@
-http://torbrowser-archive.tails.boum.org/12.0.3-build1/
+https://tb-build-05.torproject.org/~richard/builds/release/unsigned/12.0.4-build1/
diff --git a/config/chroot_local-includes/usr/share/tails/tbb-sha256sums.txt b/config/chroot_local-includes/usr/share/tails/tbb-sha256sums.txt
index f5817f3eeb7..bd530becf9a 100644
--- a/config/chroot_local-includes/usr/share/tails/tbb-sha256sums.txt
+++ b/config/chroot_local-includes/usr/share/tails/tbb-sha256sums.txt
@@ -1 +1 @@
-6ce198fd17700fa3bb408b8e881c3b3959d97e9ba6186b28ea1c0c249c0dda0d  tor-browser-linux64-12.0.3_ALL.tar.xz
+3b3c0055bc441272dea808c53b69d2f514d98ee2b40ca263df6a6b7091637991  tor-browser-linux64-12.0.4_ALL.tar.xz
-- 
GitLab


From 20a690d188686beec7ef6afa4be1d899daa1ba7d Mon Sep 17 00:00:00 2001
From: boyska <boyska@riseup.net>
Date: Tue, 14 Mar 2023 17:24:33 +0100
Subject: [PATCH 104/187] fix step name

---
 features/unsafe_browser.feature | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/features/unsafe_browser.feature b/features/unsafe_browser.feature
index 1450d86b07e..81dc618d4c2 100644
--- a/features/unsafe_browser.feature
+++ b/features/unsafe_browser.feature
@@ -36,7 +36,7 @@ Feature: Browsing the web using the Unsafe Browser
     When I successfully start the Unsafe Browser
     When I open the Tails homepage in the Unsafe Browser
     Then the Tails homepage loads in the Unsafe Browser
-    And the clearnet user has sent packets out to the Internet
+    And the Unsafe Browser has sent packets out to the Internet
 
   @not_release_blocker
   Scenario: Closing the Unsafe Browser shows a stop notification and properly tears down the chroot
@@ -74,7 +74,7 @@ Feature: Browsing the web using the Unsafe Browser
     When I successfully start the Unsafe Browser
     Then the Unsafe Browser has started
     And I wait 120 seconds
-    And the clearnet user has not sent packets out to the Internet
+    And the Unsafe Browser has not sent packets out to the Internet
 
   @not_release_blocker
   Scenario: The Unsafe Browser cannot be started when I am offline
-- 
GitLab


From e9c72628528e6e7d48a55cd388f0569baff774f4 Mon Sep 17 00:00:00 2001
From: boyska <boyska@riseup.net>
Date: Tue, 14 Mar 2023 18:41:27 +0100
Subject: [PATCH 105/187] Fetch Tor Browser from our own archive

---
 config/chroot_local-includes/usr/share/tails/tbb-dist-url.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/config/chroot_local-includes/usr/share/tails/tbb-dist-url.txt b/config/chroot_local-includes/usr/share/tails/tbb-dist-url.txt
index 46f901f8086..af7ff254bf3 100644
--- a/config/chroot_local-includes/usr/share/tails/tbb-dist-url.txt
+++ b/config/chroot_local-includes/usr/share/tails/tbb-dist-url.txt
@@ -1 +1 @@
-https://tb-build-05.torproject.org/~richard/builds/release/unsigned/12.0.4-build1/
+http://torbrowser-archive.tails.boum.org/12.0.4-build1/
-- 
GitLab


From b8640589ae4822239c82ff21180bd97834a89001 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Tue, 14 Mar 2023 13:13:45 +0100
Subject: [PATCH 106/187] run_test_suite: Add --all-tests

---
 run_test_suite | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/run_test_suite b/run_test_suite
index 5f4bb59f290..dbdcbdf2edf 100755
--- a/run_test_suite
+++ b/run_test_suite
@@ -97,6 +97,7 @@ Options for '@product' features:
                      This is useful when you need something to be patched early
                      in the boot process; or if you need to run arbitrary
                      commands, not just copying files
+  --all-tests        Don't skip tests which have a @fragile or @skip_by_default tag.
   --tmpdir           Directory where various temporary files are written
                      during a test, e.g. VM snapshots and memory dumps,
                      failure screenshots, pcap files and disk images
@@ -236,8 +237,9 @@ TAILS_ISO=${TAILS_ISO-}
 OLD_TAILS_ISO=${OLD_TAILS_ISO-}
 EARLY_PATCH=${EARLY_PATCH-}
 EXTRA_BOOT_OPTIONS=${EXTRA_BOOT_OPTIONS-}
+ALL_TESTS=${ALL_TESTS-}
 
-LONGOPTS="allow-non-root,artifacts-base-uri:,view,view-interact,vnc-server-only,capture,capture-all,help,tmpdir:,keep-chutney,keep-snapshots,disable-chutney,late-patch:,early-patch,extra-boot-options:,iso:,old-iso:,interactive-debugging,image-bumping-mode"
+LONGOPTS="allow-non-root,artifacts-base-uri:,view,view-interact,vnc-server-only,capture,capture-all,help,tmpdir:,keep-chutney,keep-snapshots,disable-chutney,late-patch:,early-patch,extra-boot-options:,all-tests,iso:,old-iso:,interactive-debugging,image-bumping-mode"
 OPTS=$(getopt -o "" --longoptions $LONGOPTS -n "${NAME}" -- "$@")
 eval set -- "$OPTS"
 while [ $# -gt 0 ]; do
@@ -307,6 +309,9 @@ while [ $# -gt 0 ]; do
             shift
             export EXTRA_BOOT_OPTIONS="$1"
             ;;
+        --all-tests)
+            ALL_TESTS="yes"
+            ;;
         --tmpdir)
             shift
             TMPDIR="$(readlink -f "$1")"
@@ -371,7 +376,8 @@ if [ -n "${JENKINS_URL:-}" ]; then
        || git_on_a_tag \
        || [ "${GIT_BRANCH#origin/}" = feature/bullseye ] \
        || [ "${GIT_BRANCH#origin/}" = testing ] \
-       || [ "${GIT_BRANCH#origin/}" = devel ] ; then
+       || [ "${GIT_BRANCH#origin/}" = devel ] \
+       || [ -n "${ALL_TESTS:-}" ]; then
         TAGS_ARGS=""
     else
         TAGS_ARGS="${TAGS_ARGS} --tag ~@fragile --tag ~@skip_by_default"
-- 
GitLab


From f7065ff2b4602bdaeef4e1212529db597eabfb4c Mon Sep 17 00:00:00 2001
From: boyska <boyska@riseup.net>
Date: Wed, 15 Mar 2023 11:43:13 +0100
Subject: [PATCH 107/187] workaround failure

refs #19450
---
 .../usr/local/sbin/unsafe-browser                    | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

diff --git a/config/chroot_local-includes/usr/local/sbin/unsafe-browser b/config/chroot_local-includes/usr/local/sbin/unsafe-browser
index cd8836f11ba..26d059a95f0 100755
--- a/config/chroot_local-includes/usr/local/sbin/unsafe-browser
+++ b/config/chroot_local-includes/usr/local/sbin/unsafe-browser
@@ -81,14 +81,22 @@ show_start_notification () {
     local title body
     title="$(gettext "Starting the Unsafe Browser...")"
     body="$(gettext "This may take a while, so please be patient.")"
-    tails-notify-user "${title}" "${body}" 10000
+    # XXX: this was introduced for 5.11. If we have this,
+    #      problems to notification startup will be hidden and we will not notice
+    #      so please get rid of this
+    if ! tails-notify-user "${title}" "${body}" 10000; then
+        echo "ERROR: couldn't show_start_notification" >&2
+    fi
 }
 
 show_shutdown_notification () {
     local title body
     title="$(gettext "Shutting down the Unsafe Browser...")"
     body="$(gettext "This may take a while, and you may not restart the Unsafe Browser until it is properly shut down.")"
-    tails-notify-user "${title}" "${body}" 10000
+    # XXX: same as show_start_notification
+    if ! tails-notify-user "${title}" "${body}" 10000; then
+        echo "ERROR: couldn't show_shutdown_notification" >&2
+    fi
 }
 
 # Main script:
-- 
GitLab


From b381b7747843e5371c127eb5532e76d2cdfce515 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Wed, 15 Mar 2023 15:51:39 +0100
Subject: [PATCH 108/187] tca-portal: Support setting debug log level via
 environment and kernel cmdline

---
 .../usr/local/lib/tca-portal                      | 15 ++++++++++++---
 1 file changed, 12 insertions(+), 3 deletions(-)

diff --git a/config/chroot_local-includes/usr/local/lib/tca-portal b/config/chroot_local-includes/usr/local/lib/tca-portal
index 50845017b87..8bc96becb38 100755
--- a/config/chroot_local-includes/usr/local/lib/tca-portal
+++ b/config/chroot_local-includes/usr/local/lib/tca-portal
@@ -8,7 +8,7 @@ exposing require root privileges. Some others are not (see UserCommand), so in
 theory we could split this portal into a privileged one and an unprivileged
 one. However, that wouldn't reduce the attack surface much, if at all.
 """
-
+import logging
 import re
 import os
 import sys
@@ -16,6 +16,7 @@ import stat
 from argparse import ArgumentParser, ArgumentDefaultsHelpFormatter
 import socketserver
 from logging import getLogger
+from pathlib import Path
 import socket
 import time
 from subprocess import Popen, PIPE
@@ -407,7 +408,6 @@ def main():
         "--log-level",
         metavar="LEVEL",
         choices=("DEBUG", "INFO", "WARNING", "CRITICAL"),
-        default="INFO",
     )
     p.add_argument("--doctest-only",
         action="store_true",
@@ -416,7 +416,16 @@ def main():
 
     args = p.parse_args()
 
-    log_conf = {'level': args.log_level}
+    if args.log_level:
+        level = args.log_level
+    elif os.getenv("DEBUG") or \
+            "debug" in Path("/proc/cmdline").read_text().split():
+        level = logging.DEBUG
+    else:
+        level = logging.INFO
+
+    log_conf = {'level': level}
+
     configure_logging(hint='syslog', ident='tca-portal', **log_conf)
 
     if args.doctest_only:
-- 
GitLab


From 8f946c3e4eb52d8429cb298b8c14e197aa486d47 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Fri, 10 Mar 2023 14:03:15 +0100
Subject: [PATCH 109/187] Test suite: Fix unset environment variables
 evaluating to true

---
 features/step_definitions/common_steps.rb |  4 ++--
 features/step_definitions/tor.rb          |  4 ++--
 features/support/config.rb                | 16 ++++++++++++++++
 features/support/helpers/vm_helper.rb     |  2 +-
 features/support/hooks.rb                 | 10 +++++-----
 5 files changed, 26 insertions(+), 10 deletions(-)

diff --git a/features/step_definitions/common_steps.rb b/features/step_definitions/common_steps.rb
index e18c312cdfa..bb4b48f29b9 100644
--- a/features/step_definitions/common_steps.rb
+++ b/features/step_definitions/common_steps.rb
@@ -319,7 +319,7 @@ end
 Given /^the computer (?:re)?boots Tails( with genuine APT sources)?$/ do |keep_apt_sources|
   enter_boot_menu_cmdline
   boot_key = @os_loader == 'UEFI' ? 'F10' : 'Return'
-  early_patch = $config['EARLY_PATCH'] ? ' early_patch=umount' : ''
+  early_patch = config_bool('EARLY_PATCH') ? ' early_patch=umount' : ''
   extra_boot_options = $config['EXTRA_BOOT_OPTIONS'] || ''
   @screen.type(' autotest_never_use_this_option' \
                ' blacklist=psmouse' \
@@ -331,7 +331,7 @@ Given /^the computer (?:re)?boots Tails( with genuine APT sources)?$/ do |keep_a
   end
 
   post_vm_start_hook
-  configure_simulated_Tor_network unless $config['DISABLE_CHUTNEY']
+  configure_simulated_Tor_network unless config_bool('DISABLE_CHUTNEY')
   # This is required to use APT in the test suite as explained in
   # commit e2510fae79870ff724d190677ff3b228b2bf7eac
   step 'I configure APT to use non-onion sources' unless keep_apt_sources
diff --git a/features/step_definitions/tor.rb b/features/step_definitions/tor.rb
index ca2f1c6ebd8..e3e1816ff2e 100644
--- a/features/step_definitions/tor.rb
+++ b/features/step_definitions/tor.rb
@@ -590,7 +590,7 @@ When /^I configure (?:some|the) (persistent )?(\w+) bridges (from a QR code )?in
     if bridge_type == 'default'
       assert_equal(:easy, config_mode)
 
-      @bridge_hosts = if $config['DISABLE_CHUTNEY']
+      @bridge_hosts = if config_bool('DISABLE_CHUTNEY')
                         bridges_to_ipport(
                           $vm.file_content('/usr/share/tails/tca/default_bridges.txt')
                         )
@@ -845,7 +845,7 @@ Then /^all Internet traffic has only flowed through (Tor|the \w+ bridges)( or (?
   when 'Tor'
     allowed_hosts = allowed_hosts_under_tor_enforcement
   when 'the default bridges'
-    allowed_hosts = if $config['DISABLE_CHUTNEY']
+    allowed_hosts = if config_bool('DISABLE_CHUTNEY')
                       bridges_to_ipport(
                         $vm.file_content('/usr/share/tails/tca/default_bridges.txt')
                       )
diff --git a/features/support/config.rb b/features/support/config.rb
index 93d0867d248..e9360f110a1 100644
--- a/features/support/config.rb
+++ b/features/support/config.rb
@@ -3,6 +3,22 @@ require 'resolv'
 require 'yaml'
 require "#{Dir.pwd}/features/support/helpers/misc_helpers.rb"
 
+TRUE_VALUES = ['1', 'y', 'yes', 'true']
+def config_bool(name)
+  value = $config[name]
+
+  if value.nil?
+    return false
+  end
+
+  if value.is_a?(TrueClass) || value.is_a?(FalseClass)
+    return value
+  end
+
+  # It's not a boolean so we assume it's a string
+  TRUE_VALUES.include?(value.downcase)
+end
+
 # These files deal with options like some of the settings passed
 # to the `run_test_suite` script, and "secrets" like credentials
 # (passwords, SSH keys) to be used in tests.
diff --git a/features/support/helpers/vm_helper.rb b/features/support/helpers/vm_helper.rb
index 55dd69fe7b0..2625d8f932e 100644
--- a/features/support/helpers/vm_helper.rb
+++ b/features/support/helpers/vm_helper.rb
@@ -95,7 +95,7 @@ class VM
       rexml.elements['domain/cpu/model'].add_attribute('fallback', 'allow')
     end
 
-    if $config['EARLY_PATCH']
+    if config_bool('EARLY_PATCH')
       rexml.elements['domain/devices'].add_element('filesystem')
       rexml.elements['domain/devices/filesystem'].add_attribute('type', 'mount')
       rexml.elements['domain/devices/filesystem'].add_attribute('accessmode', 'passthrough')
diff --git a/features/support/hooks.rb b/features/support/hooks.rb
index b7a42f84f18..1b3b2c5c645 100644
--- a/features/support/hooks.rb
+++ b/features/support/hooks.rb
@@ -224,7 +224,7 @@ BeforeFeature('@product') do
     $vmstorage = VMStorage.new($virt, VM_XML_PATH)
     $started_first_product_feature = true
   end
-  ensure_chutney_is_running unless $config['DISABLE_CHUTNEY']
+  ensure_chutney_is_running unless config_bool('DISABLE_CHUTNEY')
 end
 
 AfterFeature('@product') do
@@ -244,7 +244,7 @@ end
 # *first* Before hook matching @product listed in this file.
 Before('@product') do |scenario|
   $failure_artifacts = []
-  if $config['CAPTURE']
+  if config_bool('CAPTURE')
     video_name = sanitize_filename("#{scenario.name}.mkv")
     @video_path = "#{ARTIFACTS_DIR}/#{video_name}"
     capture = IO.popen(['ffmpeg',
@@ -259,7 +259,7 @@ Before('@product') do |scenario|
                         { err: ['/dev/null', 'w'] },])
     @video_capture_pid = capture.pid
   end
-  @screen = if $config['IMAGE_BUMPING_MODE']
+  @screen = if config_bool('IMAGE_BUMPING_MODE')
               ImageBumpingScreen.new
             else
               Screen.new
@@ -399,13 +399,13 @@ After('@product') do |scenario|
       info_log
       info_log_artifact_location(desc, artifact_path)
     end
-    if $config['INTERACTIVE_DEBUGGING']
+    if config_bool('INTERACTIVE_DEBUGGING')
       pause(
         "Scenario failed: #{scenario.name}. " \
         "The error was: #{scenario.exception.class.name}: #{scenario.exception}"
       )
     end
-  elsif @video_path && File.exist?(@video_path) && !(($config['CAPTURE_ALL']))
+  elsif @video_path && File.exist?(@video_path) && !config_bool('CAPTURE_ALL')
     FileUtils.rm(@video_path)
   end
   begin
-- 
GitLab


From 195bb1cbf5c91de126374b249b8b0eccbebf51e9 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Tue, 28 Feb 2023 12:51:37 +0100
Subject: [PATCH 110/187] tailslib: Don't export gnome env

The gnome_env function of the Python module is called in privileged
processes, exporting the amnesia-controlled environment in those can
lead to privilege escalation.

refs #19464
---
 .../usr/lib/python3/dist-packages/tailslib/gnome.py             | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/gnome.py b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/gnome.py
index c9458a953e6..972aff132b3 100644
--- a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/gnome.py
+++ b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/gnome.py
@@ -20,7 +20,7 @@ def _get_gnome_env_vars():
 
 def gnome_env() -> dict:
     env = dict()
-    for line in _gnome_sh_wrapper("export_gnome_env && env").split("\n"):
+    for line in _gnome_sh_wrapper("gnome_env").split("\n"):
         (key, _, value) = line.rstrip().partition("=")
         if key in _get_gnome_env_vars():
             env[key] = value
-- 
GitLab


From 37ee2adf2a9317c728f4ea61c13eef537c0ca11e Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Tue, 28 Feb 2023 12:53:57 +0100
Subject: [PATCH 111/187] 20-time.sh: Don't export amnesia-controlled gnome env

That can lead to privilege escalation. Instead, we use
/usr/local/lib/systemctl-user to start a systemd user service which has
the required environment variables set.
---
 config/chroot_local-hooks/52-update-rc.d        |  1 +
 .../etc/NetworkManager/dispatcher.d/20-time.sh  | 17 ++---------------
 .../user/tails-htpdate-notify-user.service      | 11 +++++++++++
 3 files changed, 14 insertions(+), 15 deletions(-)
 create mode 100644 config/chroot_local-includes/usr/lib/systemd/user/tails-htpdate-notify-user.service

diff --git a/config/chroot_local-hooks/52-update-rc.d b/config/chroot_local-hooks/52-update-rc.d
index f0024eb9866..e2fee48c545 100755
--- a/config/chroot_local-hooks/52-update-rc.d
+++ b/config/chroot_local-hooks/52-update-rc.d
@@ -35,6 +35,7 @@ systemctl --global enable tails-upgrade-frontend.service
 systemctl --global enable tails-virt-notify-user.service
 systemctl --global enable tails-wait-until-tor-has-bootstrapped.service
 systemctl --global enable tails-create-persistent-storage.service
+systemctl --global enable tails-htpdate-notify-user.service
 
 # This causes the proxies to run during the whole session, instead of
 # being started and stopped when needed. The only app which needs
diff --git a/config/chroot_local-includes/etc/NetworkManager/dispatcher.d/20-time.sh b/config/chroot_local-includes/etc/NetworkManager/dispatcher.d/20-time.sh
index 6da005968c4..e5781225b07 100755
--- a/config/chroot_local-includes/etc/NetworkManager/dispatcher.d/20-time.sh
+++ b/config/chroot_local-includes/etc/NetworkManager/dispatcher.d/20-time.sh
@@ -10,10 +10,6 @@ set -u
 # shellcheck source=../../live/config.d/username.conf
 . /etc/live/config.d/username.conf
 
-# Import export_gnome_env().
-# shellcheck source=../../../usr/local/lib/tails-shell-library/gnome.sh
-. /usr/local/lib/tails-shell-library/gnome.sh
-
 ### Exit conditions
 
 # Run only when the interface is not "lo":
@@ -26,14 +22,5 @@ if [ "$2" != "up" ]; then
 	exit 0
 fi
 
-### Functions
-
-start_notification_helper() {
-	export_gnome_env
-	exec /bin/su -c /usr/local/lib/tails-htp-notify-user "$LIVE_USERNAME" &
-}
-
-
-### Main
-
-start_notification_helper
+/usr/local/lib/systemctl-user "${LIVE_USERNAME}" \
+  --user restart tails-htpdate-notify-user.service
diff --git a/config/chroot_local-includes/usr/lib/systemd/user/tails-htpdate-notify-user.service b/config/chroot_local-includes/usr/lib/systemd/user/tails-htpdate-notify-user.service
new file mode 100644
index 00000000000..b786266be7c
--- /dev/null
+++ b/config/chroot_local-includes/usr/lib/systemd/user/tails-htpdate-notify-user.service
@@ -0,0 +1,11 @@
+[Unit]
+Description=Notify the user if htpdate failed
+Documentation=https://tails.boum.org/contribute/design/Time_syncing/
+
+[Service]
+Type=oneshot
+ExecStart=/usr/local/lib/tails-htp-notify-user
+RemainAfterExit=yes
+
+[Install]
+WantedBy=desktop.target
-- 
GitLab


From 25d9500e184a03b4910be693575e0c014ea0cb6c Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Tue, 28 Feb 2023 13:17:45 +0100
Subject: [PATCH 112/187] tails-notify-user: Use consistent indentation

---
 .../usr/local/sbin/tails-notify-user                   | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/config/chroot_local-includes/usr/local/sbin/tails-notify-user b/config/chroot_local-includes/usr/local/sbin/tails-notify-user
index 6c89d67ba8b..f561d3f80d3 100755
--- a/config/chroot_local-includes/usr/local/sbin/tails-notify-user
+++ b/config/chroot_local-includes/usr/local/sbin/tails-notify-user
@@ -9,8 +9,8 @@ set -e
 . /etc/live/config.d/username.conf
 
 if [ $# -ne 2 ] && [ $# -ne 3 ]; then
-	echo "Usage: $0 SUMMARY BODY [TIMEOUT]" >&2
-	exit 16
+    echo "Usage: $0 SUMMARY BODY [TIMEOUT]" >&2
+    exit 16
 fi
 
 # Notify the desktop user
@@ -18,9 +18,9 @@ summary="$1"
 body="$2"
 
 if [ -n "$3" ]; then
-        timeout_args="--expire-time=$3"
+    timeout_args="--expire-time=$3"
 fi
 (
-        export_gnome_env
-        exec /bin/su -c "notify-send ${timeout_args} \"${summary}\" \"${body}\"" "${LIVE_USERNAME}" &
+    export_gnome_env
+    exec /bin/su -c "notify-send ${timeout_args} \"${summary}\" \"${body}\"" "${LIVE_USERNAME}" &
 )
-- 
GitLab


From 79a3548834eb2a618856b3ea6d3d4e5138023d64 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Wed, 1 Mar 2023 23:00:29 +0100
Subject: [PATCH 113/187] Dump gnome-shell env as amnesia

There are scenarios in which amnesia can control the gnome-shell
environment which is dumped at boot, so we have to ensure that
only processes running as amnesia (or a less privileged user) export it
in their environment. Since we have to do that, we can just store the
env file as amnesia and drop the part where we copy the file as root.
---
 .../etc/sudoers.d/zzz_gnome-shell-environment |   2 -
 .../local/lib/gnome-shell-dump-environment    | 104 +++++++-----------
 .../local/lib/gnome-shell-save-environment    |  55 ---------
 .../local/lib/tails-shell-library/gnome.sh    |  37 +------
 4 files changed, 41 insertions(+), 157 deletions(-)
 delete mode 100644 config/chroot_local-includes/etc/sudoers.d/zzz_gnome-shell-environment
 delete mode 100755 config/chroot_local-includes/usr/local/lib/gnome-shell-save-environment

diff --git a/config/chroot_local-includes/etc/sudoers.d/zzz_gnome-shell-environment b/config/chroot_local-includes/etc/sudoers.d/zzz_gnome-shell-environment
deleted file mode 100644
index c0161b0b510..00000000000
--- a/config/chroot_local-includes/etc/sudoers.d/zzz_gnome-shell-environment
+++ /dev/null
@@ -1,2 +0,0 @@
-amnesia   ALL = NOPASSWD: /usr/local/lib/gnome-shell-save-environment ""
-
diff --git a/config/chroot_local-includes/usr/local/lib/gnome-shell-dump-environment b/config/chroot_local-includes/usr/local/lib/gnome-shell-dump-environment
index d9dd666c93c..cf917bad438 100755
--- a/config/chroot_local-includes/usr/local/lib/gnome-shell-dump-environment
+++ b/config/chroot_local-includes/usr/local/lib/gnome-shell-dump-environment
@@ -1,66 +1,38 @@
-#!/usr/bin/python3
-
-'''
-This script is invoked before starting gnome-shell. It dumps its own environment, which is often useful to
-properly set the environment for many user-facing applications.
-
-How it works
-----------------
-
-First, it saves the environment in ~/.gnome-shell-environment. Then,
-it asks root (with sudo) to move this environment to a root-owned
-directory which is readable, but not writable, by amnesia.
-
-Security
-----------
-
-An attacker able to run code as amnesia can write arbitrary content to
-~/.gnome-shell-environment and cause that to be copied to
-/run/gnome-shell-environment, at least in some cases (see #19424).
-So, let's assume that they can do this.
-
-Since we use this file to set up the environment for processes running as
-amnesia, such an attacker can control processes running as amnesia. We
-don't use the file for anything else. While this means that the attacker is
-indeed mangling the environment of running processes, we don't see how this
-can be used for escalating privileges.
-
-Environment
----------------
-
-Please note that at the time this script will be run, gnome-shell has not started. Therefore, if gnome-shell
-was to ever change its running environment, this script could never catch those changes. This doesn't seem to
-be the case, so the environment of this script is indeed the one we need.
-
-'''
-
-
-import os
-import sys
-from pathlib import Path
-import subprocess
-
-SAVE_BIN = "/usr/local/lib/gnome-shell-save-environment"
-
-
-def main():
-    env_file = Path("~/.gnome-shell-environment").expanduser()
-    try:
-        env_file.touch(exist_ok=False)
-    except FileExistsError:
-        sys.exit(0)
-
-    # we are getting our own environment.
-    # It might be tempting to use "/proc/`pgrep -x gnome-shell`/environ", but
-    # this script is called before gnome-shell has even started
-    sys_environ = Path("/proc/%d/environ" % os.getpid())
-    with sys_environ.open("rb") as buf:
-        content = buf.read()
-    with env_file.open("wb") as buf:
-        buf.write(content)
-
-    subprocess.check_call(["sudo", "-n", SAVE_BIN])
-
-
-if __name__ == "__main__":
-    main()
+#!/bin/sh
+
+# This script is invoked before starting gnome-shell. It dumps its own
+# environment for usage by other processes which need some environment
+# variables set to work correctly, for example processes started via
+# systemd system units don't have DBUS_SESSION_BUS_ADDRESS set.
+#
+# This process is run as amnesia and the environment file is writable
+# by amnesia, so to avoid privilege escalation, it's important that the
+# environment file is never exported in a process with more privileges
+# than amnesia.
+
+set -eu
+
+GNOME_ENV_FILE=/run/user/1000/gnome-env
+
+# Set some environment variables which are not set in the gnome-shell
+# process but which we still need in some processes which export the
+# environment file.
+if [ -z "${DISPLAY:-}" ]; then
+  export DISPLAY=:0
+fi
+
+if [ -z "${XAUTHORITY:-}" ]; then
+  for xauth in /run/user/1000/.mutter-Xwaylandauth.*; do
+    export XAUTHORITY="${xauth}"
+  done
+fi
+
+if [ -z "${WAYLAND_DISPLAY:-}" ]; then
+  for wayland_display in /run/user/1000/wayland-*; do
+    export WAYLAND_DISPLAY="${wayland_display}"
+  done
+fi
+
+# To avoid issues with environment variables that contain newlines, we
+# dump the environment null-terminated
+env --null > "${GNOME_ENV_FILE}"
diff --git a/config/chroot_local-includes/usr/local/lib/gnome-shell-save-environment b/config/chroot_local-includes/usr/local/lib/gnome-shell-save-environment
deleted file mode 100755
index fab9cc0614c..00000000000
--- a/config/chroot_local-includes/usr/local/lib/gnome-shell-save-environment
+++ /dev/null
@@ -1,55 +0,0 @@
-#!/usr/bin/python3
-
-'''
-This is the privileged part for gnome-shell-dump-environment.
-
-It reads the amnesia-owned file ~/.gnome-shell-environment as root and
-writes its content to /run/gnome-shell-environment.
-
-To avoid symlink attacks, which would allow amnesia to read arbitrary
-files as root, we read the file below the nosymfollow mountpoint, which
-has the effect that when a symlink would be followed *implicitly* (i.e.
-without calling readlink(2) or similar), the operation fails with ELOOP.
-'''
-
-import shutil
-import sys
-from pathlib import Path
-
-from tailslib import LIVE_USERNAME, NOSYMFOLLOW_MOUNTPOINT
-
-AMNESIA_OWNED_ENV_FILE = Path(NOSYMFOLLOW_MOUNTPOINT, f"home/{LIVE_USERNAME}/.gnome-shell-environment")
-
-
-def main():
-    destdir = Path('/run/gnome-shell-environment/')
-    dest = destdir / 'environ'
-    try:
-        # the exist_ok parameter is critical in this block
-
-        # what exist_ok does here is check the returncode of mkdir function
-        destdir.mkdir(mode=0o755, exist_ok=False)
-
-        # since we are setting exist_ok=False, this will result in
-        #   openat(..., O_WRONLY|O_CREAT|O_EXCL|O_CLOEXEC)
-        # so if pathname already exists, it will fail with the error EEXIST
-        #    (see openat(2))
-        # which in turn would raise a Python exception
-        # thus, this creates a file only if it doesn't exist, in a non-racy way
-        dest.touch(mode=0o640, exist_ok=False)
-    except FileExistsError:
-        sys.exit(0)
-    dest.chmod(0o440)
-
-    src = AMNESIA_OWNED_ENV_FILE
-    with src.open('rb') as buf:
-        content = buf.read()
-    with dest.open('wb') as buf:
-        buf.write(content)
-    src.unlink()
-
-    shutil.chown(str(dest), group=LIVE_USERNAME)
-
-
-if __name__ == '__main__':
-    main()
diff --git a/config/chroot_local-includes/usr/local/lib/tails-shell-library/gnome.sh b/config/chroot_local-includes/usr/local/lib/tails-shell-library/gnome.sh
index b43872bb062..9cc597d925c 100644
--- a/config/chroot_local-includes/usr/local/lib/tails-shell-library/gnome.sh
+++ b/config/chroot_local-includes/usr/local/lib/tails-shell-library/gnome.sh
@@ -6,43 +6,12 @@ XDG_RUNTIME_DIR
 XDG_CURRENT_DESKTOP
 "
 
-GNOME_SHELL_ENV_FILE=/run/gnome-shell-environment/environ
+GNOME_ENV_FILE=/run/user/1000/gnome-env
 
 gnome_env() {
-  local vars
-
-  if [ -f "${GNOME_SHELL_ENV_FILE}" ]; then
-    # shellcheck disable=SC2086
-    vars=$(tr '\0' '\n' < "${GNOME_SHELL_ENV_FILE}" | \
-           grep -E "^($(echo ${GNOME_ENV_VARS} | tr ' ' '|'))=")
-  fi
-
-  if ! echo "${vars}" | grep -E "^DISPLAY="; then
-    vars="${vars}
-DISPLAY=:0"
-  fi
-
-  if ! echo "${vars}" | grep -E "^XAUTHORITY="; then
-    xauth=$(find /run/user/1000/ \
-        -maxdepth 1 -type f \
-        -user amnesia \
-        -regextype egrep -regex \
-        '/run/user/1000/[.]mutter-Xwaylandauth[.][A-Za-z0-9]+' -print -quit)
-    vars="${vars}
-XAUTHORITY=${xauth}"
-  fi
-
-  if ! echo "${vars}" | grep -E "^WAYLAND_DISPLAY="; then
-    wayland_display=$(find /run/user/1000/ \
-        -maxdepth 1 -type s \
-        -user amnesia \
-        -regextype egrep -regex \
-        '/run/user/1000/[.]wayland-[0-9]+' -print -quit)
-    vars="${vars}
-WAYLAND_DISPLAY=${wayland_display#/run/user/1000/}"
+  if [ -f "${GNOME_ENV_FILE}" ]; then
+    xargs -0 -L1 -a "${GNOME_ENV_FILE}"
   fi
-
-  echo "${vars}"
 }
 
 export_gnome_env() {
-- 
GitLab


From 9c180a2737e8f1f0c85a36d23d416cf97ed6fe03 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Wed, 1 Mar 2023 23:15:49 +0100
Subject: [PATCH 114/187] Avoid exporting gnome environment file in privileged
 processes

This removes all usages of the gnome.sh shell library in shell scripts
to ensure that the gnome environment file is not exported in privileged
processes.

A new script, exec-in-gnome-env, is called instead, which exports the
gnome environment in an unprivileged amnesia process and then executes
some command.
---
 config/chroot_local-hooks/40-pinentry         |  4 +-
 config/chroot_local-hooks/52-update-rc.d      |  1 +
 .../python3/dist-packages/tailslib/gnome.py   | 45 +++++++------------
 .../dist-packages/tailslib/netnsdrop.py       |  2 +-
 .../override.conf                             |  2 -
 .../systemd/user/tails-dump-user-env.service  | 11 +++++
 .../chroot_local-includes/usr/local/bin/tca   |  2 +-
 ...e-shell-dump-environment => dump-user-env} | 19 +++++---
 .../usr/local/lib/exec-in-gnome-env           | 21 +++++++++
 .../usr/local/lib/loadenv-exec                | 41 +++++++++++++++++
 .../usr/local/lib/tails-autotest-remote-shell | 22 +++------
 .../usr/local/lib/tails-greeter               |  3 +-
 .../local/lib/tails-shell-library/gnome.sh    | 29 ------------
 .../usr/local/sbin/tails-notify-user          | 15 +------
 .../usr/local/sbin/unsafe-browser             | 16 ++-----
 15 files changed, 122 insertions(+), 111 deletions(-)
 delete mode 100644 config/chroot_local-includes/usr/lib/systemd/user/org.gnome.Shell@wayland.service.d/override.conf
 create mode 100644 config/chroot_local-includes/usr/lib/systemd/user/tails-dump-user-env.service
 rename config/chroot_local-includes/usr/local/lib/{gnome-shell-dump-environment => dump-user-env} (70%)
 create mode 100755 config/chroot_local-includes/usr/local/lib/exec-in-gnome-env
 create mode 100755 config/chroot_local-includes/usr/local/lib/loadenv-exec
 delete mode 100644 config/chroot_local-includes/usr/local/lib/tails-shell-library/gnome.sh

diff --git a/config/chroot_local-hooks/40-pinentry b/config/chroot_local-hooks/40-pinentry
index 4fbd6a95c0e..4e3d4f1b987 100755
--- a/config/chroot_local-hooks/40-pinentry
+++ b/config/chroot_local-hooks/40-pinentry
@@ -16,8 +16,6 @@ dpkg-divert --add --rename --divert \
 
 cat > /usr/bin/pinentry-gtk-2 << 'EOF'
 #!/bin/sh
-. /usr/local/lib/tails-shell-library/gnome.sh
-export_gnome_env
-exec /usr/lib/pinentry/pinentry-gtk-2 "$@"
+/usr/local/lib/exec-in-gnome-env /usr/lib/pinentry/pinentry-gtk-2 "$@"
 EOF
 chmod 755 /usr/bin/pinentry-gtk-2
diff --git a/config/chroot_local-hooks/52-update-rc.d b/config/chroot_local-hooks/52-update-rc.d
index e2fee48c545..450881f6f4f 100755
--- a/config/chroot_local-hooks/52-update-rc.d
+++ b/config/chroot_local-hooks/52-update-rc.d
@@ -36,6 +36,7 @@ systemctl --global enable tails-virt-notify-user.service
 systemctl --global enable tails-wait-until-tor-has-bootstrapped.service
 systemctl --global enable tails-create-persistent-storage.service
 systemctl --global enable tails-htpdate-notify-user.service
+systemctl --global enable tails-dump-user-env.service
 
 # This causes the proxies to run during the whole session, instead of
 # being started and stopped when needed. The only app which needs
diff --git a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/gnome.py b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/gnome.py
index 972aff132b3..2448d91a176 100644
--- a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/gnome.py
+++ b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/gnome.py
@@ -1,39 +1,28 @@
 #!/usr/bin/python3
 
-import glob
-import shlex
-import subprocess
 from functools import lru_cache
+import os
+from pathlib import Path
+import pwd
 
-GNOME_SH_PATH = "/usr/local/lib/tails-shell-library/gnome.sh"
-
-def _gnome_sh_wrapper(cmd) -> str:
-    command = shlex.split(
-        "env -i sh -c '. {lib} && {cmd}'".format(lib=GNOME_SH_PATH, cmd=cmd)
-    )
-    return subprocess.check_output(command).decode()
-
+GNOME_ENV_FILE = "/run/user/{uid}/gnome-env"
 
 @lru_cache(maxsize=1)
-def _get_gnome_env_vars():
-    return _gnome_sh_wrapper("echo ${GNOME_ENV_VARS}").strip().split()
+def gnome_env(user=None) -> dict:
+    if user is None:
+        uid = os.geteuid()
+    else:
+        uid = pwd.getpwnam(user).pw_uid
 
-def gnome_env() -> dict:
     env = dict()
-    for line in _gnome_sh_wrapper("gnome_env").split("\n"):
-        (key, _, value) = line.rstrip().partition("=")
-        if key in _get_gnome_env_vars():
-            env[key] = value
-    if 'DISPLAY' not in env:
-        env['DISPLAY'] = ':0'
-    if 'XAUTHORITY' not in env:
-        if xauths := glob.glob('/run/user/1000/.mutter-Xwaylandauth.*'):
-            env['XAUTHORITY'] = xauths[0]
-    if 'WAYLAND_DISPLAY' not in env:
-        if displays := glob.glob('/run/user/1000/wayland-*'):
-            env['WAYLAND_DISPLAY'] = displays[0]
+    env_file = GNOME_ENV_FILE.format(uid=uid)
+    for line in Path(env_file).read_text().split('\0'):
+        if not line:
+            continue
+        key, value = line.split("=", 1)
+        env[key] = value
     return env
 
 
-def gnome_env_vars() -> list:
-    return [f"{key}={value}" for key, value in gnome_env().items()]
+def gnome_env_vars(user=None) -> list:
+    return [f"{key}={value}" for key, value in gnome_env(user).items()]
diff --git a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/netnsdrop.py b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/netnsdrop.py
index e4ad82a8bec..31ab4f12b1e 100644
--- a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/netnsdrop.py
+++ b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/netnsdrop.py
@@ -35,7 +35,7 @@ def run_in_netns(*args, netns, user="amnesia", root="/", bind_mounts=[]):
     runuser = ["/sbin/runuser", "-u", LIVE_USERNAME]
     envcmd = [
         "/usr/bin/env", "--",
-        *gnome_env_vars(),
+        *gnome_env_vars(LIVE_USERNAME),
         f"AT_SPI_BUS_ADDRESS=unix:path={A11Y_BUS_SANDBOX_PATH}",
         f"IBUS_ADDRESS=unix:path={IBUS_SANDBOX_PATH}",
     ]
diff --git a/config/chroot_local-includes/usr/lib/systemd/user/org.gnome.Shell@wayland.service.d/override.conf b/config/chroot_local-includes/usr/lib/systemd/user/org.gnome.Shell@wayland.service.d/override.conf
deleted file mode 100644
index f411003a120..00000000000
--- a/config/chroot_local-includes/usr/lib/systemd/user/org.gnome.Shell@wayland.service.d/override.conf
+++ /dev/null
@@ -1,2 +0,0 @@
-[Service]
-ExecStartPre=/usr/local/lib/gnome-shell-dump-environment
diff --git a/config/chroot_local-includes/usr/lib/systemd/user/tails-dump-user-env.service b/config/chroot_local-includes/usr/lib/systemd/user/tails-dump-user-env.service
new file mode 100644
index 00000000000..470833d7db9
--- /dev/null
+++ b/config/chroot_local-includes/usr/lib/systemd/user/tails-dump-user-env.service
@@ -0,0 +1,11 @@
+[Unit]
+Description=Dump the default user environment
+After=gnome-session-wayland@gnome.target
+
+[Service]
+Type=oneshot
+ExecStart=/usr/local/lib/dump-user-env
+RemainAfterExit=yes
+
+[Install]
+WantedBy=gnome-session-wayland@gnome.target
diff --git a/config/chroot_local-includes/usr/local/bin/tca b/config/chroot_local-includes/usr/local/bin/tca
index 118530d57f5..03818657e5a 100755
--- a/config/chroot_local-includes/usr/local/bin/tca
+++ b/config/chroot_local-includes/usr/local/bin/tca
@@ -106,7 +106,7 @@ def main():
     inherit_env = ["{}={}".format(var, os.environ.get(var, "")) for var in inherit_vars]
     envcmd = [
         "env",
-        *gnome_env_vars(),
+        *gnome_env_vars(LIVE_USERNAME),
         *inherit_env,
         f"AT_SPI_BUS_ADDRESS=unix:path={A11Y_BUS_SANDBOX_PATH}",
         f"IBUS_ADDRESS=unix:path={IBUS_SANDBOX_PATH}",
diff --git a/config/chroot_local-includes/usr/local/lib/gnome-shell-dump-environment b/config/chroot_local-includes/usr/local/lib/dump-user-env
similarity index 70%
rename from config/chroot_local-includes/usr/local/lib/gnome-shell-dump-environment
rename to config/chroot_local-includes/usr/local/lib/dump-user-env
index cf917bad438..bb83b40fb51 100755
--- a/config/chroot_local-includes/usr/local/lib/gnome-shell-dump-environment
+++ b/config/chroot_local-includes/usr/local/lib/dump-user-env
@@ -12,7 +12,12 @@
 
 set -eu
 
-GNOME_ENV_FILE=/run/user/1000/gnome-env
+if [ -z "${EUID:-}" ]; then
+  # bashsupport disable=BP3002
+  EUID=$(id -u)
+fi
+
+GNOME_ENV_FILE="/run/user/${EUID}/gnome-env"
 
 # Set some environment variables which are not set in the gnome-shell
 # process but which we still need in some processes which export the
@@ -22,14 +27,18 @@ if [ -z "${DISPLAY:-}" ]; then
 fi
 
 if [ -z "${XAUTHORITY:-}" ]; then
-  for xauth in /run/user/1000/.mutter-Xwaylandauth.*; do
-    export XAUTHORITY="${xauth}"
+  for xauth in "/run/user/${EUID}/.mutter-Xwaylandauth."*; do
+    if [ -e "${xauth}" ]; then
+      export XAUTHORITY="${xauth}"
+    fi
   done
 fi
 
 if [ -z "${WAYLAND_DISPLAY:-}" ]; then
-  for wayland_display in /run/user/1000/wayland-*; do
-    export WAYLAND_DISPLAY="${wayland_display}"
+  for wayland_display in "/run/user/${EUID}/wayland-"*; do
+    if [ -e "${wayland_display}" ]; then
+      export WAYLAND_DISPLAY="${wayland_display}"
+    fi
   done
 fi
 
diff --git a/config/chroot_local-includes/usr/local/lib/exec-in-gnome-env b/config/chroot_local-includes/usr/local/lib/exec-in-gnome-env
new file mode 100755
index 00000000000..577f23440d5
--- /dev/null
+++ b/config/chroot_local-includes/usr/local/lib/exec-in-gnome-env
@@ -0,0 +1,21 @@
+#!/bin/sh
+
+# This script exports environment variables from the file specified in
+# the ENVFILE argument and then executes the specified command.
+#
+# If any environment variables from ENVFILE are already set in the
+# current environment, those are *not* overwritten, so environment
+# variables set by the caller take precedence over the ones from ENVFILE.
+#
+# ENVFILE must be null-terminated.
+
+set -eu
+
+GNOME_ENV_FILE=/run/user/1000/gnome-env
+
+# Ensure that we're running as amnesia
+if [ "$(id -u)" -ne "1000"  ]; then
+  runuser -u amnesia -- /usr/local/lib/loadenv-exec "${GNOME_ENV_FILE}" -- "$@"
+else
+  /usr/local/lib/loadenv-exec "${GNOME_ENV_FILE}" -- "$@"
+fi
diff --git a/config/chroot_local-includes/usr/local/lib/loadenv-exec b/config/chroot_local-includes/usr/local/lib/loadenv-exec
new file mode 100755
index 00000000000..08f0a1577d9
--- /dev/null
+++ b/config/chroot_local-includes/usr/local/lib/loadenv-exec
@@ -0,0 +1,41 @@
+#!/bin/bash
+
+# This script exports environment variables from the file specified in
+# the ENVFILE argument and then executes the specified command.
+#
+# If any environment variables from ENVFILE are already set in the
+# current environment, those are *not* overwritten, so environment
+# variables set by the caller take precedence over the ones from ENVFILE.
+#
+# ENVFILE must be null-terminated.
+
+set -euo pipefail
+
+if [ $# -lt 2 ]; then
+  echo >&2 "Usage: $0 ENVFILE [--] COMMAND [ARG...]"
+  exit 1
+fi
+
+ENVFILE="$1"
+shift
+
+if [ "$1" = "--" ]; then
+  shift
+fi
+
+while IFS= read -r -d $'\0' line; do
+  # Extract the variable name by removing the longest suffix which
+  # matches "=*". For documentation on this bash feature see [1].
+  var="${line%%=*}"
+  # Only export the variable if it's unset in the current environment.
+  # This uses bash's variable indirection, see [2].
+  if [ -z "${!var-}" ]; then
+    export "${line?}"
+  fi
+done <"${ENVFILE}"
+
+exec "$@"
+
+# References:
+# [1]: Search for "${parameter%%word}" in https://www.gnu.org/software/bash/manual/html_node/Shell-Parameter-Expansion.html
+# [2]: Search for "indirection" in https://www.gnu.org/software/bash/manual/html_node/Shell-Parameter-Expansion.html
diff --git a/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell b/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell
index c8559b49913..3bb8b18d0d4 100755
--- a/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell
+++ b/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell
@@ -64,27 +64,19 @@ def mk_switch_user_fn(user):
 
 
 def get_user_env(user):
-    # We need special handling for the Debian-gdm user because running
-    # 'su -s /bin/sh -c env' doesn't print the same environment which
-    # the Greeter is running in - in particular, DBUS_SESSION_BUS_ADDRESS
-    # does not have the value we need to successfully run Dogtail.
-    if user == "Debian-gdm":
-        with open(f"/tmp/gdm-env") as f:
-            env_data = f.read()
-        return dict((line.split('=', 1) for line in env_data.splitlines()))
-
-    # We try to create an environment identical to what's expected
-    # inside Tails for the user by logging in (via `su`) as the user,
-    # setting up the GNOME shell environment, and extracting the
-    # environment via `env`; not that we will run `env` unconditionally
-    # since the former command could fail, e.g. if GNOME is not running.
+    # Get the default environment that's set up when logging in via `su`
     wrapped_env_cmd = "su -c env {}".format(user)
     pipe = subprocess.Popen(wrapped_env_cmd,
                             stdout=subprocess.PIPE,
                             shell=True)  # nosec subprocess_popen_with_shell_equals_true
     env_data = pipe.communicate()[0].decode('utf-8')
     env_dict = dict((line.split('=', 1) for line in env_data.splitlines()))
-    env_dict.update(gnome_env())
+
+    # Get the stored user environment (if the user is a user for which
+    # we store the user environment).
+    if user == "amnesia" or user =="Debian-gdm":
+        env_dict.update(gnome_env(user))
+
     return env_dict
 
 
diff --git a/config/chroot_local-includes/usr/local/lib/tails-greeter b/config/chroot_local-includes/usr/local/lib/tails-greeter
index bd8ad9b0a86..c1db5e629fb 100755
--- a/config/chroot_local-includes/usr/local/lib/tails-greeter
+++ b/config/chroot_local-includes/usr/local/lib/tails-greeter
@@ -2,8 +2,7 @@
 export LANG="en_US.UTF-8"
 
 if grep -qw "autotest_never_use_this_option" /proc/cmdline; then
-  # Store the environment for usage by tails-autotest-remove-shell
-  env > "/tmp/gdm-env"
+  /usr/local/lib/dump-user-env
 fi
 
 if grep -qw "debug=greeter" /proc/cmdline && [ -z "${DEBUG_GREETER:-}" ]; then
diff --git a/config/chroot_local-includes/usr/local/lib/tails-shell-library/gnome.sh b/config/chroot_local-includes/usr/local/lib/tails-shell-library/gnome.sh
deleted file mode 100644
index 9cc597d925c..00000000000
--- a/config/chroot_local-includes/usr/local/lib/tails-shell-library/gnome.sh
+++ /dev/null
@@ -1,29 +0,0 @@
-# shellcheck shell=dash
-GNOME_ENV_VARS="
-DBUS_SESSION_BUS_ADDRESS
-LANG
-XDG_RUNTIME_DIR
-XDG_CURRENT_DESKTOP
-"
-
-GNOME_ENV_FILE=/run/user/1000/gnome-env
-
-gnome_env() {
-  if [ -f "${GNOME_ENV_FILE}" ]; then
-    xargs -0 -L1 -a "${GNOME_ENV_FILE}"
-  fi
-}
-
-export_gnome_env() {
-    local tmp_env_file
-    tmp_env_file="$(mktemp)"
-    local vars
-    gnome_env > "${tmp_env_file}"
-    # shellcheck disable=SC2163
-    while read -r line; do
-      if [ -n "${line}" ]; then
-        export "${line}"
-      fi
-    done < "${tmp_env_file}"
-    rm "${tmp_env_file}"
-}
diff --git a/config/chroot_local-includes/usr/local/sbin/tails-notify-user b/config/chroot_local-includes/usr/local/sbin/tails-notify-user
index f561d3f80d3..46f5f48934f 100755
--- a/config/chroot_local-includes/usr/local/sbin/tails-notify-user
+++ b/config/chroot_local-includes/usr/local/sbin/tails-notify-user
@@ -2,12 +2,6 @@
 
 set -e
 
-# Import export_gnome_env().
-. /usr/local/lib/tails-shell-library/gnome.sh
-
-# Get LIVE_USERNAME
-. /etc/live/config.d/username.conf
-
 if [ $# -ne 2 ] && [ $# -ne 3 ]; then
     echo "Usage: $0 SUMMARY BODY [TIMEOUT]" >&2
     exit 16
@@ -17,10 +11,5 @@ fi
 summary="$1"
 body="$2"
 
-if [ -n "$3" ]; then
-    timeout_args="--expire-time=$3"
-fi
-(
-    export_gnome_env
-    exec /bin/su -c "notify-send ${timeout_args} \"${summary}\" \"${body}\"" "${LIVE_USERNAME}" &
-)
+/usr/local/lib/exec-in-gnome-env \
+    notify-send ${3:+"--expire-time=$3"} "${summary}" "${body}"
diff --git a/config/chroot_local-includes/usr/local/sbin/unsafe-browser b/config/chroot_local-includes/usr/local/sbin/unsafe-browser
index 26d059a95f0..20945fdc681 100755
--- a/config/chroot_local-includes/usr/local/sbin/unsafe-browser
+++ b/config/chroot_local-includes/usr/local/sbin/unsafe-browser
@@ -19,21 +19,13 @@ export TEXTDOMAIN
 # Import nm_is_connected
 . /usr/local/lib/tails-shell-library/network.sh
 
-# Import export_gnome_env()
-. /usr/local/lib/tails-shell-library/gnome.sh
-
 
 _zenity () {
-    DBUS_SESSION_BUS_ADDRESS="$(
-        export_gnome_env
-        echo "${DBUS_SESSION_BUS_ADDRESS}"
-    )"
     AT_SPI_BUS_ADDRESS="$(
-        sudo -u "${SUDO_USER}" \
-            env DBUS_SESSION_BUS_ADDRESS="${DBUS_SESSION_BUS_ADDRESS}" \
-            dbus-send --session --print-reply=literal \
-                --dest=org.a11y.Bus /org/a11y/bus org.a11y.Bus.GetAddress \
-                | sed 's/^ *//'
+        /usr/local/lib/exec-in-gnome-env \
+        dbus-send --session --print-reply=literal \
+            --dest=org.a11y.Bus /org/a11y/bus org.a11y.Bus.GetAddress \
+            | sed 's/^ *//'
     )"
     sudo -u "${SUDO_USER}" \
          env AT_SPI_BUS_ADDRESS="${AT_SPI_BUS_ADDRESS}" \
-- 
GitLab


From aa060554ad55a6b73b4cab5c94231e96f4b68a5d Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Wed, 1 Mar 2023 23:36:13 +0100
Subject: [PATCH 115/187] Replace systemctl-user with exec-in-gnome-env

---
 .../etc/NetworkManager/dispatcher.d/10-tor.sh |  2 +-
 .../NetworkManager/dispatcher.d/20-time.sh    |  7 +----
 .../TorConfiguration/reset-tca                |  4 +--
 .../usr/local/lib/systemctl-user              | 28 -------------------
 4 files changed, 4 insertions(+), 37 deletions(-)
 delete mode 100755 config/chroot_local-includes/usr/local/lib/systemctl-user

diff --git a/config/chroot_local-includes/etc/NetworkManager/dispatcher.d/10-tor.sh b/config/chroot_local-includes/etc/NetworkManager/dispatcher.d/10-tor.sh
index 600b972fdb8..23d03f2c20a 100755
--- a/config/chroot_local-includes/etc/NetworkManager/dispatcher.d/10-tor.sh
+++ b/config/chroot_local-includes/etc/NetworkManager/dispatcher.d/10-tor.sh
@@ -40,7 +40,7 @@ while ! systemctl is-active -q user@1000.service; do
 done
 
 echo >&2 "$BASENAME: $1 up: starting tca.service"
-/usr/local/lib/systemctl-user amnesia start tca.service
+/usr/local/lib/exec-in-gnome-env systemctl --user start tca.service
 
 # that's not what it looks: htpdate will not really be started until Tor has bootstrapped
 echo >&2 "$BASENAME: $1 up: restarting htpdate.service"
diff --git a/config/chroot_local-includes/etc/NetworkManager/dispatcher.d/20-time.sh b/config/chroot_local-includes/etc/NetworkManager/dispatcher.d/20-time.sh
index e5781225b07..d647f76908f 100755
--- a/config/chroot_local-includes/etc/NetworkManager/dispatcher.d/20-time.sh
+++ b/config/chroot_local-includes/etc/NetworkManager/dispatcher.d/20-time.sh
@@ -6,10 +6,6 @@
 set -e
 set -u
 
-# Get LIVE_USERNAME
-# shellcheck source=../../live/config.d/username.conf
-. /etc/live/config.d/username.conf
-
 ### Exit conditions
 
 # Run only when the interface is not "lo":
@@ -22,5 +18,4 @@ if [ "$2" != "up" ]; then
 	exit 0
 fi
 
-/usr/local/lib/systemctl-user "${LIVE_USERNAME}" \
-  --user restart tails-htpdate-notify-user.service
+/usr/local/lib/exec-in-gnome-env systemctl --user restart tails-htpdate-notify-user.service
diff --git a/config/chroot_local-includes/usr/local/lib/persistent-storage/on-deactivated-hooks/TorConfiguration/reset-tca b/config/chroot_local-includes/usr/local/lib/persistent-storage/on-deactivated-hooks/TorConfiguration/reset-tca
index 03cc0c95f9f..3c5db936e35 100755
--- a/config/chroot_local-includes/usr/local/lib/persistent-storage/on-deactivated-hooks/TorConfiguration/reset-tca
+++ b/config/chroot_local-includes/usr/local/lib/persistent-storage/on-deactivated-hooks/TorConfiguration/reset-tca
@@ -3,10 +3,10 @@
 set -eu
 
 rm -rf /var/lib/tca/ /run/tca/
-/usr/local/lib/systemctl-user amnesia stop tca.service
+/usr/local/lib/exec-in-gnome-env systemctl --user stop tca.service
 systemctl stop tor@default.service
 echo DisableNetwork 1 >> /etc/tor/torrc
 systemctl start tor@default.service
 if [ "$(nmcli --terse --fields STATE general status)" = connected ]; then
-    /usr/local/lib/systemctl-user amnesia start tca.service
+    /usr/local/lib/exec-in-gnome-env systemctl --user start tca.service
 fi
diff --git a/config/chroot_local-includes/usr/local/lib/systemctl-user b/config/chroot_local-includes/usr/local/lib/systemctl-user
deleted file mode 100755
index 156fe63bea4..00000000000
--- a/config/chroot_local-includes/usr/local/lib/systemctl-user
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/usr/bin/python3
-"""
-Allows running systemctl as a different user
-"""
-
-import sys
-import os
-from tailslib.gnome import gnome_env_vars
-
-
-def main():
-    if os.getuid() != 0:
-        print("Error: {} must be run as root".format(sys.argv[0]), file=sys.stderr)
-        sys.exit(1)
-
-    user = sys.argv[1]
-    systemctl_args = sys.argv[2:]
-    if systemctl_args[0] == "--":
-        systemctl_args = systemctl_args[1:]
-
-    runuser = ["runuser", "-u", user, "--"]
-    env = ["env", *gnome_env_vars()]
-    cmd = [*runuser, *env, '/bin/systemctl', '--user', *systemctl_args]
-    os.execvp(cmd[0], cmd)
-
-
-if __name__ == "__main__":
-    main()
-- 
GitLab


From 98cb9aeb8f83ed03aa49811ba46152f042750736 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Wed, 1 Mar 2023 23:41:12 +0100
Subject: [PATCH 116/187] tails-additional-software-notify: Fix unresolved
 reference '_'

---
 .../usr/local/lib/tails-additional-software-notify               | 1 +
 1 file changed, 1 insertion(+)

diff --git a/config/chroot_local-includes/usr/local/lib/tails-additional-software-notify b/config/chroot_local-includes/usr/local/lib/tails-additional-software-notify
index e31e020fb85..830c5889a46 100755
--- a/config/chroot_local-includes/usr/local/lib/tails-additional-software-notify
+++ b/config/chroot_local-includes/usr/local/lib/tails-additional-software-notify
@@ -15,6 +15,7 @@ from gi.repository import GLib
 gi.require_version('Notify', '0.7')
 from gi.repository import Notify                                # NOQA: E402
 
+_ = gettext.gettext
 
 class ASPNotifier(object):
     """Display a notification and exit with a meaningful code."""
-- 
GitLab


From 210d50ada05406f2ebb1f396a24d268d9ee333a3 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Wed, 1 Mar 2023 23:42:37 +0100
Subject: [PATCH 117/187] tails-additional-software-notify: Fix error when
 printing usage message

---
 .../usr/local/lib/tails-additional-software-notify              | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/config/chroot_local-includes/usr/local/lib/tails-additional-software-notify b/config/chroot_local-includes/usr/local/lib/tails-additional-software-notify
index 830c5889a46..5c2c49039a6 100755
--- a/config/chroot_local-includes/usr/local/lib/tails-additional-software-notify
+++ b/config/chroot_local-includes/usr/local/lib/tails-additional-software-notify
@@ -81,7 +81,7 @@ def print_help():
         "Returns: 0 if the button with <accept_label> is selected\n"
         "         2 if the arguments are wrong\n"
         "         3 if the button with <deny_label> is selected\n"
-        "         4 if the notification is closed another way\n",
+        "         4 if the notification is closed another way\n"
         "         5 if the documentation button is selected and the"
         "           documentation helper is launched.\n")
 
-- 
GitLab


From a814b0fa61e7af3412ef9cd143268267f1c50821 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Wed, 1 Mar 2023 23:53:52 +0100
Subject: [PATCH 118/187] netnsdrop.py: Remove unused argument user

---
 .../usr/lib/python3/dist-packages/tailslib/netnsdrop.py         | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/netnsdrop.py b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/netnsdrop.py
index 31ab4f12b1e..784b4bec260 100644
--- a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/netnsdrop.py
+++ b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/netnsdrop.py
@@ -20,7 +20,7 @@ A11Y_BUS_SANDBOX_PATH="/run/user/1000/tails-sandbox/a11y-bus-proxy.sock"
 IBUS_SANDBOX_PATH="/run/user/1000/tails-sandbox/ibus-proxy.sock"
 
 
-def run_in_netns(*args, netns, user="amnesia", root="/", bind_mounts=[]):
+def run_in_netns(*args, netns, root="/", bind_mounts=[]):
     # base bwrap sharing most of the system
     bwrap = ["bwrap", "--bind", root, "/", "--proc", "/proc", "--dev", "/dev"]
     for src, dest in bind_mounts:
-- 
GitLab


From 2cabfcd15c11cd16e606c4cd50d1376f3744769f Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Wed, 1 Mar 2023 23:52:26 +0100
Subject: [PATCH 119/187] Replace most usages of gnome_env in Python scripts

The remaining usages are safe because they are used in unprivileged
processes.
---
 .../etc/sudoers.d/zzz_tps-frontend                    |  2 +-
 .../usr/lib/python3/dist-packages/tailslib/utils.py   | 11 ++---------
 .../usr/local/lib/connect-drop-tps                    |  5 ++++-
 .../usr/local/lib/tails-additional-software-notify    |  4 +---
 .../usr/local/lib/tails-virt-notify-user              |  4 +---
 config/chroot_local-includes/usr/local/lib/tca-portal | 11 +++--------
 .../chroot_local-includes/usr/local/lib/tps-frontend  |  4 ----
 7 files changed, 12 insertions(+), 29 deletions(-)

diff --git a/config/chroot_local-includes/etc/sudoers.d/zzz_tps-frontend b/config/chroot_local-includes/etc/sudoers.d/zzz_tps-frontend
index f4ebbd6af5a..05677390d46 100644
--- a/config/chroot_local-includes/etc/sudoers.d/zzz_tps-frontend
+++ b/config/chroot_local-includes/etc/sudoers.d/zzz_tps-frontend
@@ -8,7 +8,7 @@ Defaults!TPS_CONNECT_DROP env_keep+="NOTIFY_SOCKET"
 # user so that connect-drop is able to authenticate to D-Bus as that user.
 amnesia   ALL = (tails-persistent-storage)    NOPASSWD: TPS_CONNECT_DROP
 
-Cmnd_Alias TPS_FRONTEND = /usr/local/lib/tps-frontend
+Cmnd_Alias TPS_FRONTEND = /usr/local/lib/exec-in-gnome-env /usr/local/lib/tps-frontend
 
 Defaults!TPS_FRONTEND env_keep+="INHERIT_FD"
 Defaults!TPS_FRONTEND env_keep+="DESKTOP_STARTUP_ID"
diff --git a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/utils.py b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/utils.py
index bb4856083c4..3ee32ac4daa 100644
--- a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/utils.py
+++ b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/utils.py
@@ -6,9 +6,6 @@ import os
 import logging
 import subprocess
 
-from tailslib import LIVE_USERNAME
-from tailslib.gnome import (gnome_env, gnome_env_vars)
-
 # Credits go to kurin from this Reddit thread:
 #   https://www.reddit.com/r/Python/comments/1sxil3/chdir_a_context_manager_for_switching_working/ce29rcm
 @contextlib.contextmanager
@@ -23,12 +20,10 @@ def chdir(path):
 
 def launch_x_application(command, *args):
     """Launch an X application as LIVE_USERNAME and wait for its completion."""
-    cmdline = ["sudo", "-u", LIVE_USERNAME, "env", *gnome_env_vars(), command]
-    cmdline.extend(args)
+    cmdline = ["/usr/local/lib/exec-in-gnome-env", command, *args]
     try:
         subprocess.run(cmdline,
                        stderr=subprocess.PIPE,
-                       env=gnome_env(),
                        check=True,
                        universal_newlines=True)
     except subprocess.CalledProcessError as e:
@@ -40,9 +35,7 @@ def launch_x_application(command, *args):
 
 def spawn_x_application(command, *args):
     """Launch an X application as LIVE_USERNAME without blocking."""
-    cmdline = ["sudo", "-u", LIVE_USERNAME, command]
-    cmdline.extend(args)
+    cmdline = ["/usr/local/lib/exec-in-gnome-env", command, *args]
     subprocess.Popen(cmdline,
                      stderr=subprocess.PIPE,
-                     env=gnome_env(),
                      universal_newlines=True)
diff --git a/config/chroot_local-includes/usr/local/lib/connect-drop-tps b/config/chroot_local-includes/usr/local/lib/connect-drop-tps
index e4bf30642fb..23e15e057bb 100755
--- a/config/chroot_local-includes/usr/local/lib/connect-drop-tps
+++ b/config/chroot_local-includes/usr/local/lib/connect-drop-tps
@@ -5,4 +5,7 @@
 # close file descriptor 3, which will be the opened D-Bus socket,
 # which we want to inherit to tps-frontend.
 
-/usr/local/lib/connect-drop --dbus --env-keep -- sudo --close-from=4 -u amnesia /usr/local/lib/tps-frontend
+/usr/local/lib/connect-drop --dbus --env-keep -- \
+    sudo --close-from=4 -u amnesia \
+    /usr/local/lib/exec-in-gnome-env \
+    /usr/local/lib/tps-frontend
diff --git a/config/chroot_local-includes/usr/local/lib/tails-additional-software-notify b/config/chroot_local-includes/usr/local/lib/tails-additional-software-notify
index 5c2c49039a6..047bbda1677 100755
--- a/config/chroot_local-includes/usr/local/lib/tails-additional-software-notify
+++ b/config/chroot_local-includes/usr/local/lib/tails-additional-software-notify
@@ -6,8 +6,6 @@ import os.path
 import subprocess
 import sys
 
-from tailslib.gnome import gnome_env_vars
-
 import gi
 
 from gi.repository import GLib
@@ -58,7 +56,7 @@ class ASPNotifier(object):
             sys.exit(3)
         elif action == "documentation":
             subprocess.Popen(
-                ["env", *gnome_env_vars(), "tails-documentation", user_data]
+                ["/usr/local/lib/exec-in-gnome-env", "tails-documentation", user_data]
             )
             sys.exit(5)
 
diff --git a/config/chroot_local-includes/usr/local/lib/tails-virt-notify-user b/config/chroot_local-includes/usr/local/lib/tails-virt-notify-user
index 6321da90ef9..0557628daf3 100755
--- a/config/chroot_local-includes/usr/local/lib/tails-virt-notify-user
+++ b/config/chroot_local-includes/usr/local/lib/tails-virt-notify-user
@@ -4,8 +4,6 @@ import gettext
 import subprocess
 import sys
 
-from tailslib.gnome import gnome_env_vars
-
 import gi
 
 from gi.repository import GLib
@@ -54,7 +52,7 @@ class VirtNotifier(object):
             )
         elif action == "documentation":
             subprocess.run(
-                ["env", *gnome_env_vars(), "tails-documentation",
+                ["/usr/local/lib/exec-in-gnome-env", "tails-documentation",
                  'doc/advanced_topics/virtualization', 'security']
             )
         sys.exit(0)
diff --git a/config/chroot_local-includes/usr/local/lib/tca-portal b/config/chroot_local-includes/usr/local/lib/tca-portal
index 8bc96becb38..b88aa7506ac 100755
--- a/config/chroot_local-includes/usr/local/lib/tca-portal
+++ b/config/chroot_local-includes/usr/local/lib/tca-portal
@@ -30,7 +30,6 @@ from tinyrpc.exc import InvalidRequestError
 import systemd.daemon
 
 from tailslib.logutils import configure_logging
-from tailslib.gnome import gnome_env_vars
 from tailslib import (
     CLEARNET_USERNAME,
     LIVE_USERNAME,
@@ -129,22 +128,18 @@ class RootCommand(BaseCommand):
 
 class UserCommand(BaseCommand):
     def full_command(self, request: RPCRequest) -> tuple:
-        drop = ("/sbin/runuser", "-u", LIVE_USERNAME)
-        env = ("/usr/bin/env", *gnome_env_vars())
-
-        args = (*drop, "--", *env, *(super().full_command(request)))
+        args = ("/usr/local/lib/exec-in-gnome-env", *(super().full_command(request)))
         return args
 
 
 class PersistentStorageCommand(BaseCommand):
     def full_command(self, request: RPCRequest) -> tuple:
         drop = ("/sbin/runuser", "-u", PERSISTENT_STORAGE_USERNAME)
-        env = ("/usr/bin/env", *gnome_env_vars())
-
-        args = (*drop, "--", *env, *(super().full_command(request)))
+        args = (*drop, "--", *(super().full_command(request)))
         return args
 
 
+
 class GetNetworkTimeCommand(BaseCommand):
     def __init__(self):
         super().__init__(['/usr/local/lib/tails-get-network-time', '--log-target=syslog'], False)
diff --git a/config/chroot_local-includes/usr/local/lib/tps-frontend b/config/chroot_local-includes/usr/local/lib/tps-frontend
index 9ce247b5c0d..789575171a3 100755
--- a/config/chroot_local-includes/usr/local/lib/tps-frontend
+++ b/config/chroot_local-includes/usr/local/lib/tps-frontend
@@ -5,10 +5,6 @@
 # Licensed under GPLv2 by the GNOME Music developers
 
 import os
-from tailslib.gnome import gnome_env
-
-for key, value in gnome_env().items():
-    os.environ[key] = value
 
 # NOQA:E402
 import argparse
-- 
GitLab


From f64f2195944d21c4772bd79bbae68467ab049f6b Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Thu, 2 Mar 2023 23:24:32 +0100
Subject: [PATCH 120/187] Reimplement loadenv-exec in Python

---
 .../usr/local/lib/loadenv-exec                | 58 +++++++++++--------
 1 file changed, 33 insertions(+), 25 deletions(-)

diff --git a/config/chroot_local-includes/usr/local/lib/loadenv-exec b/config/chroot_local-includes/usr/local/lib/loadenv-exec
index 08f0a1577d9..049ad74c473 100755
--- a/config/chroot_local-includes/usr/local/lib/loadenv-exec
+++ b/config/chroot_local-includes/usr/local/lib/loadenv-exec
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/usr/bin/env python3
 
 # This script exports environment variables from the file specified in
 # the ENVFILE argument and then executes the specified command.
@@ -9,33 +9,41 @@
 #
 # ENVFILE must be null-terminated.
 
-set -euo pipefail
+import os
+import sys
+from pathlib import Path
 
-if [ $# -lt 2 ]; then
-  echo >&2 "Usage: $0 ENVFILE [--] COMMAND [ARG...]"
-  exit 1
-fi
+usage = f"{sys.argv[0]} ENVFILE [--] COMMAND [ARG...]"
 
-ENVFILE="$1"
-shift
 
-if [ "$1" = "--" ]; then
-  shift
-fi
+def read_envfile(envfile: str) -> dict:
+    env = dict(os.environ)
+    for line in Path(envfile).read_text().split('\0'):
+        if not line:
+            continue
+        key, value = line.split("=", 1)
+        if key not in env:
+            env[key] = value
+    return env
 
-while IFS= read -r -d $'\0' line; do
-  # Extract the variable name by removing the longest suffix which
-  # matches "=*". For documentation on this bash feature see [1].
-  var="${line%%=*}"
-  # Only export the variable if it's unset in the current environment.
-  # This uses bash's variable indirection, see [2].
-  if [ -z "${!var-}" ]; then
-    export "${line?}"
-  fi
-done <"${ENVFILE}"
 
-exec "$@"
+def main():
+    if os.geteuid() != 1000:
+        print(f"{sys.argv[0]: This script must be run as amnesia}", file=sys.stderr)
+        sys.exit(1)
 
-# References:
-# [1]: Search for "${parameter%%word}" in https://www.gnu.org/software/bash/manual/html_node/Shell-Parameter-Expansion.html
-# [2]: Search for "indirection" in https://www.gnu.org/software/bash/manual/html_node/Shell-Parameter-Expansion.html
+    if len(sys.argv) < 3:
+        print(usage, file=sys.stderr)
+        sys.exit(1)
+
+    if sys.argv[2] == "--":
+        del sys.argv[2]
+
+    env = read_envfile(sys.argv[1])
+    file = sys.argv[2]
+    args = sys.argv[2:]
+    os.execvpe(file, args, env=env)
+
+
+if __name__ == "__main__":
+    main()
-- 
GitLab


From 9f1c5e194b517d8de98973e2cd72ed8b59a776d5 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Thu, 2 Mar 2023 23:43:42 +0100
Subject: [PATCH 121/187] tps-frontend-wrapper: Pass current user environment

The current user environment already contains all the needed variables,
so we pass that instead of /run/user/1000/user-env.
---
 .../etc/sudoers.d/zzz_tps-frontend                     |  4 ++--
 .../usr/local/bin/tps-frontend-wrapper                 |  4 +++-
 .../usr/local/lib/connect-drop-tps                     |  6 +++++-
 .../chroot_local-includes/usr/local/lib/loadenv-exec   | 10 ++++++++--
 4 files changed, 18 insertions(+), 6 deletions(-)

diff --git a/config/chroot_local-includes/etc/sudoers.d/zzz_tps-frontend b/config/chroot_local-includes/etc/sudoers.d/zzz_tps-frontend
index 05677390d46..253b7d5b192 100644
--- a/config/chroot_local-includes/etc/sudoers.d/zzz_tps-frontend
+++ b/config/chroot_local-includes/etc/sudoers.d/zzz_tps-frontend
@@ -1,4 +1,4 @@
-Cmnd_Alias TPS_CONNECT_DROP = /usr/local/lib/connect-drop-tps ""
+Cmnd_Alias TPS_CONNECT_DROP = /usr/local/lib/connect-drop-tps /tmp/*-env
 
 Defaults!TPS_CONNECT_DROP env_keep+="DESKTOP_STARTUP_ID"
 Defaults!TPS_CONNECT_DROP env_keep+="NOTIFY_SOCKET"
@@ -8,7 +8,7 @@ Defaults!TPS_CONNECT_DROP env_keep+="NOTIFY_SOCKET"
 # user so that connect-drop is able to authenticate to D-Bus as that user.
 amnesia   ALL = (tails-persistent-storage)    NOPASSWD: TPS_CONNECT_DROP
 
-Cmnd_Alias TPS_FRONTEND = /usr/local/lib/exec-in-gnome-env /usr/local/lib/tps-frontend
+Cmnd_Alias TPS_FRONTEND = /usr/local/lib/loadenv-exec /tmp/*-env --delete /usr/local/lib/tps-frontend
 
 Defaults!TPS_FRONTEND env_keep+="INHERIT_FD"
 Defaults!TPS_FRONTEND env_keep+="DESKTOP_STARTUP_ID"
diff --git a/config/chroot_local-includes/usr/local/bin/tps-frontend-wrapper b/config/chroot_local-includes/usr/local/bin/tps-frontend-wrapper
index 9004628ea59..ebdb7e44e4e 100755
--- a/config/chroot_local-includes/usr/local/bin/tps-frontend-wrapper
+++ b/config/chroot_local-includes/usr/local/bin/tps-frontend-wrapper
@@ -15,4 +15,6 @@
 # See also the corresponding sudoers policies in
 # config/chroot_local-includes/etc/sudoers.d/zzz_tps-frontend.
 
-sudo -u tails-persistent-storage /usr/local/lib/connect-drop-tps
+user_env=$(mktemp --suffix -env)
+env --null > "${user_env}"
+sudo -u tails-persistent-storage /usr/local/lib/connect-drop-tps "${user_env}"
diff --git a/config/chroot_local-includes/usr/local/lib/connect-drop-tps b/config/chroot_local-includes/usr/local/lib/connect-drop-tps
index 23e15e057bb..1973c0aab8a 100755
--- a/config/chroot_local-includes/usr/local/lib/connect-drop-tps
+++ b/config/chroot_local-includes/usr/local/lib/connect-drop-tps
@@ -5,7 +5,11 @@
 # close file descriptor 3, which will be the opened D-Bus socket,
 # which we want to inherit to tps-frontend.
 
+set -eu
+
+ENVFILE="$1"
+
 /usr/local/lib/connect-drop --dbus --env-keep -- \
     sudo --close-from=4 -u amnesia \
-    /usr/local/lib/exec-in-gnome-env \
+    /usr/local/lib/loadenv-exec "${ENVFILE}" --delete \
     /usr/local/lib/tps-frontend
diff --git a/config/chroot_local-includes/usr/local/lib/loadenv-exec b/config/chroot_local-includes/usr/local/lib/loadenv-exec
index 049ad74c473..68a4b5093a9 100755
--- a/config/chroot_local-includes/usr/local/lib/loadenv-exec
+++ b/config/chroot_local-includes/usr/local/lib/loadenv-exec
@@ -13,7 +13,7 @@ import os
 import sys
 from pathlib import Path
 
-usage = f"{sys.argv[0]} ENVFILE [--] COMMAND [ARG...]"
+usage = f"{sys.argv[0]} ENVFILE [--delete] [--] COMMAND [ARG...]"
 
 
 def read_envfile(envfile: str) -> dict:
@@ -36,10 +36,16 @@ def main():
         print(usage, file=sys.stderr)
         sys.exit(1)
 
+    envfile = sys.argv[1]
+    env = read_envfile(envfile)
+
+    if sys.argv[2] == "--delete":
+        os.remove(envfile)
+        del sys.argv[2]
+
     if sys.argv[2] == "--":
         del sys.argv[2]
 
-    env = read_envfile(sys.argv[1])
     file = sys.argv[2]
     args = sys.argv[2:]
     os.execvpe(file, args, env=env)
-- 
GitLab


From b87facdecf96d42640a9458c46c80e02be1cdc0d Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Fri, 3 Mar 2023 10:27:17 +0100
Subject: [PATCH 122/187] dump-user-env: Print error message when required
 variables could not be set

---
 config/chroot_local-includes/usr/local/lib/dump-user-env | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/config/chroot_local-includes/usr/local/lib/dump-user-env b/config/chroot_local-includes/usr/local/lib/dump-user-env
index bb83b40fb51..46ebbcaf836 100755
--- a/config/chroot_local-includes/usr/local/lib/dump-user-env
+++ b/config/chroot_local-includes/usr/local/lib/dump-user-env
@@ -33,6 +33,10 @@ if [ -z "${XAUTHORITY:-}" ]; then
     fi
   done
 fi
+if [ -z "${XAUTHORITY:-}" ]; then
+  echo >&2 "Failed to set XAUTHORITY: No file matching /run/user/${EUID}/.mutter-Xwaylandauth.*"
+  exit 1
+fi
 
 if [ -z "${WAYLAND_DISPLAY:-}" ]; then
   for wayland_display in "/run/user/${EUID}/wayland-"*; do
@@ -41,6 +45,10 @@ if [ -z "${WAYLAND_DISPLAY:-}" ]; then
     fi
   done
 fi
+if [ -z "${WAYLAND_DISPLAY:-}" ]; then
+  echo >&2 "Failed to set XAUTHORITY: No file matching /run/user/${EUID}/wayland-*"
+  exit 1
+fi
 
 # To avoid issues with environment variables that contain newlines, we
 # dump the environment null-terminated
-- 
GitLab


From 669acb7446a2ded379f110667a20bbe6c4b7dc5b Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Fri, 3 Mar 2023 10:32:49 +0100
Subject: [PATCH 123/187] refactor: Rename gnome-env -> user-env

The environment we're dumping doesn't actually have anything to do with
GNOME or GNOME Shell, it's the default environment of a user unit
started by systemd plus some display related variables set by us in
dump-user-env. The name user-env therefore better reflects its content.

Also use the name exec-with-user-env instead of exec-in-user-env to make
it more clear that we're not replacing the current environment.
---
 config/chroot_local-hooks/40-pinentry                  |  2 +-
 .../etc/NetworkManager/dispatcher.d/10-tor.sh          |  2 +-
 .../etc/NetworkManager/dispatcher.d/20-time.sh         |  2 +-
 .../lib/python3/dist-packages/tailslib/netnsdrop.py    |  4 ++--
 .../dist-packages/tailslib/{gnome.py => userenv.py}    | 10 +++++-----
 .../usr/lib/python3/dist-packages/tailslib/utils.py    |  4 ++--
 config/chroot_local-includes/usr/local/bin/tca         |  4 ++--
 .../chroot_local-includes/usr/local/lib/dump-user-env  |  9 ++++-----
 .../lib/{exec-in-gnome-env => exec-with-user-env}      |  6 +++---
 .../on-deactivated-hooks/TorConfiguration/reset-tca    |  4 ++--
 .../usr/local/lib/tails-additional-software-notify     |  2 +-
 .../usr/local/lib/tails-autotest-remote-shell          |  4 ++--
 .../usr/local/lib/tails-virt-notify-user               |  2 +-
 config/chroot_local-includes/usr/local/lib/tca-portal  |  2 +-
 .../usr/local/sbin/tails-notify-user                   |  2 +-
 .../usr/local/sbin/unsafe-browser                      |  2 +-
 16 files changed, 30 insertions(+), 31 deletions(-)
 rename config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/{gnome.py => userenv.py} (63%)
 rename config/chroot_local-includes/usr/local/lib/{exec-in-gnome-env => exec-with-user-env} (73%)

diff --git a/config/chroot_local-hooks/40-pinentry b/config/chroot_local-hooks/40-pinentry
index 4e3d4f1b987..c897ed78a54 100755
--- a/config/chroot_local-hooks/40-pinentry
+++ b/config/chroot_local-hooks/40-pinentry
@@ -16,6 +16,6 @@ dpkg-divert --add --rename --divert \
 
 cat > /usr/bin/pinentry-gtk-2 << 'EOF'
 #!/bin/sh
-/usr/local/lib/exec-in-gnome-env /usr/lib/pinentry/pinentry-gtk-2 "$@"
+/usr/local/lib/exec-with-user-env /usr/lib/pinentry/pinentry-gtk-2 "$@"
 EOF
 chmod 755 /usr/bin/pinentry-gtk-2
diff --git a/config/chroot_local-includes/etc/NetworkManager/dispatcher.d/10-tor.sh b/config/chroot_local-includes/etc/NetworkManager/dispatcher.d/10-tor.sh
index 23d03f2c20a..ef0ec598f81 100755
--- a/config/chroot_local-includes/etc/NetworkManager/dispatcher.d/10-tor.sh
+++ b/config/chroot_local-includes/etc/NetworkManager/dispatcher.d/10-tor.sh
@@ -40,7 +40,7 @@ while ! systemctl is-active -q user@1000.service; do
 done
 
 echo >&2 "$BASENAME: $1 up: starting tca.service"
-/usr/local/lib/exec-in-gnome-env systemctl --user start tca.service
+/usr/local/lib/exec-with-user-env systemctl --user start tca.service
 
 # that's not what it looks: htpdate will not really be started until Tor has bootstrapped
 echo >&2 "$BASENAME: $1 up: restarting htpdate.service"
diff --git a/config/chroot_local-includes/etc/NetworkManager/dispatcher.d/20-time.sh b/config/chroot_local-includes/etc/NetworkManager/dispatcher.d/20-time.sh
index d647f76908f..c8fb9f66008 100755
--- a/config/chroot_local-includes/etc/NetworkManager/dispatcher.d/20-time.sh
+++ b/config/chroot_local-includes/etc/NetworkManager/dispatcher.d/20-time.sh
@@ -18,4 +18,4 @@ if [ "$2" != "up" ]; then
 	exit 0
 fi
 
-/usr/local/lib/exec-in-gnome-env systemctl --user restart tails-htpdate-notify-user.service
+/usr/local/lib/exec-with-user-env systemctl --user restart tails-htpdate-notify-user.service
diff --git a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/netnsdrop.py b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/netnsdrop.py
index 784b4bec260..c615472ca6a 100644
--- a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/netnsdrop.py
+++ b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/netnsdrop.py
@@ -11,7 +11,7 @@ a somewhat similar structure. This is:
 import os
 import logging
 
-from tailslib.gnome import gnome_env_vars
+from tailslib.userenv import user_env_vars
 from tailslib import LIVE_USERNAME
 
 A11Y_BUS_PROXY_PATH="/run/user/1000/.dbus-proxy/a11y-bus-proxy.sock"
@@ -35,7 +35,7 @@ def run_in_netns(*args, netns, root="/", bind_mounts=[]):
     runuser = ["/sbin/runuser", "-u", LIVE_USERNAME]
     envcmd = [
         "/usr/bin/env", "--",
-        *gnome_env_vars(LIVE_USERNAME),
+        *user_env_vars(LIVE_USERNAME),
         f"AT_SPI_BUS_ADDRESS=unix:path={A11Y_BUS_SANDBOX_PATH}",
         f"IBUS_ADDRESS=unix:path={IBUS_SANDBOX_PATH}",
     ]
diff --git a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/gnome.py b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/userenv.py
similarity index 63%
rename from config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/gnome.py
rename to config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/userenv.py
index 2448d91a176..f29928fa84d 100644
--- a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/gnome.py
+++ b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/userenv.py
@@ -5,17 +5,17 @@ import os
 from pathlib import Path
 import pwd
 
-GNOME_ENV_FILE = "/run/user/{uid}/gnome-env"
+USER_ENV_FILE = "/run/user/{uid}/user-env"
 
 @lru_cache(maxsize=1)
-def gnome_env(user=None) -> dict:
+def user_env(user=None) -> dict:
     if user is None:
         uid = os.geteuid()
     else:
         uid = pwd.getpwnam(user).pw_uid
 
     env = dict()
-    env_file = GNOME_ENV_FILE.format(uid=uid)
+    env_file = USER_ENV_FILE.format(uid=uid)
     for line in Path(env_file).read_text().split('\0'):
         if not line:
             continue
@@ -24,5 +24,5 @@ def gnome_env(user=None) -> dict:
     return env
 
 
-def gnome_env_vars(user=None) -> list:
-    return [f"{key}={value}" for key, value in gnome_env(user).items()]
+def user_env_vars(user=None) -> list:
+    return [f"{key}={value}" for key, value in user_env(user).items()]
diff --git a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/utils.py b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/utils.py
index 3ee32ac4daa..78bc983a00a 100644
--- a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/utils.py
+++ b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/utils.py
@@ -20,7 +20,7 @@ def chdir(path):
 
 def launch_x_application(command, *args):
     """Launch an X application as LIVE_USERNAME and wait for its completion."""
-    cmdline = ["/usr/local/lib/exec-in-gnome-env", command, *args]
+    cmdline = ["/usr/local/lib/exec-with-user-env", command, *args]
     try:
         subprocess.run(cmdline,
                        stderr=subprocess.PIPE,
@@ -35,7 +35,7 @@ def launch_x_application(command, *args):
 
 def spawn_x_application(command, *args):
     """Launch an X application as LIVE_USERNAME without blocking."""
-    cmdline = ["/usr/local/lib/exec-in-gnome-env", command, *args]
+    cmdline = ["/usr/local/lib/exec-with-user-env", command, *args]
     subprocess.Popen(cmdline,
                      stderr=subprocess.PIPE,
                      universal_newlines=True)
diff --git a/config/chroot_local-includes/usr/local/bin/tca b/config/chroot_local-includes/usr/local/bin/tca
index 03818657e5a..cee70fe7854 100755
--- a/config/chroot_local-includes/usr/local/bin/tca
+++ b/config/chroot_local-includes/usr/local/bin/tca
@@ -13,7 +13,7 @@ from logging import getLogger, basicConfig
 from typing import List
 
 from tailslib import LIVE_USERNAME
-from tailslib.gnome import gnome_env_vars
+from tailslib.userenv import user_env_vars
 from tailslib.greeter import get_greeter_variable_bool
 from tailslib.persistence import (
     has_persistence,
@@ -106,7 +106,7 @@ def main():
     inherit_env = ["{}={}".format(var, os.environ.get(var, "")) for var in inherit_vars]
     envcmd = [
         "env",
-        *gnome_env_vars(LIVE_USERNAME),
+        *user_env_vars(LIVE_USERNAME),
         *inherit_env,
         f"AT_SPI_BUS_ADDRESS=unix:path={A11Y_BUS_SANDBOX_PATH}",
         f"IBUS_ADDRESS=unix:path={IBUS_SANDBOX_PATH}",
diff --git a/config/chroot_local-includes/usr/local/lib/dump-user-env b/config/chroot_local-includes/usr/local/lib/dump-user-env
index 46ebbcaf836..0e5e56a3d8e 100755
--- a/config/chroot_local-includes/usr/local/lib/dump-user-env
+++ b/config/chroot_local-includes/usr/local/lib/dump-user-env
@@ -17,11 +17,10 @@ if [ -z "${EUID:-}" ]; then
   EUID=$(id -u)
 fi
 
-GNOME_ENV_FILE="/run/user/${EUID}/gnome-env"
+USER_ENV_FILE="/run/user/${EUID}/user-env"
 
-# Set some environment variables which are not set in the gnome-shell
-# process but which we still need in some processes which export the
-# environment file.
+# Set some environment variables which are not set by systemd but which
+# we still need in some processes which export the environment file.
 if [ -z "${DISPLAY:-}" ]; then
   export DISPLAY=:0
 fi
@@ -52,4 +51,4 @@ fi
 
 # To avoid issues with environment variables that contain newlines, we
 # dump the environment null-terminated
-env --null > "${GNOME_ENV_FILE}"
+env --null > "${USER_ENV_FILE}"
diff --git a/config/chroot_local-includes/usr/local/lib/exec-in-gnome-env b/config/chroot_local-includes/usr/local/lib/exec-with-user-env
similarity index 73%
rename from config/chroot_local-includes/usr/local/lib/exec-in-gnome-env
rename to config/chroot_local-includes/usr/local/lib/exec-with-user-env
index 577f23440d5..8c7d677941d 100755
--- a/config/chroot_local-includes/usr/local/lib/exec-in-gnome-env
+++ b/config/chroot_local-includes/usr/local/lib/exec-with-user-env
@@ -11,11 +11,11 @@
 
 set -eu
 
-GNOME_ENV_FILE=/run/user/1000/gnome-env
+USER_ENV_FILE=/run/user/1000/user-env
 
 # Ensure that we're running as amnesia
 if [ "$(id -u)" -ne "1000"  ]; then
-  runuser -u amnesia -- /usr/local/lib/loadenv-exec "${GNOME_ENV_FILE}" -- "$@"
+  runuser -u amnesia -- /usr/local/lib/loadenv-exec "${USER_ENV_FILE}" -- "$@"
 else
-  /usr/local/lib/loadenv-exec "${GNOME_ENV_FILE}" -- "$@"
+  /usr/local/lib/loadenv-exec "${USER_ENV_FILE}" -- "$@"
 fi
diff --git a/config/chroot_local-includes/usr/local/lib/persistent-storage/on-deactivated-hooks/TorConfiguration/reset-tca b/config/chroot_local-includes/usr/local/lib/persistent-storage/on-deactivated-hooks/TorConfiguration/reset-tca
index 3c5db936e35..90f681db54c 100755
--- a/config/chroot_local-includes/usr/local/lib/persistent-storage/on-deactivated-hooks/TorConfiguration/reset-tca
+++ b/config/chroot_local-includes/usr/local/lib/persistent-storage/on-deactivated-hooks/TorConfiguration/reset-tca
@@ -3,10 +3,10 @@
 set -eu
 
 rm -rf /var/lib/tca/ /run/tca/
-/usr/local/lib/exec-in-gnome-env systemctl --user stop tca.service
+/usr/local/lib/exec-with-user-env systemctl --user stop tca.service
 systemctl stop tor@default.service
 echo DisableNetwork 1 >> /etc/tor/torrc
 systemctl start tor@default.service
 if [ "$(nmcli --terse --fields STATE general status)" = connected ]; then
-    /usr/local/lib/exec-in-gnome-env systemctl --user start tca.service
+    /usr/local/lib/exec-with-user-env systemctl --user start tca.service
 fi
diff --git a/config/chroot_local-includes/usr/local/lib/tails-additional-software-notify b/config/chroot_local-includes/usr/local/lib/tails-additional-software-notify
index 047bbda1677..114502782a9 100755
--- a/config/chroot_local-includes/usr/local/lib/tails-additional-software-notify
+++ b/config/chroot_local-includes/usr/local/lib/tails-additional-software-notify
@@ -56,7 +56,7 @@ class ASPNotifier(object):
             sys.exit(3)
         elif action == "documentation":
             subprocess.Popen(
-                ["/usr/local/lib/exec-in-gnome-env", "tails-documentation", user_data]
+                ["/usr/local/lib/exec-with-user-env", "tails-documentation", user_data]
             )
             sys.exit(5)
 
diff --git a/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell b/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell
index 3bb8b18d0d4..45fdc882edc 100755
--- a/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell
+++ b/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell
@@ -45,7 +45,7 @@ import textwrap
 import time
 import traceback
 
-from tailslib.gnome import gnome_env
+from tailslib.userenv import user_env
 
 from typing import Tuple, Optional
 
@@ -75,7 +75,7 @@ def get_user_env(user):
     # Get the stored user environment (if the user is a user for which
     # we store the user environment).
     if user == "amnesia" or user =="Debian-gdm":
-        env_dict.update(gnome_env(user))
+        env_dict.update(user_env(user))
 
     return env_dict
 
diff --git a/config/chroot_local-includes/usr/local/lib/tails-virt-notify-user b/config/chroot_local-includes/usr/local/lib/tails-virt-notify-user
index 0557628daf3..20c1f860f43 100755
--- a/config/chroot_local-includes/usr/local/lib/tails-virt-notify-user
+++ b/config/chroot_local-includes/usr/local/lib/tails-virt-notify-user
@@ -52,7 +52,7 @@ class VirtNotifier(object):
             )
         elif action == "documentation":
             subprocess.run(
-                ["/usr/local/lib/exec-in-gnome-env", "tails-documentation",
+                ["/usr/local/lib/exec-with-user-env", "tails-documentation",
                  'doc/advanced_topics/virtualization', 'security']
             )
         sys.exit(0)
diff --git a/config/chroot_local-includes/usr/local/lib/tca-portal b/config/chroot_local-includes/usr/local/lib/tca-portal
index b88aa7506ac..73ad659c2cf 100755
--- a/config/chroot_local-includes/usr/local/lib/tca-portal
+++ b/config/chroot_local-includes/usr/local/lib/tca-portal
@@ -128,7 +128,7 @@ class RootCommand(BaseCommand):
 
 class UserCommand(BaseCommand):
     def full_command(self, request: RPCRequest) -> tuple:
-        args = ("/usr/local/lib/exec-in-gnome-env", *(super().full_command(request)))
+        args = ("/usr/local/lib/exec-with-user-env", *(super().full_command(request)))
         return args
 
 
diff --git a/config/chroot_local-includes/usr/local/sbin/tails-notify-user b/config/chroot_local-includes/usr/local/sbin/tails-notify-user
index 46f5f48934f..80497e02272 100755
--- a/config/chroot_local-includes/usr/local/sbin/tails-notify-user
+++ b/config/chroot_local-includes/usr/local/sbin/tails-notify-user
@@ -11,5 +11,5 @@ fi
 summary="$1"
 body="$2"
 
-/usr/local/lib/exec-in-gnome-env \
+/usr/local/lib/exec-with-user-env \
     notify-send ${3:+"--expire-time=$3"} "${summary}" "${body}"
diff --git a/config/chroot_local-includes/usr/local/sbin/unsafe-browser b/config/chroot_local-includes/usr/local/sbin/unsafe-browser
index 20945fdc681..526e5ee56ba 100755
--- a/config/chroot_local-includes/usr/local/sbin/unsafe-browser
+++ b/config/chroot_local-includes/usr/local/sbin/unsafe-browser
@@ -22,7 +22,7 @@ export TEXTDOMAIN
 
 _zenity () {
     AT_SPI_BUS_ADDRESS="$(
-        /usr/local/lib/exec-in-gnome-env \
+        /usr/local/lib/exec-with-user-env \
         dbus-send --session --print-reply=literal \
             --dest=org.a11y.Bus /org/a11y/bus org.a11y.Bus.GetAddress \
             | sed 's/^ *//'
-- 
GitLab


From 87e9109a6da050f15b0a67bef53c5678e59ebeae Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Fri, 3 Mar 2023 10:36:11 +0100
Subject: [PATCH 124/187] refactor: Rename launch_x_application ->
 run_with_user_env

---
 .../usr/lib/python3/dist-packages/tailslib/utils.py       | 2 +-
 .../usr/local/sbin/tails-additional-software              | 8 ++++----
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/utils.py b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/utils.py
index 78bc983a00a..42c7371c13f 100644
--- a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/utils.py
+++ b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/utils.py
@@ -18,7 +18,7 @@ def chdir(path):
         os.chdir(curdir)
 
 
-def launch_x_application(command, *args):
+def run_with_user_env(command, *args):
     """Launch an X application as LIVE_USERNAME and wait for its completion."""
     cmdline = ["/usr/local/lib/exec-with-user-env", command, *args]
     try:
diff --git a/config/chroot_local-includes/usr/local/sbin/tails-additional-software b/config/chroot_local-includes/usr/local/sbin/tails-additional-software
index 869e5b8ce90..f1591fcbc97 100755
--- a/config/chroot_local-includes/usr/local/sbin/tails-additional-software
+++ b/config/chroot_local-includes/usr/local/sbin/tails-additional-software
@@ -32,7 +32,7 @@ from tailslib.persistence import (
     spawn_tps_frontend,
     PERSISTENCE_DIR)
 
-from tailslib.utils import launch_x_application
+from tailslib.utils import run_with_user_env
 
 ASP_STATE_DIR = "/run/live-additional-software"
 ASP_STATE_PACKAGES = os.path.join(ASP_STATE_DIR, "packages")
@@ -402,13 +402,13 @@ def create_persistence_and_setup_additional_packages(packages):
 
 def show_configuration_window():
     """Show additional packages configuration window."""
-    launch_x_application("/usr/local/bin/tails-additional-software-config")
+    run_with_user_env("/usr/local/bin/tails-additional-software-config")
 
 
 def show_system_log():
     """Show additional packages configuration window."""
-    launch_x_application("/usr/bin/gedit",
-                         ASP_LOG_FILE)
+    run_with_user_env("/usr/bin/gedit",
+                      ASP_LOG_FILE)
 
 
 def apt_hook_pre():
-- 
GitLab


From 4435b30fd40d2efad66aa378078fd29193d8206f Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Fri, 3 Mar 2023 10:44:03 +0100
Subject: [PATCH 125/187] exec-with-user-env: Fix comment and add usage message

---
 .../usr/local/lib/exec-with-user-env           | 18 +++++++++++-------
 .../usr/local/lib/loadenv-exec                 |  2 +-
 2 files changed, 12 insertions(+), 8 deletions(-)

diff --git a/config/chroot_local-includes/usr/local/lib/exec-with-user-env b/config/chroot_local-includes/usr/local/lib/exec-with-user-env
index 8c7d677941d..367a6c15578 100755
--- a/config/chroot_local-includes/usr/local/lib/exec-with-user-env
+++ b/config/chroot_local-includes/usr/local/lib/exec-with-user-env
@@ -1,18 +1,22 @@
 #!/bin/sh
 
-# This script exports environment variables from the file specified in
-# the ENVFILE argument and then executes the specified command.
+# This scripts loads the environment variables that were stored by
+# dump-user-env in /run/user/1000/user-env and executes the specified
+# command and arguments as amnesia.
 #
-# If any environment variables from ENVFILE are already set in the
-# current environment, those are *not* overwritten, so environment
-# variables set by the caller take precedence over the ones from ENVFILE.
-#
-# ENVFILE must be null-terminated.
+# If any environment variables from /run/user/1000/user-env are already
+# set in the current environment, those are *not* overwritten, so
+# environment variables set by the caller take precedence.
 
 set -eu
 
 USER_ENV_FILE=/run/user/1000/user-env
 
+if [ "$#" -lt 1 ]; then
+  echo >&2 "Usage: $0 COMMAND [ARG]..."
+  exit 1
+fi
+
 # Ensure that we're running as amnesia
 if [ "$(id -u)" -ne "1000"  ]; then
   runuser -u amnesia -- /usr/local/lib/loadenv-exec "${USER_ENV_FILE}" -- "$@"
diff --git a/config/chroot_local-includes/usr/local/lib/loadenv-exec b/config/chroot_local-includes/usr/local/lib/loadenv-exec
index 68a4b5093a9..9ba7c563647 100755
--- a/config/chroot_local-includes/usr/local/lib/loadenv-exec
+++ b/config/chroot_local-includes/usr/local/lib/loadenv-exec
@@ -13,7 +13,7 @@ import os
 import sys
 from pathlib import Path
 
-usage = f"{sys.argv[0]} ENVFILE [--delete] [--] COMMAND [ARG...]"
+usage = f"{sys.argv[0]} ENVFILE [--delete] [--] COMMAND [ARG]..."
 
 
 def read_envfile(envfile: str) -> dict:
-- 
GitLab


From 402a1ad27509e7890ab7634fdc221a8abc4ddac5 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Fri, 3 Mar 2023 10:50:13 +0100
Subject: [PATCH 126/187] Run tails-additional-software-notify as amnesia with
 user env

The script doesn't need privileges, so we should run it unprivileged.
---
 .../usr/local/lib/tails-additional-software-notify         | 7 +------
 .../usr/local/sbin/tails-additional-software               | 2 +-
 2 files changed, 2 insertions(+), 7 deletions(-)

diff --git a/config/chroot_local-includes/usr/local/lib/tails-additional-software-notify b/config/chroot_local-includes/usr/local/lib/tails-additional-software-notify
index 114502782a9..47d0f9ba320 100755
--- a/config/chroot_local-includes/usr/local/lib/tails-additional-software-notify
+++ b/config/chroot_local-includes/usr/local/lib/tails-additional-software-notify
@@ -55,9 +55,7 @@ class ASPNotifier(object):
         elif action == "deny":
             sys.exit(3)
         elif action == "documentation":
-            subprocess.Popen(
-                ["/usr/local/lib/exec-with-user-env", "tails-documentation", user_data]
-            )
+            subprocess.Popen(["tails-documentation", user_data])
             sys.exit(5)
 
     def cb_notification_closed(self, notification):
@@ -85,9 +83,6 @@ def print_help():
 
 
 if __name__ == "__main__":
-    os.environ["DBUS_SESSION_BUS_ADDRESS"] = \
-        "unix:path=/run/user/{uid}/bus".format(uid=os.getuid())
-
     gettext.install("tails")
 
     if not 3 <= len(sys.argv) <= 7:
diff --git a/config/chroot_local-includes/usr/local/sbin/tails-additional-software b/config/chroot_local-includes/usr/local/sbin/tails-additional-software
index f1591fcbc97..4165515f9a2 100755
--- a/config/chroot_local-includes/usr/local/sbin/tails-additional-software
+++ b/config/chroot_local-includes/usr/local/sbin/tails-additional-software
@@ -109,7 +109,7 @@ def _notify(title, body="", accept_label="", deny_label="",
     try:
         completed_process = subprocess.run(
             [
-                "sudo", "-u", LIVE_USERNAME,
+                "/usr/local/lib/exec-with-user-env",
                 cmd, title, body, accept_label, deny_label,
                 documentation_target, urgent
             ],
-- 
GitLab


From cf12c51033b0b93a87ea8793817566b64d567fa7 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Fri, 3 Mar 2023 11:03:08 +0100
Subject: [PATCH 127/187] refactor: Rename loadenv-exec -> exec-with-env

---
 config/chroot_local-includes/etc/sudoers.d/zzz_tps-frontend   | 2 +-
 config/chroot_local-includes/usr/local/lib/connect-drop-tps   | 2 +-
 .../usr/local/lib/{loadenv-exec => exec-with-env}             | 0
 config/chroot_local-includes/usr/local/lib/exec-with-user-env | 4 ++--
 4 files changed, 4 insertions(+), 4 deletions(-)
 rename config/chroot_local-includes/usr/local/lib/{loadenv-exec => exec-with-env} (100%)

diff --git a/config/chroot_local-includes/etc/sudoers.d/zzz_tps-frontend b/config/chroot_local-includes/etc/sudoers.d/zzz_tps-frontend
index 253b7d5b192..027584d09f1 100644
--- a/config/chroot_local-includes/etc/sudoers.d/zzz_tps-frontend
+++ b/config/chroot_local-includes/etc/sudoers.d/zzz_tps-frontend
@@ -8,7 +8,7 @@ Defaults!TPS_CONNECT_DROP env_keep+="NOTIFY_SOCKET"
 # user so that connect-drop is able to authenticate to D-Bus as that user.
 amnesia   ALL = (tails-persistent-storage)    NOPASSWD: TPS_CONNECT_DROP
 
-Cmnd_Alias TPS_FRONTEND = /usr/local/lib/loadenv-exec /tmp/*-env --delete /usr/local/lib/tps-frontend
+Cmnd_Alias TPS_FRONTEND = /usr/local/lib/exec-with-env /tmp/*-env --delete /usr/local/lib/tps-frontend
 
 Defaults!TPS_FRONTEND env_keep+="INHERIT_FD"
 Defaults!TPS_FRONTEND env_keep+="DESKTOP_STARTUP_ID"
diff --git a/config/chroot_local-includes/usr/local/lib/connect-drop-tps b/config/chroot_local-includes/usr/local/lib/connect-drop-tps
index 1973c0aab8a..365fc97fd57 100755
--- a/config/chroot_local-includes/usr/local/lib/connect-drop-tps
+++ b/config/chroot_local-includes/usr/local/lib/connect-drop-tps
@@ -11,5 +11,5 @@ ENVFILE="$1"
 
 /usr/local/lib/connect-drop --dbus --env-keep -- \
     sudo --close-from=4 -u amnesia \
-    /usr/local/lib/loadenv-exec "${ENVFILE}" --delete \
+    /usr/local/lib/exec-with-env "${ENVFILE}" --delete \
     /usr/local/lib/tps-frontend
diff --git a/config/chroot_local-includes/usr/local/lib/loadenv-exec b/config/chroot_local-includes/usr/local/lib/exec-with-env
similarity index 100%
rename from config/chroot_local-includes/usr/local/lib/loadenv-exec
rename to config/chroot_local-includes/usr/local/lib/exec-with-env
diff --git a/config/chroot_local-includes/usr/local/lib/exec-with-user-env b/config/chroot_local-includes/usr/local/lib/exec-with-user-env
index 367a6c15578..8058411805f 100755
--- a/config/chroot_local-includes/usr/local/lib/exec-with-user-env
+++ b/config/chroot_local-includes/usr/local/lib/exec-with-user-env
@@ -19,7 +19,7 @@ fi
 
 # Ensure that we're running as amnesia
 if [ "$(id -u)" -ne "1000"  ]; then
-  runuser -u amnesia -- /usr/local/lib/loadenv-exec "${USER_ENV_FILE}" -- "$@"
+  runuser -u amnesia -- /usr/local/lib/exec-with-env "${USER_ENV_FILE}" -- "$@"
 else
-  /usr/local/lib/loadenv-exec "${USER_ENV_FILE}" -- "$@"
+  /usr/local/lib/exec-with-env "${USER_ENV_FILE}" -- "$@"
 fi
-- 
GitLab


From 9ce011c50dc62f12c7dbc3c50ecf7245e26b0072 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Fri, 3 Mar 2023 11:37:17 +0100
Subject: [PATCH 128/187] Remote shell: Use user env in commands executed as
 root

---
 .../usr/local/lib/tails-autotest-remote-shell        | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell b/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell
index 45fdc882edc..e9d82328f58 100755
--- a/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell
+++ b/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell
@@ -77,6 +77,18 @@ def get_user_env(user):
     if user == "amnesia" or user =="Debian-gdm":
         env_dict.update(user_env(user))
 
+    # To allow using Dogtail with applications run as root
+    # (e.g. synaptic), we also load the user env from amnesia when
+    # executing commands as root. Note that this allows privilege
+    # escalation because we export amnesia-controlled environment
+    # variables in a root process, but we don't care about that here
+    # because it's only done in tests.
+    if user == "root":
+        try:
+            env_dict.update(user_env("amnesia"))
+        except FileNotFoundError:
+            pass
+
     return env_dict
 
 
-- 
GitLab


From 40aa506390a084940906273c342bd8e22324f824 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Fri, 3 Mar 2023 11:58:22 +0100
Subject: [PATCH 129/187] Remote shell: Don't fail if user env is not found

There are cases where we execute commands as a user when the user env
file is not expected to be there, for example when we create files in
persistent directories as the owner of the directory, which in case of
the persistent greeter settings happens as the Debian-gdm but after
login, so systemd already cleaned up the user env file for Debian-gdm.
---
 .../usr/local/lib/tails-autotest-remote-shell                | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell b/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell
index e9d82328f58..712ab4699a1 100755
--- a/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell
+++ b/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell
@@ -75,7 +75,10 @@ def get_user_env(user):
     # Get the stored user environment (if the user is a user for which
     # we store the user environment).
     if user == "amnesia" or user =="Debian-gdm":
-        env_dict.update(user_env(user))
+        try:
+            env_dict.update(user_env(user))
+        except FileNotFoundError as e:
+            print(f"Failed to load user env for {user}: {e}")
 
     # To allow using Dogtail with applications run as root
     # (e.g. synaptic), we also load the user env from amnesia when
-- 
GitLab


From f6ec5d13e562b275764d20835d669d973df9c1eb Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Fri, 3 Mar 2023 12:24:33 +0100
Subject: [PATCH 130/187] Test Suite: Use "systemctl poweroff" instead of
 "poweroff"

I had a case where "poweroff" did not cause the system to shut down
but "systemctl poweroff" worked.
---
 features/step_definitions/common_steps.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/features/step_definitions/common_steps.rb b/features/step_definitions/common_steps.rb
index bb4b48f29b9..ac2b265670d 100644
--- a/features/step_definitions/common_steps.rb
+++ b/features/step_definitions/common_steps.rb
@@ -788,7 +788,7 @@ Then /^Tails eventually (shuts down|restarts)$/ do |mode|
 end
 
 Given /^I shutdown Tails and wait for the computer to power off$/ do
-  $vm.spawn('poweroff')
+  $vm.spawn('systemctl poweroff')
   step 'Tails eventually shuts down'
 end
 
-- 
GitLab


From 17c20e779965d70d0bcc74e753ca364e51d6c2ff Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Mon, 6 Mar 2023 12:09:24 +0100
Subject: [PATCH 131/187] Remote shell: Remove unused imports

---
 .../usr/local/lib/tails-autotest-remote-shell                  | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell b/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell
index 712ab4699a1..6a6d5000e66 100755
--- a/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell
+++ b/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell
@@ -33,7 +33,6 @@
 
 import base64
 import fcntl
-import glob
 import json
 import os
 import pwd
@@ -47,7 +46,7 @@ import traceback
 
 from tailslib.userenv import user_env
 
-from typing import Tuple, Optional
+from typing import Tuple
 
 REMOTE_SHELL_DEV = '/dev/virtio-ports/org.tails.remote_shell.0'
 
-- 
GitLab


From c6d132cdd02e3b0c1fff164ee05ef16476020fc5 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Mon, 6 Mar 2023 12:09:34 +0100
Subject: [PATCH 132/187] dump-user-env: Only dump specific environment
 variables

Dumping all environment variables caused failure in the test suite where
we use the environment dumped by amnesia in a root process. That caused
the PATH variable to not include /sbin anymore.

The environment variables we dump here are the same that were dumped in
the old implementation in gnome.sh.
---
 .../usr/local/lib/dump-user-env               | 30 +++++++++++++++++--
 .../usr/local/lib/tails-autotest-remote-shell | 14 +++++++--
 .../usr/local/lib/tails-greeter               |  3 +-
 3 files changed, 41 insertions(+), 6 deletions(-)

diff --git a/config/chroot_local-includes/usr/local/lib/dump-user-env b/config/chroot_local-includes/usr/local/lib/dump-user-env
index 0e5e56a3d8e..34456277dfe 100755
--- a/config/chroot_local-includes/usr/local/lib/dump-user-env
+++ b/config/chroot_local-includes/usr/local/lib/dump-user-env
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
 
 # This script is invoked before starting gnome-shell. It dumps its own
 # environment for usage by other processes which need some environment
@@ -12,6 +12,16 @@
 
 set -eu
 
+ENV_VARS_TO_DUMP="
+DBUS_SESSION_BUS_ADDRESS
+DISPLAY
+LANG
+WAYLAND_DISPLAY
+XAUTHORITY
+XDG_RUNTIME_DIR
+XDG_CURRENT_DESKTOP
+"
+
 if [ -z "${EUID:-}" ]; then
   # bashsupport disable=BP3002
   EUID=$(id -u)
@@ -51,4 +61,20 @@ fi
 
 # To avoid issues with environment variables that contain newlines, we
 # dump the environment null-terminated
-env --null > "${USER_ENV_FILE}"
+full_env=$(env --null)
+
+# Get the environment variables from the environment which we want to dump
+while IFS= read -r -d $'\0' var; do
+  for var_to_dump in ${ENV_VARS_TO_DUMP}; do
+    if echo "${var}" | grep -q "^${var_to_dump}="; then
+      if [ -z "${filtered_env:-}" ]; then
+        filtered_env="${var}"
+      else
+        filtered_env="${filtered_env}\0${var}"
+      fi
+    fi
+  done
+done <<< "${full_env}"
+
+# Dump the environment variables
+echo "${filtered_env}" > "${USER_ENV_FILE}"
diff --git a/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell b/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell
index 6a6d5000e66..072b582fe69 100755
--- a/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell
+++ b/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell
@@ -63,6 +63,15 @@ def mk_switch_user_fn(user):
 
 
 def get_user_env(user):
+    if user == "Debian-gdm":
+        # Restore environment dumped by tails-greeter. We can't use
+        # the userenv module here because we need to dump and restore
+        # environment variables which are not allowed in the userenv
+        # module (for example GTK_MODULES).
+        with open(f"/tmp/gdm-env") as f:
+            env_data = f.read()
+            return dict((line.split('=', 1) for line in env_data.splitlines()))
+
     # Get the default environment that's set up when logging in via `su`
     wrapped_env_cmd = "su -c env {}".format(user)
     pipe = subprocess.Popen(wrapped_env_cmd,
@@ -71,9 +80,8 @@ def get_user_env(user):
     env_data = pipe.communicate()[0].decode('utf-8')
     env_dict = dict((line.split('=', 1) for line in env_data.splitlines()))
 
-    # Get the stored user environment (if the user is a user for which
-    # we store the user environment).
-    if user == "amnesia" or user =="Debian-gdm":
+    if user == "amnesia":
+        # Get the stored user environment
         try:
             env_dict.update(user_env(user))
         except FileNotFoundError as e:
diff --git a/config/chroot_local-includes/usr/local/lib/tails-greeter b/config/chroot_local-includes/usr/local/lib/tails-greeter
index c1db5e629fb..bd8ad9b0a86 100755
--- a/config/chroot_local-includes/usr/local/lib/tails-greeter
+++ b/config/chroot_local-includes/usr/local/lib/tails-greeter
@@ -2,7 +2,8 @@
 export LANG="en_US.UTF-8"
 
 if grep -qw "autotest_never_use_this_option" /proc/cmdline; then
-  /usr/local/lib/dump-user-env
+  # Store the environment for usage by tails-autotest-remove-shell
+  env > "/tmp/gdm-env"
 fi
 
 if grep -qw "debug=greeter" /proc/cmdline && [ -z "${DEBUG_GREETER:-}" ]; then
-- 
GitLab


From 90f481e21516f5ade32ddbeda0393b89fe543ba9 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Mon, 6 Mar 2023 12:22:00 +0100
Subject: [PATCH 133/187] userenv.py: Log invalid environment variables

Makes debugging easier
---
 .../usr/lib/python3/dist-packages/tailslib/userenv.py     | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/userenv.py b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/userenv.py
index f29928fa84d..4eea9cdc030 100644
--- a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/userenv.py
+++ b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/userenv.py
@@ -1,5 +1,5 @@
 #!/usr/bin/python3
-
+import sys
 from functools import lru_cache
 import os
 from pathlib import Path
@@ -19,7 +19,11 @@ def user_env(user=None) -> dict:
     for line in Path(env_file).read_text().split('\0'):
         if not line:
             continue
-        key, value = line.split("=", 1)
+        try:
+            key, value = line.split("=", 1)
+        except Exception as e:
+            print(f"Invalid environment variable: '{line}'", file=sys.stderr)
+            raise e
         env[key] = value
     return env
 
-- 
GitLab


From e8c754d54c3c845c349c44ec707a1f32dc8e903c Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Mon, 6 Mar 2023 13:13:52 +0100
Subject: [PATCH 134/187] dump-user-env: Don't set $EUID

The script is now a bash script, so $EUID is always set by the shell.
---
 config/chroot_local-includes/usr/local/lib/dump-user-env | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/config/chroot_local-includes/usr/local/lib/dump-user-env b/config/chroot_local-includes/usr/local/lib/dump-user-env
index 34456277dfe..bf8ba480623 100755
--- a/config/chroot_local-includes/usr/local/lib/dump-user-env
+++ b/config/chroot_local-includes/usr/local/lib/dump-user-env
@@ -22,11 +22,6 @@ XDG_RUNTIME_DIR
 XDG_CURRENT_DESKTOP
 "
 
-if [ -z "${EUID:-}" ]; then
-  # bashsupport disable=BP3002
-  EUID=$(id -u)
-fi
-
 USER_ENV_FILE="/run/user/${EUID}/user-env"
 
 # Set some environment variables which are not set by systemd but which
-- 
GitLab


From a19fb4c81edda3166607f8ec3116d95552aec4a1 Mon Sep 17 00:00:00 2001
From: boyska <boyska@riseup.net>
Date: Mon, 6 Mar 2023 12:24:14 +0000
Subject: [PATCH 135/187] dump-user-env: Fix error message

---
 config/chroot_local-includes/usr/local/lib/dump-user-env | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/config/chroot_local-includes/usr/local/lib/dump-user-env b/config/chroot_local-includes/usr/local/lib/dump-user-env
index bf8ba480623..fff19acee0f 100755
--- a/config/chroot_local-includes/usr/local/lib/dump-user-env
+++ b/config/chroot_local-includes/usr/local/lib/dump-user-env
@@ -50,7 +50,7 @@ if [ -z "${WAYLAND_DISPLAY:-}" ]; then
   done
 fi
 if [ -z "${WAYLAND_DISPLAY:-}" ]; then
-  echo >&2 "Failed to set XAUTHORITY: No file matching /run/user/${EUID}/wayland-*"
+  echo >&2 "Failed to set WAYLAND_DISPLAY: No file matching /run/user/${EUID}/wayland-*"
   exit 1
 fi
 
-- 
GitLab


From 4d26b345bdca4de51e75500aa4cc62582ba2a47d Mon Sep 17 00:00:00 2001
From: boyska <boyska@riseup.net>
Date: Mon, 6 Mar 2023 12:33:17 +0000
Subject: [PATCH 136/187] exec-with-env: Fix error message

---
 config/chroot_local-includes/usr/local/lib/exec-with-env | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/config/chroot_local-includes/usr/local/lib/exec-with-env b/config/chroot_local-includes/usr/local/lib/exec-with-env
index 9ba7c563647..b977f52133c 100755
--- a/config/chroot_local-includes/usr/local/lib/exec-with-env
+++ b/config/chroot_local-includes/usr/local/lib/exec-with-env
@@ -29,7 +29,7 @@ def read_envfile(envfile: str) -> dict:
 
 def main():
     if os.geteuid() != 1000:
-        print(f"{sys.argv[0]: This script must be run as amnesia}", file=sys.stderr)
+        print(f"{sys.argv[0]}: This script must be run as amnesia", file=sys.stderr)
         sys.exit(1)
 
     if len(sys.argv) < 3:
-- 
GitLab


From ac4fcc69381a1bb608144e894cda159fb601f579 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Mon, 6 Mar 2023 14:43:17 +0100
Subject: [PATCH 137/187] tailslib: Move NOSYMFOLLOW_MOUNTPOINT back to tps
 package

We don't use it anywhere else anymore and it really does belong to the
tps package.
---
 .../usr/lib/python3/dist-packages/tailslib/__init__.py         | 1 -
 .../usr/lib/python3/dist-packages/tps/configuration/mount.py   | 3 ++-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/__init__.py b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/__init__.py
index 88ff18a55ec..4db2eaadd90 100644
--- a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/__init__.py
+++ b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/__init__.py
@@ -4,4 +4,3 @@ CLEARNET_USERNAME = "clearnet"
 LIVE_USERNAME = "amnesia"
 LIVE_USER_UID = 1000
 PERSISTENT_STORAGE_USERNAME = "tails-persistent-storage"
-NOSYMFOLLOW_MOUNTPOINT = "/run/nosymfollow"
diff --git a/config/chroot_local-includes/usr/lib/python3/dist-packages/tps/configuration/mount.py b/config/chroot_local-includes/usr/lib/python3/dist-packages/tps/configuration/mount.py
index 85d0e17402c..213a4864fa6 100644
--- a/config/chroot_local-includes/usr/lib/python3/dist-packages/tps/configuration/mount.py
+++ b/config/chroot_local-includes/usr/lib/python3/dist-packages/tps/configuration/mount.py
@@ -6,7 +6,7 @@ import subprocess
 import sys
 from typing import List, Union, Optional
 
-from tailslib import LIVE_USERNAME, LIVE_USER_UID, NOSYMFOLLOW_MOUNTPOINT
+from tailslib import LIVE_USERNAME, LIVE_USER_UID
 import tps.logging
 from tps import _, TPS_MOUNT_POINT
 from tps import executil
@@ -16,6 +16,7 @@ from tps.dbus.errors import TargetIsBusyError
 
 logger = tps.logging.get_logger(__name__)
 
+NOSYMFOLLOW_MOUNTPOINT = "/run/nosymfollow"
 
 class FailedPrecondition(Exception):
     pass
-- 
GitLab


From 81c35956ce3893cddc76f0e5abb00d205cdad9fc Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Tue, 7 Mar 2023 13:02:10 +0100
Subject: [PATCH 138/187] exec-with-env: Only export allow-listed environment
 variables

Also reimplement dump-user-env in Python so that we can maintain the
list of allowed and dumped environment variables in one place.
---
 .../python3/dist-packages/tailslib/userenv.py | 24 ++++-
 .../usr/local/lib/dump-user-env               | 93 ++++++++-----------
 .../usr/local/lib/exec-with-env               | 13 ++-
 3 files changed, 66 insertions(+), 64 deletions(-)

diff --git a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/userenv.py b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/userenv.py
index 4eea9cdc030..6260927d321 100644
--- a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/userenv.py
+++ b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/userenv.py
@@ -5,7 +5,26 @@ import os
 from pathlib import Path
 import pwd
 
-USER_ENV_FILE = "/run/user/{uid}/user-env"
+ENV_VARS_TO_DUMP = [
+    "DBUS_SESSION_BUS_ADDRESS",
+    "DISPLAY",
+    "LANG",
+    "WAYLAND_DISPLAY",
+    "XAUTHORITY",
+    "XDG_RUNTIME_DIR",
+    "XDG_CURRENT_DESKTOP",
+]
+
+ALLOWED_ENV_VARS = ENV_VARS_TO_DUMP + [
+    "DESKTOP_STARTUP_ID",
+]
+
+USER_ENV_FILE_TEMPLATE = "/run/user/{uid}/user-env"
+
+
+def user_env_file(uid):
+    return USER_ENV_FILE_TEMPLATE.format(uid=uid)
+
 
 @lru_cache(maxsize=1)
 def user_env(user=None) -> dict:
@@ -15,8 +34,7 @@ def user_env(user=None) -> dict:
         uid = pwd.getpwnam(user).pw_uid
 
     env = dict()
-    env_file = USER_ENV_FILE.format(uid=uid)
-    for line in Path(env_file).read_text().split('\0'):
+    for line in Path(user_env_file(uid)).read_text().split('\0'):
         if not line:
             continue
         try:
diff --git a/config/chroot_local-includes/usr/local/lib/dump-user-env b/config/chroot_local-includes/usr/local/lib/dump-user-env
index fff19acee0f..1d7d108b216 100755
--- a/config/chroot_local-includes/usr/local/lib/dump-user-env
+++ b/config/chroot_local-includes/usr/local/lib/dump-user-env
@@ -1,4 +1,9 @@
-#!/bin/bash
+#!/usr/bin/env python3
+import glob
+import os
+import sys
+
+from tailslib.userenv import ENV_VARS_TO_DUMP, user_env_file
 
 # This script is invoked before starting gnome-shell. It dumps its own
 # environment for usage by other processes which need some environment
@@ -10,66 +15,42 @@
 # environment file is never exported in a process with more privileges
 # than amnesia.
 
-set -eu
 
-ENV_VARS_TO_DUMP="
-DBUS_SESSION_BUS_ADDRESS
-DISPLAY
-LANG
-WAYLAND_DISPLAY
-XAUTHORITY
-XDG_RUNTIME_DIR
-XDG_CURRENT_DESKTOP
-"
+def log(*args):
+    print(*args, file=sys.stderr)
+
 
-USER_ENV_FILE="/run/user/${EUID}/user-env"
+def main():
+    env = dict()
+    for e in ENV_VARS_TO_DUMP:
+        env[e] = os.environ[e]
 
-# Set some environment variables which are not set by systemd but which
-# we still need in some processes which export the environment file.
-if [ -z "${DISPLAY:-}" ]; then
-  export DISPLAY=:0
-fi
+    # Set some environment variables which are not set by systemd but which
+    # we still need in some processes which export the environment file.
+    if not env["DISPLAY"]:
+        env["DISPLAY"] = ":0"
 
-if [ -z "${XAUTHORITY:-}" ]; then
-  for xauth in "/run/user/${EUID}/.mutter-Xwaylandauth."*; do
-    if [ -e "${xauth}" ]; then
-      export XAUTHORITY="${xauth}"
-    fi
-  done
-fi
-if [ -z "${XAUTHORITY:-}" ]; then
-  echo >&2 "Failed to set XAUTHORITY: No file matching /run/user/${EUID}/.mutter-Xwaylandauth.*"
-  exit 1
-fi
+    if not env["XAUTHORITY"]:
+        pattern = f"/run/user/{os.geteuid()}/.mutter-Xwaylandauth.*"
+        matches = glob.glob(pattern)
+        if not matches:
+            log(f"Failed to set XAUTHORITY: No file matching {pattern}")
+            sys.exit(1)
+        env["XAUTHORITY"] = matches[0]
 
-if [ -z "${WAYLAND_DISPLAY:-}" ]; then
-  for wayland_display in "/run/user/${EUID}/wayland-"*; do
-    if [ -e "${wayland_display}" ]; then
-      export WAYLAND_DISPLAY="${wayland_display}"
-    fi
-  done
-fi
-if [ -z "${WAYLAND_DISPLAY:-}" ]; then
-  echo >&2 "Failed to set WAYLAND_DISPLAY: No file matching /run/user/${EUID}/wayland-*"
-  exit 1
-fi
+    if not env["WAYLAND_DISPLAY"]:
+        pattern = f"/run/user/{os.geteuid()}/wayland-*"
+        matches = glob.glob(pattern)
+        if not matches:
+            log(f"Failed to set WAYLAND_DISPLAY: No file matching {pattern}")
+            sys.exit(1)
+        env["WAYLAND_DISPLAY"] = matches[0]
 
-# To avoid issues with environment variables that contain newlines, we
-# dump the environment null-terminated
-full_env=$(env --null)
+    # To avoid issues with environment variables that contain newlines, we
+    # dump the environment null-terminated
+    with open(user_env_file(os.geteuid()), "w") as f:
+        f.write('\0'.join(f"{key}={value}" for key, value in env.items()))
 
-# Get the environment variables from the environment which we want to dump
-while IFS= read -r -d $'\0' var; do
-  for var_to_dump in ${ENV_VARS_TO_DUMP}; do
-    if echo "${var}" | grep -q "^${var_to_dump}="; then
-      if [ -z "${filtered_env:-}" ]; then
-        filtered_env="${var}"
-      else
-        filtered_env="${filtered_env}\0${var}"
-      fi
-    fi
-  done
-done <<< "${full_env}"
 
-# Dump the environment variables
-echo "${filtered_env}" > "${USER_ENV_FILE}"
+if __name__ == "__main__":
+    main()
diff --git a/config/chroot_local-includes/usr/local/lib/exec-with-env b/config/chroot_local-includes/usr/local/lib/exec-with-env
index b977f52133c..19e8734bfaa 100755
--- a/config/chroot_local-includes/usr/local/lib/exec-with-env
+++ b/config/chroot_local-includes/usr/local/lib/exec-with-env
@@ -1,7 +1,8 @@
 #!/usr/bin/env python3
 
-# This script exports environment variables from the file specified in
-# the ENVFILE argument and then executes the specified command.
+# This script exports allow-listed environment variables from the file
+# specified in the ENVFILE argument and then executes the specified
+# command.
 #
 # If any environment variables from ENVFILE are already set in the
 # current environment, those are *not* overwritten, so environment
@@ -13,16 +14,18 @@ import os
 import sys
 from pathlib import Path
 
+from tailslib.userenv import ALLOWED_ENV_VARS
+
 usage = f"{sys.argv[0]} ENVFILE [--delete] [--] COMMAND [ARG]..."
 
 
-def read_envfile(envfile: str) -> dict:
+def read_allowed_env_vars_from_file(envfile: str) -> dict:
     env = dict(os.environ)
     for line in Path(envfile).read_text().split('\0'):
         if not line:
             continue
         key, value = line.split("=", 1)
-        if key not in env:
+        if key in ALLOWED_ENV_VARS and key not in env:
             env[key] = value
     return env
 
@@ -37,7 +40,7 @@ def main():
         sys.exit(1)
 
     envfile = sys.argv[1]
-    env = read_envfile(envfile)
+    env = read_allowed_env_vars_from_file(envfile)
 
     if sys.argv[2] == "--delete":
         os.remove(envfile)
-- 
GitLab


From 723ed54694f4981af86b7daa37ee534b060cc8a5 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Tue, 7 Mar 2023 13:47:24 +0100
Subject: [PATCH 139/187] exec-with-env: Move read_allowed_env_vars_from_file()
 to userenv.py

To avoid code duplication.
---
 .../python3/dist-packages/tailslib/userenv.py | 30 ++++++++++++-------
 .../usr/local/lib/exec-with-env               | 14 +--------
 .../usr/local/lib/tails-autotest-remote-shell |  6 ++--
 3 files changed, 23 insertions(+), 27 deletions(-)

diff --git a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/userenv.py b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/userenv.py
index 6260927d321..5dea1a26c6d 100644
--- a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/userenv.py
+++ b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/userenv.py
@@ -26,25 +26,33 @@ def user_env_file(uid):
     return USER_ENV_FILE_TEMPLATE.format(uid=uid)
 
 
-@lru_cache(maxsize=1)
-def user_env(user=None) -> dict:
-    if user is None:
-        uid = os.geteuid()
-    else:
-        uid = pwd.getpwnam(user).pw_uid
-
-    env = dict()
-    for line in Path(user_env_file(uid)).read_text().split('\0'):
+def read_allowed_env_vars_from_file(envfile: str) -> dict:
+    env = dict(os.environ)
+    for line in Path(envfile).read_text().split('\0'):
         if not line:
             continue
+
         try:
             key, value = line.split("=", 1)
         except Exception as e:
             print(f"Invalid environment variable: '{line}'", file=sys.stderr)
             raise e
-        env[key] = value
+
+        if key in ALLOWED_ENV_VARS and key not in env:
+            env[key] = value
+
     return env
 
 
+@lru_cache(maxsize=1)
+def read_user_env(user=None) -> dict:
+    if user is None:
+        uid = os.geteuid()
+    else:
+        uid = pwd.getpwnam(user).pw_uid
+
+    return read_allowed_env_vars_from_file(user_env_file(uid))
+
+
 def user_env_vars(user=None) -> list:
-    return [f"{key}={value}" for key, value in user_env(user).items()]
+    return [f"{key}={value}" for key, value in read_user_env(user).items()]
diff --git a/config/chroot_local-includes/usr/local/lib/exec-with-env b/config/chroot_local-includes/usr/local/lib/exec-with-env
index 19e8734bfaa..3a0d62099be 100755
--- a/config/chroot_local-includes/usr/local/lib/exec-with-env
+++ b/config/chroot_local-includes/usr/local/lib/exec-with-env
@@ -12,24 +12,12 @@
 
 import os
 import sys
-from pathlib import Path
 
-from tailslib.userenv import ALLOWED_ENV_VARS
+from tailslib.userenv import read_allowed_env_vars_from_file
 
 usage = f"{sys.argv[0]} ENVFILE [--delete] [--] COMMAND [ARG]..."
 
 
-def read_allowed_env_vars_from_file(envfile: str) -> dict:
-    env = dict(os.environ)
-    for line in Path(envfile).read_text().split('\0'):
-        if not line:
-            continue
-        key, value = line.split("=", 1)
-        if key in ALLOWED_ENV_VARS and key not in env:
-            env[key] = value
-    return env
-
-
 def main():
     if os.geteuid() != 1000:
         print(f"{sys.argv[0]}: This script must be run as amnesia", file=sys.stderr)
diff --git a/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell b/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell
index 072b582fe69..e5a2430d11b 100755
--- a/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell
+++ b/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell
@@ -44,7 +44,7 @@ import textwrap
 import time
 import traceback
 
-from tailslib.userenv import user_env
+from tailslib.userenv import read_user_env
 
 from typing import Tuple
 
@@ -83,7 +83,7 @@ def get_user_env(user):
     if user == "amnesia":
         # Get the stored user environment
         try:
-            env_dict.update(user_env(user))
+            env_dict.update(read_user_env(user))
         except FileNotFoundError as e:
             print(f"Failed to load user env for {user}: {e}")
 
@@ -95,7 +95,7 @@ def get_user_env(user):
     # because it's only done in tests.
     if user == "root":
         try:
-            env_dict.update(user_env("amnesia"))
+            env_dict.update(read_user_env("amnesia"))
         except FileNotFoundError:
             pass
 
-- 
GitLab


From 48e640796bde6807220c125e5436958ab6022936 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Wed, 8 Mar 2023 17:19:31 +0100
Subject: [PATCH 140/187] userenv.py: Fix all env vars from the current env
 passed

---
 .../usr/lib/python3/dist-packages/tailslib/userenv.py     | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/userenv.py b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/userenv.py
index 5dea1a26c6d..39bcb0391df 100644
--- a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/userenv.py
+++ b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/userenv.py
@@ -27,7 +27,13 @@ def user_env_file(uid):
 
 
 def read_allowed_env_vars_from_file(envfile: str) -> dict:
-    env = dict(os.environ)
+    env = dict()
+
+    for key in ALLOWED_ENV_VARS:
+        current_env_value = os.getenv(key)
+        if current_env_value:
+            env[key] = current_env_value
+
     for line in Path(envfile).read_text().split('\0'):
         if not line:
             continue
-- 
GitLab


From 78914216761c67e9b9b14ba1b9c0a508d1379181 Mon Sep 17 00:00:00 2001
From: boyska <boyska@riseup.net>
Date: Wed, 8 Mar 2023 19:44:25 +0000
Subject: [PATCH 141/187] dump-user-env: Use logging module

---
 config/chroot_local-includes/usr/local/lib/dump-user-env | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/config/chroot_local-includes/usr/local/lib/dump-user-env b/config/chroot_local-includes/usr/local/lib/dump-user-env
index 1d7d108b216..cd677543770 100755
--- a/config/chroot_local-includes/usr/local/lib/dump-user-env
+++ b/config/chroot_local-includes/usr/local/lib/dump-user-env
@@ -2,6 +2,7 @@
 import glob
 import os
 import sys
+import logging
 
 from tailslib.userenv import ENV_VARS_TO_DUMP, user_env_file
 
@@ -16,10 +17,6 @@ from tailslib.userenv import ENV_VARS_TO_DUMP, user_env_file
 # than amnesia.
 
 
-def log(*args):
-    print(*args, file=sys.stderr)
-
-
 def main():
     env = dict()
     for e in ENV_VARS_TO_DUMP:
@@ -34,7 +31,7 @@ def main():
         pattern = f"/run/user/{os.geteuid()}/.mutter-Xwaylandauth.*"
         matches = glob.glob(pattern)
         if not matches:
-            log(f"Failed to set XAUTHORITY: No file matching {pattern}")
+            logging.error(f"Failed to set XAUTHORITY: No file matching {pattern}")
             sys.exit(1)
         env["XAUTHORITY"] = matches[0]
 
@@ -42,7 +39,7 @@ def main():
         pattern = f"/run/user/{os.geteuid()}/wayland-*"
         matches = glob.glob(pattern)
         if not matches:
-            log(f"Failed to set WAYLAND_DISPLAY: No file matching {pattern}")
+            logging.error(f"Failed to set WAYLAND_DISPLAY: No file matching {pattern}")
             sys.exit(1)
         env["WAYLAND_DISPLAY"] = matches[0]
 
-- 
GitLab


From bc3d7cdcb59546c0a292901f371b502b788d3db5 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Wed, 8 Mar 2023 21:06:01 +0100
Subject: [PATCH 142/187] userenv.py: Don't use current env in
 read_allowed_env_vars_from_file

It's unexpected given the name of the function and we don't to use the
current env in all the usages of that function, for example when
processes running as root call read_user_env(user="amnesia"), we don't
want the current environment from the root process to be used.
---
 .../python3/dist-packages/tailslib/userenv.py | 19 +++++++++----------
 .../usr/local/lib/exec-with-env               |  8 ++++++--
 2 files changed, 15 insertions(+), 12 deletions(-)

diff --git a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/userenv.py b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/userenv.py
index 39bcb0391df..c219fdd989f 100644
--- a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/userenv.py
+++ b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/userenv.py
@@ -4,6 +4,7 @@ from functools import lru_cache
 import os
 from pathlib import Path
 import pwd
+from typing import Mapping
 
 ENV_VARS_TO_DUMP = [
     "DBUS_SESSION_BUS_ADDRESS",
@@ -26,13 +27,12 @@ def user_env_file(uid):
     return USER_ENV_FILE_TEMPLATE.format(uid=uid)
 
 
-def read_allowed_env_vars_from_file(envfile: str) -> dict:
-    env = dict()
+def allowed_env(env: Mapping) -> dict:
+    return {key: value for key, value in env if key in ALLOWED_ENV_VARS}
+
 
-    for key in ALLOWED_ENV_VARS:
-        current_env_value = os.getenv(key)
-        if current_env_value:
-            env[key] = current_env_value
+def read_allowed_env_from_file(envfile: str) -> dict:
+    env = dict()
 
     for line in Path(envfile).read_text().split('\0'):
         if not line:
@@ -44,10 +44,9 @@ def read_allowed_env_vars_from_file(envfile: str) -> dict:
             print(f"Invalid environment variable: '{line}'", file=sys.stderr)
             raise e
 
-        if key in ALLOWED_ENV_VARS and key not in env:
-            env[key] = value
+        env[key] = value
 
-    return env
+    return allowed_env(env)
 
 
 @lru_cache(maxsize=1)
@@ -57,7 +56,7 @@ def read_user_env(user=None) -> dict:
     else:
         uid = pwd.getpwnam(user).pw_uid
 
-    return read_allowed_env_vars_from_file(user_env_file(uid))
+    return read_allowed_env_from_file(user_env_file(uid))
 
 
 def user_env_vars(user=None) -> list:
diff --git a/config/chroot_local-includes/usr/local/lib/exec-with-env b/config/chroot_local-includes/usr/local/lib/exec-with-env
index 3a0d62099be..e14c1e40dbb 100755
--- a/config/chroot_local-includes/usr/local/lib/exec-with-env
+++ b/config/chroot_local-includes/usr/local/lib/exec-with-env
@@ -13,7 +13,7 @@
 import os
 import sys
 
-from tailslib.userenv import read_allowed_env_vars_from_file
+from tailslib.userenv import read_allowed_env_from_file, allowed_env
 
 usage = f"{sys.argv[0]} ENVFILE [--delete] [--] COMMAND [ARG]..."
 
@@ -28,7 +28,11 @@ def main():
         sys.exit(1)
 
     envfile = sys.argv[1]
-    env = read_allowed_env_vars_from_file(envfile)
+    env = read_allowed_env_from_file(envfile)
+
+    # Update with allowed environment variables from the current
+    # environment (because those should take precedence)
+    env.update(allowed_env(os.environ))
 
     if sys.argv[2] == "--delete":
         os.remove(envfile)
-- 
GitLab


From e8c4da3b183c57713c9406177474d2032fa869f8 Mon Sep 17 00:00:00 2001
From: boyska <boyska@riseup.net>
Date: Thu, 9 Mar 2023 12:00:58 +0000
Subject: [PATCH 143/187] tails-dump-user-env.service: Be explicit about which
 users the service should run for

---
 .../usr/lib/systemd/user/tails-dump-user-env.service             | 1 +
 1 file changed, 1 insertion(+)

diff --git a/config/chroot_local-includes/usr/lib/systemd/user/tails-dump-user-env.service b/config/chroot_local-includes/usr/lib/systemd/user/tails-dump-user-env.service
index 470833d7db9..02c33b5498a 100644
--- a/config/chroot_local-includes/usr/lib/systemd/user/tails-dump-user-env.service
+++ b/config/chroot_local-includes/usr/lib/systemd/user/tails-dump-user-env.service
@@ -1,6 +1,7 @@
 [Unit]
 Description=Dump the default user environment
 After=gnome-session-wayland@gnome.target
+ConditionUser=1000
 
 [Service]
 Type=oneshot
-- 
GitLab


From 11a64ff08fbf2ac21daa7e05318ce15a7c4ca0e7 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Thu, 9 Mar 2023 15:49:46 +0100
Subject: [PATCH 144/187] Use exec in some places

---
 .../chroot_local-includes/usr/local/lib/connect-drop-tps  | 8 ++++----
 .../usr/local/lib/exec-with-user-env                      | 4 ++--
 .../usr/local/sbin/tails-notify-user                      | 4 ++--
 3 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/config/chroot_local-includes/usr/local/lib/connect-drop-tps b/config/chroot_local-includes/usr/local/lib/connect-drop-tps
index 365fc97fd57..44104a5df41 100755
--- a/config/chroot_local-includes/usr/local/lib/connect-drop-tps
+++ b/config/chroot_local-includes/usr/local/lib/connect-drop-tps
@@ -9,7 +9,7 @@ set -eu
 
 ENVFILE="$1"
 
-/usr/local/lib/connect-drop --dbus --env-keep -- \
-    sudo --close-from=4 -u amnesia \
-    /usr/local/lib/exec-with-env "${ENVFILE}" --delete \
-    /usr/local/lib/tps-frontend
+exec /usr/local/lib/connect-drop --dbus --env-keep -- \
+     sudo --close-from=4 -u amnesia \
+     /usr/local/lib/exec-with-env "${ENVFILE}" --delete \
+     /usr/local/lib/tps-frontend
diff --git a/config/chroot_local-includes/usr/local/lib/exec-with-user-env b/config/chroot_local-includes/usr/local/lib/exec-with-user-env
index 8058411805f..9b1421e7f60 100755
--- a/config/chroot_local-includes/usr/local/lib/exec-with-user-env
+++ b/config/chroot_local-includes/usr/local/lib/exec-with-user-env
@@ -19,7 +19,7 @@ fi
 
 # Ensure that we're running as amnesia
 if [ "$(id -u)" -ne "1000"  ]; then
-  runuser -u amnesia -- /usr/local/lib/exec-with-env "${USER_ENV_FILE}" -- "$@"
+  exec runuser -u amnesia -- /usr/local/lib/exec-with-env "${USER_ENV_FILE}" -- "$@"
 else
-  /usr/local/lib/exec-with-env "${USER_ENV_FILE}" -- "$@"
+  exec /usr/local/lib/exec-with-env "${USER_ENV_FILE}" -- "$@"
 fi
diff --git a/config/chroot_local-includes/usr/local/sbin/tails-notify-user b/config/chroot_local-includes/usr/local/sbin/tails-notify-user
index 80497e02272..b93ca98ca9c 100755
--- a/config/chroot_local-includes/usr/local/sbin/tails-notify-user
+++ b/config/chroot_local-includes/usr/local/sbin/tails-notify-user
@@ -11,5 +11,5 @@ fi
 summary="$1"
 body="$2"
 
-/usr/local/lib/exec-with-user-env \
-    notify-send ${3:+"--expire-time=$3"} "${summary}" "${body}"
+exec /usr/local/lib/exec-with-user-env \
+     notify-send ${3:+"--expire-time=$3"} "${summary}" "${body}"
-- 
GitLab


From 7c098af7275dd47186a200a882da82e46446cec2 Mon Sep 17 00:00:00 2001
From: boyska <boyska@riseup.net>
Date: Thu, 9 Mar 2023 15:57:05 +0100
Subject: [PATCH 145/187] fix allowed_env

---
 .../usr/lib/python3/dist-packages/tailslib/userenv.py       | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/userenv.py b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/userenv.py
index c219fdd989f..469124bfbba 100644
--- a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/userenv.py
+++ b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/userenv.py
@@ -28,7 +28,11 @@ def user_env_file(uid):
 
 
 def allowed_env(env: Mapping) -> dict:
-    return {key: value for key, value in env if key in ALLOWED_ENV_VARS}
+    """
+    >>> allowed_env({"PATH": "/home/", "LANG": "en"})
+    {'LANG': 'en'}
+    """
+    return {key: value for key, value in env.items() if key in ALLOWED_ENV_VARS}
 
 
 def read_allowed_env_from_file(envfile: str) -> dict:
-- 
GitLab


From 8a19b0d945db6ad3de98a64a0b307e8587c39d63 Mon Sep 17 00:00:00 2001
From: boyska <boyska@riseup.net>
Date: Thu, 9 Mar 2023 16:15:10 +0100
Subject: [PATCH 146/187] port exec-with-env to argparse

this is not just vanity: the previous parser could be abused to allow
privilege escalation from tails-persistent-storage to amnesia
---
 .../etc/sudoers.d/zzz_tps-frontend            |  2 +-
 .../usr/local/lib/connect-drop-tps            |  2 +-
 .../usr/local/lib/exec-with-env               | 29 +++++++++----------
 .../usr/local/lib/exec-with-user-env          |  4 +--
 4 files changed, 18 insertions(+), 19 deletions(-)

diff --git a/config/chroot_local-includes/etc/sudoers.d/zzz_tps-frontend b/config/chroot_local-includes/etc/sudoers.d/zzz_tps-frontend
index 027584d09f1..a5d20e7dd73 100644
--- a/config/chroot_local-includes/etc/sudoers.d/zzz_tps-frontend
+++ b/config/chroot_local-includes/etc/sudoers.d/zzz_tps-frontend
@@ -8,7 +8,7 @@ Defaults!TPS_CONNECT_DROP env_keep+="NOTIFY_SOCKET"
 # user so that connect-drop is able to authenticate to D-Bus as that user.
 amnesia   ALL = (tails-persistent-storage)    NOPASSWD: TPS_CONNECT_DROP
 
-Cmnd_Alias TPS_FRONTEND = /usr/local/lib/exec-with-env /tmp/*-env --delete /usr/local/lib/tps-frontend
+Cmnd_Alias TPS_FRONTEND = /usr/local/lib/exec-with-env --env-file /tmp/*-env --delete -- /usr/local/lib/tps-frontend
 
 Defaults!TPS_FRONTEND env_keep+="INHERIT_FD"
 Defaults!TPS_FRONTEND env_keep+="DESKTOP_STARTUP_ID"
diff --git a/config/chroot_local-includes/usr/local/lib/connect-drop-tps b/config/chroot_local-includes/usr/local/lib/connect-drop-tps
index 44104a5df41..c0a462921c4 100755
--- a/config/chroot_local-includes/usr/local/lib/connect-drop-tps
+++ b/config/chroot_local-includes/usr/local/lib/connect-drop-tps
@@ -11,5 +11,5 @@ ENVFILE="$1"
 
 exec /usr/local/lib/connect-drop --dbus --env-keep -- \
      sudo --close-from=4 -u amnesia \
-     /usr/local/lib/exec-with-env "${ENVFILE}" --delete \
+     /usr/local/lib/exec-with-env --env-file "${ENVFILE}" --delete -- \
      /usr/local/lib/tps-frontend
diff --git a/config/chroot_local-includes/usr/local/lib/exec-with-env b/config/chroot_local-includes/usr/local/lib/exec-with-env
index e14c1e40dbb..9b4438043c4 100755
--- a/config/chroot_local-includes/usr/local/lib/exec-with-env
+++ b/config/chroot_local-includes/usr/local/lib/exec-with-env
@@ -12,10 +12,18 @@
 
 import os
 import sys
+import argparse
 
 from tailslib.userenv import read_allowed_env_from_file, allowed_env
 
-usage = f"{sys.argv[0]} ENVFILE [--delete] [--] COMMAND [ARG]..."
+
+def get_parser():
+    p = argparse.ArgumentParser()
+    p.add_argument("--env-file", required=True)
+    p.add_argument("--delete", action='store_true', default=False)
+    p.add_argument('cmd', nargs='+')
+
+    return p
 
 
 def main():
@@ -23,27 +31,18 @@ def main():
         print(f"{sys.argv[0]}: This script must be run as amnesia", file=sys.stderr)
         sys.exit(1)
 
-    if len(sys.argv) < 3:
-        print(usage, file=sys.stderr)
-        sys.exit(1)
-
-    envfile = sys.argv[1]
-    env = read_allowed_env_from_file(envfile)
+    args = get_parser().parse_args()
+    env = read_allowed_env_from_file(args.env_file)
 
     # Update with allowed environment variables from the current
     # environment (because those should take precedence)
     env.update(allowed_env(os.environ))
 
-    if sys.argv[2] == "--delete":
-        os.remove(envfile)
-        del sys.argv[2]
-
-    if sys.argv[2] == "--":
+    if args.delete:
+        os.remove(args.env_file)
         del sys.argv[2]
 
-    file = sys.argv[2]
-    args = sys.argv[2:]
-    os.execvpe(file, args, env=env)
+    os.execvpe(args.cmd[0], args.cmd, env=env)
 
 
 if __name__ == "__main__":
diff --git a/config/chroot_local-includes/usr/local/lib/exec-with-user-env b/config/chroot_local-includes/usr/local/lib/exec-with-user-env
index 9b1421e7f60..3d86913a8d2 100755
--- a/config/chroot_local-includes/usr/local/lib/exec-with-user-env
+++ b/config/chroot_local-includes/usr/local/lib/exec-with-user-env
@@ -19,7 +19,7 @@ fi
 
 # Ensure that we're running as amnesia
 if [ "$(id -u)" -ne "1000"  ]; then
-  exec runuser -u amnesia -- /usr/local/lib/exec-with-env "${USER_ENV_FILE}" -- "$@"
+  exec runuser -u amnesia -- /usr/local/lib/exec-with-env --env-file "${USER_ENV_FILE}" -- "$@"
 else
-  exec /usr/local/lib/exec-with-env "${USER_ENV_FILE}" -- "$@"
+  exec /usr/local/lib/exec-with-env --env-file "${USER_ENV_FILE}" -- "$@"
 fi
-- 
GitLab


From cade8e8b6ffcfb486fbb38352c5cbda5157f97fb Mon Sep 17 00:00:00 2001
From: boyska <boyska@riseup.net>
Date: Thu, 9 Mar 2023 16:48:45 +0100
Subject: [PATCH 147/187] INHERIT_FD is needed for connect-drop to work

---
 .../usr/lib/python3/dist-packages/tailslib/userenv.py            | 1 +
 1 file changed, 1 insertion(+)

diff --git a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/userenv.py b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/userenv.py
index 469124bfbba..3709d50ffc1 100644
--- a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/userenv.py
+++ b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/userenv.py
@@ -18,6 +18,7 @@ ENV_VARS_TO_DUMP = [
 
 ALLOWED_ENV_VARS = ENV_VARS_TO_DUMP + [
     "DESKTOP_STARTUP_ID",
+    "INHERIT_FD",
 ]
 
 USER_ENV_FILE_TEMPLATE = "/run/user/{uid}/user-env"
-- 
GitLab


From 22d75094f7e257b6df4c0df2318215b48443120f Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Thu, 9 Mar 2023 15:59:42 +0100
Subject: [PATCH 148/187] Rename exec-with-env -> run-with-env

and exec-with-user-env -> run-with-user-env
---
 config/chroot_local-hooks/40-pinentry                         | 2 +-
 .../etc/NetworkManager/dispatcher.d/10-tor.sh                 | 2 +-
 .../etc/NetworkManager/dispatcher.d/20-time.sh                | 2 +-
 config/chroot_local-includes/etc/sudoers.d/zzz_tps-frontend   | 2 +-
 .../usr/lib/python3/dist-packages/tailslib/utils.py           | 4 ++--
 config/chroot_local-includes/usr/local/lib/connect-drop-tps   | 2 +-
 .../on-deactivated-hooks/TorConfiguration/reset-tca           | 4 ++--
 .../usr/local/lib/{exec-with-env => run-with-env}             | 0
 .../usr/local/lib/{exec-with-user-env => run-with-user-env}   | 4 ++--
 .../usr/local/lib/tails-virt-notify-user                      | 2 +-
 config/chroot_local-includes/usr/local/lib/tca-portal         | 2 +-
 .../usr/local/sbin/tails-additional-software                  | 2 +-
 config/chroot_local-includes/usr/local/sbin/tails-notify-user | 2 +-
 config/chroot_local-includes/usr/local/sbin/unsafe-browser    | 2 +-
 14 files changed, 16 insertions(+), 16 deletions(-)
 rename config/chroot_local-includes/usr/local/lib/{exec-with-env => run-with-env} (100%)
 rename config/chroot_local-includes/usr/local/lib/{exec-with-user-env => run-with-user-env} (77%)

diff --git a/config/chroot_local-hooks/40-pinentry b/config/chroot_local-hooks/40-pinentry
index c897ed78a54..9117be85d52 100755
--- a/config/chroot_local-hooks/40-pinentry
+++ b/config/chroot_local-hooks/40-pinentry
@@ -16,6 +16,6 @@ dpkg-divert --add --rename --divert \
 
 cat > /usr/bin/pinentry-gtk-2 << 'EOF'
 #!/bin/sh
-/usr/local/lib/exec-with-user-env /usr/lib/pinentry/pinentry-gtk-2 "$@"
+/usr/local/lib/run-with-user-env /usr/lib/pinentry/pinentry-gtk-2 "$@"
 EOF
 chmod 755 /usr/bin/pinentry-gtk-2
diff --git a/config/chroot_local-includes/etc/NetworkManager/dispatcher.d/10-tor.sh b/config/chroot_local-includes/etc/NetworkManager/dispatcher.d/10-tor.sh
index ef0ec598f81..3a26302e346 100755
--- a/config/chroot_local-includes/etc/NetworkManager/dispatcher.d/10-tor.sh
+++ b/config/chroot_local-includes/etc/NetworkManager/dispatcher.d/10-tor.sh
@@ -40,7 +40,7 @@ while ! systemctl is-active -q user@1000.service; do
 done
 
 echo >&2 "$BASENAME: $1 up: starting tca.service"
-/usr/local/lib/exec-with-user-env systemctl --user start tca.service
+/usr/local/lib/run-with-user-env systemctl --user start tca.service
 
 # that's not what it looks: htpdate will not really be started until Tor has bootstrapped
 echo >&2 "$BASENAME: $1 up: restarting htpdate.service"
diff --git a/config/chroot_local-includes/etc/NetworkManager/dispatcher.d/20-time.sh b/config/chroot_local-includes/etc/NetworkManager/dispatcher.d/20-time.sh
index c8fb9f66008..78520fb9acd 100755
--- a/config/chroot_local-includes/etc/NetworkManager/dispatcher.d/20-time.sh
+++ b/config/chroot_local-includes/etc/NetworkManager/dispatcher.d/20-time.sh
@@ -18,4 +18,4 @@ if [ "$2" != "up" ]; then
 	exit 0
 fi
 
-/usr/local/lib/exec-with-user-env systemctl --user restart tails-htpdate-notify-user.service
+/usr/local/lib/run-with-user-env systemctl --user restart tails-htpdate-notify-user.service
diff --git a/config/chroot_local-includes/etc/sudoers.d/zzz_tps-frontend b/config/chroot_local-includes/etc/sudoers.d/zzz_tps-frontend
index a5d20e7dd73..b7e4102339e 100644
--- a/config/chroot_local-includes/etc/sudoers.d/zzz_tps-frontend
+++ b/config/chroot_local-includes/etc/sudoers.d/zzz_tps-frontend
@@ -8,7 +8,7 @@ Defaults!TPS_CONNECT_DROP env_keep+="NOTIFY_SOCKET"
 # user so that connect-drop is able to authenticate to D-Bus as that user.
 amnesia   ALL = (tails-persistent-storage)    NOPASSWD: TPS_CONNECT_DROP
 
-Cmnd_Alias TPS_FRONTEND = /usr/local/lib/exec-with-env --env-file /tmp/*-env --delete -- /usr/local/lib/tps-frontend
+Cmnd_Alias TPS_FRONTEND = /usr/local/lib/run-with-env --env-file /tmp/*-env --delete -- /usr/local/lib/tps-frontend
 
 Defaults!TPS_FRONTEND env_keep+="INHERIT_FD"
 Defaults!TPS_FRONTEND env_keep+="DESKTOP_STARTUP_ID"
diff --git a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/utils.py b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/utils.py
index 42c7371c13f..38b95f6ce68 100644
--- a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/utils.py
+++ b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/utils.py
@@ -20,7 +20,7 @@ def chdir(path):
 
 def run_with_user_env(command, *args):
     """Launch an X application as LIVE_USERNAME and wait for its completion."""
-    cmdline = ["/usr/local/lib/exec-with-user-env", command, *args]
+    cmdline = ["/usr/local/lib/run-with-user-env", command, *args]
     try:
         subprocess.run(cmdline,
                        stderr=subprocess.PIPE,
@@ -35,7 +35,7 @@ def run_with_user_env(command, *args):
 
 def spawn_x_application(command, *args):
     """Launch an X application as LIVE_USERNAME without blocking."""
-    cmdline = ["/usr/local/lib/exec-with-user-env", command, *args]
+    cmdline = ["/usr/local/lib/run-with-user-env", command, *args]
     subprocess.Popen(cmdline,
                      stderr=subprocess.PIPE,
                      universal_newlines=True)
diff --git a/config/chroot_local-includes/usr/local/lib/connect-drop-tps b/config/chroot_local-includes/usr/local/lib/connect-drop-tps
index c0a462921c4..c2ddbcc5232 100755
--- a/config/chroot_local-includes/usr/local/lib/connect-drop-tps
+++ b/config/chroot_local-includes/usr/local/lib/connect-drop-tps
@@ -11,5 +11,5 @@ ENVFILE="$1"
 
 exec /usr/local/lib/connect-drop --dbus --env-keep -- \
      sudo --close-from=4 -u amnesia \
-     /usr/local/lib/exec-with-env --env-file "${ENVFILE}" --delete -- \
+     /usr/local/lib/run-with-env --env-file "${ENVFILE}" --delete -- \
      /usr/local/lib/tps-frontend
diff --git a/config/chroot_local-includes/usr/local/lib/persistent-storage/on-deactivated-hooks/TorConfiguration/reset-tca b/config/chroot_local-includes/usr/local/lib/persistent-storage/on-deactivated-hooks/TorConfiguration/reset-tca
index 90f681db54c..5ee6ca3a5a2 100755
--- a/config/chroot_local-includes/usr/local/lib/persistent-storage/on-deactivated-hooks/TorConfiguration/reset-tca
+++ b/config/chroot_local-includes/usr/local/lib/persistent-storage/on-deactivated-hooks/TorConfiguration/reset-tca
@@ -3,10 +3,10 @@
 set -eu
 
 rm -rf /var/lib/tca/ /run/tca/
-/usr/local/lib/exec-with-user-env systemctl --user stop tca.service
+/usr/local/lib/run-with-user-env systemctl --user stop tca.service
 systemctl stop tor@default.service
 echo DisableNetwork 1 >> /etc/tor/torrc
 systemctl start tor@default.service
 if [ "$(nmcli --terse --fields STATE general status)" = connected ]; then
-    /usr/local/lib/exec-with-user-env systemctl --user start tca.service
+    /usr/local/lib/run-with-user-env systemctl --user start tca.service
 fi
diff --git a/config/chroot_local-includes/usr/local/lib/exec-with-env b/config/chroot_local-includes/usr/local/lib/run-with-env
similarity index 100%
rename from config/chroot_local-includes/usr/local/lib/exec-with-env
rename to config/chroot_local-includes/usr/local/lib/run-with-env
diff --git a/config/chroot_local-includes/usr/local/lib/exec-with-user-env b/config/chroot_local-includes/usr/local/lib/run-with-user-env
similarity index 77%
rename from config/chroot_local-includes/usr/local/lib/exec-with-user-env
rename to config/chroot_local-includes/usr/local/lib/run-with-user-env
index 3d86913a8d2..8e8081bafda 100755
--- a/config/chroot_local-includes/usr/local/lib/exec-with-user-env
+++ b/config/chroot_local-includes/usr/local/lib/run-with-user-env
@@ -19,7 +19,7 @@ fi
 
 # Ensure that we're running as amnesia
 if [ "$(id -u)" -ne "1000"  ]; then
-  exec runuser -u amnesia -- /usr/local/lib/exec-with-env --env-file "${USER_ENV_FILE}" -- "$@"
+  exec runuser -u amnesia -- /usr/local/lib/run-with-env --env-file "${USER_ENV_FILE}" -- "$@"
 else
-  exec /usr/local/lib/exec-with-env --env-file "${USER_ENV_FILE}" -- "$@"
+  exec /usr/local/lib/run-with-env --env-file "${USER_ENV_FILE}" -- "$@"
 fi
diff --git a/config/chroot_local-includes/usr/local/lib/tails-virt-notify-user b/config/chroot_local-includes/usr/local/lib/tails-virt-notify-user
index 20c1f860f43..7c8dedf917e 100755
--- a/config/chroot_local-includes/usr/local/lib/tails-virt-notify-user
+++ b/config/chroot_local-includes/usr/local/lib/tails-virt-notify-user
@@ -52,7 +52,7 @@ class VirtNotifier(object):
             )
         elif action == "documentation":
             subprocess.run(
-                ["/usr/local/lib/exec-with-user-env", "tails-documentation",
+                ["/usr/local/lib/run-with-user-env", "tails-documentation",
                  'doc/advanced_topics/virtualization', 'security']
             )
         sys.exit(0)
diff --git a/config/chroot_local-includes/usr/local/lib/tca-portal b/config/chroot_local-includes/usr/local/lib/tca-portal
index 73ad659c2cf..88232641c38 100755
--- a/config/chroot_local-includes/usr/local/lib/tca-portal
+++ b/config/chroot_local-includes/usr/local/lib/tca-portal
@@ -128,7 +128,7 @@ class RootCommand(BaseCommand):
 
 class UserCommand(BaseCommand):
     def full_command(self, request: RPCRequest) -> tuple:
-        args = ("/usr/local/lib/exec-with-user-env", *(super().full_command(request)))
+        args = ("/usr/local/lib/run-with-user-env", *(super().full_command(request)))
         return args
 
 
diff --git a/config/chroot_local-includes/usr/local/sbin/tails-additional-software b/config/chroot_local-includes/usr/local/sbin/tails-additional-software
index 4165515f9a2..d474d365d9f 100755
--- a/config/chroot_local-includes/usr/local/sbin/tails-additional-software
+++ b/config/chroot_local-includes/usr/local/sbin/tails-additional-software
@@ -109,7 +109,7 @@ def _notify(title, body="", accept_label="", deny_label="",
     try:
         completed_process = subprocess.run(
             [
-                "/usr/local/lib/exec-with-user-env",
+                "/usr/local/lib/run-with-user-env",
                 cmd, title, body, accept_label, deny_label,
                 documentation_target, urgent
             ],
diff --git a/config/chroot_local-includes/usr/local/sbin/tails-notify-user b/config/chroot_local-includes/usr/local/sbin/tails-notify-user
index b93ca98ca9c..4b5d20e8c86 100755
--- a/config/chroot_local-includes/usr/local/sbin/tails-notify-user
+++ b/config/chroot_local-includes/usr/local/sbin/tails-notify-user
@@ -11,5 +11,5 @@ fi
 summary="$1"
 body="$2"
 
-exec /usr/local/lib/exec-with-user-env \
+exec /usr/local/lib/run-with-user-env \
      notify-send ${3:+"--expire-time=$3"} "${summary}" "${body}"
diff --git a/config/chroot_local-includes/usr/local/sbin/unsafe-browser b/config/chroot_local-includes/usr/local/sbin/unsafe-browser
index 526e5ee56ba..f35653ee226 100755
--- a/config/chroot_local-includes/usr/local/sbin/unsafe-browser
+++ b/config/chroot_local-includes/usr/local/sbin/unsafe-browser
@@ -22,7 +22,7 @@ export TEXTDOMAIN
 
 _zenity () {
     AT_SPI_BUS_ADDRESS="$(
-        /usr/local/lib/exec-with-user-env \
+        /usr/local/lib/run-with-user-env \
         dbus-send --session --print-reply=literal \
             --dest=org.a11y.Bus /org/a11y/bus org.a11y.Bus.GetAddress \
             | sed 's/^ *//'
-- 
GitLab


From 21a3552ec7f5253c2e447e8cebf20b042c310a81 Mon Sep 17 00:00:00 2001
From: boyska <boyska@riseup.net>
Date: Thu, 9 Mar 2023 17:39:23 +0000
Subject: [PATCH 149/187] Apply 1 suggestion(s) to 1 file(s)

---
 config/chroot_local-includes/etc/sudoers.d/zzz_tps-frontend | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/config/chroot_local-includes/etc/sudoers.d/zzz_tps-frontend b/config/chroot_local-includes/etc/sudoers.d/zzz_tps-frontend
index b7e4102339e..b7dd64766ba 100644
--- a/config/chroot_local-includes/etc/sudoers.d/zzz_tps-frontend
+++ b/config/chroot_local-includes/etc/sudoers.d/zzz_tps-frontend
@@ -1,3 +1,7 @@
+# note that this means that connect-drop-tps could be called with 
+# multipler arguments, if they all match the /tmp/*-env pattern.
+# However, this has no consequence because connect-drop-tps only
+# reads the first argument
 Cmnd_Alias TPS_CONNECT_DROP = /usr/local/lib/connect-drop-tps /tmp/*-env
 
 Defaults!TPS_CONNECT_DROP env_keep+="DESKTOP_STARTUP_ID"
-- 
GitLab


From aba25866b1b00922902311d14483710ab5b64659 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Fri, 10 Mar 2023 11:53:51 +0100
Subject: [PATCH 150/187] Remote shell: Fix some log output not printed to
 stderr

---
 .../usr/local/lib/tails-autotest-remote-shell | 24 +++++++++++--------
 1 file changed, 14 insertions(+), 10 deletions(-)

diff --git a/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell b/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell
index e5a2430d11b..83283fe6a8e 100755
--- a/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell
+++ b/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell
@@ -51,6 +51,10 @@ from typing import Tuple
 REMOTE_SHELL_DEV = '/dev/virtio-ports/org.tails.remote_shell.0'
 
 
+def log(*args):
+    print(*args, file=sys.stderr)
+
+
 def mk_switch_user_fn(user):
     pwd_user = pwd.getpwnam(user)
 
@@ -85,7 +89,7 @@ def get_user_env(user):
         try:
             env_dict.update(read_user_env(user))
         except FileNotFoundError as e:
-            print(f"Failed to load user env for {user}: {e}")
+            log(f"Failed to load user env for {user}: {e}")
 
     # To allow using Dogtail with applications run as root
     # (e.g. synaptic), we also load the user env from amnesia when
@@ -107,7 +111,7 @@ def get_user_env(user):
 # Python shell started as a subprocess.
 class PythonSession:
     def __init__(self, user=None):
-        print("Starting new Python session", file=sys.stderr)
+        log("Starting new Python session")
         interactive_shell_code = '; '.join([
             "import sys",
             "import code",
@@ -254,7 +258,7 @@ def main():
             ret = ""
             if cmd_type in ['sh_call', 'sh_spawn']:
                 user, cmd = rest
-                print(f"Executing as {user}: {cmd}", file=sys.stderr)
+                log(f"Executing as {user}: {cmd}")
                 p = run_cmd_as_user(cmd, user)
                 if cmd_type == "sh_spawn":
                     returncode, stdout, stderr = 0, "", ""
@@ -262,17 +266,17 @@ def main():
                     stdout, stderr = p.communicate()
                     returncode = p.returncode
                 ret = json.dumps([id, 'success', returncode, stdout, stderr])
-                print(f"Result: {ret}")
+                log(f"Result: {ret}")
             elif cmd_type == 'python_execute':
                 user, code = rest
                 if user not in python_sessions or \
                         python_sessions[user].process.poll() is not None:
                     python_sessions[user] = PythonSession(user)
                 session = python_sessions[user]
-                print(f"Executing Python as {user}:\n{code}", file=sys.stderr)
+                log(f"Executing Python as {user}:\n{code}")
                 exc, out_str, err_str = session.execute(code)
                 ret = json.dumps([id, 'success', exc, out_str, err_str])
-                print(f"Result: {ret}")
+                log(f"Result: {ret}")
             elif cmd_type in ['file_read', 'file_write', 'file_append']:
                 path, *rest = rest
                 open_mode = cmd_type[5] + 'b'
@@ -300,11 +304,11 @@ def main():
                 port.write(chunk)
             port.flush()
         except Exception as e:
-            print("Error caught while processing line:", file=sys.stderr)
-            print("    " + line, file=sys.stderr)
-            print("The error was:", file=sys.stderr)
+            log("Error caught while processing line:")
+            log("    " + line)
+            log("The error was:")
             traceback.print_exc(file=sys.stderr)
-            print("-----", file=sys.stderr)
+            log("-----")
             sys.stderr.flush()
             exc_str = '{}: {}'.format(type(e).__name__, str(e))
             port.write(
-- 
GitLab


From 99cce3c2b699c7515e9a77d8f65044e12e44e6cb Mon Sep 17 00:00:00 2001
From: boyska <boyska@riseup.net>
Date: Sat, 11 Mar 2023 16:51:17 +0100
Subject: [PATCH 151/187] let's use standard logging methods

---
 .../usr/local/lib/tails-autotest-remote-shell | 26 +++++++++----------
 1 file changed, 12 insertions(+), 14 deletions(-)

diff --git a/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell b/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell
index 83283fe6a8e..2b928413088 100755
--- a/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell
+++ b/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell
@@ -43,6 +43,7 @@ import systemd.daemon
 import textwrap
 import time
 import traceback
+import logging
 
 from tailslib.userenv import read_user_env
 
@@ -51,10 +52,6 @@ from typing import Tuple
 REMOTE_SHELL_DEV = '/dev/virtio-ports/org.tails.remote_shell.0'
 
 
-def log(*args):
-    print(*args, file=sys.stderr)
-
-
 def mk_switch_user_fn(user):
     pwd_user = pwd.getpwnam(user)
 
@@ -89,7 +86,7 @@ def get_user_env(user):
         try:
             env_dict.update(read_user_env(user))
         except FileNotFoundError as e:
-            log(f"Failed to load user env for {user}: {e}")
+            logging.info(f"Failed to load user env for {user}: {e}")
 
     # To allow using Dogtail with applications run as root
     # (e.g. synaptic), we also load the user env from amnesia when
@@ -111,7 +108,7 @@ def get_user_env(user):
 # Python shell started as a subprocess.
 class PythonSession:
     def __init__(self, user=None):
-        log("Starting new Python session")
+        logging.info("Starting new Python session")
         interactive_shell_code = '; '.join([
             "import sys",
             "import code",
@@ -215,6 +212,7 @@ def run_cmd_as_user(cmd, user):
 
 
 def main():
+    logging.basicConfig(level=logging.DEBUG)
     python_sessions = dict()
     fd = os.open(REMOTE_SHELL_DEV, os.O_RDWR)
     port = open(fd, 'wb+', buffering=0)
@@ -258,7 +256,7 @@ def main():
             ret = ""
             if cmd_type in ['sh_call', 'sh_spawn']:
                 user, cmd = rest
-                log(f"Executing as {user}: {cmd}")
+                logging.info(f"Executing as {user}: {cmd}")
                 p = run_cmd_as_user(cmd, user)
                 if cmd_type == "sh_spawn":
                     returncode, stdout, stderr = 0, "", ""
@@ -266,17 +264,17 @@ def main():
                     stdout, stderr = p.communicate()
                     returncode = p.returncode
                 ret = json.dumps([id, 'success', returncode, stdout, stderr])
-                log(f"Result: {ret}")
+                logging.info(f"Result: {ret}")
             elif cmd_type == 'python_execute':
                 user, code = rest
                 if user not in python_sessions or \
                         python_sessions[user].process.poll() is not None:
                     python_sessions[user] = PythonSession(user)
                 session = python_sessions[user]
-                log(f"Executing Python as {user}:\n{code}")
+                logging.info(f"Executing Python as {user}:\n{code}")
                 exc, out_str, err_str = session.execute(code)
                 ret = json.dumps([id, 'success', exc, out_str, err_str])
-                log(f"Result: {ret}")
+                logging.info(f"Result: {ret}")
             elif cmd_type in ['file_read', 'file_write', 'file_append']:
                 path, *rest = rest
                 open_mode = cmd_type[5] + 'b'
@@ -304,11 +302,11 @@ def main():
                 port.write(chunk)
             port.flush()
         except Exception as e:
-            log("Error caught while processing line:")
-            log("    " + line)
-            log("The error was:")
+            logging.info("Error caught while processing line:")
+            logging.info("    " + line)
+            logging.info("The error was:")
             traceback.print_exc(file=sys.stderr)
-            log("-----")
+            logging.info("-----")
             sys.stderr.flush()
             exc_str = '{}: {}'.format(type(e).__name__, str(e))
             port.write(
-- 
GitLab


From b29a713667d3e6543449e282e4b161c831bc2f86 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Tue, 14 Mar 2023 00:58:27 +0100
Subject: [PATCH 152/187] tails-additional-software: Log stderr of the executed
 command

This helps debugging
---
 .../usr/local/sbin/tails-additional-software                  | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/config/chroot_local-includes/usr/local/sbin/tails-additional-software b/config/chroot_local-includes/usr/local/sbin/tails-additional-software
index d474d365d9f..f456794ed09 100755
--- a/config/chroot_local-includes/usr/local/sbin/tails-additional-software
+++ b/config/chroot_local-includes/usr/local/sbin/tails-additional-software
@@ -115,8 +115,10 @@ def _notify(title, body="", accept_label="", deny_label="",
             ],
             stdout=subprocess.PIPE,
             stderr=subprocess.PIPE,
-            universal_newlines=True
+            text=True
         )
+        if completed_process.stderr:
+            print(completed_process.stderr, file=sys.stderr)
         if completed_process.returncode == 1:
             # sudo failed to execute the command
             raise OSError(completed_process.stderr)
-- 
GitLab


From 911a8fb6079062b77186b2190bd6024ac3cb295f Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Tue, 14 Mar 2023 00:59:13 +0100
Subject: [PATCH 153/187] run-with-env: Fix current environment not passed to
 the command

This caused failures because PATH was not set.
---
 config/chroot_local-includes/usr/local/lib/run-with-env | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/config/chroot_local-includes/usr/local/lib/run-with-env b/config/chroot_local-includes/usr/local/lib/run-with-env
index 9b4438043c4..03e452eda6e 100755
--- a/config/chroot_local-includes/usr/local/lib/run-with-env
+++ b/config/chroot_local-includes/usr/local/lib/run-with-env
@@ -34,9 +34,9 @@ def main():
     args = get_parser().parse_args()
     env = read_allowed_env_from_file(args.env_file)
 
-    # Update with allowed environment variables from the current
-    # environment (because those should take precedence)
-    env.update(allowed_env(os.environ))
+    # Update with environment variables from the current environment
+    # (because those should take precedence)
+    env.update(os.environ)
 
     if args.delete:
         os.remove(args.env_file)
-- 
GitLab


From dd7a408aa20c01d93373bb8d1947ead7346c5359 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Wed, 15 Mar 2023 13:54:42 +0100
Subject: [PATCH 154/187] run-with-user-env: Depend on
 tails-dump-user-env.service

This causes run-with-user-env to block until tails-dump-user-env.service
was started to ensure that the user-env file exists. This fixes some
race conditions in cases where run-with-user-env was used at a point
where tails-dump-user-env.service might not have started yet.
---
 config/chroot_local-hooks/52-update-rc.d            |  1 -
 .../lib/systemd/user/tails-dump-user-env.service    |  3 ---
 .../usr/local/lib/run-with-user-env                 | 13 ++++++++++---
 3 files changed, 10 insertions(+), 7 deletions(-)

diff --git a/config/chroot_local-hooks/52-update-rc.d b/config/chroot_local-hooks/52-update-rc.d
index 450881f6f4f..e2fee48c545 100755
--- a/config/chroot_local-hooks/52-update-rc.d
+++ b/config/chroot_local-hooks/52-update-rc.d
@@ -36,7 +36,6 @@ systemctl --global enable tails-virt-notify-user.service
 systemctl --global enable tails-wait-until-tor-has-bootstrapped.service
 systemctl --global enable tails-create-persistent-storage.service
 systemctl --global enable tails-htpdate-notify-user.service
-systemctl --global enable tails-dump-user-env.service
 
 # This causes the proxies to run during the whole session, instead of
 # being started and stopped when needed. The only app which needs
diff --git a/config/chroot_local-includes/usr/lib/systemd/user/tails-dump-user-env.service b/config/chroot_local-includes/usr/lib/systemd/user/tails-dump-user-env.service
index 02c33b5498a..2908e4b7663 100644
--- a/config/chroot_local-includes/usr/lib/systemd/user/tails-dump-user-env.service
+++ b/config/chroot_local-includes/usr/lib/systemd/user/tails-dump-user-env.service
@@ -7,6 +7,3 @@ ConditionUser=1000
 Type=oneshot
 ExecStart=/usr/local/lib/dump-user-env
 RemainAfterExit=yes
-
-[Install]
-WantedBy=gnome-session-wayland@gnome.target
diff --git a/config/chroot_local-includes/usr/local/lib/run-with-user-env b/config/chroot_local-includes/usr/local/lib/run-with-user-env
index 8e8081bafda..5a65e52db3d 100755
--- a/config/chroot_local-includes/usr/local/lib/run-with-user-env
+++ b/config/chroot_local-includes/usr/local/lib/run-with-user-env
@@ -11,6 +11,7 @@
 set -eu
 
 USER_ENV_FILE=/run/user/1000/user-env
+DUMP_USER_ENV_SERVICE=tails-dump-user-env.service
 
 if [ "$#" -lt 1 ]; then
   echo >&2 "Usage: $0 COMMAND [ARG]..."
@@ -19,7 +20,13 @@ fi
 
 # Ensure that we're running as amnesia
 if [ "$(id -u)" -ne "1000"  ]; then
-  exec runuser -u amnesia -- /usr/local/lib/run-with-env --env-file "${USER_ENV_FILE}" -- "$@"
-else
-  exec /usr/local/lib/run-with-env --env-file "${USER_ENV_FILE}" -- "$@"
+  exec runuser -u amnesia -- "$0" "$@"
 fi
+
+export DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus
+export XDG_RUNTIME_DIR=/run/user/1000
+
+exec systemd-run --user --scope \
+  --property=Requires="${DUMP_USER_ENV_SERVICE}" \
+  --property=After="${DUMP_USER_ENV_SERVICE}" \
+  /usr/local/lib/run-with-env --env-file "${USER_ENV_FILE}" -- "$@"
-- 
GitLab


From 95dea88dfd1bb3d78416f7fbc9aad8c0dcf6bb90 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Wed, 15 Mar 2023 13:56:42 +0100
Subject: [PATCH 155/187] 10-tor.sh: Remove obsolete wait loops

run-with-user-env now waits until user services can be started and the
gnome-shell Wayland session is ready, so we don't need these wait loops
anymore.
---
 .../etc/NetworkManager/dispatcher.d/10-tor.sh            | 9 ---------
 1 file changed, 9 deletions(-)

diff --git a/config/chroot_local-includes/etc/NetworkManager/dispatcher.d/10-tor.sh b/config/chroot_local-includes/etc/NetworkManager/dispatcher.d/10-tor.sh
index 3a26302e346..cafe9dac61d 100755
--- a/config/chroot_local-includes/etc/NetworkManager/dispatcher.d/10-tor.sh
+++ b/config/chroot_local-includes/etc/NetworkManager/dispatcher.d/10-tor.sh
@@ -30,15 +30,6 @@ fi
 echo >&2 "$BASENAME: $1 up: restarting tor@default.service"
 systemctl restart tor@default.service
 
-echo >&2 "$BASENAME: $1 up: waiting for gnome-shell"
-while ! pgrep --euid amnesia -x gnome-shell > /dev/null; do
-    sleep 1
-done
-echo >&2 "$BASENAME: $1 up: waiting for user@1000.service"
-while ! systemctl is-active -q user@1000.service; do
-    sleep 1
-done
-
 echo >&2 "$BASENAME: $1 up: starting tca.service"
 /usr/local/lib/run-with-user-env systemctl --user start tca.service
 
-- 
GitLab


From 559e3ae316a936e527eddc33927b8bd420b5ff5b Mon Sep 17 00:00:00 2001
From: boyska <boyska@riseup.net>
Date: Wed, 15 Mar 2023 16:04:05 +0100
Subject: [PATCH 156/187] Revert "workaround failure"

This reverts commit f7065ff2b4602bdaeef4e1212529db597eabfb4c.
We don't need it anymore because the new code doesn't have the issue at
all
---
 .../usr/local/sbin/unsafe-browser                    | 12 ++----------
 1 file changed, 2 insertions(+), 10 deletions(-)

diff --git a/config/chroot_local-includes/usr/local/sbin/unsafe-browser b/config/chroot_local-includes/usr/local/sbin/unsafe-browser
index f35653ee226..0c97d77a742 100755
--- a/config/chroot_local-includes/usr/local/sbin/unsafe-browser
+++ b/config/chroot_local-includes/usr/local/sbin/unsafe-browser
@@ -73,22 +73,14 @@ show_start_notification () {
     local title body
     title="$(gettext "Starting the Unsafe Browser...")"
     body="$(gettext "This may take a while, so please be patient.")"
-    # XXX: this was introduced for 5.11. If we have this,
-    #      problems to notification startup will be hidden and we will not notice
-    #      so please get rid of this
-    if ! tails-notify-user "${title}" "${body}" 10000; then
-        echo "ERROR: couldn't show_start_notification" >&2
-    fi
+    tails-notify-user "${title}" "${body}" 10000
 }
 
 show_shutdown_notification () {
     local title body
     title="$(gettext "Shutting down the Unsafe Browser...")"
     body="$(gettext "This may take a while, and you may not restart the Unsafe Browser until it is properly shut down.")"
-    # XXX: same as show_start_notification
-    if ! tails-notify-user "${title}" "${body}" 10000; then
-        echo "ERROR: couldn't show_shutdown_notification" >&2
-    fi
+    tails-notify-user "${title}" "${body}" 10000
 }
 
 # Main script:
-- 
GitLab


From 8f7f345397046deb8c5d0c0545c1965934337c63 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Wed, 15 Mar 2023 22:11:58 +0100
Subject: [PATCH 157/187] Start tails-dump-user-env.service automatically again

There are still usages of the user env file which do not make the
service start, for example tca and tails-autotest-remote-shell.
---
 config/chroot_local-hooks/52-update-rc.d                       | 1 +
 .../usr/lib/systemd/user/tails-dump-user-env.service           | 3 +++
 2 files changed, 4 insertions(+)

diff --git a/config/chroot_local-hooks/52-update-rc.d b/config/chroot_local-hooks/52-update-rc.d
index e2fee48c545..450881f6f4f 100755
--- a/config/chroot_local-hooks/52-update-rc.d
+++ b/config/chroot_local-hooks/52-update-rc.d
@@ -36,6 +36,7 @@ systemctl --global enable tails-virt-notify-user.service
 systemctl --global enable tails-wait-until-tor-has-bootstrapped.service
 systemctl --global enable tails-create-persistent-storage.service
 systemctl --global enable tails-htpdate-notify-user.service
+systemctl --global enable tails-dump-user-env.service
 
 # This causes the proxies to run during the whole session, instead of
 # being started and stopped when needed. The only app which needs
diff --git a/config/chroot_local-includes/usr/lib/systemd/user/tails-dump-user-env.service b/config/chroot_local-includes/usr/lib/systemd/user/tails-dump-user-env.service
index 2908e4b7663..02c33b5498a 100644
--- a/config/chroot_local-includes/usr/lib/systemd/user/tails-dump-user-env.service
+++ b/config/chroot_local-includes/usr/lib/systemd/user/tails-dump-user-env.service
@@ -7,3 +7,6 @@ ConditionUser=1000
 Type=oneshot
 ExecStart=/usr/local/lib/dump-user-env
 RemainAfterExit=yes
+
+[Install]
+WantedBy=gnome-session-wayland@gnome.target
-- 
GitLab


From 568bd4b1300a956feb6270a3be982f4c60ef7af9 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Thu, 16 Mar 2023 00:53:42 +0100
Subject: [PATCH 158/187] tailslib: Make code easier to read

---
 .../usr/lib/python3/dist-packages/tailslib/persistence.py    | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/persistence.py b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/persistence.py
index 3aaa32a807b..d0d6e6e1f39 100644
--- a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/persistence.py
+++ b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailslib/persistence.py
@@ -46,8 +46,9 @@ def has_unlocked_persistence():
 
 def is_tails_media_writable():
     """Return true iff tails is started from a writable media."""
-    return not subprocess.run(
-        "/usr/local/lib/tails-boot-device-can-have-persistence").returncode
+    return subprocess.run(
+        "/usr/local/lib/tails-boot-device-can-have-persistence"
+    ).returncode == 0
 
 
 def spawn_tps_frontend(*args):
-- 
GitLab


From 9bdd5e5c15445704f51da0b3112dafb059b5af32 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Thu, 16 Mar 2023 10:00:08 +0100
Subject: [PATCH 159/187] Remote shell: Don't capture stderr of "sh_spawn"
 commands

We never printed the capture stderr, which makes things hard to debug.
---
 .../usr/local/lib/tails-autotest-remote-shell        | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell b/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell
index 2b928413088..95e74004246 100755
--- a/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell
+++ b/config/chroot_local-includes/usr/local/lib/tails-autotest-remote-shell
@@ -197,18 +197,17 @@ class PythonSession:
             return exc_str, "", ""
 
 
-def run_cmd_as_user(cmd, user):
+def execute_cmd_as_user(cmd, user, **kwargs):
     switch_user_fn = mk_switch_user_fn(user)
     env = get_user_env(user)
     cwd = env.get('HOME', '/')
     return subprocess.Popen(cmd,
-                            stdout=subprocess.PIPE,
-                            stderr=subprocess.PIPE,
                             shell=True,  # nosec subprocess_popen_with_shell_equals_true
                             text=True,
                             env=env,
                             cwd=cwd,
-                            preexec_fn=switch_user_fn)
+                            preexec_fn=switch_user_fn,
+                            **kwargs)
 
 
 def main():
@@ -257,10 +256,13 @@ def main():
             if cmd_type in ['sh_call', 'sh_spawn']:
                 user, cmd = rest
                 logging.info(f"Executing as {user}: {cmd}")
-                p = run_cmd_as_user(cmd, user)
                 if cmd_type == "sh_spawn":
+                    execute_cmd_as_user(cmd, user)
                     returncode, stdout, stderr = 0, "", ""
                 else:
+                    p = execute_cmd_as_user(cmd, user,
+                                            stderr=subprocess.PIPE,
+                                            stdout=subprocess.PIPE)
                     stdout, stderr = p.communicate()
                     returncode = p.returncode
                 ret = json.dumps([id, 'success', returncode, stdout, stderr])
-- 
GitLab


From 1e4d0d400771dccf488d532bdae2fc30d9acee78 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Thu, 16 Mar 2023 13:26:34 +0100
Subject: [PATCH 160/187] tails-additional-software: Print logs of apt hooks to
 journal

---
 .../usr/local/sbin/tails-additional-software             | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/config/chroot_local-includes/usr/local/sbin/tails-additional-software b/config/chroot_local-includes/usr/local/sbin/tails-additional-software
index f456794ed09..73a7bff70df 100755
--- a/config/chroot_local-includes/usr/local/sbin/tails-additional-software
+++ b/config/chroot_local-includes/usr/local/sbin/tails-additional-software
@@ -13,6 +13,7 @@ import sys
 import time
 
 import apt.cache
+from systemd.journal import JournalHandler
 
 from tailslib import LIVE_USERNAME
 
@@ -663,6 +664,14 @@ if __name__ == "__main__":
         print_help()
         sys.exit(2)
 
+    if sys.argv[1] == "apt-pre" or sys.argv[1] == "apt-post":
+        # Log to the journal instead of stderr because stderr is either
+        # connected to the user's terminal (which we don't want to spam
+        # with these messages) or, if the package was installed by Synaptic,
+        # the stderr is not shown at all.
+        logger = logging.getLogger()
+        logger.addHandler(JournalHandler())
+
     if sys.argv[1] == "install":
         if not install_additional_packages():
             sys.exit(150)
-- 
GitLab


From 990c20573fbe1b50c860c6a917177ae9d5f93058 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Thu, 16 Mar 2023 13:46:24 +0100
Subject: [PATCH 161/187] tails-additional-software: Add type hints

---
 .../usr/local/sbin/tails-additional-software         | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/config/chroot_local-includes/usr/local/sbin/tails-additional-software b/config/chroot_local-includes/usr/local/sbin/tails-additional-software
index 73a7bff70df..a6c9c316ec3 100755
--- a/config/chroot_local-includes/usr/local/sbin/tails-additional-software
+++ b/config/chroot_local-includes/usr/local/sbin/tails-additional-software
@@ -11,6 +11,7 @@ import shutil
 import subprocess
 import sys
 import time
+from typing import List, Optional, Set
 
 import apt.cache
 from systemd.journal import JournalHandler
@@ -50,7 +51,7 @@ def _exit_if_in_live_build():
         sys.exit(0)
 
 
-def _launch_apt_get(specific_args):
+def _launch_apt_get(specific_args: List[str]):
     """Launch apt-get with given arguments.
 
     Launch apt-get with given arguments list, log its standard and error output
@@ -82,7 +83,8 @@ def _launch_apt_get(specific_args):
 
 
 def _notify(title, body="", accept_label="", deny_label="",
-            documentation_target="", urgent=False, return_id=False):
+            documentation_target="", urgent=False, return_id=False,
+            ) -> Optional[int]:
     """Display a notification to the user of the live system.
 
     The notification will show title and body.
@@ -281,7 +283,7 @@ def restore_old_apt_lists(srcdir=OLD_APT_LISTS_DIR, dstdir=APT_LISTS_DIR):
         shutil.move(path, dstdir)
 
 
-def handle_installed_packages(packages):
+def handle_installed_packages(packages: Set[str]):
     """Configure packages as additional software packages if the user wants to.
 
     Ask the user if packages should be added to additional software, and
@@ -351,7 +353,7 @@ def handle_installed_packages(packages):
                     urgent=True)
 
 
-def handle_removed_packages(packages):
+def handle_removed_packages(packages: Set[str]):
     """Removes packages from additional software packages if the user wants to.
 
     Ask the user if packages should be removed from additional software, and
@@ -382,7 +384,7 @@ def setup_additional_packages():
     subprocess.check_call(["/usr/local/lib/tpscli", "ensure-is-active", "AdditionalSoftware"])
 
 
-def create_persistence_and_setup_additional_packages(packages):
+def create_persistence_and_setup_additional_packages(packages: Set[str]):
     """Create persistence and add packages to its configuration.
 
     Create a new persistence with additional packages enabled.
-- 
GitLab


From f02d48540e356ecd8d55d8871f7ec4ab833e5157 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Thu, 16 Mar 2023 13:46:34 +0100
Subject: [PATCH 162/187] tails-additional-software: Fix _ (gettext.gettext)
 not defined

---
 .../usr/local/sbin/tails-additional-software                    | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/config/chroot_local-includes/usr/local/sbin/tails-additional-software b/config/chroot_local-includes/usr/local/sbin/tails-additional-software
index a6c9c316ec3..87e284793bf 100755
--- a/config/chroot_local-includes/usr/local/sbin/tails-additional-software
+++ b/config/chroot_local-includes/usr/local/sbin/tails-additional-software
@@ -44,6 +44,8 @@ OLD_APT_LISTS_DIR = os.path.join(PERSISTENCE_DIR, 'apt', 'lists.old')
 APT_ARCHIVES_DIR = "/var/cache/apt/archives"
 APT_LISTS_DIR = "/var/lib/apt/lists"
 
+_ = gettext.gettext
+
 
 def _exit_if_in_live_build():
     """Exits with success if running inside live-build."""
-- 
GitLab


From ef7309e1a4de0ac8a492adecc1e488f8028ca9c0 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Thu, 16 Mar 2023 15:53:43 +0100
Subject: [PATCH 163/187] tails-additional-software: Log stderr of the executed
 command to Journal

When running the apt-post-hook, stderr is already closed because of the
double fork trick, so writing to it causes the process to fail with an
I/O error.
---
 .../usr/local/sbin/tails-additional-software                    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/config/chroot_local-includes/usr/local/sbin/tails-additional-software b/config/chroot_local-includes/usr/local/sbin/tails-additional-software
index 87e284793bf..ea914c0adcf 100755
--- a/config/chroot_local-includes/usr/local/sbin/tails-additional-software
+++ b/config/chroot_local-includes/usr/local/sbin/tails-additional-software
@@ -123,7 +123,7 @@ def _notify(title, body="", accept_label="", deny_label="",
             text=True
         )
         if completed_process.stderr:
-            print(completed_process.stderr, file=sys.stderr)
+            logging.warning(completed_process.stderr)
         if completed_process.returncode == 1:
             # sudo failed to execute the command
             raise OSError(completed_process.stderr)
-- 
GitLab


From fd831a7f55ae48f0b38f41f107a7ddbe12e9014a Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Thu, 16 Mar 2023 16:52:20 +0100
Subject: [PATCH 164/187] tails-additional-software: Fix string returned
 instead of int

---
 .../usr/local/sbin/tails-additional-software                    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/config/chroot_local-includes/usr/local/sbin/tails-additional-software b/config/chroot_local-includes/usr/local/sbin/tails-additional-software
index ea914c0adcf..3f85a452729 100755
--- a/config/chroot_local-includes/usr/local/sbin/tails-additional-software
+++ b/config/chroot_local-includes/usr/local/sbin/tails-additional-software
@@ -135,7 +135,7 @@ def _notify(title, body="", accept_label="", deny_label="",
     if return_id:
         for line in completed_process.stdout.splitlines():
             if line.startswith("id="):
-                return line[3:]
+                return int(line[3:])
     else:
         if completed_process.returncode == 0:
             return 1
-- 
GitLab


From c19160133b2d087748ffeefc9d3892366e2924c9 Mon Sep 17 00:00:00 2001
From: segfault <segfault@riseup.net>
Date: Thu, 16 Mar 2023 16:53:36 +0100
Subject: [PATCH 165/187] tails-additional-software: Fix logging command

---
 .../usr/local/sbin/tails-additional-software                    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/config/chroot_local-includes/usr/local/sbin/tails-additional-software b/config/chroot_local-includes/usr/local/sbin/tails-additional-software
index 3f85a452729..61c71dc067f 100755
--- a/config/chroot_local-includes/usr/local/sbin/tails-additional-software
+++ b/config/chroot_local-includes/usr/local/sbin/tails-additional-software
@@ -123,7 +123,7 @@ def _notify(title, body="", accept_label="", deny_label="",
             text=True
         )
         if completed_process.stderr:
-            logging.warning(completed_process.stderr)
+            logging.warning("%s", completed_process.stderr)
         if completed_process.returncode == 1:
             # sudo failed to execute the command
             raise OSError(completed_process.stderr)
-- 
GitLab


From cea6e5642d60a0a0c875bf51d256ee03122985e6 Mon Sep 17 00:00:00 2001
From: sajolida <sajolida@pimienta.org>
Date: Thu, 16 Mar 2023 17:12:04 +0100
Subject: [PATCH 166/187] Update to #15586 and #18732

---
 wiki/src/doc/first_steps/welcome_screen.mdwn  |  24 ++++++++++--------
 .../first_steps/welcome_screen/additional.png | Bin 8334 -> 8717 bytes
 .../create_persistent_storage.png             | Bin 0 -> 14061 bytes
 .../doc/first_steps/welcome_screen/locale.png | Bin 9601 -> 9391 bytes
 .../welcome_screen/persistence.png            | Bin 8213 -> 0 bytes
 .../unlock_persistent_storage.png             | Bin 0 -> 7455 bytes
 .../welcome_screen/welcome-screen.png         | Bin 29998 -> 0 bytes
 .../welcome_screen/welcome_screen.png         | Bin 0 -> 43484 bytes
 wiki/src/doc/persistent_storage.mdwn          |   4 +--
 wiki/src/doc/persistent_storage/use.mdwn      |   4 +--
 .../inc/steps/restart_first_time.inline.mdwn  |   2 +-
 wiki/src/news/version_4.1.mdwn                |   2 --
 12 files changed, 19 insertions(+), 17 deletions(-)
 create mode 100644 wiki/src/doc/first_steps/welcome_screen/create_persistent_storage.png
 delete mode 100644 wiki/src/doc/first_steps/welcome_screen/persistence.png
 create mode 100644 wiki/src/doc/first_steps/welcome_screen/unlock_persistent_storage.png
 delete mode 100644 wiki/src/doc/first_steps/welcome_screen/welcome-screen.png
 create mode 100644 wiki/src/doc/first_steps/welcome_screen/welcome_screen.png

diff --git a/wiki/src/doc/first_steps/welcome_screen.mdwn b/wiki/src/doc/first_steps/welcome_screen.mdwn
index b00007fa65c..1d1ea2591d1 100644
--- a/wiki/src/doc/first_steps/welcome_screen.mdwn
+++ b/wiki/src/doc/first_steps/welcome_screen.mdwn
@@ -7,7 +7,7 @@ GNOME Desktop.
 You can use the Welcome Screen to specify startup options that alter some of the basic
 functioning of Tails.
 
-[[!img welcome-screen.png link=no alt="Welcome to Tails!"]]
+[[!img welcome_screen.png link=no alt="Welcome to Tails!"]]
 
 To start Tails without options, click on the
 <span class="bold">Start Tails</span> button.
@@ -86,18 +86,22 @@ the Welcome Screen.
 Persistent Storage
 ==================
 
-If a [[Persistent Storage|persistent_storage]] is detected on the USB stick, an
-additional section appears in the Welcome Screen
-below the **Language & Region**
-section:
+You can save some of your files and configuration in an encrypted [[Persistent
+Storage|persistent_storage]] on your Tails USB stick.
 
-[[!img persistence.png link="no" alt=""]]
+- If no Persistent Storage is detected on the USB stick, you can click the
+  **Create Persistent Storage** button to automatically start the Persistent
+  Storage settings after you start Tails and the desktop appears.
 
-To unlock the Persistent Storage, enter your passphrase and click
-**Unlock**.
+  [[!img create_persistent_storage.png link="no" alt=""]]
 
-To learn more about the Persistent Storage, see our documentation on the
-[[Persistent Storage|persistent_storage]].
+- If a Persistent Storage is detected on the USB stick, enter your passphrase
+  and click **Unlock Encryption** to unlock and activate your Persistent
+  Storage.
+
+  [[!img unlock_persistent_storage.png link="no" alt=""]]
+
+See also our [[documentation on the Persistent Storage|persistent_storage]].
 
 <a id="additional"></a>
 
diff --git a/wiki/src/doc/first_steps/welcome_screen/additional.png b/wiki/src/doc/first_steps/welcome_screen/additional.png
index 27a4e223e832fffa54fd3973a7e42346ce794038..70d029a985d190ef5d10229bb23ef5b3d7c4b309 100644
GIT binary patch
literal 8717
zcmXY1Wl$W@u3p^Tt++4lZpF2@OOZtj1&X_t;!xa5ai=US#jQxO#oZkickkog`~IAB
zCiza1nPet2`4Xe0p@@Y}jt&3-u#}bFYXbmqV{h+pRQR{k5`KOQ0HB>welMfz19v>v
z|6xE2Aa6C?T^P4+Mz6PVdTRbj-073Pk!_^Z_^3fosu<|wq#yfjHrdEX@4c_pbt88`
zCiTkLP3?Xw3HW3>YoN#Ti+5%FB*dVXMk#dx6YxWQy1`++(S1pjBi~CCR)#f$?}*d%
zZE3)nmLs{Dt^f??@FEWREVlfpC${X>2$m#4=q6oigvdeR0TNGDZ~zGm!1eK_)Pd1|
zF6f=}w0S8Aj&u%e3@JEW)L#QrfztAkEDfQKi<kK>FFsJ?5i5HQD13-ujl(3k01@!^
z@dwDv@6Cq<Yzka}@IL{C#UfalvIFcyEE!*7M)?Y!GaGdCX5r*Gz1%#-hQ*GMa@x8@
zlWVM+d2e67@OqcBrrfOZ{>{lv^3b$^G5S7Uue>TuvWBky>p?KAhRAhpnv}MG(O%-?
zS{9zo;h5QCP!i_*3Jp34D0tbay9b^#q^T?b(^V>d>q|+AZCjWxu%kyl-+wKeKiu2j
z(`92se*Os7=8Ea3V@iz~k-``RgLNw2JJ*q7K5lQ*3+8<B{KI$fMX1aY<4+SM%=y!&
zOCQsnV5u2D)vLzFy$T;ciw@t?0+2&C6GKU2Kd-<;kaXA|v&%)z+*9z~YdLi5K)%1<
zHTZlI8Ym?;Bg3ugYpZAC-<IbT8>?pQ+4vrqp!pNyJ_BB|>t}=ZzmzB-F}sKWmg>u5
zTY6TWgs7l`S@u}z@X=AoMpEW|!~`n&o!}?z#JIS`#7(8TtIs>a&gy1VmtA#@=X2=}
zhv!jKmJLVo`Uykj0><jZ%g2SK&%a3J<7j2VBBldw*WLnyzSct>1&%h(&sV~Fzc+ez
zXsB-Di2Bxd6{KdYuT8>je2ai5hMf-<1eeOo%lY5k-FX_1U0=@xl4RW62o%ZGeW=35
z!C?_C$j`4giVk>XbZ=7e_40$4->qL<7_#A|8`Qpc5+wWeL0=;w4@^R`Z?V#r*p+F|
zlf#l(Im?C}J+|xqqj`Z*Oh`ybin=#eoLxw$?gv05%1Wj%Br&GmSeO@ri;h%oO{-h~
zw0OuWNji#+@|$SbKO^c9gkQ86Rqo5Fd_uw-L^#w)?1|rLl*HlINGcbGhz5E%26>Ny
z9D*l6%%x0M80f;L302X|3y6<^0M2}KG|z!SivY9&BnZ5m>^6R?sYFLFojq>_p$`()
z2pjwQ%R%b5O2-me?D|J!#4S#7-^ZC{DH_h0(`{-uH@Euc=BGmg3+9Q#yLT-!Li}N#
zao=Zl8u@Xk*OMndpjH<_*$B~vH0!RbkFyqyw1}ADdf>KZ;@)zM8Ao({i-CS|dv$hj
zM2vbLB-5jtkQ{Q>y+N~tZLt;%I2;JY<IQTU>snu3MmgK<jCBHeLw9zH%jzsXI~eJy
zpVXKoK*(5AYh=P85elxMP=&w|sq{=Ot1GPjZTy+!R2rFHWl2^4s{mr_Z>p*nE_q{i
zZ9YB{fw!2g=;fh-OhtwDze#gn_Lf}<Qb=(}D-Ip*t99w%z!C6p;&_?U_A`bkxmcKJ
z$s@MOJin%=r_bjG_V%iCS61_=uHm@7{p<#~xRq!#5O)3j{bvOPEUAyDCP8qWFC86Q
zDO1q1RmF9H`SZsIq+8j2Z%<D`N)#`OY;u$3CCds@i}i)C+aE+E*^p6CCjZ<YTye?M
z(f+%{U&g}5QG72ST9cWXoVL0+`?887Wx1P{MwF%N4#TSO14`nO9&7fIGo4eaeF87K
z{WZwEjEaZ=GbpvAZ-J@1K^$FYU}=0$93^;0>eiO<lybzVD4vYWdu(iL7pJrGiYl&}
zasVO;ah5bU1D+&?>Cfhk)03LOF(Wrz`F|TpO*daKqs+pJ#l)6_LVFAy{r#7jY1{&>
zCB)hM-0Xh`|B#{+CC?2!1Q#VFw$QXB?f#hHzK-4B+o$b?GUsz~^7NPnWQW#l0Ez!>
zv<^hg-5QAOf;U*NjW|=;(!OofyOncR6XzI@?mhqf_vJ1q{8Qh;0_mE(jVC7m^B$H%
zW>Pg3tekRnVT&0*ZCuvuU2I%r(MQndbVM|K%Ow=oT<8|;c3?n3$w$}+1UBkX7vgfo
zjz$=)F0Yhb=gZfK=I%x5cz&LoK0ZE;dZ)s;^;COq1Q$TCEu*Ja7C?NmI&*!Uy(GHu
z*+*CRU-w%#!TuW4-(&RE#oLvu9=qTK28;a`AHKi0v-`!<i>}8P(6diKa4_)6#pMwN
zsSpY7pwDH0e_zJDk&7ESTxXikEwr7=S7GnrA*%@bb3Sw&Ss24L@bZ{dLZqakh3qVn
zm|%K#I=1IvR5qz2;Kl7V=guay>Le?*$0m8CDg7*C$A>&>#qMeMFx}Bc^#)dz%%GG+
zBl&c5_5{Q>(>7n5o0R#&)>Hak6u}cAW{V)zvWP}k)0HdVR>pZV#B5c<XmQa!3&_T#
z0L1TnCSE5bqQKxsNQm(iox$g~DK1rbKiJsVbm(b3w+W|*Vlr8RL@o38;P-udn5=le
zELGmOg9TynJ@{ei+1zJ%AA3@chNg~i$I05-+JOOP23}GQmlI*;r3N(R>+5P@yUH#Z
zm&fy^m2&{5B6`u}L}zyv87r%klM@ZF)LOA1B&0S!fAZpUJ04AETiM+llvdbztsYgy
zscDhZW-l&?wzcsdjzZH$4Mw2-3D!s>6Lx<*?>!7Md({d~fBf)$n^Er<^H--Yrfbhg
zu(7SC)@{>4I9&NBvg4;E_GV5WzOHmFu0`_#Y9b%b1yK=!FCH&Bv`IPWitod#zFGhJ
z@Pj{3H6H4%d-x(-I}u`#N5-IpTkxgDUsCmzN0lqR)vtAP^#Hrb^$7*!fH@Z<q5fJ<
ziqm<i@TV__Ei!#Y4WFSF<zkVvzTnx~N3lILG_<Es#?zWL`X&5=eP-b{`1Tk8E~G&(
zIv;>XMN5)kIQSGRo2F8hg5+t39O8wG8W<>l*#6YHeV^e*^$B);^F$YYxELMk=T!t!
zj)E=5=fBV^YeQ3t^H-x_Mk#(?V*1e2gh{{jHv!cRQ2A(4IAsRxm(FnG%t76>)7Iqc
zZc<!>;2HzIiRSQjvc7e$dU!az$R5w|>^ylIU4s3oH7-57<82dMg{=S7_vp@dX=?B2
z40sg+Ot^livh|h737!Nygot4PUWmtTo!`}gH2nlAL-HkR%0O_^(9;`dVSq#%btMSr
ze_~)esO$Rq;c9PhueG%`H#fJmv^1R<&|<q)s0E0)=o0#_m4N+cs!#{zL-~$=GK;co
zO53*bF5COov$n-V+L{|k^RfxYlN|DNrqI>c-I__;YJx&hlW{x)c=Z!~^3b8@&qQZI
zis(M8CS&GQv_NGR!Xr;n)V-^RhXAI(E0^=In@`PhA)=dZ_wFqd>(aQ0aY9*Y-y|}i
z`%e7i3_?#YK~2WV!tWBxW*yDy3`TLguD?F1WsD%@O%PZbX_V>I&A;Kodn^TWR7>y!
z3E~LlX}V0J`#=7ghb0F{EBQD+BBhV)Zn|w;^_0*U0*TG*?tH|js$`f~6qr(3Ge)ja
zS;js!;~<Ai)0{7&NOzb=%NI`{$`+necY$ctDR<n2b=lJD+5X_BFQ3%vvN4dUk=YIZ
zY++7Q>Ho;{J@CMfI2I|V`=ny_=)wp1qOZqBl=FN247z`XdhTt=vD`DViT(5<iL6S;
zpEGvosp76vqwgX}5rg1SFlM)qAY0gtT;fcYHM9@*oeHd{K}D8tG(NHC?+vibmO3}e
z(-<7{7<*6G!v$#R{(6qqtItVqKWoE_78W9$Glm>4qmPl^>)}Id-)+zD)n@kR!bdz~
zMESzj^i<6MZgX*-d;spb?nrtTs5g65o3Jd=SPt<tteGSia9UAP`Us-Ki^0Qt|K27O
z&wyC@tKkd5>EO%d3Vqi-TJ2|#Gnw40{JX%tyN6Dwf7trKz(59<g<}CAt@X}&K`Qw5
znw|OUQ`Z7iKhwO!PY><&VjJZe*4xN|YZnf0QB%9uXp}UdsG!g-uUJi@FG%xx12dpE
zF)<NrZu5RQy>~S<fsb=Cd3<`R;ng81Yjoaz#PjP4d@A*1W@6IF6TR8&i#{q<za7~m
z{)t&x5|5b9J!&k%_iuYJ5!rRM^=9WUL8^g)K_~+F-|IXQ&!qfJcQ-)H1&yh@v5R3j
z8t&&rfk<TrWg<H}yUpbg^niC6zf@L@=w0eD;|?lz>U+QpOVi+atQC+@tvXug0Dt!I
z&|y#D$*9$kg;2!gfTp|_@_i=`IzGOnaUB9L@AGpr&5R98NmCO?6)~D~dOTmEs*B}Y
zbI#sSZ|pVL5$#$tU)*8#@lo{3*%-c`zO&p{#cXTTQVPSBY2HRhV+>R*@|<RxXrrP7
zv_bRFO^?v{^Z59PU870+^8CPOcB6!mXgKwL>GG17ul&~O3RpO=$?E_7`tsD_e>Z9a
zNyuDNOnmpb^8RO4RqV)sx0hG8Un+*VYSqLC#|A26wV`<ro*W%<#?3!51QAJ=Vmma>
zY8o2ZOo@O2<4O*m!OD(~4#x<i9QXQ3ziamKcRe`X+j)GT@pj)U1<tk3K>vqJ+i315
ztkA7e>+W`jwoDL**n?`@lJhF~gO#_p5CV-%&ZtJ>wWvIr!^*Gp`S<aOiK<zD*>rbG
zw4IBDruO#tH47xi*rE}X+^k!)Qh_SY><(k8Rd}>V2L~+VWR#Sn3R@|JNu*R%yF*=_
z1rpvfLAQze`9x!m_e7A(aO6zD=cZ!MLSG*rQmk3FG7U6@&+Rl=4H!agZEXWo$dSv+
zGNm4C-*xNOI{cd<kf?2~#FdFyy|H3cC>_`8`s-`ZuhH9EK|^)`ZbW#0zkGEB@#liv
zth#xnf3R+(IbvCEr)e%4F>`=W>kjHSD~4+p=7{o9QcZV}d?@xF5C{x-ypG8`%KA1o
zrhaFS9cO=MCXbWyV9p9qrHkfai(k~Q;FMhIZjW>wVwyvg6yzBe7bNh%Ins+9tG7e2
zeO_vEYP9!vUGK#DP3L>DC6B)lo-Hz@{-s}$O}yc~5>H#DlOXG;0`6tz*UuJq(<N-Q
z^rm+0!m80T8@41|zojcg1a!0wQ%;PG7x%<>(n=NdQgHy8848n}@zFsmKlph|oE;s}
z)ji-wb$#@JRX=+7#sGIr?Ew!d=1<eG`MRu7<^8=qL-x$EpgF`;yq{WxiCT!wd(2O-
zdmMjBqxsS3a>p8Iymg0)FfWafBg4jc;X{)Ke1cCH_f#WfS=g8dcZO(J+y^X8Zu*hy
z@#KW+Bldt+ald0?WWzz}mcEpZZTRN+Ghan(Tq-y>;T?K!ByKSW`Y<=I!{|U{^bi|&
z#e}aPiIfn~WXqI%L>9yuEfpZi1A+w33%x8z+<SP-1ADD%wOuXMNXL5-rek`)4_ID~
zTdWtMy)vB?<<yqs<m7($=d{2ulCY{1W9<vsz-W0JgId#2T}0-L;+xxB#|RG^ataEt
zhj~}f>L-W9NM@Rl4>P7O!0K>2#|FbFmWuxIHT?Vg3u|CVDcB$fNAz&qy?YYFNiVZ(
zCp|sALCPPg?L6bEu2;)U*V>$uuvdFZxQd+d3zBAc&(Qezc$sFwQu7J1=<wt40P-!n
z_;f^=Ra}ebA%5aa96Fx){8*0AG-D*W3Vi~u=wwpZ4BrDwQD<Pz8Q0yc;iEp`UnlA&
z0`@A|NYBF>ZhBRpu{NgRCVU?i%xSiz&2#5N0Xmv~@E&UC%++phB*xGP<p`h7<98ku
z0Y%n#f^ryW5BBtuG{wAV(B`7s7w2)#uK;?)q=1Tnc%H(Pt9__k*pc3Tqapk|(onCv
zhff>7Oo`D==oRSWYaa=dB!9fyopJYMVp@szz$2EvvqkIn$<gcNJCfV9sFir6JGP|#
z?7XefvR5pRjhY<3ce>I-0FaLT+qghJM#v6K*EHvmUZ_AN-*vLHQ{bj2xGbqo1LcYI
z&cOeyD;9za4Nw~QRWfsnI6IXYM+5?8hT))s%{IpO__b<ASrxZgD&(eU6`rJ0*J0@S
zq95_Gld{wHmaQkDua78?MiKVS-UuiVdk!?i{q{Y!eEGZv+xKJ}i^pH2wWg<_QOSR0
zl+hQ6v+L6JCoy7Yp>~w|*p1?-bTQ3WPp-;;g)CrYfXad|Ixj$eJ}BysJ`@Bkx!hS~
zS@3Q#>xXob8U)e0zX2CpNZ~Sw9dn&OJ*4U#1~DVx*LQ?zrsc6|E?Iz4VpF{yHFJ<#
zupfW$v;#5JPW;&^_u`v+Ub*s<%x#Oaf#)Qh(Z?{4ezHF}2fPU}YhA(6muqk`^`0&5
zM|9}7kksnE?~Wo<q}i!ivru=f6J_eMIHjb6-G5ntqE#<z*FN%r!m2<iC-~MLJO|`S
zIB(trcKOV3<Vlu}%*ZuQb1&gb^-n<s@wk5ls6&S}id%X!<=eb~7uT6Vg6m<&6VhRn
z9cexM5H(vjAN_xu@Rj!m&x53Zq_Im*X6|ETJJ}k_I9-sU0l?Q@iXvY=xFN)bhXi1V
zZBX-4P2e}SPrjC6`fk^US@ENxp7jbbJcZ-R*9|_vk_=2*%48k1T{Ioz{-dh6>ESWg
z+z<{@;9DGYJOB9%6bL8%eX2B8*TJzHqF+Uc8HgWA^rP7-s+a}`X-E2d5V0ic2U&)D
z)2i2=-G{4vce^6U;Uva%LL+Vz{7z|7v92ZIVF(Fs5mCA{fR7=cGO{>SfVu~+3g7Vr
zWJQ%yzYhjM7ieC-W~wm@2g_9EZiNY-Q$gN|`%D~zu9QQ&oTU{|t6FK7L-6Gl24-{4
zv^+(&!Nre8e3NuXpu+No=ZPRlt2{i;HCP;<67E;Jlg;HgzWzgcuccKpmSLt>CRVE}
zp|#Zy=(_=SaVET!AmXQT9@!P8pWIulH9}pK#%WocHv{n$TXtd9Xq`FN;9kb!Z^USq
zvJWK%CFA*nq~ysz?kRB0Qs(xafQ}I54JV(Zyogm<Y68nR{(V~4-AJeFY<l%fS?Q25
z_H7^#{-!0pYffK^;$1Ru2$5Fx{pDMWZXd`gy-2v|9Wq{^H=VN5L{B0a=betSX@4}b
z#1;Cy2Naf9{c9zjtD1Z8YY`Pg-AnpU{!Vuer{b{jlhG*5G*RM#an+0KFTR&qq^>^c
zmuYb#-|m6@3X;#NxI0SdG%`Kt0<_NDI&iX*$E<GBm3)ewpLYp#ZomPAR_RGh#qX@8
zb5yGV$7lQho)$g5Sch<R$`uU@(N|~@m^>ZjmGxS&fpZ@<&ykpn_+`VIe^yJ%Wi;5f
zAcrE>6{kxla{7e=h=$oKc{R*_Wkw>hEx8f+i)RC;85NrVNivZjN)f;Q;(Dv$7-D^+
zD#6^}R+9mVj$$dWBCup0$pV3@F^1k)^Q5`>S0Q@ErleHGj80yVTMyov8+w-AN5(tG
zY1vZ>9=>fgwuyP+L`2$u8O;nQIoh;IhHDj5hP|H!?6U2@<}<Rs8)eaFLe0jTLM%*S
zzno%F6yY~48InlpCb`QZ!<<>#8OgnF0a_{CTCPOEiY8Oq1-dA4q6aEu3A2@2G2%H}
zhhi9aauj~!C8CwO(F&x8>s*O5co&zn)JC-el;H!=3B?E$B3SApx<kw*qxoEYITQnm
z`#S*SgHGvX>Ubu|;Z-v;$VTo%nAkNXs8QjR$lVNmqgD)6q#MbGz2J*&8Db{IxxIB{
z2jiS|tmoj-<==lbgk}ZNBs*ByZNsFE7(I6ma_Q#q3gO=c332*852Hj#Ew&)c2!^pB
z_o0l+yC0g<k=RS!TZN>MBS`Z>5HqbLf=s@$JFTfe&t&|ck*elWp(y7DVjKyFi{3JW
zoOQ1_^8)Xp*h8kDj_6br>D0dIK{daK$KC@^yI=fnuZ$#~f@nl@>%MfdgtZnJSdtzD
zsx$9%TdX<*&~~(fA^Voio4yiHA`<>6ltsC{lw(K8*nRSfJQilMJ)18UpELcqq|m0p
zU9VmFR8dyl@@GFmFZhz*bg3zHV)rlJ?;fiV*Tq?pmV!!@Bp3qSR&FsH%l<wiNCX7n
zKU?7dhg&Sf&^vgetTOY*5?9-+cm+M}F`XuJ@dU}2_$cV>6oQKA<j}M+C`=E*p>j!b
z2fC7S#mCNZs33cBlct>-iKMaRwC$9N-o!y}%xSPiFwCej^^P=}*MV=;9fO!|hiF%=
z)C#M`Qe<y<=aje%yg~4%aCB<RWVh`PmaxY6hE38t8;ylZJx=uzZu>++rY;Gyfa_{U
z_u5ea<X30I;~mb1+fFCMQhaBw_Lv)!s|3`wrU2#jPyGel(l*KcYe>|_qw0~0o5mYU
zR>+`bYpK#OT!mZcv)J}k+b*g(i-}{={o1+HsjkF{RLdFS7Fz`35x6U$c=!P%IBQh;
zsjU_kraX-PEO2$Mg4xF{;r|G(_AR-@z$*n&ZGHe<Fw3Z2s~CK<CO*F4to;+`?vFY{
zlr^8iRs(~wF(xXNr<C9eY^eC@b84Nop>frg)B9{EXb09>du^sh(Y<z(_i?L1KWg%b
zsa3je5Nevytz1`c2hbXPp4}swC?juL`>03+ckS5w)nGQ@_T1S|-}cdfb@S609IrkS
z2}eDf0gW%aq?SMpT8-hqcbKX>TkCsY@;KdMbGR}4u7UZp1&r_1uP5YZ(WR@uSN}@0
zLlU{6i2FHM8E=__G?$v_mEPPE<8e9fdC=@f3_XHYs*O(7*b`dQIZ?Xgqvp@z%|(1s
zyjD3XEe+JVn>)sLK}?g9l;kHK?zW##H}69GPxM<{W$wcCSUH$5qkm)}Dak)r9pBqh
zh0k%mD=`u<zF8hlyJR)EoNbk#J+59NoAjI$EI^|PUZ_cg2T0QZq+eib^G3ZK#WZy8
z<5<6Aq41--V8C1Xhd>{J8(>L{4RGFSYqtwULXq$qfjT#CT$XPb&y`tg5m1PfFTy&y
zXEe8;>~)0H4W{<%syH#o_EUc6?8n08o3_qGipXU%U$MYiYS=QB+e_L!^}kqE2n$5w
z$=lI!rqc5r;76C~rH8Zst<-Tf&<y~1nOw9P^-q6Jq8sGCaf}>JL(kF<DnifVO>@#!
zp&Lws#^h1q114H@-$0`ui?pjVDj=}OpfZ?ux|!6(N#io*boGR9vWxojI6S~_F6+!l
zyWxiSrRXHtz^@j}nlC4b1LZ$r6z%@6I_3*>PNk78)`qcfYk?_G-3qi12k?U!{~Q`m
zq2>i9*b?%t{{kbvaY~8}V2Ew)f)N04T}_9U;1b!-dqea#{t3y)@(0B)oB`i3)W|TS
zWN#o?O3r{FW?y^+GeC1>q8?2D1_~tI%ukaahs3?|>#YUfEB#W!3eY@0c6?JYN|m{g
zcNmsx45hf8AMj)kLpv7sU)0U|$7=y^^p*0)kmoJ$i}T}Se2zh_*?NP^;6rRi?Rxve
z{h^MTj$enAmlyAw^BRBz`$e_wK}Yd)h4<N7hu?$aU1)gB`!Ml;n|&zL6Mh|Cg{%vU
zNpNq_uXoi$U>hO-tSVh~y;~|#St552u3O*WW9R2LH4f6TQ8Gx)>_ij)p@>;CIgjc-
zzm?4zB!}`g-y-bK$EpW=VCH#pcnNX?q@n1hBNN~2?Y~9jnZW@jzzd5Z0Dy!)lO?o)
z!z``u=P;cYF`)Nsk<WS-tcY+6T&BFsLwY0kCWmgFYt)3CY}J!{>D)L(GZOCplabr;
zbBPiDBV9q|fn?8vJw<(dL$(~czW6+(kb3{yai5!N2~Q}xbCnTCSy#YN(7#;Opv5@n
zOOK<gHpgGxeCo$QK*R#ri_m}0W8YtY%P8N0C*HWoxYj@g{Eg!G`yyk<*(%d2R`*fv
zx7<l<*L~OY|3vAZP9rAl$O|2Y7s4YUAu&MpQr<yR0~-zv(P<L1rbviki>can>MZUc
zn)_`MyIFs(h*VX-9E<SX|6Y+>s+12)lK-XwJvE*L0{}erKSAC|CyVFag3@oK=Ck!a
zXVUWhrtmjvI!lNvuHAst_pB`1(NVX-FpucmADUIe+*S)VpsSnqNzZbZgVc4UOXQZ0
zD`!CN$#t#^+M#&W_bKt^Es<s4$?@9aN8+n-$hPzA19G7fYstzLmK&sFVo@IRdUi2>
zw9Dz4!eRS3*TYMA?o$1#TAQu->R9Nz$M|^3Khd_R=peDS9TBm-1Ip%c$iIIw{{h%s
z0UJa>gLpW16KB1-W{u-a@nHIkxwF9L&WKO>dMXb2FJZ1M8I9wQqEPL%#bAS}7h$o2
z<9uZ=^*>??TP_GE|AH}B{~O~I-ntex4EN0v4gyB*s;C7>C=Xn9_*$a79?*aSVjeRg
zT0-`B4aQphFFe-yKFZxN+UIw45a~hgs`%U7xDHIVUG3de#q7On`TJ#Qe|7bI6s*D;
z=`fTohA1b#BG)zgI{v9(%&2#9i@mXh!x$1xKt<o-jVvn&Wh>!_(ou9Wq6>kpGC+CY
z`2e@Mcac2eV7=r^2zGbp$<lm*RPf31({TP-w!}rY#B?^+;N$Z1;pN<Vs0BEqIcmq>
zc|Q&|{&()G*%pd1orJZn#W`y&1X{I42+l1T!z2=hL9j_3m_OF67pWJ}#h=mNxQ@Wg
zGv+&iRlfTAFOAiY%0{!>+S5f-!|ZE)fLh}w^TWym9tBz=^Fm@TTGE6<vQk=#&cfVP
zeinCPn?R4bxJGA$<z=%qhs@OysypmIQQI{Lrb4j-!7+k?34%d!{6Sy&+Y|ZQV`rAv
zkm*XkH?Rmy_!sxG&-8L4_VMud@!RwXeeV<XFT!}?#zlMaNRI=bdSwJo^iU4EB^Y}!
z4O~!mA;v*CEXIOcA3PdkB$2pEzW3^nzzqK1g2&MKk6a13J_(`Gd@%T_%cLhiibtMA
zN36#@ip)74B6p$RO?4i&x>537yM|xdC(?K!(o#6eu78Mgk)S@cQ_iXm%uMMJTb_4!
z>nK8;qvBO~@*7ELQgVyD)W?KITZJ`Ndz@tuCLFd&nr%hiu$v^`F40$wGp;>wGId&#
z{(`a5ywu=w94eMY6SWes-Sbw|m;AJPQ;2ob8ioT45<{(dM!kJkUS4NPu<|BNmByvg
z$#g#nH{TFLXdK64U$BH5YYCy~Zm}$fbw-|5Uj2PKt1QGm^QLD}>SPYXF_N1UX)~{J
zHLiJpgGe4X)n(oXuzS6qC%c0k;6ys0)3&N(f>n7Ea9V?Hpu4sP=uSK^hxU#)S<7)8
zOEjd(L##k94&haLE<`J5dj9^#lE}$q0KW!PbCgIY3DMH_%KDzakE4*2>N3H~nlSdd
zreMGi8`e52D~W~^F^ZBoN0a!5nDVYb_z)T+6{E}Efn=9?qraOA#x7Np&e8>dGrfl1
zZ$$bkSK}&P$~Hm;ngD=BXh7C0o4OdxohI^j9}q&BDZ48r2D|hJglrjmrf<MYCu56Z
p01hg_0BH~$z>^qo00eB1oQ4Bhrm?Va-_|?;%JLfTYh^9N{tplNCh-6O

literal 8334
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

diff --git a/wiki/src/doc/first_steps/welcome_screen/create_persistent_storage.png b/wiki/src/doc/first_steps/welcome_screen/create_persistent_storage.png
new file mode 100644
index 0000000000000000000000000000000000000000..caf590f2ed6a98ce0d3184fc5c7e3a7d6bc8c7f8
GIT binary patch
literal 14061
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

literal 0
HcmV?d00001

diff --git a/wiki/src/doc/first_steps/welcome_screen/locale.png b/wiki/src/doc/first_steps/welcome_screen/locale.png
index 6f81ebb171c17e9f49ab28698feb96ae9ab5e226..d3818ca38342ede08d638bd33aad4e8bf36f13e0 100644
GIT binary patch
literal 9391
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
G|9=2d37}5^

literal 9601
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
Zsfd8(%zB5R|5}Bip`xQ)t!Vx6e*s6V2z~$n

diff --git a/wiki/src/doc/first_steps/welcome_screen/persistence.png b/wiki/src/doc/first_steps/welcome_screen/persistence.png
deleted file mode 100644
index 60b6099e89856f65aca7792d137c254283f4c4a2..0000000000000000000000000000000000000000
GIT binary patch
literal 0
HcmV?d00001

literal 8213
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

diff --git a/wiki/src/doc/first_steps/welcome_screen/unlock_persistent_storage.png b/wiki/src/doc/first_steps/welcome_screen/unlock_persistent_storage.png
new file mode 100644
index 0000000000000000000000000000000000000000..eb2bca98d6c11346fea84e13e2f4c9db00e94ab1
GIT binary patch
literal 7455
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

literal 0
HcmV?d00001

diff --git a/wiki/src/doc/first_steps/welcome_screen/welcome-screen.png b/wiki/src/doc/first_steps/welcome_screen/welcome-screen.png
deleted file mode 100644
index 525f6b50e918a35fae03a2f9ba446f02a767b853..0000000000000000000000000000000000000000
GIT binary patch
literal 0
HcmV?d00001

literal 29998
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
M#pT3GMD)D>A8n3wGynhq

diff --git a/wiki/src/doc/first_steps/welcome_screen/welcome_screen.png b/wiki/src/doc/first_steps/welcome_screen/welcome_screen.png
new file mode 100644
index 0000000000000000000000000000000000000000..b872f781a804bb4876098ab8ff478678dfbe331f
GIT binary patch
literal 43484
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

literal 0
HcmV?d00001

diff --git a/wiki/src/doc/persistent_storage.mdwn b/wiki/src/doc/persistent_storage.mdwn
index 9804794e371..5c31ff7ed90 100644
--- a/wiki/src/doc/persistent_storage.mdwn
+++ b/wiki/src/doc/persistent_storage.mdwn
@@ -2,8 +2,8 @@
 
 Everything you do disappears automatically when you shut down Tails.
 
-But you can save some of your files and configuration in a Persistent
-Storage on your Tails USB stick, for example:
+But you can save some of your files and configuration in an encrypted
+Persistent Storage on your Tails USB stick, for example:
 
 - Your documents
 - Your Wi-Fi passwords
diff --git a/wiki/src/doc/persistent_storage/use.mdwn b/wiki/src/doc/persistent_storage/use.mdwn
index 69e8c008855..a294bffc672 100644
--- a/wiki/src/doc/persistent_storage/use.mdwn
+++ b/wiki/src/doc/persistent_storage/use.mdwn
@@ -4,9 +4,9 @@ To unlock your Persistent Storage and use the data that is stored in it:
 
 1. When starting Tails, in the **Persistent Storage** section of the [[Welcome
    Screen|first_steps/welcome_screen]], enter your passphrase and click
-   **Unlock**.
+   **Unlock Encryption**.
 
-   [[!img first_steps/welcome_screen/persistence.png link="no" alt=""]]
+   [[!img first_steps/welcome_screen/unlock_persistent_storage.png link="no" alt=""]]
 
 1. Start Tails.
 
diff --git a/wiki/src/install/inc/steps/restart_first_time.inline.mdwn b/wiki/src/install/inc/steps/restart_first_time.inline.mdwn
index d4cc79afbec..f41da69ad83 100644
--- a/wiki/src/install/inc/steps/restart_first_time.inline.mdwn
+++ b/wiki/src/install/inc/steps/restart_first_time.inline.mdwn
@@ -155,7 +155,7 @@ better with Linux.</p>
 
 1. One to two minutes after the Boot Loader and the loading screen, the Welcome Screen appears.
 
-   [[!img doc/first_steps/welcome_screen/welcome-screen.png link="no" alt="Welcome to Tails!"]]
+   [[!img doc/first_steps/welcome_screen/welcome_screen.png link="no" alt="Welcome to Tails!"]]
 
 1. In the Welcome Screen, select your language and
 keyboard layout in the <span class="guilabel">Language & Region</span> section.
diff --git a/wiki/src/news/version_4.1.mdwn b/wiki/src/news/version_4.1.mdwn
index a7be6c25af3..a94c7defc7b 100644
--- a/wiki/src/news/version_4.1.mdwn
+++ b/wiki/src/news/version_4.1.mdwn
@@ -43,8 +43,6 @@ vulnerabilities|security/Numerous_security_holes_in_4.0]]. You should upgrade as
 - Add back the **Show Passphrase** check box in *Tails Greeter*.
   ([[!tails_ticket 17177]])
 
-  [[!img doc/first_steps/welcome_screen/persistence.png link="no" alt=""]]
-
 - Fix the display of the troubleshooting error when GDM fails to start.
   ([[!tails_ticket 17200]])
 
-- 
GitLab


From ce085ba5f0a922e915388304a26da3b54312839e Mon Sep 17 00:00:00 2001
From: intrigeri <intrigeri@boum.org>
Date: Sat, 18 Mar 2023 07:35:43 +0000
Subject: [PATCH 167/187] Upgrade Tor Browser to 12.0.4-build2

---
 config/chroot_local-includes/usr/share/tails/tbb-dist-url.txt   | 2 +-
 config/chroot_local-includes/usr/share/tails/tbb-sha256sums.txt | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/config/chroot_local-includes/usr/share/tails/tbb-dist-url.txt b/config/chroot_local-includes/usr/share/tails/tbb-dist-url.txt
index af7ff254bf3..0b238f694e4 100644
--- a/config/chroot_local-includes/usr/share/tails/tbb-dist-url.txt
+++ b/config/chroot_local-includes/usr/share/tails/tbb-dist-url.txt
@@ -1 +1 @@
-http://torbrowser-archive.tails.boum.org/12.0.4-build1/
+https://tb-build-05.torproject.org/~richard/builds/release/unsigned/12.0.4-build2/
diff --git a/config/chroot_local-includes/usr/share/tails/tbb-sha256sums.txt b/config/chroot_local-includes/usr/share/tails/tbb-sha256sums.txt
index bd530becf9a..eaf4a669df2 100644
--- a/config/chroot_local-includes/usr/share/tails/tbb-sha256sums.txt
+++ b/config/chroot_local-includes/usr/share/tails/tbb-sha256sums.txt
@@ -1 +1 @@
-3b3c0055bc441272dea808c53b69d2f514d98ee2b40ca263df6a6b7091637991  tor-browser-linux64-12.0.4_ALL.tar.xz
+553d1b0f8bfc481ab47a6158b3110bade638a3ebbe1507f20449d233399177b6  tor-browser-linux64-12.0.4_ALL.tar.xz
-- 
GitLab


From 3b1870a413e689e6ebe4986fd670c5820b905418 Mon Sep 17 00:00:00 2001
From: intrigeri <intrigeri@boum.org>
Date: Sat, 18 Mar 2023 07:39:17 +0000
Subject: [PATCH 168/187] Fetch Tor Browser from our own archive

---
 config/chroot_local-includes/usr/share/tails/tbb-dist-url.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/config/chroot_local-includes/usr/share/tails/tbb-dist-url.txt b/config/chroot_local-includes/usr/share/tails/tbb-dist-url.txt
index 0b238f694e4..adf12d0d717 100644
--- a/config/chroot_local-includes/usr/share/tails/tbb-dist-url.txt
+++ b/config/chroot_local-includes/usr/share/tails/tbb-dist-url.txt
@@ -1 +1 @@
-https://tb-build-05.torproject.org/~richard/builds/release/unsigned/12.0.4-build2/
+http://torbrowser-archive.tails.boum.org/12.0.4-build2/
-- 
GitLab


From ecb0cc830b77c17b10da6957f30c7ee876b1f2ed Mon Sep 17 00:00:00 2001
From: boyska <boyska@riseup.net>
Date: Sat, 18 Mar 2023 11:50:38 +0100
Subject: [PATCH 169/187] Revert "tails-additional-software: Fix string
 returned instead of int"

This reverts commit fd831a7f55ae48f0b38f41f107a7ddbe12e9014a.

It's not needed, and may add new failure modes
---
 .../usr/local/sbin/tails-additional-software                    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/config/chroot_local-includes/usr/local/sbin/tails-additional-software b/config/chroot_local-includes/usr/local/sbin/tails-additional-software
index 61c71dc067f..8a4a81557b5 100755
--- a/config/chroot_local-includes/usr/local/sbin/tails-additional-software
+++ b/config/chroot_local-includes/usr/local/sbin/tails-additional-software
@@ -135,7 +135,7 @@ def _notify(title, body="", accept_label="", deny_label="",
     if return_id:
         for line in completed_process.stdout.splitlines():
             if line.startswith("id="):
-                return int(line[3:])
+                return line[3:]
     else:
         if completed_process.returncode == 0:
             return 1
-- 
GitLab


From 2cc9379de7bea390f283b893d2e1b33ade654672 Mon Sep 17 00:00:00 2001
From: boyska <boyska@riseup.net>
Date: Sat, 18 Mar 2023 11:53:01 +0100
Subject: [PATCH 170/187] remove inaccurate type hint

---
 .../usr/local/sbin/tails-additional-software                    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/config/chroot_local-includes/usr/local/sbin/tails-additional-software b/config/chroot_local-includes/usr/local/sbin/tails-additional-software
index 8a4a81557b5..da7c38c9cfc 100755
--- a/config/chroot_local-includes/usr/local/sbin/tails-additional-software
+++ b/config/chroot_local-includes/usr/local/sbin/tails-additional-software
@@ -86,7 +86,7 @@ def _launch_apt_get(specific_args: List[str]):
 
 def _notify(title, body="", accept_label="", deny_label="",
             documentation_target="", urgent=False, return_id=False,
-            ) -> Optional[int]:
+            ):
     """Display a notification to the user of the live system.
 
     The notification will show title and body.
-- 
GitLab


From 172349dafe2e7553a79b4b7e38fc7402cb911c1f Mon Sep 17 00:00:00 2001
From: intrigeri <intrigeri@boum.org>
Date: Sat, 18 Mar 2023 13:17:38 +0000
Subject: [PATCH 171/187] Update PO files.

---
 po/af.po     |  288 ++--
 po/ar.po     |  298 ++--
 po/ast.po    |  284 ++--
 po/az.po     |  290 ++--
 po/be.po     |  283 ++--
 po/bg.po     |  305 ++--
 po/bn.po     |  304 ++--
 po/br.po     |  281 ++--
 po/bs.po     |  435 +++---
 po/ca.po     |  298 ++--
 po/cs.po     |  315 +++--
 po/cy.po     |  281 ++--
 po/da.po     |  302 ++--
 po/de.po     |  699 ++++-----
 po/el.po     |  430 +++---
 po/en_US.po  |  280 ++--
 po/eo.po     |  284 ++--
 po/es.po     |  439 +++---
 po/et.po     |  289 ++--
 po/eu.po     |  287 ++--
 po/fa.po     |  324 +++--
 po/fi.po     |  427 +++---
 po/fr.po     |  415 +++---
 po/fy.po     |  284 ++--
 po/ga.po     |  302 ++--
 po/gl.po     |  301 ++--
 po/gu.po     |  290 ++--
 po/he.po     |  302 ++--
 po/hi.po     |  291 ++--
 po/hr.po     |  455 +++---
 po/hu.po     |  296 ++--
 po/hy.po     |  302 ++--
 po/id.po     |  302 ++--
 po/is.po     |  299 ++--
 po/it.po     |  296 ++--
 po/ja.po     |  770 +++++-----
 po/ka.po     |  307 ++--
 po/kab.po    |  280 ++--
 po/kk.po     |  292 ++--
 po/km.po     |  298 ++--
 po/kn.po     |  284 ++--
 po/ko.po     |  345 ++---
 po/lt.po     |  305 ++--
 po/lv.po     |  303 ++--
 po/mk.po     |  296 ++--
 po/mr.po     |  291 ++--
 po/ms_MY.po  |  296 ++--
 po/my.po     |  282 ++--
 po/nb.po     | 3469 +++++++++++++++++++++++++++++++++++++++++++++
 po/ne.po     |  280 ++--
 po/nl.po     |  304 ++--
 po/nl_BE.po  |  292 ++--
 po/nn.po     |  287 ++--
 po/oc.po     |  281 ++--
 po/or.po     |  280 ++--
 po/pa.po     |  284 ++--
 po/pl.po     |  386 ++---
 po/pt_BR.po  |  318 +++--
 po/pt_PT.po  |  297 ++--
 po/ru.po     |  823 ++++++-----
 po/si.po     |  295 ++--
 po/sk.po     |  296 ++--
 po/sl.po     |  286 ++--
 po/sq.po     |  301 ++--
 po/sr.po     |  287 ++--
 po/sv.po     |  296 ++--
 po/sw.po     |  284 ++--
 po/ta.po     |  285 ++--
 po/tails.pot |  280 ++--
 po/te.po     |  280 ++--
 po/th.po     | 3222 ++++++++++++++++++++++++++++++++++++++++++
 po/tr.po     |  392 +++---
 po/uk.po     | 3824 ++++++++++++++++++++++++++++++++++++++++++++++++++
 po/ur.po     |  282 ++--
 po/uz.po     |  281 ++--
 po/vi.po     | 1452 ++++++++++++-------
 po/zh_CN.po  |  427 +++---
 po/zh_HK.po  |  286 ++--
 po/zh_TW.po  |  298 ++--
 79 files changed, 24844 insertions(+), 11718 deletions(-)
 create mode 100644 po/nb.po
 create mode 100644 po/th.po
 create mode 100644 po/uk.po

diff --git a/po/af.po b/po/af.po
index 29dfabc0e30..6898e979b9c 100644
--- a/po/af.po
+++ b/po/af.po
@@ -7,8 +7,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
-"PO-Revision-Date: 2022-12-16 13:51+0000\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
+"PO-Revision-Date: 2023-02-27 06:53+0000\n"
 "Last-Translator: emma peel <emma.peel@riseup.net>\n"
 "Language-Team: Afrikaans <https://hosted.weblate.org/projects/tor/tails-gui/"
 "af/>\n"
@@ -17,7 +17,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.15\n"
+"X-Generator: Weblate 4.16-dev\n"
 
 #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1
@@ -286,7 +286,7 @@ msgid "Upgrade later"
 msgstr ""
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:518
-#, fuzzy, perl-brace-format
+#, perl-brace-format
 msgid ""
 "<b>You should do a manual upgrade to the latest version of {name}.</b>\n"
 "\n"
@@ -302,7 +302,7 @@ msgstr ""
 "For more information about this new version, go to {details_url}\n"
 "\n"
 "It is impossible to do an automatic upgrade of your Tails to this new "
-"version.\n"
+"version: {explanation}\n"
 "\n"
 "To learn how to do a manual upgrade, go to {manual_upgrade_url}"
 
@@ -438,9 +438,9 @@ msgid "Additional Settings"
 msgstr ""
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "Kanselleer"
@@ -511,11 +511,11 @@ msgstr ""
 msgid "Off (default)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
-msgid "Persistent Storage Not Unlocked"
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+msgid "Persistent Storage Still Locked"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 #, fuzzy
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
@@ -523,15 +523,15 @@ msgstr ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
-msgid "Continue Without Persistent Storage"
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
+msgid "Start Without Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 msgid "Don't _Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 msgid "_Create Persistent Storage"
 msgstr ""
@@ -551,7 +551,6 @@ msgstr ""
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr ""
 
@@ -768,69 +767,69 @@ msgstr ""
 msgid "Synchronizing data on disk..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -838,14 +837,14 @@ msgid ""
 "a different model."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
 "%(size)s GB is required)."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -853,76 +852,76 @@ msgid ""
 "%(dl_url)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
 "The persistent storage on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
 "All data on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr ""
@@ -1005,7 +1004,7 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1065,143 +1064,143 @@ msgstr ""
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
 "log to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr ""
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "Dokumentasie"
 
@@ -1332,19 +1331,19 @@ msgid ""
 msgstr ""
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1352,11 +1351,11 @@ msgid ""
 "software."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr ""
 
@@ -1685,32 +1684,32 @@ msgstr ""
 msgid "Choose File Container"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 #, fuzzy
 msgid "_Cancel"
 msgstr "Kanselleer"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 #, fuzzy
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
@@ -1719,60 +1718,60 @@ msgstr ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
 "network."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr ""
 
@@ -1932,6 +1931,7 @@ msgid "Tails documentation"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 msgid "Persistent Storage"
 msgstr ""
@@ -1958,6 +1958,15 @@ msgstr ""
 msgid "Learn more about Tails"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+msgid "Back Up Persistent Storage"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr ""
@@ -2024,7 +2033,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr ""
 
@@ -2048,7 +2057,7 @@ msgid "Disable"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr ""
 
@@ -2069,7 +2078,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr ""
 
@@ -2128,68 +2137,69 @@ msgstr ""
 msgid "Welcome to Tails!"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 msgid "_Persistent Storage"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 #, fuzzy
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr "Tails is configuring your Persistent Storage. Please wait..."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
+msgid "Show Passphrase"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
-msgid "Show Passphrase"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+msgid "_Passphrase"
 msgstr ""
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 #, fuzzy
 msgid "Shutdown"
 msgstr "Shutdown"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr ""
 
@@ -2283,10 +2293,18 @@ msgstr ""
 msgid "System Settings"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+msgid "Welcome Screen"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 msgid "Activate Welcome Screen"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+msgid "Printers"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 msgid "Activate Printers"
 msgstr ""
@@ -2319,6 +2337,10 @@ msgstr ""
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+msgid "Tor Browser Bookmarks"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 msgid "Activate Tor Browser Bookmarks"
 msgstr ""
@@ -2529,11 +2551,11 @@ msgstr ""
 msgid "Detach this volume"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr ""
 
diff --git a/po/ar.po b/po/ar.po
index a93b24f2bf4..74ef8dc6054 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -38,7 +38,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
 "PO-Revision-Date: 2023-02-11 14:38+0000\n"
 "Last-Translator: emma peel <emma.peel@riseup.net>\n"
 "Language-Team: Arabic <https://hosted.weblate.org/projects/tor/tails-gui/ar/"
@@ -547,9 +547,9 @@ msgid "Additional Settings"
 msgstr "إعدادات إضافية"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "إلغاء"
@@ -624,28 +624,28 @@ msgstr "إيقاف التشغيل"
 msgid "Off (default)"
 msgstr "معطل (إفتراضي)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
 #, fuzzy
-msgid "Persistent Storage Not Unlocked"
+msgid "Persistent Storage Still Locked"
 msgstr "انشاء تخزين دائم"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 #, fuzzy
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
 msgstr "قم بإدخال عبارتك السرية لفك قفل مساحة التخزين الدائم"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
 #, fuzzy
-msgid "Continue Without Persistent Storage"
+msgid "Start Without Persistent Storage"
 msgstr "انشاء تخزين دائم"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 #, fuzzy
 msgid "Don't _Create Persistent Storage"
 msgstr "انشاء تخزين دائم"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 #, fuzzy
 msgid "_Create Persistent Storage"
@@ -666,7 +666,6 @@ msgstr "جار إلغاء القفل ..."
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr "إلغاء القفل"
 
@@ -889,70 +888,70 @@ msgstr "نوع القرص loopback ، سيتم تجاوز إعادة ضبط سج
 msgid "Synchronizing data on disk..."
 msgstr "مزامنة البيانات الموجودة على القرص ..."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
 msgstr ""
 "خطأ: لا يمكن ضبط العنوان أو الحصول على رقم الـUUID لجهازك.  ﻻ يمكن المتابعة."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr "تم التثبيت! (%s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr "فشلت عملية تثبيت تايلز !"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr "مُنصّب تايلز"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr "النَسخ من تيلز الحالية"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr "استخدم صورة ISO مُحملة مسبقاً ل تيلز"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr "تحديث"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr "تعليمات الترقية اليدوية"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr "تثبيت"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr "تعليمات التثبيت"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(size)s %(vendor)s %(model)s جهاز (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr "لم يتم تحديد أية صورة ISO"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr "يرجى اختيار صورة ISO لتايلز."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -963,7 +962,7 @@ msgstr ""
 "يفشل تيلز في البدء عليه.\n"
 "رجاء حاول التثبيت علي طراز مختلف."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
@@ -972,7 +971,7 @@ msgstr ""
 "الجهاز \"%(pretty_name)s\" ليس لديه السعة الكافية لتثبيت Tails "
 "(مطلوب%(size)s جيجابايت على الأقل)."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -983,33 +982,33 @@ msgstr ""
 "ISO التي تم تنزيلها:\n"
 "%(dl_url)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr "تعذّر وجود جهاز مناسب لتثبيت تيلز"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr "رجاء وصل قرص فلاش او كارت ذاكرة بمساحة علي الأقل %0.1f غيغابايت"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr "حدث خطأ أثناء تثبيت تيلز"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr "تم التثبيت!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr "لا يمكن تركيب الجهاز"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(parent_size)s %(vendor)s %(model)s جهاز (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
@@ -1019,11 +1018,11 @@ msgstr ""
 "\n"
 "سيتم فقد التخزين الدائم على محرك أقراص USB هذا."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr "حذف التخزين الدائم وإعادة التثبيت"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
@@ -1033,27 +1032,27 @@ msgstr ""
 "\n"
 "سيتم فقد جميع البيانات الموجودة على محرك أقراص USB هذا."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr "احذف جميع البيانات وقم بالتثبيت"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr "%(description)s%(delete_message)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr "أكّد ناقل البيانات المحمول"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
 msgstr ""
 "الملف المختار غير قابل للقراءة. الرجاء تغيير صلاحياته أو اختيار ملف آخر."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
@@ -1061,7 +1060,7 @@ msgstr ""
 "لا يمكن استخدام الملف المُحدد. قد يحالفك حظ أكثر إن نقلت ملف الأيزو إلى "
 "المجلد الرئيسي لقرصك (C:\\ على سبيل المثال)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr "تم تحديد %(filename)s"
@@ -1141,7 +1140,7 @@ msgstr "su مُعطل. الرجاء استخدام sudo بدلا عنه"
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1207,7 +1206,7 @@ msgstr "غير متاح"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -1216,7 +1215,7 @@ msgstr ""
 "{details} الرجاء التأكد من قائمة البرامج الاضافية لديك او قراءة سجل النظام "
 "لفهم المشكلة."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
@@ -1224,54 +1223,54 @@ msgstr ""
 "فشل التنصيب. رجاء راجع ضبط البرمجيات الإضافية، أو طالع سجل النظام لمعرفة "
 "المشكلة أفضل."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr "استعرض السِّجِل"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "اضبط"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} Ùˆ {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ", "
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "اضافة {packages} الى برامجك الاضافية؟"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr "لتثبيته تلقائيا من تخزينك الدائم عند بدء تيلز."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr "تثبيت كل مرة"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr "تثبيت مرة واحدة فقط"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr "لقد فشل ضبط برامجك الاضافية."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -1279,67 +1278,67 @@ msgstr ""
 "لتثبيتها تلقائيا عند بدء تيلز, يمكنك انشاء تخزين دائم و تفعيل ميزة "
 "<b>البرامج الاضافية</b>."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr "انشاء تخزين دائم"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr "لقد فشل انشاء التخزين الدائم الخاص بك."
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr "يمكنك تثبيت {packages} تلقائيا عند بدء تيلز"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr "للقيام بذلك ، تحتاج إلى تشغيل Tails من عصا USB."
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "ازالة {packages} من برامجك الاضافية؟"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr "هذا سيوقف تثبيت {packages} تلقائيا."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "‮أزِل"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr "جار تثبيت برامجك الاضافية من التخزين الدائم..."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr "يمكن أن يستغرق هذا بعض الوقت..."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr "لقد فشل تثبيت برامجك الاضافية"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr "تم تثبيت البرامج الاضافية بنجاح"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr "فشل التحقق من توفر ترقيات للبرنامج الإضافية الخاصة بك"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -1347,11 +1346,11 @@ msgstr ""
 "الرجاء التحقق من اتصالك بالشبكة, اعد تشغيل تيلز, او اقرأ سجل النظام لفهم "
 "المشكلة."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr "فشل ترقية البرامج الاضافية الخاصة بك"
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "وثائق"
 
@@ -1507,19 +1506,19 @@ msgstr ""
 "راجع {manual_upgrade_url}"
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr "خطأ:"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr "تحذير: تم اكتشاف بيئة عمل افتراضية!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr "تحذير: تم الكشف على آلة افتراضيه غير حره"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1530,11 +1529,11 @@ msgstr ""
 "في تيلز. البرامج الحرة فقط هي التي يمكن اعتبارها جديرة بالثقة، على كل من "
 "نظام التشغيل المضيف والبرنامج الافتراضي."
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr "لاتعرض هذا مجددا"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr "إعرف/ي أكثر"
 
@@ -1885,58 +1884,58 @@ msgstr ""
 msgid "Choose File Container"
 msgstr "اختر مستوعب ملفات"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 #, fuzzy
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr "تعطيل المتصفح غير الآمن (افتراضي)"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr "_Restart"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 msgid "_Cancel"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr "إعادة التشغيل الآن"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr "فشل في إعادة تشغيل النظام."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr "جاري تشغيل المتصفح الغير آمن..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr "قد يستغرق هذا بعض الوقت، يرجى التحلي بالصبر."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr "جاري إيقاف تشغيل المتصفح الغير الآمن..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
@@ -1944,28 +1943,28 @@ msgstr ""
 "هذه العملية قد تأخذ وقتاً طويلاً، وقد لا تتمكن من إعادة تشغيل المتصفح غير "
 "الآمن حتى يتم اغلاقه بشكل كامل."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr "المتصفح الغير الآمن"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
 msgstr ""
 "توجد نسخة أخرى تعمل أو يتم تنظيفها من المتصفح غير الآمن. رجاءً حاول بعد قليل."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr "فشلت محاولة تشغيل chroot."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr "خلل في تهيئة المتصفح."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
@@ -1974,7 +1973,7 @@ msgstr ""
 "أنت غير متصل بشبكة محلية حتى الآن. \\و \\n لتتمكن من بدء تشغيل المتصفح غير "
 "الآمن ، تحتاج أولاً إلى الاتصال بشبكة واي فاي أو شبكة سلكية أو محمولة."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr "خلل في تشغيل المتصفح."
 
@@ -2145,6 +2144,7 @@ msgid "Tails documentation"
 msgstr "وثائق تيلز"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 #, fuzzy
 msgid "Persistent Storage"
@@ -2172,6 +2172,16 @@ msgstr "تعلم كيف تستخدم Tails"
 msgid "Learn more about Tails"
 msgstr "إطلع أكثر حول Tails"
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "انشاء تخزين دائم"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 #, fuzzy
 msgid "Install, clone, upgrade Tails"
@@ -2241,7 +2251,7 @@ msgstr "التوثيق مطلوب لازالة حزمة من برامجك الا
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr "كلمة السرّ الإدارية"
 
@@ -2267,7 +2277,7 @@ msgid "Disable"
 msgstr "إلغاء"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr "إخفاء هوية عنوان الماك"
 
@@ -2292,7 +2302,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr "لا تقم بإخفاء هوية عنوان الماك"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr "إعدادات الشبكة"
 
@@ -2372,62 +2382,64 @@ msgstr "تم تحميل الإعدادات من التخزين الدائم."
 msgid "Welcome to Tails!"
 msgstr "مرحبا بك إلى تايلز !"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 #, fuzzy
 msgid "_Persistent Storage"
 msgstr "انشاء تخزين دائم"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 #, fuzzy
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr "لتثبيته تلقائيا من تخزينك الدائم عند بدء تيلز."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr "اللغة و المنطقة"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr "الإعدادات الإفتراضية"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-#, fuzzy
-msgid "Encrypted _Persistent Storage"
-msgstr "الذاكرة المستديمة مشفرة"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
 msgid "Show Passphrase"
 msgstr "عرض العبارة السرية"
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
-msgstr "قم بإدخال عبارتك السرية لفك قفل مساحة التخزين الدائم"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "عبارة مرور"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+#, fuzzy
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 "إنّ حيّز التخزين الدائم الخاص بك غير مقفل. قم بإعادة تشغيل تايلز قصد قفله "
 "مجددا."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 #, fuzzy
 msgid "_Additional Settings"
 msgstr "إعدادات إضافية"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr "إضافة إعداد إضافي"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
@@ -2435,11 +2447,11 @@ msgstr ""
 "إن الإعدادات الإفتراضية آمنة في معظم الحالات. إن أردت إضافة ميزة خاصة، إضغط "
 "على زر \"+\" أدناه."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 msgid "Shutdown"
 msgstr "أغلق المتصفح"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 #, fuzzy
 msgid "_Start Tails"
 msgstr "ابدأ تيلز"
@@ -2547,11 +2559,21 @@ msgstr "انشاء تخزين دائم"
 msgid "System Settings"
 msgstr "الإعدادات الإفتراضية"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+#, fuzzy
+msgid "Welcome Screen"
+msgstr "شاشة الترحيب"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 #, fuzzy
 msgid "Activate Welcome Screen"
 msgstr "شاشة الترحيب"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+#, fuzzy
+msgid "Printers"
+msgstr "الطابعات"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 #, fuzzy
 msgid "Activate Printers"
@@ -2587,6 +2609,11 @@ msgstr "جسور Tor"
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "المواقع المخزنة بالمتصفح"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 #, fuzzy
 msgid "Activate Tor Browser Bookmarks"
@@ -2821,11 +2848,11 @@ msgstr "_إلغاء القفل"
 msgid "Detach this volume"
 msgstr "فصل هذا الحجم"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr "وحدة التخزين المحمولة"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr "إعادة النتصيب (يتم حذف كافة البيانات)"
 
@@ -3392,6 +3419,13 @@ msgstr "ديسمبر"
 msgid "Clock"
 msgstr "ساعة"
 
+#, fuzzy
+#~ msgid "Encrypted _Persistent Storage"
+#~ msgstr "الذاكرة المستديمة مشفرة"
+
+#~ msgid "Enter your passphrase to unlock the persistent storage"
+#~ msgstr "قم بإدخال عبارتك السرية لفك قفل مساحة التخزين الدائم"
+
 #, python-format
 #~ msgid ""
 #~ "<h1>Help us fix your bug!</h1>\n"
diff --git a/po/ast.po b/po/ast.po
index 2893441165d..260771239b1 100644
--- a/po/ast.po
+++ b/po/ast.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
 "PO-Revision-Date: 2023-01-25 11:39+0000\n"
 "Last-Translator: emma peel <emma.peel@riseup.net>\n"
 "Language-Team: Asturian <https://hosted.weblate.org/projects/tor/tails-gui/"
@@ -438,9 +438,9 @@ msgid "Additional Settings"
 msgstr ""
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #, fuzzy
 msgid "Cancel"
@@ -513,11 +513,11 @@ msgstr ""
 msgid "Off (default)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
-msgid "Persistent Storage Not Unlocked"
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+msgid "Persistent Storage Still Locked"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 #, fuzzy
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
@@ -525,15 +525,15 @@ msgstr ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
-msgid "Continue Without Persistent Storage"
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
+msgid "Start Without Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 msgid "Don't _Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 msgid "_Create Persistent Storage"
 msgstr ""
@@ -553,7 +553,6 @@ msgstr ""
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr ""
 
@@ -770,7 +769,7 @@ msgstr ""
 msgid "Synchronizing data on disk..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
@@ -778,63 +777,63 @@ msgstr ""
 "Fallu: Nun pudo etiquetase u obtener el UUID del so preséu. Nun se puede "
 "siguir."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -842,14 +841,14 @@ msgid ""
 "a different model."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
 "%(size)s GB is required)."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -857,76 +856,76 @@ msgid ""
 "%(dl_url)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
 "The persistent storage on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
 "All data on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr ""
@@ -1009,7 +1008,7 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1069,144 +1068,144 @@ msgstr ""
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
 "log to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 #, fuzzy
 msgid "Configure"
 msgstr "Configure"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "Desaniciar"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr ""
 
@@ -1337,19 +1336,19 @@ msgid ""
 msgstr ""
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1357,11 +1356,11 @@ msgid ""
 "software."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr ""
 
@@ -1690,32 +1689,32 @@ msgstr ""
 msgid "Choose File Container"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 #, fuzzy
 msgid "_Cancel"
 msgstr "Cancel"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 #, fuzzy
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
@@ -1724,60 +1723,60 @@ msgstr ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
 "network."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr ""
 
@@ -1937,6 +1936,7 @@ msgid "Tails documentation"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 msgid "Persistent Storage"
 msgstr ""
@@ -1963,6 +1963,15 @@ msgstr ""
 msgid "Learn more about Tails"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+msgid "Back Up Persistent Storage"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr ""
@@ -2029,7 +2038,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr ""
 
@@ -2053,7 +2062,7 @@ msgid "Disable"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr ""
 
@@ -2074,7 +2083,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr ""
 
@@ -2133,68 +2142,70 @@ msgstr ""
 msgid "Welcome to Tails!"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 msgid "_Persistent Storage"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 #, fuzzy
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr "Tails is configuring your Persistent Storage. Please wait..."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
 msgid "Show Passphrase"
 msgstr ""
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "Pallabra clave:"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 #, fuzzy
 msgid "Shutdown"
 msgstr "Shutdown"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr ""
 
@@ -2292,10 +2303,18 @@ msgstr ""
 msgid "System Settings"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+msgid "Welcome Screen"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 msgid "Activate Welcome Screen"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+msgid "Printers"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 msgid "Activate Printers"
 msgstr ""
@@ -2328,6 +2347,11 @@ msgstr ""
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "Navegador Tor"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 msgid "Activate Tor Browser Bookmarks"
 msgstr ""
@@ -2542,11 +2566,11 @@ msgstr ""
 msgid "Detach this volume"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr ""
 
diff --git a/po/az.po b/po/az.po
index 4da9f1af5e3..8aa233fbcfe 100644
--- a/po/az.po
+++ b/po/az.po
@@ -8,8 +8,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
-"PO-Revision-Date: 2023-01-26 19:00+0000\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
+"PO-Revision-Date: 2023-02-27 06:53+0000\n"
 "Last-Translator: emma peel <emma.peel@riseup.net>\n"
 "Language-Team: Azerbaijani <https://hosted.weblate.org/projects/tor/tails-"
 "gui/az/>\n"
@@ -314,7 +314,7 @@ msgstr ""
 "For more information about this new version, go to {details_url}\n"
 "\n"
 "It is impossible to do an automatic upgrade of your Tails to this new "
-"version.\n"
+"version: {explanation}\n"
 "\n"
 "To learn how to do a manual upgrade, go to {manual_upgrade_url}"
 
@@ -464,9 +464,9 @@ msgid "Additional Settings"
 msgstr ""
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "Ləğv et"
@@ -538,12 +538,12 @@ msgstr ""
 msgid "Off (default)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
 #, fuzzy
-msgid "Persistent Storage Not Unlocked"
+msgid "Persistent Storage Still Locked"
 msgstr "Davamlılıq həcmininn kilidi açılmamışdır."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 #, fuzzy
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
@@ -551,17 +551,17 @@ msgstr ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
 #, fuzzy
-msgid "Continue Without Persistent Storage"
+msgid "Start Without Persistent Storage"
 msgstr "Davamlı həcm silinir..."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 #, fuzzy
 msgid "Don't _Create Persistent Storage"
 msgstr "Davamlı həcm silinir..."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 msgid "_Create Persistent Storage"
 msgstr ""
@@ -581,7 +581,6 @@ msgstr ""
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr ""
 
@@ -802,7 +801,7 @@ msgstr "Ötürücüdə qısaqapanma var, MBR yenilənməsini ötürür"
 msgid "Synchronizing data on disk..."
 msgstr "Diskdəki məlumatın sinxronlaşdırılması..."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
@@ -810,63 +809,63 @@ msgstr ""
 "Xəta: Ötürücün üçün etiket təyin və ya UUID əldə edə bilmir. Davam etmək "
 "mümkün deyil."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr "Quraşdırma tamamlandı! (%s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr "YenilÉ™"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -874,14 +873,14 @@ msgid ""
 "a different model."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
 "%(size)s GB is required)."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -889,71 +888,71 @@ msgid ""
 "%(dl_url)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr "Quraşdırma tamamlandı!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr "Ötürücünün quraşdırılması alınmır"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
 "The persistent storage on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
 "All data on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
 msgstr ""
 "Seçilmiş fayl oxunmur. Lütfən, onun icazələrini düzəlt, ya da başqa fayl seç."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
@@ -961,7 +960,7 @@ msgstr ""
 "Seçilmiş faylın istifadəsi alınmır. ISO-nu əsas yaddaşa köçürsən (məs., C:"
 "\\) daha çox şansın olar."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr "%(filename)s seçilmişdir"
@@ -1044,7 +1043,7 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1106,143 +1105,143 @@ msgstr "qeyri mümkün"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
 "log to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "Quraşdır"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "Sil"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "Sənədlər"
 
@@ -1373,19 +1372,19 @@ msgid ""
 msgstr ""
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr "xəta:"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr "Təhlükə: virtual dəzgah müəyyənləşdirilib!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1393,11 +1392,11 @@ msgid ""
 "software."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr ""
 
@@ -1726,32 +1725,32 @@ msgstr ""
 msgid "Choose File Container"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 #, fuzzy
 msgid "_Cancel"
 msgstr "Ləğv et"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 #, fuzzy
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
@@ -1760,27 +1759,27 @@ msgstr ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr "Təhlükəli Brauzerin açılması..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr "Bu bir qədər vaxt ala bilər, lütfən, səbrli ol."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr "Təhlükəli Brauzerin bağlanması..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
@@ -1788,13 +1787,13 @@ msgstr ""
 "Bu bir qədər vaxt ala bilər və ola bilsin o tam bağlanana qədər sən "
 "Təhlükəli Brauzeri bağlaya bilməzsən."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr "Təhlükəli Brauzer"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
@@ -1802,22 +1801,22 @@ msgstr ""
 "Digər Təhlükəli Brauzer hazırda işləyir, ya da təmizlənir. Lütfən, birazdan "
 "yenidən sına."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr "Chroot-un quraşdırılması alınmadı."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
 "network."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr ""
 
@@ -1994,6 +1993,7 @@ msgid "Tails documentation"
 msgstr "Tails sənədləşməsi"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 msgid "Persistent Storage"
 msgstr ""
@@ -2020,6 +2020,16 @@ msgstr "Tails-i necə istifadə edəcəyini öyrən"
 msgid "Learn more about Tails"
 msgstr "Tails haqqında daha ətraflı öyrən"
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "Davamlı həcm silinir..."
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr ""
@@ -2086,7 +2096,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr ""
 
@@ -2110,7 +2120,7 @@ msgid "Disable"
 msgstr "Söndür"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr ""
 
@@ -2131,7 +2141,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr ""
 
@@ -2192,67 +2202,69 @@ msgstr ""
 msgid "Welcome to Tails!"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 msgid "_Persistent Storage"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 #, fuzzy
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr "Tails is configuring your Persistent Storage. Please wait..."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
 msgid "Show Passphrase"
 msgstr ""
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "Köməkçi ifadə:"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 msgid "Shutdown"
 msgstr "Söndür"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr ""
 
@@ -2354,10 +2366,19 @@ msgstr "Davamlı həcm yaradılır..."
 msgid "System Settings"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+msgid "Welcome Screen"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 msgid "Activate Welcome Screen"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+#, fuzzy
+msgid "Printers"
+msgstr "Printerlər"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 #, fuzzy
 msgid "Activate Printers"
@@ -2393,6 +2414,11 @@ msgstr "Tor Brauzerini BaÅŸlat"
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "Tor Brauzerini BaÅŸlat"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 #, fuzzy
 msgid "Activate Tor Browser Bookmarks"
@@ -2612,11 +2638,11 @@ msgstr ""
 msgid "Detach this volume"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr ""
 
diff --git a/po/be.po b/po/be.po
index 80bb1fe0aad..c5dfa2cf733 100644
--- a/po/be.po
+++ b/po/be.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
 "PO-Revision-Date: 2023-01-25 11:39+0000\n"
 "Last-Translator: emma peel <emma.peel@riseup.net>\n"
 "Language-Team: Belarusian <https://hosted.weblate.org/projects/tor/tails-gui/"
@@ -450,9 +450,9 @@ msgid "Additional Settings"
 msgstr ""
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #, fuzzy
 msgid "Cancel"
@@ -525,11 +525,11 @@ msgstr "Выкл."
 msgid "Off (default)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
-msgid "Persistent Storage Not Unlocked"
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+msgid "Persistent Storage Still Locked"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 #, fuzzy
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
@@ -537,15 +537,15 @@ msgstr ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
-msgid "Continue Without Persistent Storage"
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
+msgid "Start Without Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 msgid "Don't _Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 msgid "_Create Persistent Storage"
 msgstr ""
@@ -565,7 +565,6 @@ msgstr ""
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr ""
 
@@ -783,69 +782,69 @@ msgstr ""
 msgid "Synchronizing data on disk..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -853,14 +852,14 @@ msgid ""
 "a different model."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
 "%(size)s GB is required)."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -868,76 +867,76 @@ msgid ""
 "%(dl_url)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
 "The persistent storage on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
 "All data on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr ""
@@ -1020,7 +1019,7 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1080,143 +1079,143 @@ msgstr ""
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
 "log to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "Наладзіць"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "Прыбраць"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "Дакументацыя"
 
@@ -1347,19 +1346,19 @@ msgid ""
 msgstr ""
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1367,11 +1366,11 @@ msgid ""
 "software."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr "Даведацца больш"
 
@@ -1700,32 +1699,32 @@ msgstr ""
 msgid "Choose File Container"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 #, fuzzy
 msgid "_Cancel"
 msgstr "Cancel"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 #, fuzzy
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
@@ -1734,60 +1733,60 @@ msgstr ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
 "network."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr ""
 
@@ -1947,6 +1946,7 @@ msgid "Tails documentation"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 msgid "Persistent Storage"
 msgstr ""
@@ -1973,6 +1973,15 @@ msgstr ""
 msgid "Learn more about Tails"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+msgid "Back Up Persistent Storage"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr ""
@@ -2039,7 +2048,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr ""
 
@@ -2063,7 +2072,7 @@ msgid "Disable"
 msgstr "Адключыць"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr ""
 
@@ -2084,7 +2093,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr ""
 
@@ -2143,68 +2152,70 @@ msgstr ""
 msgid "Welcome to Tails!"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 msgid "_Persistent Storage"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 #, fuzzy
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr "Tails is configuring your Persistent Storage. Please wait..."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
 msgid "Show Passphrase"
 msgstr ""
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "Пароль:"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 #, fuzzy
 msgid "Shutdown"
 msgstr "Shutdown"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr ""
 
@@ -2302,10 +2313,18 @@ msgstr ""
 msgid "System Settings"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+msgid "Welcome Screen"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 msgid "Activate Welcome Screen"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+msgid "Printers"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 msgid "Activate Printers"
 msgstr ""
@@ -2338,6 +2357,10 @@ msgstr ""
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+msgid "Tor Browser Bookmarks"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 msgid "Activate Tor Browser Bookmarks"
 msgstr ""
@@ -2553,11 +2576,11 @@ msgstr ""
 msgid "Detach this volume"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr ""
 
diff --git a/po/bg.po b/po/bg.po
index a51068ed359..ff16729ccf5 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -20,8 +20,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
-"PO-Revision-Date: 2023-02-11 10:42+0000\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
+"PO-Revision-Date: 2023-03-05 10:37+0000\n"
 "Last-Translator: emma peel <emma.peel@riseup.net>\n"
 "Language-Team: Bulgarian <https://hosted.weblate.org/projects/tor/tails-gui/"
 "bg/>\n"
@@ -30,7 +30,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.16-dev\n"
+"X-Generator: Weblate 4.16.2-dev\n"
 
 #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1
@@ -408,7 +408,7 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:770
 msgid "Restart Tails"
-msgstr "Рестартирай Tails "
+msgstr "Рестартирай Tails"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:771
 msgid "Restart now"
@@ -474,9 +474,9 @@ msgid "Additional Settings"
 msgstr "Допълнителни настройки"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "Отказ"
@@ -549,12 +549,12 @@ msgstr "Изкл"
 msgid "Off (default)"
 msgstr "Изкл (подразбиране)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
 #, fuzzy
-msgid "Persistent Storage Not Unlocked"
+msgid "Persistent Storage Still Locked"
 msgstr "Криптирано пространство"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 #, fuzzy
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
@@ -562,17 +562,17 @@ msgstr ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
 #, fuzzy
-msgid "Continue Without Persistent Storage"
+msgid "Start Without Persistent Storage"
 msgstr "Криптирано _пространство"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 #, fuzzy
 msgid "Don't _Create Persistent Storage"
 msgstr "Криптирано _пространство"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 #, fuzzy
 msgid "_Create Persistent Storage"
@@ -595,7 +595,6 @@ msgstr "Отключване..."
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr "Отключване"
 
@@ -819,7 +818,7 @@ msgstr "Устройство е примка,прескача нулиране 
 msgid "Synchronizing data on disk..."
 msgstr "Синхронизиране на данните на диска ..."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
@@ -827,63 +826,63 @@ msgstr ""
 "Грешка: Не може да се зададе на етикета или да получите UUID на вашето "
 "устройство. Неспособен да продължи."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr "Инсталацията е извършена! (%s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr "Инсталацията е неуспешна!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr "Tails Инсталатор"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr "Клонирай текущия Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr "Използвай свалена Tails ISO image:"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr "Обновяване на версията"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr "Инсталиране"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr "Инструкции за инсталация"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(size)s %(vendor)s %(model)s устройство (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr "Не е избрана ISO image"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr "Моля изберете Tails ISO image."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -894,7 +893,7 @@ msgstr ""
 "производителя ѝ и Tails няма да успее да стартира на нея. Моля, опитайте на "
 "различен модел."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
@@ -903,7 +902,7 @@ msgstr ""
 "Устройството \"%(pretty_name)s\" е твърде малко, за да инсталирате Tails "
 "(най-малко %(size)s GB се изисква)."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -911,64 +910,64 @@ msgid ""
 "%(dl_url)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr "Не е открито устройство, на което може да бъде инсталиран Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr "Моля, прикачете USB флашка или SD карта с поне %0.1f ГБ."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr "Възникна грешка по времен на инсталацията на Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr "Инсталацията е извършена!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr "Не може да се монтира устройство"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(parent_size)s %(vendor)s %(model)s устройство (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
 "The persistent storage on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
 "All data on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr "Потвърдете избраната USB флашка"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
@@ -976,7 +975,7 @@ msgstr ""
 "Избраният файл не може да бъде прочетен. Моля, поправете правата върху него, "
 "или изберете друг файл."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
@@ -984,7 +983,7 @@ msgstr ""
 "Невъзможност за използване на избрания файл. Може да имате по-голям късмет, "
 "ако се движите ISO до root на вашия диск (ie: C:\\)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr "%(filename)s избрано"
@@ -1067,7 +1066,7 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1133,143 +1132,143 @@ msgstr "не е в наличност"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
 "log to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr "Покажи Лог"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "Конфигурирай"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "Премахване"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr "Това може да отнеме няколко минути."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "Документация"
 
@@ -1400,19 +1399,19 @@ msgid ""
 msgstr ""
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr "грешка:"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr "Внимание: открита е виртуална машина!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr "Внимание: открита е виртуална машина със защитени права!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1424,11 +1423,11 @@ msgstr ""
 "надежден, както за операционната система домакин така и за софтуера за "
 "виртуализация."
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr "Научи Повече"
 
@@ -1757,32 +1756,32 @@ msgstr ""
 msgid "Choose File Container"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 #, fuzzy
 msgid "_Cancel"
 msgstr "_Отказ"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 #, fuzzy
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
@@ -1791,27 +1790,27 @@ msgstr ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr "Рестартирай Сега"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr "Стартриране на Несигурният Браузър..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr "Това може да отнеме време,моля имайте търпение."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr "Изключване на Несигурният Браузър..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
@@ -1819,13 +1818,13 @@ msgstr ""
 "Това може да отнеме време,моля не рестартирайте Несигурният Браузър преди "
 "той да е правилно изключен."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr "Несигурен Браузър"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
@@ -1833,22 +1832,22 @@ msgstr ""
 "Друг Несигурен Браузър работи или се почиства в момента.Моля опитайте по-"
 "късно."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr "Не можа да се установи chroot."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr "Неуспех при настройката на браузъра."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
 "network."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr "Неуспех при пускането на браузъра."
 
@@ -2022,6 +2021,7 @@ msgid "Tails documentation"
 msgstr "Tails документация"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 msgid "Persistent Storage"
 msgstr "Криптирано пространство"
@@ -2048,6 +2048,16 @@ msgstr "Научете се как да използвате Tails"
 msgid "Learn more about Tails"
 msgstr "Научете повече за Tails"
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "Криптирано пространство"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr ""
@@ -2115,7 +2125,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr "Администраторска парола"
 
@@ -2142,7 +2152,7 @@ msgid "Disable"
 msgstr "Деактивиране"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr ""
 
@@ -2163,7 +2173,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr "Настройки на мрежата"
 
@@ -2224,60 +2234,63 @@ msgstr ""
 msgid "Welcome to Tails!"
 msgstr "Добре дошли в Tails!"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 #, fuzzy
 msgid "_Persistent Storage"
 msgstr "Криптирано _пространство"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 #, fuzzy
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr "Tails is configuring your Persistent Storage. Please wait..."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr "Език & регион"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr "Настройки по подразбиране"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
-msgstr "Криптирано _пространство"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
 msgid "Show Passphrase"
 msgstr "Покажи паролата"
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
-msgstr "Въведете паролата за отключване на постоянното дисково пространство"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "Тайна фраза:"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+#, fuzzy
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 "Вашето дисково пространство е отключено. Рестартирайте Tails,  за да го "
 "заключите отново."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr "_Допълнителни настройки"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr "Добавяне на допълнителни настройки"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
@@ -2285,11 +2298,11 @@ msgstr ""
 "Настройките по подразбиране са безопасни в повечето ситуации. За да зададете "
 "ръчни настройки натиснете \"+\" бутонът по-долу."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 msgid "Shutdown"
 msgstr "Изключване"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr "_Стартиране на Tails"
 
@@ -2394,10 +2407,20 @@ msgstr "Криптирано _пространство"
 msgid "System Settings"
 msgstr "Настройки по подразбиране"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+#, fuzzy
+msgid "Welcome Screen"
+msgstr "Заключен екран"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 msgid "Activate Welcome Screen"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+#, fuzzy
+msgid "Printers"
+msgstr "Принтери"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 #, fuzzy
 msgid "Activate Printers"
@@ -2433,6 +2456,11 @@ msgstr "Стартирай Tor Браузър"
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "Стартирай Tor Браузър"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 #, fuzzy
 msgid "Activate Tor Browser Bookmarks"
@@ -2617,9 +2645,8 @@ msgid "_Change Passphrase..."
 msgstr "Покажи паролата"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:66
-#, fuzzy
 msgid "_Restart Tails"
-msgstr "Рестартирай Tails "
+msgstr "_Рестартирай Tails"
 
 #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:61
 msgid "File Containers"
@@ -2659,11 +2686,11 @@ msgstr ""
 msgid "Detach this volume"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr "Инсталиране на USB флашка:"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr "Преинсталирай (изтрива цялата информация)"
 
@@ -3156,6 +3183,12 @@ msgstr ""
 msgid "Clock"
 msgstr ""
 
+#~ msgid "Encrypted _Persistent Storage"
+#~ msgstr "Криптирано _пространство"
+
+#~ msgid "Enter your passphrase to unlock the persistent storage"
+#~ msgstr "Въведете паролата за отключване на постоянното дисково пространство"
+
 #, python-format
 #~ msgid ""
 #~ "<h1>Help us fix your bug!</h1>\n"
diff --git a/po/bn.po b/po/bn.po
index 53c1b4d6641..42d1b27ea0a 100644
--- a/po/bn.po
+++ b/po/bn.po
@@ -11,8 +11,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
-"PO-Revision-Date: 2023-01-27 10:38+0000\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
+"PO-Revision-Date: 2023-03-05 10:37+0000\n"
 "Last-Translator: emma peel <emma.peel@riseup.net>\n"
 "Language-Team: Bengali <https://hosted.weblate.org/projects/tor/tails-gui/bn/"
 ">\n"
@@ -21,7 +21,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Weblate 4.16-dev\n"
+"X-Generator: Weblate 4.16.2-dev\n"
 
 #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1
@@ -478,9 +478,9 @@ msgid "Additional Settings"
 msgstr "অতিরিক্ত বিন্যাস"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "বাতিল"
@@ -554,28 +554,28 @@ msgstr "বন্ধ"
 msgid "Off (default)"
 msgstr "বন্ধ (ডিফল্ট)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
 #, fuzzy
-msgid "Persistent Storage Not Unlocked"
+msgid "Persistent Storage Still Locked"
 msgstr "অবিরাম স্টোরেজ তৈরি করুন"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 #, fuzzy
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
 msgstr "স্থায়ী সঞ্চয়স্থান আনলক করতে আপনার পাসফ্রেজটি লিখুন"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
 #, fuzzy
-msgid "Continue Without Persistent Storage"
+msgid "Start Without Persistent Storage"
 msgstr "অবিরাম স্টোরেজ তৈরি করুন"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 #, fuzzy
 msgid "Don't _Create Persistent Storage"
 msgstr "অবিরাম স্টোরেজ তৈরি করুন"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 #, fuzzy
 msgid "_Create Persistent Storage"
@@ -598,7 +598,6 @@ msgstr "আনলক করা হচ্ছে ..."
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr "আনলক করুন"
 
@@ -785,7 +784,7 @@ msgstr "সরানো হচ্ছে %(file)s"
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:1019
 #, python-format
 msgid "%s already bootable"
-msgstr "%s ইতিমধ্যে বুটযোগ্য "
+msgstr "%s ইতিমধ্যে বুটযোগ্য"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:1039
 msgid "Unable to find partition"
@@ -820,7 +819,7 @@ msgstr "ড্রাইভ একটি লুপব্যাক, MBR রিস
 msgid "Synchronizing data on disk..."
 msgstr "ডিস্কের ডেটা সিঙ্ক্রোনাইজ করা হচ্ছে ..."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
@@ -828,63 +827,63 @@ msgstr ""
 "ত্রুটি: লেবেল সেট করা বা আপনার ডিভাইসের UUID প্রাপ্ত করতে পারে না। অবিরত করতে "
 "অক্ষম"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr "ইনস্টলেশন সম্পূর্ণ! (%s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr "Tails ইনস্টলেশন ব্যর্থ হয়েছে!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr "Tails ইনস্টলার"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr "বর্তমান Tails ক্লোন করুন"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr "একটি ডাউনলোড করা Tails ISO ইমেজ ব্যবহার করুন"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr "আপগ্রেড"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr "ম্যানুয়াল উচ্চায়ন নির্দেশনা"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr "ইনস্টল করুন"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr "সংস্থাপনের নির্দেশনা"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(size)s %(vendor)s %(model)s যন্ত্র (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr "কোন ISO ইমেজ নির্বাচিত নেই"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr "একটি Tails ISO ইমেজ নির্বাচন করুন"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -895,7 +894,7 @@ msgstr ""
 "কনফিগার করা হয় এবং টালি এটি চালু করতে ব্যর্থ হবে। একটি ভিন্ন মডেল ইনস্টল করার "
 "চেষ্টা করুন।"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
@@ -904,7 +903,7 @@ msgstr ""
 "ডিভাইস \"%(pretty_name)s\" টিল ইনস্টল করার জন্য খুব ছোট হয় (কমপক্ষে %(size)s "
 "গিগাবাইট প্রয়োজন)।"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -912,64 +911,64 @@ msgid ""
 "%(dl_url)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr "Tails ইনস্টল করার উপযুক্ত কোন ডিভাইস পাওয়া যায়নি"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr "কমপক্ষে %0.1f গিগাবাইটের একটি USB ফ্ল্যাশ ড্রাইভ অথবা SD কার্ড প্লাগ করুন।"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr "পুচ্ছ ইনস্টল করার সময় একটি ত্রুটি ঘটেছে"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr "ইনস্টলেশন সম্পূর্ণ!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr "ডিভাইস মাউন্ট করতে অক্ষম"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, fuzzy, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
 "The persistent storage on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
 "All data on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr "লক্ষ্য USB স্টিক নিশ্চিত করুন"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
@@ -977,7 +976,7 @@ msgstr ""
 "নির্বাচিত ফাইল অপঠিত হয়। অনুগ্রহ করে তার অনুমতিগুলি 'permissions' ঠিক করুন বা অন্য "
 "ফাইলটি নির্বাচন করুন।"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
@@ -985,10 +984,10 @@ msgstr ""
 "নির্বাচিত ফাইলটি ব্যবহার করতে অক্ষম। আপনি যদি আপনার আইএসওকে আপনার ড্রাইভের মূল "
 "রুটে স্থানান্তর করতে চান তবে আপনার ভাল ভাগ্য হতে পারে (অর্থাৎ: C:\\)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
-msgstr "%(filename)s নির্বাচিত "
+msgstr "%(filename)s নির্বাচিত"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/source.py:31
 msgid "Unable to find Tails on ISO"
@@ -1060,7 +1059,7 @@ msgstr "su অক্ষমিত। এর পরিবর্তে sudo ব্
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1126,7 +1125,7 @@ msgstr "পাওয়া যায় না"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -1135,7 +1134,7 @@ msgstr ""
 "{details} অনুগ্রহ করে আপনার অতিরিক্ত সফটওয়্যারের তালিকা পরীক্ষা করুন অথবা সমস্যা "
 "বুঝে সিস্টেম কার্যবিবরণী পড়ুন ।"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
@@ -1143,55 +1142,55 @@ msgstr ""
 "অনুগ্রহ করে আপনার অতিরিক্ত সফটওয়্যারের তালিকা পরীক্ষা করুন অথবা সমস্যা বুঝে সিস্টেম "
 "কার্যবিবরণী পড়ুন ।"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr "লগ প্রদর্শন করুন"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "কনফিগার করুন"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} এবং {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ", "
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "আপনার অতিরিক্ত সফটওয়্যারের জন্য {packages} যোগ করুন?"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 "Tails শুরু করার সময় আপনার অবিরাম সঞ্চয় থেকে স্বয়ংক্রিয়ভাবে এটি ইনস্টল করতে হবে ।"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr "প্রতিবার ইনস্টল করুন"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr "শুধুমাত্র একবার সংস্থাপন করুন"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr "আপনার অতিরিক্ত সফটওয়্যারের কনফিগারেশন ব্যর্থ হয়েছে ।"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -1199,67 +1198,67 @@ msgstr ""
 "Tails শুরু করার সময় স্বয়ংক্রিয়ভাবে এটি সংস্থাপন করতে, আপনি একটি একরোখা স্টোরেজ "
 "তৈরি করতে পারেন এবং <b>অতিরিক্ত সফটওয়্যার</b> বৈশিষ্ট্য সক্রিয় করতে পারবেন ।"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr "অবিরাম স্টোরেজ তৈরি করুন"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr "আপনার একরোখা ভাণ্ডার তৈরি করা ব্যর্থ হয়েছে ।"
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr "Tails শুরু করার সময় আপনি {packages}-এ ইনস্টল করতে পারেন"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "আপনার অতিরিক্ত সফ্টওয়্যার থেকে {packages} অপসারণ করুন?"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr "এটি স্বয়ংক্রিয়ভাবে {packages} ইনস্টল করা বন্ধ করবে ।"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "অপসারণ"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr "আপনার অতিরিক্ত সফটওয়্যারকে একরোখা স্টোরেজ থেকে সংস্থাপন করা হচ্ছে..."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr "এটি কয়েক মিনিট সময় নিতে পারে ।"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr "আপনার অতিরিক্ত সফটওয়্যারের ইনস্টলেশন ব্যর্থ হয়েছে"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr "অতিরিক্ত সফ্টওয়্যার সফলভাবে সংস্থাপিত হয়েছে"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr "আপনার অতিরিক্ত সফটওয়্যারের আপগ্রেড করার জন্য পরীক্ষণ ব্যর্থ হয়েছে"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -1267,11 +1266,11 @@ msgstr ""
 "অনুগ্রহ করে আপনার নেটওয়ার্ক কানেকশান চেক করুন, Tails পুনর্সূচনা করুন বা সিস্টেম লগ-ইন "
 "সমস্যা বোঝার জন্য পড়ুন."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr "আপনার অতিরিক্ত সফটওয়্যারের উচ্চায়ন ব্যর্থ হয়েছে"
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "ডকুমেন্টেশন"
 
@@ -1414,19 +1413,19 @@ msgid ""
 msgstr ""
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr "ত্রুটি:"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr "সতর্কতা: ভার্চুয়াল মেশিন সনাক্ত!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr "সতর্কতা: অ-মুক্ত ভার্চুয়াল মেশিন সনাক্ত!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1437,11 +1436,11 @@ msgstr ""
 "করছেন তা নিরীক্ষণ করতে সক্ষম। হোস্ট অপারেটিং সিস্টেম এবং ভার্চুয়ালাইজেশন সফ্টওয়্যার "
 "উভয়ের জন্য শুধুমাত্র ফ্রি সফ্টওয়্যার নির্ভরযোগ্য বলে মনে করা যেতে পারে।"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr "আরও জানুন"
 
@@ -1777,57 +1776,57 @@ msgstr ""
 msgid "Choose File Container"
 msgstr "ফাইল ধারক চয়ন করুন"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 msgid "_Cancel"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr "অসুরক্ষিত ব্রাউজার শুরু হচ্ছে ..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr "এটি একটি সময় নিতে পারে, তাই ধৈর্য থাকুন।"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr "অসুরক্ষিত ব্রাউজার বন্ধ করা হচ্ছে ..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
@@ -1835,13 +1834,13 @@ msgstr ""
 "এটি একটি সময় নিতে পারে, এবং আপনি সঠিকভাবে বন্ধ না হওয়া পর্যন্ত অনিরাপদ "
 "ব্রাউজারটি পুনরায় চালু করতে পারবেন না।"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr "অসুরক্ষিত ব্রাউজার"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
@@ -1849,22 +1848,22 @@ msgstr ""
 "অন্য একটি অনিরাপদ ব্রাউজার বর্তমানে চলছে বা পরিষ্কার হচ্ছে। কিছুক্ষণের মধ্যে পুনরায় "
 "চেষ্টা করুন।"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr "সেটআপ ক্রুটোতে ব্যর্থ হয়েছে"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr "ব্রাউজার কনফিগার করতে ব্যর্থ"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
 "network."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr "ব্রাউজার চালাতে ব্যর্থ হয়েছে"
 
@@ -2036,6 +2035,7 @@ msgid "Tails documentation"
 msgstr "টাইল ডকুমেন্টেশন"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 #, fuzzy
 msgid "Persistent Storage"
@@ -2064,6 +2064,16 @@ msgstr "Tails ব্যবহার কিভাবে শিখুন?"
 msgid "Learn more about Tails"
 msgstr "Tails সম্পর্কে আরও জানুন"
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "অবিরাম স্টোরেজ তৈরি করুন"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr ""
@@ -2132,7 +2142,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr "প্রশাসন পাসওয়ার্ড"
 
@@ -2158,7 +2168,7 @@ msgid "Disable"
 msgstr "টর অক্ষম"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr ""
 
@@ -2179,7 +2189,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr "নেটওয়ার্ক কনফিগারেশন"
 
@@ -2240,60 +2250,63 @@ msgstr ""
 msgid "Welcome to Tails!"
 msgstr "Tails এ স্বাগতম!"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 #, fuzzy
 msgid "_Persistent Storage"
 msgstr "অবিরাম স্টোরেজ তৈরি করুন"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 #, fuzzy
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr ""
 "Tails শুরু করার সময় আপনার অবিরাম সঞ্চয় থেকে স্বয়ংক্রিয়ভাবে এটি ইনস্টল করতে হবে ।"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr "ভাষা ও অঞ্চল"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr "ডিফল্ট সেটিংস"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
-msgstr "এনক্রিপ্ট করা _Persistent Storage"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
 msgid "Show Passphrase"
 msgstr "পাসফ্রেজ দেখান"
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
-msgstr "স্থায়ী সঞ্চয়স্থান আনলক করতে আপনার পাসফ্রেজটি লিখুন"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "পাসফ্রেজ:"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+#, fuzzy
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr "আপনার স্থায়ী সঞ্চয়স্থান আনলক হয়। আবার এটি লক করার জন্য পুশ পুনরারন।"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 #, fuzzy
 msgid "_Additional Settings"
 msgstr "_Additional Settings"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr "অতিরিক্ত সেটিংস সংরক্ষণ করুন"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
@@ -2301,11 +2314,11 @@ msgstr ""
 "অধিকাংশ পরিস্থিতিতে ডিফল্ট সেটিংস নিরাপদ। একটি কাস্টম সেটিং যোগ করতে, নীচের \"+"
 "\" বোতাম টিপুন।"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 msgid "Shutdown"
 msgstr "শাটডাউন"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr "_Start Tails"
 
@@ -2412,10 +2425,20 @@ msgstr "অবিরাম স্টোরেজ তৈরি করুন"
 msgid "System Settings"
 msgstr "ডিফল্ট সেটিংস"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+#, fuzzy
+msgid "Welcome Screen"
+msgstr "লক স্ক্রিন"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 msgid "Activate Welcome Screen"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+#, fuzzy
+msgid "Printers"
+msgstr "Printers"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 #, fuzzy
 msgid "Activate Printers"
@@ -2451,6 +2474,11 @@ msgstr "টর ব্রাউজার শুরু করুন"
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "ব্রাউজারের বুকমার্ক"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 #, fuzzy
 msgid "Activate Tor Browser Bookmarks"
@@ -2680,11 +2708,11 @@ msgstr "_আনলক করুন"
 msgid "Detach this volume"
 msgstr "এই ভলিউমটি বিচ্ছিন্ন করুন"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr "টার্গেট USB স্টিক:"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr "পুনরায় ইনস্টল করুন (সমস্ত ডেটা মুছুন)"
 
@@ -3193,6 +3221,12 @@ msgstr ""
 msgid "Clock"
 msgstr ""
 
+#~ msgid "Encrypted _Persistent Storage"
+#~ msgstr "এনক্রিপ্ট করা _Persistent Storage"
+
+#~ msgid "Enter your passphrase to unlock the persistent storage"
+#~ msgstr "স্থায়ী সঞ্চয়স্থান আনলক করতে আপনার পাসফ্রেজটি লিখুন"
+
 #, python-format
 #~ msgid ""
 #~ "<h1>Help us fix your bug!</h1>\n"
diff --git a/po/br.po b/po/br.po
index f4685fe068c..fc96dff5323 100644
--- a/po/br.po
+++ b/po/br.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
 "PO-Revision-Date: 2023-01-25 11:39+0000\n"
 "Last-Translator: emma peel <emma.peel@riseup.net>\n"
 "Language-Team: Breton <https://hosted.weblate.org/projects/tor/tails-gui/br/"
@@ -458,9 +458,9 @@ msgid "Additional Settings"
 msgstr ""
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #, fuzzy
 msgid "Cancel"
@@ -533,24 +533,24 @@ msgstr ""
 msgid "Off (default)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
-msgid "Persistent Storage Not Unlocked"
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+msgid "Persistent Storage Still Locked"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
-msgid "Continue Without Persistent Storage"
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
+msgid "Start Without Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 msgid "Don't _Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 msgid "_Create Persistent Storage"
 msgstr ""
@@ -570,7 +570,6 @@ msgstr ""
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr ""
 
@@ -787,69 +786,69 @@ msgstr ""
 msgid "Synchronizing data on disk..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -857,14 +856,14 @@ msgid ""
 "a different model."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
 "%(size)s GB is required)."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -872,76 +871,76 @@ msgid ""
 "%(dl_url)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
 "The persistent storage on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
 "All data on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr ""
@@ -1016,7 +1015,7 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1076,143 +1075,143 @@ msgstr ""
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
 "log to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "Kefluniañ"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "Dilemel"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr ""
 
@@ -1343,19 +1342,19 @@ msgid ""
 msgstr ""
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1363,11 +1362,11 @@ msgid ""
 "software."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr "Gouzout hiroc'h"
 
@@ -1694,90 +1693,90 @@ msgstr ""
 msgid "Choose File Container"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 msgid "_Cancel"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
 "network."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr ""
 
@@ -1937,6 +1936,7 @@ msgid "Tails documentation"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 msgid "Persistent Storage"
 msgstr ""
@@ -1963,6 +1963,15 @@ msgstr ""
 msgid "Learn more about Tails"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+msgid "Back Up Persistent Storage"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr ""
@@ -2029,7 +2038,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr ""
 
@@ -2053,7 +2062,7 @@ msgid "Disable"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr ""
 
@@ -2074,7 +2083,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr ""
 
@@ -2133,67 +2142,68 @@ msgstr ""
 msgid "Welcome to Tails!"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 msgid "_Persistent Storage"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
+msgid "Show Passphrase"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
-msgid "Show Passphrase"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+msgid "_Passphrase"
 msgstr ""
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 #, fuzzy
 msgid "Shutdown"
 msgstr "Shutdown"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr ""
 
@@ -2288,10 +2298,18 @@ msgstr ""
 msgid "System Settings"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+msgid "Welcome Screen"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 msgid "Activate Welcome Screen"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+msgid "Printers"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 msgid "Activate Printers"
 msgstr ""
@@ -2324,6 +2342,11 @@ msgstr ""
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "Keflusker enklask Tor"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 msgid "Activate Tor Browser Bookmarks"
 msgstr ""
@@ -2536,11 +2559,11 @@ msgstr ""
 msgid "Detach this volume"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr ""
 
diff --git a/po/bs.po b/po/bs.po
index 898fca610ba..df614784335 100644
--- a/po/bs.po
+++ b/po/bs.po
@@ -7,9 +7,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
-"PO-Revision-Date: 2023-01-25 11:39+0000\n"
-"Last-Translator: emma peel <emma.peel@riseup.net>\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
+"PO-Revision-Date: 2023-03-12 03:48+0000\n"
+"Last-Translator: Amar Memis3vic <factoryamar@gmail.com>\n"
 "Language-Team: Bosnian <https://hosted.weblate.org/projects/tor/tails-gui/bs/"
 ">\n"
 "Language: bs\n"
@@ -18,25 +18,29 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
 "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: Weblate 4.16-dev\n"
+"X-Generator: Weblate 4.16.2-dev\n"
 
 #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:557
 msgid "Additional Software"
-msgstr ""
+msgstr "Dodatni softver"
 
 #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:51
 msgid ""
 "You can install additional software automatically from your persistent "
 "storage when starting Tails."
 msgstr ""
+"Dodatni softver možete instalirati automatski iz svoje stalne memorije kada "
+"pokrenete Tails."
 
 #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:77
 msgid ""
 "The following software is installed automatically from your persistent "
 "storage when starting Tails."
 msgstr ""
+"Sljedeći softver se automatski instalira iz vaše trajne memorije kada "
+"pokrenete Tails."
 
 #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
@@ -45,14 +49,17 @@ msgid ""
 "desktop\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal."
 "desktop\">APT on the command line</a>."
 msgstr ""
+"Da biste dodali više, instalirajte neki softver koristeći <a href=\"synaptic."
+"desktop\">Synaptic Package Manager</a> ili <a href=\"org.gnome.Terminal."
+"desktop\">APT-a na komandnoj liniji</a>."
 
 #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
 msgid "_Create persistent storage"
-msgstr ""
+msgstr "_Kreirajte trajnu pohranu"
 
 #: config/chroot_local-includes/usr/local/bin/electrum:72
 msgid "Persistence is disabled for Electrum"
-msgstr ""
+msgstr "Perzistentnost je onemogućena za Electrum"
 
 #: config/chroot_local-includes/usr/local/bin/electrum:74
 msgid ""
@@ -61,103 +68,107 @@ msgid ""
 "It is strongly recommended to only run Electrum when its persistence feature "
 "is activated."
 msgstr ""
+"Kada ponovo pokrenete Tails, svi Electrumovi podaci će biti izgubljeni, "
+"uključujući i vaš Bitcoin novčanik.\n"
+"Izričito se preporučuje pokretanje Electrum-a samo kada je njegova funkcija "
+"postojanosti aktivirana."
 
 #: config/chroot_local-includes/usr/local/bin/electrum:75
 msgid "Do you want to start Electrum anyway?"
-msgstr ""
+msgstr "Da li ipak želite pokrenuti Electrum?"
 
 #: config/chroot_local-includes/usr/local/bin/electrum:78
 msgid "_Launch"
-msgstr ""
+msgstr "_Pokreni"
 
 #: config/chroot_local-includes/usr/local/bin/electrum:79
 msgid "_Exit"
-msgstr ""
+msgstr "_Izlaz"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/DownloadProgress.pm:59
 msgid "Unknown time"
-msgstr ""
+msgstr "Nepoznato vrijeme"
 
 #. Translators: Don't translate {count}, it's a place holder and
 #. will be replaced.
 #. y is the short form for years.
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/DownloadProgress.pm:78
-#, perl-brace-format
+#, fuzzy, perl-brace-format
 msgid "1y"
 msgid_plural "{count}y"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
+msgstr[0] "Jedno"
+msgstr[1] "Nekolicina"
+msgstr[2] "Mnogi"
 
 #. Translators: Don't translate {count}, it's a place holder and
 #. will be replaced.
 #. d is the short form for days.
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/DownloadProgress.pm:82
-#, perl-brace-format
+#, fuzzy, perl-brace-format
 msgid "1d"
 msgid_plural "{count}d"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
+msgstr[0] "{count} d"
+msgstr[1] "{count} d"
+msgstr[2] "{count} d"
 
 #. Translators: Don't translate {count}, it's a place holder and
 #. will be replaced.
 #. h is the short form for hours;
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/DownloadProgress.pm:86
-#, perl-brace-format
+#, fuzzy, perl-brace-format
 msgid "1h"
 msgid_plural "{count}h"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
+msgstr[0] "{count} h"
+msgstr[1] "{count} h"
+msgstr[2] "{count} h"
 
 #. Translators: Don't translate {count}, it's a place holder and
 #. will be replaced.
 #. m is the short form for minutes;
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/DownloadProgress.pm:90
-#, perl-brace-format
+#, fuzzy, perl-brace-format
 msgid "1m"
 msgid_plural "{count}m"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
+msgstr[0] "{count} min"
+msgstr[1] "{count} min"
+msgstr[2] "{count} min"
 
 #. Translators: Don't translate {count}, it's a place holder and
 #. will be replaced.
 #. s is the short form for seconds;
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/DownloadProgress.pm:94
-#, perl-brace-format
+#, fuzzy, perl-brace-format
 msgid "1s"
 msgid_plural "{count}s"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
+msgstr[0] "{count} s"
+msgstr[1] "{count} s"
+msgstr[2] "{count} s"
 
 #. Translators: don't translate {time}, {downloaded}, {size}
 #. and {speed}, they are placeholders and will be replaced.
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/DownloadProgress.pm:139
 #, perl-brace-format
 msgid "#{time} left — {downloaded} of {size} ({speed}/sec)\n"
-msgstr ""
+msgstr "preostalo #{time} – {downloaded} od {size} ({speed}/sec)\n"
 
 #. Translators: KB is the short form for kilobyte
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Role/FormatByte.pm:33
 msgid "KB"
-msgstr ""
+msgstr "KB"
 
 #. Translators: MB is the short form for megabyte
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Role/FormatByte.pm:35
 msgid "MB"
-msgstr ""
+msgstr "MB"
 
 #. Translators: GB is the short form for gigabyte
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Role/FormatByte.pm:37
 msgid "GB"
-msgstr ""
+msgstr "GB"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Role/FormatByte.pm:43
 msgid "bytes"
-msgstr ""
+msgstr "bajtova"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:197
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707
@@ -166,6 +177,8 @@ msgid ""
 "For debugging information, execute the following command: sudo tails-"
 "debugging-info"
 msgstr ""
+"Za informacije o otklanjanju grešaka izvedite sljedeću naredbu: sudo tails-"
+"debugging-info"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:289
 msgid ""
@@ -175,20 +188,26 @@ msgid ""
 "again.\\n\\nIf the problem persists, go to file:///usr/share/doc/tails/"
 "website/doc/upgrade/error/check.en.html"
 msgstr ""
+"<b>Došlo je do greške prilikom ažuriranja ključa za potpisivanje.</"
+"b>\\n\\n<b>Ovo sprječava utvrđivanje da li je nadogradnja dostupna na našoj "
+"web stranici.</b>\\n\\nProvjerite svoju mrežnu vezu i ponovo pokrenite "
+"Tails. Da pokušate ponovo nadograditi.\\n\\nAko se problem nastavi, idite na "
+"file:///usr/share/doc/tails/website/doc/upgrade/error/check.en.html"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:303
 msgid "Error while downloading the signing key"
-msgstr ""
+msgstr "Greška pri preuzimanju ključa za potpis"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:314
 msgid "Error while updating the signing key"
-msgstr ""
+msgstr "Greška pri ažuriranju ključa za potpis"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:341
 msgid "Error while checking for upgrades"
-msgstr ""
+msgstr "Greška pri provjeravanju nadogradnji"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:343
+#, fuzzy
 msgid ""
 "<b>Could not determine whether an upgrade is available from our website.</"
 "b>\n"
@@ -198,39 +217,48 @@ msgid ""
 "If the problem persists, go to file:///usr/share/doc/tails/website/doc/"
 "upgrade/error/check.en.html"
 msgstr ""
+"<b>Nisamo mogli utvrditi da li je nadogradnja dostupna na našoj web stranici."
+"</b>\n"
+"\n"
+"Provjerite svoju mrežnu vezu i ponovo pokrenite Tails da ponovo pokušate "
+"nadograditi.\n"
+"\n"
+"Ako se problem nastavi, idite na file:///usr/share/doc/tails/website/doc/"
+"upgrade/error/check.en.html"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:358
 msgid "no automatic upgrade is available from our website for this version"
 msgstr ""
+"na našoj web stranici nije dostupna automatska nadogradnja za ovu verziju"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364
 msgid "your device was not created using a USB image or Tails Installer"
-msgstr ""
+msgstr "vaš uređaj nije kreiran pomoću USB slike ili Tails instalacije"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:369
 msgid "Tails was started from a DVD or a read-only device"
-msgstr ""
+msgstr "Tails je pokrenut sa DVD-a ili uređaja samo za čitanje"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:374
 msgid "there is not enough free space on the Tails system partition"
-msgstr ""
+msgstr "nema dovoljno slobodnog prostora na sistemskoj particiji Tails"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:379
 msgid "not enough memory is available on this system"
-msgstr ""
+msgstr "na ovom sistemu nije dostupno dovoljno memorije"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:384
 #, perl-brace-format
 msgid "No explanation available for reason '{reason}'."
-msgstr ""
+msgstr "Nije dostupno objašnjenje za razlog '{reason}'."
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:407
 msgid "The system is up-to-date"
-msgstr ""
+msgstr "Sistem je ažuran"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:412
 msgid "This version of Tails is outdated, and may have security issues."
-msgstr ""
+msgstr "Ova verzija Tailsa je zastarjela i može imati sigurnosnih problema."
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:442
 #, perl-brace-format
@@ -238,6 +266,8 @@ msgid ""
 "The available incremental upgrade requires {space_needed} of free space on "
 "Tails system partition,  but only {free_space} is available."
 msgstr ""
+"Dostupna inkrementalna nadogradnja zahtijeva {space_needed} slobodnog "
+"prostora na sistemskoj particiji Tails, ali je samo {free_space} dostupno."
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:454
 #, perl-brace-format
@@ -245,23 +275,29 @@ msgid ""
 "The available incremental upgrade requires {memory_needed} of free memory, "
 "but only {free_memory} is available."
 msgstr ""
+"Dostupna inkrementalna nadogradnja zahtijeva {memory_needed} slobodne "
+"memorije, ali samo {free_memory} je dostupno."
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:465
 msgid ""
 "An error ocurred while detecting available upgrades.\n"
 "This should not happen. Please report a bug."
 msgstr ""
+"Dogodila se greška pri otkrivanju dostupnih nadogradnji\n"
+"Ovo ne bi trebalo da se desi. Molimo prijavite grešku."
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:468
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:487
 msgid "Error while detecting available upgrades"
-msgstr ""
+msgstr "Greška pri otkrivanju dostupnih nadogradnja"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:483
 msgid ""
 "An incremental upgrade is available, but no full upgrade is.\n"
 "This should not happen. Please report a bug."
 msgstr ""
+"Dostupna je inkrementalna nadogradnja, ali potpuna nadogradnja nije\n"
+"Ovo ne bi trebalo da se desi. Molimo prijavite grešku."
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:496
 #, perl-brace-format
@@ -278,18 +314,29 @@ msgid ""
 "\n"
 "Do you want to upgrade now?"
 msgstr ""
+"<b>Trebali biste izvršiti nadogradnju na {name} {version}.</b>\n"
+"\n"
+"Za više informacija o ovoj novoj verziji idite na {details_url}\n"
+"\n"
+"Preporučujemo da zatvorite sve ostale aplikacije tokom nadogradnje.\n"
+"Preuzimanje nadogradnje može potrajati dugo, od nekoliko minuta do nekoliko "
+"sati.\n"
+"\n"
+"Veličina preuzimanja: {size}\n"
+"\n"
+"Da li želite da nadogradite sada?"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:509
 msgid "Upgrade available"
-msgstr ""
+msgstr "Nadogradnja je dostupna"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:510
 msgid "Upgrade now"
-msgstr ""
+msgstr "Nadogradi sada"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:511
 msgid "Upgrade later"
-msgstr ""
+msgstr "Nadogradite kasnije"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:518
 #, fuzzy, perl-brace-format
@@ -314,16 +361,16 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:528
 msgid "New version available"
-msgstr ""
+msgstr "Nova verzija je dostupna"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:609
 msgid "Downloading upgrade"
-msgstr ""
+msgstr "Preuzimanje nadogradnje"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:611
 #, perl-brace-format
 msgid "Downloading the upgrade to {name} {version}..."
-msgstr ""
+msgstr "Preuzimanje nadogradnje na {name} {version}..."
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700
 msgid ""
@@ -444,9 +491,9 @@ msgid "Additional Settings"
 msgstr ""
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "Otkaži"
@@ -518,11 +565,11 @@ msgstr ""
 msgid "Off (default)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
-msgid "Persistent Storage Not Unlocked"
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+msgid "Persistent Storage Still Locked"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 #, fuzzy
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
@@ -530,15 +577,16 @@ msgstr ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
-msgid "Continue Without Persistent Storage"
-msgstr ""
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
+#, fuzzy
+msgid "Start Without Persistent Storage"
+msgstr "_Kreirajte trajnu pohranu"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 msgid "Don't _Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 msgid "_Create Persistent Storage"
 msgstr ""
@@ -558,7 +606,6 @@ msgstr ""
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr ""
 
@@ -775,7 +822,7 @@ msgstr ""
 msgid "Synchronizing data on disk..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
@@ -783,63 +830,63 @@ msgstr ""
 "Greška: Neuspjelo postavljanje oznake ili otkrivanje UUID Vašeg uređaja.  "
 "Nemoguće nastaviti."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -847,14 +894,14 @@ msgid ""
 "a different model."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
 "%(size)s GB is required)."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -862,76 +909,76 @@ msgid ""
 "%(dl_url)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
 "The persistent storage on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
 "All data on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr ""
@@ -1014,7 +1061,7 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1074,143 +1121,143 @@ msgstr ""
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
 "log to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "Konfigurirajte"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "Ukloni"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "Dokumentacija"
 
@@ -1341,19 +1388,19 @@ msgid ""
 msgstr ""
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1361,11 +1408,11 @@ msgid ""
 "software."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr ""
 
@@ -1694,32 +1741,32 @@ msgstr ""
 msgid "Choose File Container"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 #, fuzzy
 msgid "_Cancel"
 msgstr "Otkaži"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 #, fuzzy
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
@@ -1728,60 +1775,60 @@ msgstr ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
 "network."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr ""
 
@@ -1941,6 +1988,7 @@ msgid "Tails documentation"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 msgid "Persistent Storage"
 msgstr ""
@@ -1967,6 +2015,16 @@ msgstr ""
 msgid "Learn more about Tails"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "_Kreirajte trajnu pohranu"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr ""
@@ -2033,7 +2091,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr ""
 
@@ -2057,7 +2115,7 @@ msgid "Disable"
 msgstr "Onemogući"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr ""
 
@@ -2078,7 +2136,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr ""
 
@@ -2137,68 +2195,69 @@ msgstr ""
 msgid "Welcome to Tails!"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 msgid "_Persistent Storage"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 #, fuzzy
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr "Tails is configuring your Persistent Storage. Please wait..."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
+msgid "Show Passphrase"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
-msgid "Show Passphrase"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+msgid "_Passphrase"
 msgstr ""
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 #, fuzzy
 msgid "Shutdown"
 msgstr "Shutdown"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr ""
 
@@ -2292,10 +2351,18 @@ msgstr ""
 msgid "System Settings"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+msgid "Welcome Screen"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 msgid "Activate Welcome Screen"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+msgid "Printers"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 msgid "Activate Printers"
 msgstr ""
@@ -2328,6 +2395,10 @@ msgstr ""
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+msgid "Tor Browser Bookmarks"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 msgid "Activate Tor Browser Bookmarks"
 msgstr ""
@@ -2540,11 +2611,11 @@ msgstr ""
 msgid "Detach this volume"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr ""
 
diff --git a/po/ca.po b/po/ca.po
index 11e8a97ede1..8e4e301cb94 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -26,8 +26,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
-"PO-Revision-Date: 2023-01-27 10:38+0000\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
+"PO-Revision-Date: 2023-02-27 19:38+0000\n"
 "Last-Translator: emma peel <emma.peel@riseup.net>\n"
 "Language-Team: Catalan <https://hosted.weblate.org/projects/tor/tails-gui/ca/"
 ">\n"
@@ -517,9 +517,9 @@ msgid "Additional Settings"
 msgstr "Paràmetres addicionals"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "Cancel·la"
@@ -591,28 +591,28 @@ msgstr "Desactivar"
 msgid "Off (default)"
 msgstr "Desactivació (defecte)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
 #, fuzzy
-msgid "Persistent Storage Not Unlocked"
+msgid "Persistent Storage Still Locked"
 msgstr "Emmagatzematge Persistent"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 #, fuzzy
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
 msgstr "Entrar contrasenya per desbloquejar l'emmagatzematge persistent"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
 #, fuzzy
-msgid "Continue Without Persistent Storage"
+msgid "Start Without Persistent Storage"
 msgstr "Crea un emmagatzematge persistent"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 #, fuzzy
 msgid "Don't _Create Persistent Storage"
 msgstr "_Crea el Emmagatzematge Persistent"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 msgid "_Create Persistent Storage"
 msgstr "_Crea el Emmagatzematge Persistent"
@@ -634,7 +634,6 @@ msgstr "Desbloquejar"
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr "Desbloquejar"
 
@@ -855,7 +854,7 @@ msgstr "La unitat és de tipus virtual de repetició, s'omet el reinici del MBR"
 msgid "Synchronizing data on disk..."
 msgstr "Sincronitzant les dades del disc..."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
@@ -863,63 +862,63 @@ msgstr ""
 "Error: no s'ha pogut etiquetar o obtenir l'UUID del vostre dispositiu. No es "
 "pot de continuar."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr "Instal·lació complerta! (%s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr "L'instal·lació de Tails ha fracassat!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr "Instal·lador de Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr "Clonar el Tails actual"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr "Usar una imatge d' ISO de Tails descarregada"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr "Actualització"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr "Instruccions d'actualització manual"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr "Instal·lar"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr "Instruccions d' instal·lació"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "Dispositiu %(size)s%(vendor)s%(model)s (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr "No hi ha seleccionada cap imatge ISO"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr "Per favor, seleccioneu una imatge ISO de Tails."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -930,7 +929,7 @@ msgstr ""
 "propi fabricant i Tails no podrà executar-se. Per favor, intenteu instal·lar-"
 "lo en un model diferent."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
@@ -939,7 +938,7 @@ msgstr ""
 "El dispositiu \"%(pretty_name)s\" és massa petit per instal·lar-hi el Tails "
 "(es necessiten com mínim %(size)s GB)."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -947,65 +946,65 @@ msgid ""
 "%(dl_url)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr "No s'ha pogut trobar un dispositiu compatible per a instal·lar Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr ""
 "Per favor, connecteu una memòria USB o una targeta SD d'almenys %0.1f GB."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr "S'ha produït un error en instal·lar Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr "Instal·lació complerta!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr "No s'ha pogut muntar el dispositiu"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "Dispositiu %(parent_size)s%(vendor)s%(model)s(%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
 "The persistent storage on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
 "All data on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr "Confirma el llapis USB de destinació"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
@@ -1013,7 +1012,7 @@ msgstr ""
 "El fitxer seleccionat no s'ha pogut llegir. Ajusteu els permisos o "
 "seleccioneu un altre fitxer."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
@@ -1021,7 +1020,7 @@ msgstr ""
 "No s'ha pogut fer servir l'arxiu seleccionat. Moveu l'ISO a l'arrel de la "
 "unitat (per exemple: C:\\)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr "%(filename)s seleccionat"
@@ -1096,7 +1095,7 @@ msgstr "su no està actiu. Altrament podeu utilitzar sudo."
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1162,7 +1161,7 @@ msgstr "no disponible"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -1171,7 +1170,7 @@ msgstr ""
 "{details} Comprova la teva llista de programari addicional o llegeix el "
 "registre del sistema per entendre el problema."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
@@ -1179,56 +1178,56 @@ msgstr ""
 "Comproveu la vostra llista de programari addicional o llegiu el registre del "
 "sistema per entendre el problema."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr "Mostra el registre"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "Configura"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} i {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ", "
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "Afegiu {packages} al vostre programari addicional?"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 "Per instal·lar-lo automàticament des del vostre emmagatzematge persistent en "
 "iniciar Tails."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr "Instal·leu cada vegada"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr "Instal·la només una vegada"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr "Ha fallat la configuració del programari addicional."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -1237,71 +1236,71 @@ msgstr ""
 "emmagatzematge persistent i activar la funció de <b>programari addicional</"
 "b>."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr "Crea un emmagatzematge persistent"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr "S'ha produït un error creant l'emmagatzematge persistent."
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr "Podeu instal·lar {packages} automàticament en iniciar Tails"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr ""
 "Per a fer-ho, cal que executeu el Tails des d'una memòria USB extraïble."
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "Elimineu {packages} del programari addicional?"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr "Això evitarà la instal·lació de {packages} automàticament."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "Suprimeix la subscripció"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 "Instal·lant el programari addicional des d'un emmagatzematge persistent ..."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr "Això pot trigar uns quants minuts."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr "Ha fallat la instal·lació del programari addicional"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr "S'ha instal·lat un programari addicional amb èxit"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 "S'ha produït un error en la comprovació d'actualitzacions del programari "
 "addicional"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -1309,11 +1308,11 @@ msgstr ""
 "Comproveu la vostra connexió de xarxa, reinicieu Tails o llegiu el registre "
 "del sistema per entendre el problema."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr "S'ha produït un error en l'actualització del programari addicional"
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "Documentació"
 
@@ -1458,19 +1457,19 @@ msgid ""
 msgstr ""
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr "Hi ha hagut un error:"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr "Alerta: S'ha detectat una màquina virtual."
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr "Avís: S'ha detectat una màquina virtual de propietat"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1482,11 +1481,11 @@ msgstr ""
 "considerat de confiança, tant pel sistema operatiu com per al programari de "
 "virtualització."
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr "Aprèn més"
 
@@ -1824,58 +1823,58 @@ msgstr ""
 msgid "Choose File Container"
 msgstr "Trieu Contenidor d'arxius"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 #, fuzzy
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr "Desactiva el Navegador Insegur (predefinit)"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr "_Reinicia"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 msgid "_Cancel"
 msgstr "_Cancel·la"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr "Reiniciar ara"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr "No s'ha pogut reiniciar el sistema."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr "Iniciant el Navegador Insegur..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr "Això pot trigar una estona, espereu."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr "Apagant el Navegador Insegur..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
@@ -1883,13 +1882,13 @@ msgstr ""
 "Això pot tardar una estona, no reinicieu el navegador insegur fins que no "
 "s'hagi apagat correctament."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr "Navegador Insegur"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
@@ -1897,22 +1896,22 @@ msgstr ""
 "Un altre navegador insegur està essent executat o netejat. Proveu-ho d'aquí "
 "una estona."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr "S'ha fallat en configurar chroot."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr "S'ha fallat en configurar el navegador."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
 "network."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr "S'ha fallat en executar el navegador."
 
@@ -2084,6 +2083,7 @@ msgid "Tails documentation"
 msgstr "Documentació de Tails"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 msgid "Persistent Storage"
 msgstr "Emmagatzematge Persistent"
@@ -2114,6 +2114,16 @@ msgstr "Com usar el Tails"
 msgid "Learn more about Tails"
 msgstr "Aprèn més sobre Tails"
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "Emmagatzematge Persistent"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr "Instal·lar, clonar, actualitzar Tails"
@@ -2185,7 +2195,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr "Contrasenya d'administador"
 
@@ -2212,7 +2222,7 @@ msgid "Disable"
 msgstr "Inhabilita"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr ""
 
@@ -2233,7 +2243,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr "Configuració de xarxa"
 
@@ -2292,18 +2302,18 @@ msgstr "S'han carregat els paràmetres de l'emmagatzematge persistent."
 msgid "Welcome to Tails!"
 msgstr "Benvingut a Tails!"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 msgid "_Persistent Storage"
 msgstr "Emmagatzematge _Persistent"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 #, fuzzy
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
@@ -2311,42 +2321,45 @@ msgstr ""
 "Per instal·lar-lo automàticament des del vostre emmagatzematge persistent en "
 "iniciar Tails."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr "Llengua i regió"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr "Configuració per defecte"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
-msgstr "_Emmagatzematge persistent encriptat"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
 msgid "Show Passphrase"
 msgstr "Mostra la contrasenya"
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
-msgstr "Entrar contrasenya per desbloquejar l'emmagatzematge persistent"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "Frase de contrasenya:"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+#, fuzzy
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 "El vostre emmagatzematge persistent està desbloquejat. Reinicieu Tails per a "
 "bloquejar-lo de nou."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr "_Paràmetres addicionals"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr "Afegir paràmetres addicionals"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
@@ -2354,11 +2367,11 @@ msgstr ""
 "Els valors per defecte són segurs en la majoria de situacions. Per afegir "
 "una configuració personalitzada, pressionar el botó \"+\"."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 msgid "Shutdown"
 msgstr "Tancar"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr "_Iniciar Tails"
 
@@ -2459,11 +2472,21 @@ msgstr "Crea un emmagatzematge persistent"
 msgid "System Settings"
 msgstr "Opcions de Sistema"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+#, fuzzy
+msgid "Welcome Screen"
+msgstr "Pantalla de benvinguda"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 #, fuzzy
 msgid "Activate Welcome Screen"
 msgstr "Pantalla de benvinguda"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+#, fuzzy
+msgid "Printers"
+msgstr "Impressores"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 #, fuzzy
 msgid "Activate Printers"
@@ -2499,6 +2522,11 @@ msgstr "Inicia el navegador Tor"
 msgid "Applications"
 msgstr "Aplicacions"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "Marcadors del navegador"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 #, fuzzy
 msgid "Activate Tor Browser Bookmarks"
@@ -2723,11 +2751,11 @@ msgstr "_Desbloqueja"
 msgid "Detach this volume"
 msgstr "Desmunteu aquest volum"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr "Memòria USB de destí:"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr "Reinstal·lar (esborrar tots els arxius)"
 
@@ -3237,6 +3265,12 @@ msgstr "desembre"
 msgid "Clock"
 msgstr "Rellotge"
 
+#~ msgid "Encrypted _Persistent Storage"
+#~ msgstr "_Emmagatzematge persistent encriptat"
+
+#~ msgid "Enter your passphrase to unlock the persistent storage"
+#~ msgstr "Entrar contrasenya per desbloquejar l'emmagatzematge persistent"
+
 #, python-format
 #~ msgid ""
 #~ "<h1>Help us fix your bug!</h1>\n"
diff --git a/po/cs.po b/po/cs.po
index 0e96e6703c3..be1e16be3ad 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -28,8 +28,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
-"PO-Revision-Date: 2023-01-26 19:00+0000\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
+"PO-Revision-Date: 2023-03-01 17:39+0000\n"
 "Last-Translator: emma peel <emma.peel@riseup.net>\n"
 "Language-Team: Czech <https://hosted.weblate.org/projects/tor/tails-gui/cs/"
 ">\n"
@@ -39,7 +39,7 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n "
 "<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
-"X-Generator: Weblate 4.16-dev\n"
+"X-Generator: Weblate 4.16\n"
 
 #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1
@@ -162,12 +162,12 @@ msgstr[3] "{count}m"
 #. will be replaced.
 #. s is the short form for seconds;
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/DownloadProgress.pm:94
-#, fuzzy, perl-brace-format
+#, perl-brace-format
 msgid "1s"
 msgid_plural "{count}s"
-msgstr[0] "1s"
-msgstr[1] "1s"
-msgstr[2] "1s"
+msgstr[0] "{count}s"
+msgstr[1] "{count}s"
+msgstr[2] "{count}s"
 msgstr[3] "{count}s"
 
 #. Translators: don't translate {time}, {downloaded}, {size}
@@ -310,8 +310,8 @@ msgid ""
 "An error ocurred while detecting available upgrades.\n"
 "This should not happen. Please report a bug."
 msgstr ""
-"Při zjišťování dostupných aktualizací došlo k chybě. To by se nemělo stát. "
-"Chybu prosím nahlaste."
+"Při zjišťování dostupných aktualizací došlo k chybě.\n"
+"To by se nemělo stát. Chybu prosím nahlaste."
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:468
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:487
@@ -533,9 +533,9 @@ msgid "Additional Settings"
 msgstr "Další nastavení"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "Zrušit"
@@ -608,32 +608,31 @@ msgstr "Vypnuto"
 msgid "Off (default)"
 msgstr "Vypnuto (výchozí)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
 #, fuzzy
-msgid "Persistent Storage Not Unlocked"
+msgid "Persistent Storage Still Locked"
 msgstr "Vytvořit trvalé úložiště"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 #, fuzzy
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
 msgstr "Pro odemčení trvalého úložiště zadejte heslo"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
 #, fuzzy
-msgid "Continue Without Persistent Storage"
+msgid "Start Without Persistent Storage"
 msgstr "Vytvořit trvalé úložiště"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 #, fuzzy
 msgid "Don't _Create Persistent Storage"
 msgstr "Vytvořit trvalé úložiště"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
-#, fuzzy
 msgid "_Create Persistent Storage"
-msgstr "Vytvořit trvalé úložiště"
+msgstr "Vytvořit _trvalé úložiště"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:83
 #, fuzzy
@@ -652,7 +651,6 @@ msgstr "Odemykání..."
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr "Odemknout"
 
@@ -877,7 +875,7 @@ msgstr ""
 msgid "Synchronizing data on disk..."
 msgstr "Synchronizace dat na disku..."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
@@ -885,63 +883,63 @@ msgstr ""
 "Chyba: Nelze nastavit jmenovku nebo získat UUID vašeho zařízení. Nelze "
 "pokračovat."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr "Instalace dokončena! (%s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr "Instalace Tails selhala"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr "Instalátor Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr "Klonovat současné Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr "Použít stažený ISO obraz Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr "Aktualizovat"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr "Pokyny pro ruční aktualizaci"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr "Instalovat"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr "Pokyny pro instalaci"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(size)s %(vendor)s %(model)s zařízení %(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr "Nebyl vybrán obraz ISO"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr "Vyberte prosím obraz ISO s Tails."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -952,7 +950,7 @@ msgstr ""
 "výrobcem a Tails se na něm nepodaří nastartovat. Zkuste prosím instalaci na "
 "jiný model."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
@@ -961,7 +959,7 @@ msgstr ""
 "Zařízení \"%(pretty_name)s\" je moc malé pro instalaci Tails (je vyžadováno "
 "alespoň %(size)s GB)."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -972,34 +970,34 @@ msgstr ""
 "použít stažený ISO obraz Tails:\n"
 "%(dl_url)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr "Nebylo nalezeno žádné zařízení vhodné pro instalaci Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr ""
 "Připojte prosím USB flash disk nebo SD kartu velikosti alespoň %0.1f GB."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr "Při instalaci Tails nastala chyba"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr "Instalace dokončena!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr "Zařízení nelze připojit"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(parent_size)s %(vendor)s %(model)s zařízení (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
@@ -1009,11 +1007,11 @@ msgstr ""
 "\n"
 "Trvalé úložiště na tomto USB flash disku bude ztraceno."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr "Smazat trvalé úložiště a znovu nainstalovat"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
@@ -1023,27 +1021,27 @@ msgstr ""
 "\n"
 "VÅ¡echna data na tomto USB flash disku budou ztracena."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr "Smazat všechna data a nainstalovat"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr "%(description)s%(delete_message)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr "Potvrďte cílový USB flash disk"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
 msgstr ""
 "Vybraný soubor je nečitelný. Opravte jeho oprávnění nebo vyberte jiný soubor."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
@@ -1051,7 +1049,7 @@ msgstr ""
 "Vybraný soubor nelze použít. Zkuste přesunout ISO do kořenového adresáře "
 "vašeho disku (např. C:\\)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr "Vybrán soubor %(filename)s"
@@ -1131,7 +1129,7 @@ msgstr "su je vypnuto. Použijte prosím sudo."
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1196,7 +1194,7 @@ msgstr "nedostupné"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -1205,7 +1203,7 @@ msgstr ""
 "{details} Zkontrolujte seznam dodatečného softwaru nebo si přečtěte "
 "systémový protokol pro lepší pochopení problému."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
@@ -1213,54 +1211,54 @@ msgstr ""
 "Zkontrolujte seznam dodatečného softwaru nebo si přečtěte systémový protokol "
 "pro lepší pochopení problému."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr "Zobrazit protokol"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "Konfigurovat"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} a {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ", "
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "Přidat {packages} k vašemu dodatečnému softwaru?"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr "Instalovat automaticky z vašeho trvalého úložiště při spouštění Tails."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr "Instalovat pokaždé"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr "Instalovat pouze jednou"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr "Konfigurace vašeho dodatečného softwaru selhala."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -1268,67 +1266,67 @@ msgstr ""
 "K automatické instalaci při spouštění Tails můžete vytvořit trvalé úložiště "
 "a aktivovat vlastnost <b>Dodatečný software.</b>"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr "Vytvořit trvalé úložiště"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr "Trvalé úložiště se nepodařilo vytvořit."
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr "{packages} můžete instalovat automaticky při startu Tails."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr "K tomu musíte Tails spustit z USB disku."
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "Chcete odstranit {packages} z vašeho dodatečného softwaru?"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr "Tím se balík {packages} přestane automaticky aktualizovat."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "Odstranit"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr "Instalace dodatečného softwaru z trvalého úložiště..."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr "Toto může trvat pár minut."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr "Instalace dalšího softwaru selhala"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr "Dodatečný software byl úspěšně nainstalován"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr "Kontrola aktualizací vašeho dodatečného softwaru selhala"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -1336,11 +1334,11 @@ msgstr ""
 "Zkontrolujte prosím síťové připojení, restartujte Tails nebo si přečtěte "
 "systémový protokol pro lepší pochopení problému."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr "Upgrade vašeho dodatečného softwaru selhal"
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "Dokumentace"
 
@@ -1501,19 +1499,19 @@ msgstr ""
 "Viz {manual_upgrade_url}"
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr "chyba:"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr "Varování: zjištěn virtuální stroj!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr "Varování: detekován nesvobodný virtuální stroj"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1524,11 +1522,11 @@ msgstr ""
 "Tails děláte. Za důvěryhodný lze považovat jen svobodný software, a to jak v "
 "případě operačního systému, tak virutálizačního softwaru."
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr "Příště nezobrazovat"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr "Zjistit více"
 
@@ -1880,58 +1878,58 @@ msgstr ""
 msgid "Choose File Container"
 msgstr "Vybrat souborový kontejner"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 #, fuzzy
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr "Zakázat Nezabezpečený prohlížeč (default)"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr "_Restartovat"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 msgid "_Cancel"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr "Restartovat teď"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr "Systém se nepodařilo restartovat."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr "Spouštění Nezabezpečeného prohlížeče..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr "Může to chvíli trvat, chvilku strpení prosím."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr "Ukončování Nezabezpečeného prohlížeče..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
@@ -1939,13 +1937,13 @@ msgstr ""
 "Může to chvíli trvat a Nezabezpečený prohlížeč nebudete moci znovu spustit, "
 "dokud nebude správně ukončen."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr "Nezabezpečený prohlížeč"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
@@ -1953,15 +1951,15 @@ msgstr ""
 "Další Nezabezpečený prohlížeč je spuštěn nebo se čistí. Zkuste to znovu "
 "později."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr "Nepodařilo se nastavit \"chroot\"."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr "Prohlížeč se nepodařilo nakonfigurovat."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
@@ -1971,7 +1969,7 @@ msgstr ""
 "nezabezpečený prohlížeč, dokud se napřipojíte k Wi-Fi, kabelové nebo mobilní "
 "síti."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr "Prohlížeč se nepodařilo spustit."
 
@@ -2146,6 +2144,7 @@ msgid "Tails documentation"
 msgstr "Dokumentace Tails"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 #, fuzzy
 msgid "Persistent Storage"
@@ -2175,6 +2174,16 @@ msgstr "Naučte se používat Tails"
 msgid "Learn more about Tails"
 msgstr "Zjistěte více o Tails"
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "Vytvořit trvalé úložiště"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr "Instalovat, klonovat, aktualizovat Tails"
@@ -2246,7 +2255,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr "Heslo pro správu"
 
@@ -2272,7 +2281,7 @@ msgid "Disable"
 msgstr "Zakázat"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr "Anonymizace MAC adresy"
 
@@ -2297,7 +2306,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr "Neanonymizovat MAC adresy"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr "Konfigurace sítě"
 
@@ -2376,58 +2385,61 @@ msgstr "Nastavení bylo načteno z trvalého úložiště."
 msgid "Welcome to Tails!"
 msgstr "Vítejte v Tails!"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 #, fuzzy
 msgid "_Persistent Storage"
 msgstr "Vytvořit trvalé úložiště"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 #, fuzzy
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr "Instalovat automaticky z vašeho trvalého úložiště při spouštění Tails."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr "Region a jazyk"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr "Výchozí nastavení"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
-msgstr "Šifrované _Trvalé úložiště"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
 msgid "Show Passphrase"
 msgstr "Zobrazit heslo"
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
-msgstr "Pro odemčení trvalého úložiště zadejte heslo"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "Přístupové heslo:"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
+msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+#, fuzzy
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr "Trvalé úložiště je odemčeno. Restart Tails ho znovu uzamkne."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr "_Další nastavení"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr "Přidat další nastavení"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
@@ -2435,11 +2447,11 @@ msgstr ""
 "Výchozí nastavení je ve většině situací bezpečné. Chcete-li přidat vlastní "
 "nastavení, klepněte níže na tlačítko „+“."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 msgid "Shutdown"
 msgstr "Vypnout"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr "_Spustit Tails"
 
@@ -2546,11 +2558,21 @@ msgstr "Vytvořit trvalé úložiště"
 msgid "System Settings"
 msgstr "Výchozí nastavení"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+#, fuzzy
+msgid "Welcome Screen"
+msgstr "Úvodní obrazovka"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 #, fuzzy
 msgid "Activate Welcome Screen"
 msgstr "Úvodní obrazovka"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+#, fuzzy
+msgid "Printers"
+msgstr "Tiskárny"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 #, fuzzy
 msgid "Activate Printers"
@@ -2587,6 +2609,11 @@ msgstr "Tor Bridge"
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "Záložky prohlížeče"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 #, fuzzy
 msgid "Activate Tor Browser Bookmarks"
@@ -2821,11 +2848,11 @@ msgstr "_Odemknout"
 msgid "Detach this volume"
 msgstr "Odpojit tento svazek"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr "Cílový USB flash disk:"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr "Přeinstalovat (smazat všechna data)"
 
@@ -3395,6 +3422,12 @@ msgstr "Prosinec"
 msgid "Clock"
 msgstr "Hodiny"
 
+#~ msgid "Encrypted _Persistent Storage"
+#~ msgstr "Šifrované _Trvalé úložiště"
+
+#~ msgid "Enter your passphrase to unlock the persistent storage"
+#~ msgstr "Pro odemčení trvalého úložiště zadejte heslo"
+
 #, python-format
 #~ msgid ""
 #~ "<h1>Help us fix your bug!</h1>\n"
diff --git a/po/cy.po b/po/cy.po
index 928e3265be6..52bc60b4901 100644
--- a/po/cy.po
+++ b/po/cy.po
@@ -10,7 +10,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
 "PO-Revision-Date: 2023-01-27 10:38+0000\n"
 "Last-Translator: emma peel <emma.peel@riseup.net>\n"
 "Language-Team: Welsh <https://hosted.weblate.org/projects/tor/tails-gui/cy/"
@@ -461,9 +461,9 @@ msgid "Additional Settings"
 msgstr ""
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "Canslo"
@@ -535,11 +535,11 @@ msgstr ""
 msgid "Off (default)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
-msgid "Persistent Storage Not Unlocked"
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+msgid "Persistent Storage Still Locked"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 #, fuzzy
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
@@ -547,15 +547,15 @@ msgstr ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
-msgid "Continue Without Persistent Storage"
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
+msgid "Start Without Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 msgid "Don't _Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 msgid "_Create Persistent Storage"
 msgstr ""
@@ -575,7 +575,6 @@ msgstr ""
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr ""
 
@@ -792,7 +791,7 @@ msgstr ""
 msgid "Synchronizing data on disk..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
@@ -800,63 +799,63 @@ msgstr ""
 "Gwall: Methu osod y label na chael yr UUID o'ch ddyfais. Methu parhau a'r "
 "gweithred."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr "Wedi cwblhau'r osodiad! (%s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -864,14 +863,14 @@ msgid ""
 "a different model."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
 "%(size)s GB is required)."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -879,76 +878,76 @@ msgid ""
 "%(dl_url)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr "Wedi cwblhau'r osodiad!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr "Methu esgyn y ddyfais"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
 "The persistent storage on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
 "All data on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr ""
@@ -1031,7 +1030,7 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1093,143 +1092,143 @@ msgstr "ddim ar gael"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
 "log to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "Ffurfweddu"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr ""
 
@@ -1360,19 +1359,19 @@ msgid ""
 msgstr ""
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr "gwall:"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr "Rhybydd: peiriant rhithwyr wedi'i canfod!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1380,11 +1379,11 @@ msgid ""
 "software."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr ""
 
@@ -1713,31 +1712,31 @@ msgstr ""
 msgid "Choose File Container"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 msgid "_Cancel"
 msgstr "_Canslo"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 #, fuzzy
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
@@ -1746,29 +1745,29 @@ msgstr ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr "Dechrau'r porwr anniogel..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr ""
 "Efallai bydd hyn yn cymryd tipyn o amser, felly byddwch yn amineddgar, os "
 "gwelwch yn dda."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr "Yn cae lawr y porwr anniogel..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
@@ -1776,13 +1775,13 @@ msgstr ""
 "Efallai bydd hyn yn cymryd tipyn o amser. Ni allwch ailgychwyn y porwr "
 "anniogel tan ei fod wedi'i cau lawr yn iawn."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr "Porwr anniogel"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
@@ -1790,22 +1789,22 @@ msgstr ""
 "Mae porwr anniogel arall yn rhedeg, neu yn cael ei daclyso. Ceisiwch eto "
 "mewn funud neu ddwy."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr "Methu sefydlu'r croot."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
 "network."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr ""
 
@@ -1965,6 +1964,7 @@ msgid "Tails documentation"
 msgstr "Dogfennaeth Tails"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 msgid "Persistent Storage"
 msgstr ""
@@ -1991,6 +1991,15 @@ msgstr "Dysgwch sut i ddefnyddio Tails"
 msgid "Learn more about Tails"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+msgid "Back Up Persistent Storage"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr ""
@@ -2057,7 +2066,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr ""
 
@@ -2081,7 +2090,7 @@ msgid "Disable"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr ""
 
@@ -2102,7 +2111,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr ""
 
@@ -2163,68 +2172,69 @@ msgstr ""
 msgid "Welcome to Tails!"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 msgid "_Persistent Storage"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 #, fuzzy
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr "Tails is configuring your Persistent Storage. Please wait..."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
+msgid "Show Passphrase"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
-msgid "Show Passphrase"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+msgid "_Passphrase"
 msgstr ""
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 #, fuzzy
 msgid "Shutdown"
 msgstr "Shutdown"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr ""
 
@@ -2319,10 +2329,18 @@ msgstr ""
 msgid "System Settings"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+msgid "Welcome Screen"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 msgid "Activate Welcome Screen"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+msgid "Printers"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 msgid "Activate Printers"
 msgstr ""
@@ -2357,6 +2375,11 @@ msgstr "Cychwyn Porwr Tor"
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "Cychwyn Porwr Tor"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 #, fuzzy
 msgid "Activate Tor Browser Bookmarks"
@@ -2569,11 +2592,11 @@ msgstr ""
 msgid "Detach this volume"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr ""
 
diff --git a/po/da.po b/po/da.po
index ad0d1d48bda..c49102baca5 100644
--- a/po/da.po
+++ b/po/da.po
@@ -23,8 +23,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
-"PO-Revision-Date: 2023-01-27 10:38+0000\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
+"PO-Revision-Date: 2023-03-05 10:37+0000\n"
 "Last-Translator: emma peel <emma.peel@riseup.net>\n"
 "Language-Team: Danish <https://hosted.weblate.org/projects/tor/tails-gui/da/"
 ">\n"
@@ -33,7 +33,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.16-dev\n"
+"X-Generator: Weblate 4.16.2-dev\n"
 
 #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1
@@ -516,9 +516,9 @@ msgid "Additional Settings"
 msgstr "Yderligere indstillinger"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "Annuller"
@@ -592,28 +592,28 @@ msgstr "Fra"
 msgid "Off (default)"
 msgstr "Fra (standard)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
 #, fuzzy
-msgid "Persistent Storage Not Unlocked"
+msgid "Persistent Storage Still Locked"
 msgstr "Opret vedvarende lager"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 #, fuzzy
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
 msgstr "Indtast din adgangskode for at låse op for det vedvarende lager"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
 #, fuzzy
-msgid "Continue Without Persistent Storage"
+msgid "Start Without Persistent Storage"
 msgstr "Opret vedvarende lager"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 #, fuzzy
 msgid "Don't _Create Persistent Storage"
 msgstr "Opret vedvarende lager"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 #, fuzzy
 msgid "_Create Persistent Storage"
@@ -636,7 +636,6 @@ msgstr "Låser op…"
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr "LÃ¥s op"
 
@@ -863,7 +862,7 @@ msgstr "Drevet er et loopback, springer over nulstilling af MBR"
 msgid "Synchronizing data on disk..."
 msgstr "Synkroniserer data på disk..."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
@@ -871,63 +870,63 @@ msgstr ""
 "Fejl: Kan ikke indstille etiket eller hente enhedens UUID. Kan ikke "
 "fortsætte."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr "Installation færdig! (%s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr "Tails-installation mislykkedes!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr "Tails-installationsprogram"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr "Klon den nuværende Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr "Brug et downloadet Tails ISO-aftryk"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr "Opgrader"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr "Instruktioner til manuel opgradering"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr "Installer"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr "Instruktioner til installation"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(size)s %(vendor)s %(model)s enheden (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr "Ingen ISO-aftryk valgt"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr "Vælg venligst et Tails ISO-aftryk."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -938,7 +937,7 @@ msgstr ""
 "producent og Tails vil ikke kunne start fra den. Prøv venligst at installere "
 "på en anden model."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
@@ -947,7 +946,7 @@ msgstr ""
 "Enheden \"%(pretty_name)s\" er for lille til at installere Tails (kræver "
 "mindst %(size)s GB)."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -958,33 +957,33 @@ msgstr ""
 "et downloadet Tails ISO-aftryk:\n"
 "%(dl_url)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr "Der blev ikke findes nogen egnet enhed til installation af Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr "Sæt venligst et USB-flash-drev eller SD-kort i på mindst %0.1f GB."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr "Der opstod en fejl under installation af Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr "Installation færdig!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr "Kan ikke montere enhed"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(parent_size)s %(vendor)s %(model)s enheden (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
@@ -994,11 +993,11 @@ msgstr ""
 "\n"
 "Alle data på denne USB-nøgle vil gå tabt."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr "Slet vedvarende lagring og geninstaller"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
@@ -1008,20 +1007,20 @@ msgstr ""
 "\n"
 "Alle data på denne USB-nøgle vil gå tabt."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr "Slet alle data og installer"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr "Bekræft mål-USB-pennen"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
@@ -1029,7 +1028,7 @@ msgstr ""
 "Den valgte fil er ikke læsbar. Ret venligst dens tilladelser eller vælg en "
 "anden fil."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
@@ -1037,7 +1036,7 @@ msgstr ""
 "Kan ikke bruge den valgte fil. Det kan være du har mere held hvis du flytter "
 "din ISO til roden af dit drev (dvs. C:\\)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr "%(filename)s valgt"
@@ -1117,7 +1116,7 @@ msgstr "su er deaktiveret. Brug venligst sudo i stedet."
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1183,7 +1182,7 @@ msgstr "ikke tilgængelig"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -1192,7 +1191,7 @@ msgstr ""
 "{details} Tjek venligst din liste over yderligere software eller læs "
 "systemloggen for at forstå problemet."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
@@ -1200,55 +1199,55 @@ msgstr ""
 "Tjek venligst din liste over yderligere software eller læs systemloggen for "
 "at forstå problemet."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr "Vis Log"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "Konfigurer"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} og {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ", "
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "Tilføj {packages} til dine yderligere software?"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 "For automatisk at installere det fra dit vedvarende lager når Tails starter."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr "Installer hver gang"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr "Installer kun én gang"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr "Konfigurationen af dine yderligere software mislykkedes."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -1256,67 +1255,67 @@ msgstr ""
 "For automatisk at installere det når Tails starter kan du oprette et "
 "vedvarende lager og aktivere funktionaliteten <b>Yderligere software</b>."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr "Opret vedvarende lager"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr "Oprettelse af dit vedvarende lager mislykkedes."
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr "Du kan installere {packages} automatisk når Tails starter"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr "Det gøres ved at køre Tails fra en USB-pen."
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "Fjern {packages} fra dine yderligere software?"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr "Det vil stoppe automatisk installation af {packages}."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "Fjern"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr "Installerer dine yderligere software from vedvarende lager..."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr "Det kan tage flere minutter."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr "Installationen af dine yderligere software mislykkedes."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr "Yderligere software blev installeret."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr "Søgningen efter opgraderinger af dine yderligere software mislykkedes"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -1324,11 +1323,11 @@ msgstr ""
 "Tjek venligst din internetforbindelse, genstart Tails eller læs systemloggen "
 "for at forstå problemet."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr "Opgraderingen af dine yderligere software mislykkedes"
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "Dokumentation"
 
@@ -1491,19 +1490,19 @@ msgstr ""
 "Se {manual_upgrade_url}"
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr "fejl:"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr "Advarsel: registrerede virtuel maskine!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr "Advarsel: registrerede virtuel maskine som ikke er fri!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1514,11 +1513,11 @@ msgstr ""
 "overvåge det du foretager dig i Tails. Kun fri software kan betragtes som "
 "værende troværdigt, både for værtsstyresystemet og virtualiseringssoftwaren."
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr "Vis ikke dette igen"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr "Læs mere"
 
@@ -1654,7 +1653,7 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/local/bin/thunderbird:41
 msgid "You need to migrate your OpenPGP keys"
-msgstr "Du skal migrere dine OpenPGP-nøgler "
+msgstr "Du skal migrere dine OpenPGP-nøgler"
 
 #: config/chroot_local-includes/usr/local/bin/thunderbird:43
 msgid ""
@@ -1872,58 +1871,58 @@ msgstr ""
 msgid "Choose File Container"
 msgstr "Vælg filbeholder"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 #, fuzzy
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr "Deaktivér Usikker browser (standard)"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 msgid "_Cancel"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr "Genstart nu"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr "Starter Usikker browser..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr "Det kan tage et stykke tid, så vær venligst tålmodig."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr "Lukker Usikker browser..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
@@ -1931,13 +1930,13 @@ msgstr ""
 "Det kan tage et stykke tid, og du må ikke genstarte Usikker browser før den "
 "er lukket ordentligt."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr "Usikker browser"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
@@ -1945,15 +1944,15 @@ msgstr ""
 "Der kører en anden Usikker browser kører eller den ryddes op. Prøv igen om "
 "lidt tid."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr "Kunne ikke opsætte chroot."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr "Kunne ikke konfigurere browseren."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
@@ -1963,7 +1962,7 @@ msgstr ""
 "Usikker browser skal du først oprette forbindelse til et Wi-Fi-, kablet- "
 "eller mobilt netværk."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr "Kunne ikke køre browser."
 
@@ -2138,6 +2137,7 @@ msgid "Tails documentation"
 msgstr "Dokumentation til Tails"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 #, fuzzy
 msgid "Persistent Storage"
@@ -2168,6 +2168,16 @@ msgstr "Lær at bruge Tails"
 msgid "Learn more about Tails"
 msgstr "Lær mere om Tails"
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "Opret vedvarende lager"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr "Installer, klon, opgrader Tails"
@@ -2238,7 +2248,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr "Administrationsadgangskode"
 
@@ -2265,7 +2275,7 @@ msgid "Disable"
 msgstr "Deaktivér"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr "Anonymisering af MAC-adresse"
 
@@ -2291,7 +2301,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr "Anonymiser ikke MAC-adresser"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr "Netværkskonfiguration"
 
@@ -2372,59 +2382,62 @@ msgstr "Indstillinger blev indlæst fra det vedvarende lager."
 msgid "Welcome to Tails!"
 msgstr "Velkommen til Tails!"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 #, fuzzy
 msgid "_Persistent Storage"
 msgstr "Opret vedvarende lager"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 #, fuzzy
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr ""
 "For automatisk at installere det fra dit vedvarende lager når Tails starter."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr "Sprog og region"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr "Standardindstillinger"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
-msgstr "Krypteret _vedvarende lager"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
 msgid "Show Passphrase"
 msgstr "Vis adgangskode"
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
-msgstr "Indtast din adgangskode for at låse op for det vedvarende lager"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "Adgangskode:"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+#, fuzzy
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr "Dit vedvarende lager er låst op. Genstart Tails for at låse det igen."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr "_Yderligere indstillinger"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr "Tilføj en yderligere indstilling"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
@@ -2432,11 +2445,11 @@ msgstr ""
 "Standardindstillingerne er sikre i de fleste situationer. Tryk på \"+\"-"
 "knappen nedenfor, for at tilføje en tilpasset indstilling."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 msgid "Shutdown"
 msgstr "Luk ned"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr "_Start Tails"
 
@@ -2543,11 +2556,21 @@ msgstr "Opret vedvarende lager"
 msgid "System Settings"
 msgstr "Standardindstillinger"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+#, fuzzy
+msgid "Welcome Screen"
+msgstr "Velkomstskærm"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 #, fuzzy
 msgid "Activate Welcome Screen"
 msgstr "Velkomstskærm"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+#, fuzzy
+msgid "Printers"
+msgstr "Printere"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 #, fuzzy
 msgid "Activate Printers"
@@ -2583,6 +2606,11 @@ msgstr "Tor Bro"
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "Browser-bogmærker"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 #, fuzzy
 msgid "Activate Tor Browser Bookmarks"
@@ -2817,11 +2845,11 @@ msgstr "_LÃ¥s op"
 msgid "Detach this volume"
 msgstr "Frakobl diskområdet"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr "MÃ¥l-USB-pen:"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr "Geninstaller (slet al data)"
 
@@ -3382,6 +3410,12 @@ msgstr "December"
 msgid "Clock"
 msgstr "Ur"
 
+#~ msgid "Encrypted _Persistent Storage"
+#~ msgstr "Krypteret _vedvarende lager"
+
+#~ msgid "Enter your passphrase to unlock the persistent storage"
+#~ msgstr "Indtast din adgangskode for at låse op for det vedvarende lager"
+
 #, python-format
 #~ msgid ""
 #~ "<h1>Help us fix your bug!</h1>\n"
diff --git a/po/de.po b/po/de.po
index 0aaadab2efb..ec4bc598ab2 100644
--- a/po/de.po
+++ b/po/de.po
@@ -42,9 +42,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
-"PO-Revision-Date: 2023-01-28 09:53+0000\n"
-"Last-Translator: Least Significant Bite <leastsignificantbite@proton.me>\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
+"PO-Revision-Date: 2023-03-04 18:38+0000\n"
+"Last-Translator: nautilusx <translate@disroot.org>\n"
 "Language-Team: German <https://hosted.weblate.org/projects/tor/tails-gui/de/"
 ">\n"
 "Language: de\n"
@@ -52,7 +52,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.16-dev\n"
+"X-Generator: Weblate 4.16.2-dev\n"
 
 #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1
@@ -66,15 +66,15 @@ msgid ""
 "storage when starting Tails."
 msgstr ""
 "Du kannst beim Starten von Tails zusätzliche Software automatisch von deinem "
-"beständigen Speicher installieren."
+"beständigen Datenspeicher installieren."
 
 #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:77
 msgid ""
 "The following software is installed automatically from your persistent "
 "storage when starting Tails."
 msgstr ""
-"Die folgende Software wird beim Start von Tails automatisch von deiner "
-"beständigen Datenpartition installiert."
+"Die folgende Software wird beim Start von Tails automatisch von deinem "
+"beständigen Datenspeicher installiert."
 
 #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
@@ -89,7 +89,7 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
 msgid "_Create persistent storage"
-msgstr "_Beständige Datenpartition erzeugen"
+msgstr "_Beständigen Datenspeicher erstellen"
 
 #: config/chroot_local-includes/usr/local/bin/electrum:72
 msgid "Persistence is disabled for Electrum"
@@ -378,7 +378,7 @@ msgid "Upgrade later"
 msgstr "Später aktualisieren"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:518
-#, fuzzy, perl-brace-format
+#, perl-brace-format
 msgid ""
 "<b>You should do a manual upgrade to the latest version of {name}.</b>\n"
 "\n"
@@ -395,7 +395,7 @@ msgstr ""
 "Um mehr über die neue Version zu erfahren, siehe {details_url}\n"
 "\n"
 "Es ist nicht möglich, eine automatische Aktualisierung von Tails zu dieser "
-"neuen Version vorzunehmen.\n"
+"neuen Version vorzunehmen: {explanation}.\n"
 "\n"
 "Um mehr darüber zu erfahren, wie man eine manuelle Aktualisierung "
 "durchführt, siehe {manual_upgrade_url}"
@@ -559,9 +559,9 @@ msgid "Additional Settings"
 msgstr "Zusätzliche Einstellungen"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "Abbrechen"
@@ -606,21 +606,19 @@ msgstr "Veraltet"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:338
 msgid "_Unsafe Browser"
-msgstr "_Unsicherer Browser"
+msgstr "_Unsafe Browser"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:347
-#, fuzzy
 msgid "Enabled (default)"
-msgstr "Deaktiviert (standard)"
+msgstr "Aktiviert (Standard)"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:349
-#, fuzzy
 msgid "Disabled"
-msgstr "Deaktivieren"
+msgstr "Deaktiviert"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:400
 msgid "On (default)"
-msgstr "Ein (Vorgabe)"
+msgstr "Ein (Standard)"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:402
 msgid "On"
@@ -632,46 +630,41 @@ msgstr "Aus"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:406
 msgid "Off (default)"
-msgstr "Aus (Vorgabe)"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
-#, fuzzy
-msgid "Persistent Storage Not Unlocked"
-msgstr "Beständige Datenpartition erzeugen"
+msgstr "Aus (Standard)"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
 #, fuzzy
+msgid "Persistent Storage Still Locked"
+msgstr "Beständiger Datenspeicher nicht entsperrt"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
 msgstr ""
-"Möchtest du Tails wirklich jetzt neustarten?\\n\\nAlle deine aktuelle Arbeit "
-"wird dadurch verloren gehen."
+"Möchtest du Tails wirklich starten, ohne deinen beständigen Datenspeicher zu "
+"entsperren?"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
 #, fuzzy
-msgid "Continue Without Persistent Storage"
-msgstr "Beständige Datenpartition erzeugen"
+msgid "Start Without Persistent Storage"
+msgstr "Weiter ohne beständigen Datenspeicher"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
-#, fuzzy
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 msgid "Don't _Create Persistent Storage"
-msgstr "Beständige Datenpartition erzeugen"
+msgstr "Keinen _beständigen Datenspeicher erstellen"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
-#, fuzzy
 msgid "_Create Persistent Storage"
-msgstr "Beständige Datenpartition erzeugen"
+msgstr "_Beständigen Datenspeicher erstellen"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:83
-#, fuzzy
 msgid "Error unlocking Persistent Storage: {}"
-msgstr "Verschlüsselter _beständiger Speicherbereich"
+msgstr "Fehler beim Entsperren des beständigen Datenspeichers: {}"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:102
-#, fuzzy
 msgid "Error activating Persistent Storage: {}"
-msgstr "Beständige Datenpartition erzeugen"
+msgstr "Fehler beim Aktivieren des beständigen Datenspeichers: {}"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:68
 msgid "Unlocking…"
@@ -680,7 +673,6 @@ msgstr "Wird entsperrt…"
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr "Entsperren"
 
@@ -696,16 +688,20 @@ msgid ""
 "Failed to unlock the Persistent Storage. Please start Tails and send an "
 "error report."
 msgstr ""
+"Der beständige Datenspeicher konnte nicht entsperrt werden. Bitte starte "
+"Tails und sende einen Fehlerbericht."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:122
 msgid ""
 "Failed to activate the Persistent Storage. Please start Tails and send an "
 "error report."
 msgstr ""
+"Der beständige Datenspeicher konnte nicht aktiviert werden. Bitte starte "
+"Tails und sende einen Fehlerbericht."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/region_settings.py:164
 msgid "_Language"
-msgstr "S_prache"
+msgstr "_Sprache"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/region_settings.py:207
 msgid "_Formats"
@@ -910,7 +906,7 @@ msgstr "Das Laufwerk ist ein Loopback, MBR zurücksetzen wird übersprungen"
 msgid "Synchronizing data on disk..."
 msgstr "Daten auf dem Datenträger werden synchronisiert…"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
@@ -918,63 +914,63 @@ msgstr ""
 "Fehler: Die Bezeichnung kann nicht gesetzt oder die UUID deines "
 "Speichermediums nicht ermittelt werden. Fortfahren nicht möglich."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr "Installation abgeschlossen! (%s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr "Tails-Installation fehlgeschlagen!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr "Tails-Installationsprogramm"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr "Aktuelles Tails klonen"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr "Heruntergeladenes Tails-ISO-Image verwenden"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr "Aktualisieren"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr "Anleitung für manuelle Aktualisierung"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr "Installieren"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr "Installationsanweisungen"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(size)s %(vendor)s %(model)s Gerät (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr "Kein ISO-Abbild ausgewählt"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr "Bitte wähle ein Tails-ISO-Abbild aus."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -985,7 +981,7 @@ msgstr ""
 "konfiguriert und somit würde Tails nicht davon starten. Bitte versuche es, "
 "auf einem anderen Modell zu installieren."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
@@ -994,7 +990,7 @@ msgstr ""
 "Der Datenträger \"%(pretty_name)s\" ist zu klein, um Tails darauf zu "
 "installieren (mindestens %(size)s GB werden benötigt)."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -1005,36 +1001,36 @@ msgstr ""
 "benötigst du ein heruntergeladenes Tails ISO-Image:\n"
 "%(dl_url)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr ""
 "Es konnte kein passendes Gerät zur Installation von Tails gefunden werden"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr ""
 "Bitte stecke ein USB-Flash-Laufwerk oder eine SD-Karte mit mindestens %0.1f "
 "GB ein."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr "Bei der Installation von Tails ist ein Fehler aufgetreten"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr "Installation abgeschlossen!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr "Speichermedium kann nicht einhängt werden"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(parent_size)s %(vendor)s %(model)s Gerät (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
@@ -1042,13 +1038,13 @@ msgid ""
 msgstr ""
 "\n"
 "\n"
-"Die beständige Datenpartition auf diesem USB-Stick geht verloren."
+"Der beständige Datenspeicher auf diesem USB-Stick geht verloren."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
-msgstr "Lösche die beständige Datenpartition und installiere neu"
+msgstr "Lösche den beständigen Datenspeicher und installiere neu"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
@@ -1058,20 +1054,20 @@ msgstr ""
 "\n"
 "Alle Daten auf diesem USB-Stick gehen verloren."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr "Lösche alle Daten und installiere"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr "%(description)s%(delete_message)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr "Bestätige den Ziel-USB-Stick"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
@@ -1079,16 +1075,16 @@ msgstr ""
 "Die ausgewählte Datei konnte nicht gelesen werden. Bitte korrigiere die "
 "Berechtigungen oder wähle eine andere Datei aus."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
 msgstr ""
 "Die ausgewählte Datei kann nicht verwendet werden. Vielleicht hast du mehr "
 "Glück, wenn du das ISO-Abbild in das Wurzelverzeichnis deines Laufwerkes (z."
-"B. C:\\) verschiebst."
+"B. C:\\) verschiebst"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr "%(filename)s ausgewählt"
@@ -1176,7 +1172,7 @@ msgstr "su ist deaktiviert. Bitte nutze stattdessen sudo."
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1242,7 +1238,7 @@ msgstr "nicht verfügbar"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -1251,7 +1247,7 @@ msgstr ""
 "{details} Bitte überprüfe die Liste von zusätzlicher Software oder lies das "
 "Systemprotokoll, um das Problem zu verstehen."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
@@ -1259,128 +1255,128 @@ msgstr ""
 "Bitte überprüfe die Liste zusätzlicher Software oder lies das "
 "Systemprotokoll /var/log/syslog, um das Problem zu verstehen."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr "Zeige Logdatei"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "Konfigurieren"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} und {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ", "
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "Füge {packages} zusätzlicher Software hinzu?"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
-"Um es beim Starten automatisch von der beständigen Datenpartition zu "
-"installieren."
+"Um es automatisch beim Start von Tails aus deinem beständigen Datenspeicher "
+"zu installieren."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr "Jedes Mal installieren"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr "Nur ein Mal installieren"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr "Die Konfiguration zusätzlicher Software schlug fehl."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
 msgstr ""
-"Um es automatisch beim Start von Tails zu installieren, kannst du eine "
-"beständige Datenpartition erstellen und unter <b>Zusätzliche Software</b> "
+"Um es automatisch beim Start von Tails zu installieren, kannst du einen "
+"beständigen Datenspeicher erstellen und unter <b>Zusätzliche Software</b> "
 "aktivieren."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
-msgstr "Beständige Datenpartition erzeugen"
+msgstr "Beständigen Datenspeicher erstellen"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
-msgstr "Die Erzeugung der beständigen Datenpartition schlug fehl."
+msgstr "Das Erstellen deines beständigen Datenspeichers ist fehlgeschlagen."
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr "Du kannst {packages} automatisch beim Start von Tails installieren"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr "Dazu musst du Tails von einem USB-Stick ausführen."
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "{packages} entfernen von deiner zusätzlichen Software?"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr "Dies stoppt das automatische Installieren von {packages}."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "Aufheben"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
-"Installiere deine zusätzliche Software von der beständigen Datenpartition..."
+"Installiere deine zusätzliche Software vom beständigen Datenspeicher..."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr "Dies kann einige Minuten dauern."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr "Die Installation deiner zusätzlichen Software schlug fehl"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr "Zusätzliche Software wurde erfolgreich installiert"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 "Die Überprüfung auf Aktualisierungen für deine zusätzliche Software schlug "
 "fehl"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -1388,11 +1384,11 @@ msgstr ""
 "Bitte überprüfe deine Netzwerkverbindung, starte Tails neu oder lies das "
 "Systemprotokoll syslog, um das Problem zu verstehen."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr "Die Aktualisierung deiner zusätzlichen Software schlug fehl"
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "Dokumentation"
 
@@ -1438,7 +1434,7 @@ msgid ""
 "some software using <a href=\"synaptic.desktop\">Synaptic Package Manager</"
 "a> or <a href=\"org.gnome.Terminal.desktop\">APT on the command line</a>."
 msgstr ""
-"Entsperre dazu deine beständige Datenpartition beim Start von Tails und "
+"Entsperre dazu deinen beständigen Datenspeicher beim Start von Tails und "
 "installiere dazu Software mit der <a href=\"synaptic.desktop\">Synaptic-"
 "Paketverwaltung</a> oder <a href=\"org.gnome.Terminal.desktop\">APT auf der "
 "Kommandozeile</a>."
@@ -1449,15 +1445,15 @@ msgid ""
 "href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a href=\"org."
 "gnome.Terminal.desktop\">APT on the command line</a>."
 msgstr ""
-"Erstelle dazu eine beständige Datenpartition und installiere gewünschte "
+"Erstelle dazu einen beständigen Datenspeicher und installiere gewünschte "
 "Software mit der <a href=\"synaptic.desktop\">Synaptic-Paketverwaltung</a> "
 "oder <a href=\"org.gnome.Terminal.desktop\">APT auf der Kommandozeile</a>."
 
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:214
 msgid "To do so, install Tails on a USB stick and create a persistent storage."
 msgstr ""
-"Dazu installierst du Tails auf einem USB-Stick und erstellst eine beständige "
-"Datenpartition."
+"Dazu installierst du Tails auf einem USB-Stick und erstellst einen "
+"beständigen Datenspeicher."
 
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:258
 msgid "[package not available]"
@@ -1557,19 +1553,19 @@ msgstr ""
 "Lies {manual_upgrade_url}"
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr "Fehler:"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr "Warnung: Virtuelle Maschine erkannt!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr "Warnung: nicht-freie virtuelle Maschine erkannt!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1581,11 +1577,11 @@ msgstr ""
 "das Wirts-Betriebssystem als auch für die Virtualisierungs-Anwendung als "
 "vertrauenswürdig gelten."
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr "Nicht erneut anzeigen"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr "Mehr erfahren"
 
@@ -1599,23 +1595,20 @@ msgid "_Use a bridge that you already know"
 msgstr "_Verwende eine Brücke, die du bereits kennst"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:242
-#, fuzzy
 msgid ""
 "To save your bridge, <a href=\"doc/persistent_storage\">unlock your "
 "Persistent Storage</a>."
 msgstr ""
-"Um deine Brücke zu speichern, <a href=\"doc/first_steps/"
-"persistence\">entsperre deine beständige Datenpartition</a>."
+"Um deine Brücke zu speichern, <a href=\"doc/persistent_storage\">entsperre "
+"deinen beständigen Datenspeicher</a>."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:249
-#, fuzzy
 msgid ""
 "To save your bridge, <a href=\"doc/persistent_storage\">create a Persistent "
 "Storage</a> on your Tails USB stick."
 msgstr ""
-"Um deine Brücke zu speichern, <a href=\"doc/first_steps/"
-"persistence\">erstelle eine beständige Datenpartition</a> auf deinem Tails "
-"USB-Stick."
+"Um deine Brücke zu speichern, <a href=\"doc/persistent_storage\">erstelle "
+"einen beständigen Datenspeicher</a> auf deinem Tails USB-Stick."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:269
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:773
@@ -1632,19 +1625,22 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:334
 msgid "Failed to configure your Persistent Storage"
-msgstr "Konfiguration der beständigen Datenpartition fehlgeschlagen"
+msgstr "Konfiguration des beständigen Datenspeichers ist fehlgeschlagen"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:385
 msgid "Failed to detect a webcam. Maybe your webcam is too old."
 msgstr ""
+"Es konnte keine Webcam erkannt werden. Vielleicht ist deine Webcam zu alt."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:394
 msgid "Failed to scan QR code. Try with more light or closer to the camera."
 msgstr ""
+"Der QR-Code konnte nicht gescannt werden. Versuche es mit mehr Licht oder "
+"näher an der Kamera."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:401
 msgid "Invalid QR code. Try sending another email and scanning again."
-msgstr ""
+msgstr "Ungültiger QR-Code. Sende eine weitere E-Mail und scanne erneut."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:451
 msgid "Synchronizing the system's clock…"
@@ -1678,9 +1674,8 @@ msgid "You can now browse the Internet anonymously and uncensored."
 msgstr "Du kannst das Internet nun anonym und unzensiert durchstöbern."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:703
-#, fuzzy
 msgid "This local network seems to be blocking access to Tor."
-msgstr "Dein lokales Netzwerk blockiert den Zugang zu Tor."
+msgstr "Dein lokales Netzwerk scheint den Zugang zu Tor zu blockieren."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:776
 msgid "Bridge address malformed"
@@ -1695,7 +1690,7 @@ msgstr ""
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1011
 #, python-brace-format
 msgid "Scanned {bridge_type} bridge: <b>{bridge_info}</b>."
-msgstr ""
+msgstr "Gescannt {bridge_type} Brücke: <b>{bridge_info}</b>."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1102
 msgid "Are you sure you want to lose progress?"
@@ -1717,11 +1712,11 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1112
 msgid "Close and Lose Progress"
-msgstr ""
+msgstr "Schließen und Fortschritt verlieren"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1113
 msgid "Wait"
-msgstr ""
+msgstr "Warten"
 
 #: config/chroot_local-includes/usr/local/bin/thunderbird:41
 msgid "You need to migrate your OpenPGP keys"
@@ -1734,13 +1729,13 @@ msgid ""
 "<i>Thunderbird</i>, follow our migration instructions."
 msgstr ""
 "<i>Thunderbird</i> 78 ersetzt jetzt die <i>Enigmail</i>-Erweiterung durch "
-"eingebaute Unterstützung für OpenPGP-Verschlüsselung. Um deine OpenPGP "
+"eingebaute Unterstützung für OpenPGP-Verschlüsselung. Um deine OpenPGP-"
 "Schlüssel in <i>Thunderbird</i> weiter zu verwenden, befolge unsere "
 "Migrationsanweisungen."
 
 #: config/chroot_local-includes/usr/local/bin/thunderbird:45
 msgid "_Open Migration Instructions"
-msgstr "_Öffne Migrations-Anweisungen"
+msgstr "_Öffne Migrationsanweisungen"
 
 #: config/chroot_local-includes/usr/local/bin/thunderbird:46
 msgid "_Migrate Later"
@@ -1944,32 +1939,35 @@ msgstr ""
 msgid "Choose File Container"
 msgstr "Container auswählen"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
+"Der Unsafe Browser wurde auf dem Willkommensbildschirm deaktiviert.\\n\\n"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
+"Um den Unsafe Browser zu verwenden, starte Tails neu und stelle sicher, dass "
+"der Unsafe Browser in den zusätzlichen Einstellungen des "
+"Willkommensbildschirms aktiviert ist."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
-#, fuzzy
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 msgid "To use the Unsafe Browser, restart Tails."
-msgstr "Deaktiviere den unsicheren Browser (standard)"
+msgstr "Um den Unsafe Browser zu verwenden, starte Tails neu."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr "_Neustart"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 msgid "_Cancel"
 msgstr "_Abbrechen"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
@@ -1977,67 +1975,67 @@ msgstr ""
 "Möchtest du Tails wirklich jetzt neustarten?\\n\\nAlle deine aktuelle Arbeit "
 "wird dadurch verloren gehen."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr "Jetzt neu starten"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr "Neustart des Systems fehlgeschlagen."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
-msgstr "Unsicherer Browser wird gestartet …"
+msgstr "Unsafe Browser wird gestartet …"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr "Dies könnte eine Weile dauern, bitte habe etwas Geduld."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
-msgstr "Unsicherer Browser wird beendet…"
+msgstr "Unsafe Browser wird beendet…"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
 msgstr ""
-"Dies könnte eine Weile dauern, und bevor der unsichere Browser geschlossen "
-"ist, kannst du ihn nicht noch einmal starten."
+"Dies könnte eine Weile dauern, und bevor der Unsafe Browser geschlossen ist, "
+"kannst du ihn nicht noch einmal starten."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
-msgstr "Unsicherer Browser"
+msgstr "Unsafe Browser"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
 msgstr ""
-"Ein anderer Unsicherer Browser ist derzeit offen oder wird gerade gesäubert. "
+"Ein anderer Unsafe Browser ist derzeit offen oder wird gerade gesäubert. "
 "Bitte versuche es später noch einmal."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr "Konnte chroot nicht einrichten."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr "Konfiguration des Browsers fehlgeschlagen."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
 "network."
 msgstr ""
 "Du bist noch nicht mit einem lokalen Netzwerk verbunden.\\n\\nUm den Unsafe "
-"Browser starten zu können, musst du zuerst eine Verbindung zu einem Wi-Fi, "
+"Browser starten zu können, musst du zuerst eine Verbindung zu einem WLAN, "
 "kabelgebundenen oder mobilen Netzwerk herstellen."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr "Starten des Browsers fehlgeschlagen."
 
@@ -2218,10 +2216,10 @@ msgid "Tails documentation"
 msgstr "Tails-Dokumentation"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
-#, fuzzy
 msgid "Persistent Storage"
-msgstr "Beständige Datenpartition erzeugen"
+msgstr "Beständiger Datenspeicher"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:2
 msgid ""
@@ -2249,6 +2247,19 @@ msgstr "Lerne Tails zu nutzen"
 msgid "Learn more about Tails"
 msgstr "Mehr über Tails erfahren"
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "Beständiger Datenspeicher"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+#, fuzzy
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+"Aktiviere die Funktionen des beständigen Datenspeichers für die Daten, die "
+"du auf deinem Tails-USB-Stick speichern möchtest."
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr "Installiere, klone, aktualisiere Tails"
@@ -2259,7 +2270,7 @@ msgstr "Verbinde Tails mit dem Tor-Netzwerk"
 
 #: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:1
 msgid "Tor Browser"
-msgstr "Tor-Browser"
+msgstr "Tor Browser"
 
 #: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:2
 msgid "Anonymous Web Browser"
@@ -2271,7 +2282,7 @@ msgstr "Das Internet ohne Anonymität durchsuchen"
 
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:3
 msgid "Unsafe Web Browser"
-msgstr "Unsicherer Internet-Browser"
+msgstr "Unsafe Internet-Browser"
 
 #: ../config/chroot_local-includes/usr/share/applications/unlock-veracrypt-volumes.desktop.in.h:2
 msgid "Mount VeraCrypt encrypted file containers and devices"
@@ -2282,8 +2293,8 @@ msgid ""
 "Configure the additional software installed from your persistent storage "
 "when starting Tails"
 msgstr ""
-"Konfiguriere zusätzliche Software, die beim Starten von Tails von deiner "
-"beständigen Datenpartition installiert wird"
+"Konfiguriere zusätzliche Software, die beim Starten von Tails von deinem "
+"beständigen Datenspeicher installiert wird"
 
 #: ../config/chroot_local-includes/usr/share/applications/whisperback.desktop.in.h:1
 msgid "WhisperBack Error Reporting"
@@ -2320,7 +2331,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr "Administrationspasswort"
 
@@ -2347,7 +2358,7 @@ msgid "Disable"
 msgstr "Deaktivieren"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr "MAC Address-Anonymisierung"
 
@@ -2373,7 +2384,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr "MAC-Adressen nicht anonymisieren"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr "Netzwerkkonfiguration"
 
@@ -2411,7 +2422,6 @@ msgstr ""
 "Sicherheit alle Netzwerke deaktivieren."
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:528
-#, fuzzy
 msgid ""
 "The Unsafe Browser allows you to sign in to a network using a captive "
 "portal.\n"
@@ -2436,83 +2446,89 @@ msgstr ""
 "E-Mail Adresse.\n"
 "\n"
 "Der Unsafe Browser ist nicht anonym und kann dich deanonymisieren. Verwende "
-"ihn nur, um dich bei Netzwerken anzumelden."
+"ihn nur, um dich bei Netzwerken anzumelden.\n"
+"\n"
+"Der Unsafe Browser ist seit Tails 5.8 (Dezember 2022) wieder standardmäßig "
+"aktiviert, nachdem wir die Sicherheitslücken behoben haben, aufgrund derer "
+"er in Tails 4.8 (Juni 2020) standardmäßig deaktiviert war."
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:576
-#, fuzzy
 msgid "Enable the Unsafe Browser (default)"
-msgstr "Deaktiviere den unsicheren Browser (standard)"
+msgstr "Aktiviere den Unsafe Browser (Standard)"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:622
-#, fuzzy
 msgid "Disable the Unsafe Browser"
-msgstr "Aktiviere den unsicheren Browser"
+msgstr "Deaktiviere den Unsafe Browser"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:100
 msgid "Settings were loaded from the persistent storage."
-msgstr "Einstellungen werden von der beständigen Datenpartition geladen."
+msgstr "Einstellungen werden vom beständigen Datenspeicher geladen."
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:152
 msgid "Welcome to Tails!"
 msgstr "Willkommen bei Tails!"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
-#, fuzzy
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 msgid "_Persistent Storage"
-msgstr "Beständige Datenpartition erzeugen"
+msgstr "_Beständiger Datenspeicher"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
+"Du kannst einige deiner Dateien und die Konfiguration in einem "
+"verschlüsselten beständigen Datenspeicher auf deinem Tails-USB-Stick "
+"speichern: deine Dokumente, Browser-Lesezeichen, WLAN-Passwörter und so "
+"weiter."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
-#, fuzzy
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr ""
-"Um es beim Starten automatisch von der beständigen Datenpartition zu "
-"installieren."
+"Du kannst deinen beständigen Datenspeicher nach dem Start von Tails "
+"erstellen und konfigurieren."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr "Sprache & Region"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
-msgstr "Vorgabeeinstellungen"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
-msgstr "Verschlüsselter _beständiger Speicherbereich"
+msgstr "Standardeinstellungen"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
 msgid "Show Passphrase"
 msgstr "Passphrase anzeigen"
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "Passphrase:"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
 msgstr ""
-"Gib dein Passphrase ein, um die beständigen Speicherbereich zu entsperren"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+#, fuzzy
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
-"Dein beständiger Speicherbereich ist entsperrt. Starte Tails neu, um ihn "
+"Dein beständigen Datenspeicher ist entsperrt. Starte Tails neu, um ihn "
 "wieder zu sperren."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr "_Zusätzliche Einstellungen"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr "Zusätzliche Einstellung hinzufügen"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
@@ -2521,61 +2537,55 @@ msgstr ""
 "benutzerdefinierte Einstellungen vorzunehmen, klicke unten auf die "
 "Schaltfläche \"+\"."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 msgid "Shutdown"
 msgstr "Herunterfahren"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr "Tails _starten"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:8
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:56
-#, fuzzy
 msgid "Change Passphrase"
-msgstr "Passphrase anzeigen"
+msgstr "Passphrase ändern"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:95
 msgid "Current _Passphrase"
 msgstr "Aktuelle _Passphrase"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:131
-#, fuzzy
 msgid "_New Passphrase"
-msgstr "Passphrase anzeigen"
+msgstr "_Neue Passphrase"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:179
-#, fuzzy
 msgid "_Confirm New Passphrase"
-msgstr "Passphrase anzeigen"
+msgstr "_Neue Passphrase bestätigen"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:215
-#, fuzzy
 msgid "_Show Passphrases"
-msgstr "Passphrase anzeigen"
+msgstr "_Passphrase anzeigen"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:253
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:213
-#, fuzzy
 msgid "The passphrases do not match"
 msgstr "Passphrasen stimmen nicht überein"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:317
 msgid "Ch_ange"
-msgstr ""
+msgstr "_Ändern"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/deleted_view.ui.in:21
-#, fuzzy
 msgid "The Persistent Storage was successfully deleted."
-msgstr "Lösche die beständige Datenpartition und installiere neu"
+msgstr "Der beständige Datenspeicher wurde erfolgreich gelöscht."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/deleted_view.ui.in:32
 msgid "_Close"
-msgstr ""
+msgstr "S_chließen"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/fail_view.ui.in:30
 msgid "Oh no! Something has gone wrong."
-msgstr ""
+msgstr "Oh nein, da ist etwas schief gelaufen."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/fail_view.ui.in:45
 msgid ""
@@ -2584,11 +2594,14 @@ msgid ""
 "You can send an error report or check the output of the following commands "
 "to investigate:"
 msgstr ""
+"Der beständige Datenspeicher-Dienst wurde unerwartet beendet.\n"
+"\n"
+"Du kannst einen Fehlerbericht senden oder die Ausgabe der folgenden Befehle "
+"überprüfen, um dies zu untersuchen:"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/fail_view.ui.in:74
-#, fuzzy
 msgid "Send Error Report"
-msgstr "WhisperBack Fehlermeldung"
+msgstr "Fehlerbericht senden"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:61
 msgid ""
@@ -2599,51 +2612,62 @@ msgid ""
 "<a href=\"doc/persistent_storage/backup\">Learn how to make a backup of your "
 "Persistent Storage.</a>"
 msgstr ""
+"Dein beständiger Datenspeicher ist entsperrt.\n"
+"\n"
+"Der Inhalt ist verfügbar, bis du Tails herunterfährst.\n"
+"\n"
+"<a href=\"doc/persistent_storage/backup\">Erfahre, wie du eine Sicherung "
+"deines beständigen Datenspeichers erstellst.</a>"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:89
 msgid ""
 "Turn on the features of the Persistent Storage for the data that you want to "
 "save to your Tails USB stick."
 msgstr ""
+"Aktiviere die Funktionen des beständigen Datenspeichers für die Daten, die "
+"du auf deinem Tails-USB-Stick speichern möchtest."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:106
-#, fuzzy
 msgid "Personal Documents"
-msgstr "Persönliche Daten"
+msgstr "Persönliche Dokumente"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:134
-#, fuzzy
 msgid "Persistent Folder"
-msgstr "Beständige Datenpartition löschen"
+msgstr "Beständiger Datenordner"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:153
-#, fuzzy
 msgid "Open Persistent Folder"
-msgstr "Beständige Datenpartition löschen"
+msgstr "Beständigen Datenordner öffnen"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:166
-#, fuzzy
 msgid "Activate Persistent Folder"
-msgstr "Beständige Datenpartition erzeugen"
+msgstr "Beständigen Datenordner aktivieren"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:191
-#, fuzzy
 msgid "System Settings"
-msgstr "Vorgabeeinstellungen"
+msgstr "Systemeinstellungen"
 
-#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
 #, fuzzy
+msgid "Welcome Screen"
+msgstr "Willkommensbildschirm aktivieren"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 msgid "Activate Welcome Screen"
-msgstr "Willkommensbildschirm"
+msgstr "Willkommensbildschirm aktivieren"
 
-#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
 #, fuzzy
+msgid "Printers"
+msgstr "Drucker aktivieren"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 msgid "Activate Printers"
-msgstr "Drucker"
+msgstr "Drucker aktivieren"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:275
 msgid "Network"
-msgstr ""
+msgstr "Netzwerk"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:303
 msgid "Network Connections"
@@ -2652,48 +2676,48 @@ msgstr "Netzwerkverbindungen"
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:304
 msgid "Save Wi-Fi passwords and mobile broadband configuration."
 msgstr ""
+"Speichere WLAN-Passwörter und die Konfiguration des mobilen Internetzugangs."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:314
-#, fuzzy
 msgid "Activate Network Connections"
-msgstr "Netzwerkverbindungen"
+msgstr "Netzwerkverbindungen aktivieren"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:325
 msgid "Tor Bridge"
 msgstr "Tor-Brücke"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:335
-#, fuzzy
 msgid "Activate Tor Bridge"
-msgstr "Tor-Brücke"
+msgstr "Tor-Brücke aktivieren"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:360
 msgid "Applications"
-msgstr ""
+msgstr "Anwendungen"
 
-#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
 #, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "Tor Browser-Lesezeichen aktivieren"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 msgid "Activate Tor Browser Bookmarks"
-msgstr "Browser-Lesezeichen"
+msgstr "Tor Browser-Lesezeichen aktivieren"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:409
-#, fuzzy
 msgid "Electrum Bitcoin Wallet"
-msgstr "Electrums Bitcoin-Wallet und Konfiguration"
+msgstr "Electrums Bitcoin-Wallet"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:419
-#, fuzzy
 msgid "Activate Electrum Bitcoin Wallet"
-msgstr "Electrums Bitcoin-Wallet und Konfiguration"
+msgstr "Electrums Bitcoin-Wallet aktivieren"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:430
-#, fuzzy
 msgid "Thunderbird Email Client"
-msgstr "Thunderbird"
+msgstr "Thunderbird E-Mail-Client"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:440
 msgid "Activate Thunderbird Email Client"
-msgstr ""
+msgstr "Thunderbird E-Mail-Client aktivieren"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:451
 msgid "GnuPG"
@@ -2701,64 +2725,55 @@ msgstr "GnuPG"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:452
 msgid "OpenPGP keys outside of Thunderbird."
-msgstr ""
+msgstr "OpenPGP-Schlüssel außerhalb von Thunderbird."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:462
 msgid "Activate GnuPG"
-msgstr ""
+msgstr "GnuPG aktivieren"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:473
 msgid "Pidgin Internet Messenger"
-msgstr ""
+msgstr "Pidgin Internet Messenger"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:483
 msgid "Activate Pidgin Internet Messenger"
-msgstr ""
+msgstr "Pidgin Internet Messenger aktivieren"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:494
 msgid "SSH Client"
 msgstr "SSH-Programm"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:504
-#, fuzzy
 msgid "Activate SSH Client"
-msgstr "SSH-Programm"
+msgstr "SSH-Client aktivieren"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:529
-#, fuzzy
 msgid "Advanced Settings"
-msgstr "Zusätzliche Einstellungen"
+msgstr "Erweiterte Einstellungen"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:558
-#, fuzzy
 msgid "Install additional software automatically when starting Tails."
-msgstr ""
-"Du kannst beim Starten von Tails zusätzliche Software automatisch von deinem "
-"beständigen Speicher installieren."
+msgstr "Zusätzliche Software automatisch beim Starten von Tails installieren."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:577
-#, fuzzy
 msgid "Configure Additional Software"
-msgstr "Zusätzliche Software"
+msgstr "Zusätzliche Software konfigurieren"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:590
-#, fuzzy
 msgid "Activate Additional Software"
-msgstr "Zusätzliche Software"
+msgstr "Zusätzliche Software aktivieren"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:601
 msgid "Dotfiles"
 msgstr "Dotfiles"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:602
-#, fuzzy
 msgid "Symlink every file in the Dotfiles folder into the Home folder."
-msgstr "Symlinke jede Datei im Ordner \"Dotfiles\" in den Ordner \"Home\""
+msgstr "Verknüpfe alle Dateien im Ordner \"Dotfiles\" mit dem Ordner \"Home\"."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:629
-#, fuzzy
 msgid "Activate Dotfiles"
-msgstr "Dotfiles"
+msgstr "Dotfiles aktivieren"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:659
 msgid "Custom"
@@ -2769,15 +2784,16 @@ msgid ""
 "To add or remove custom features, modify /live/persistence/"
 "TailsData_unlocked/persistence.conf."
 msgstr ""
+"Um benutzerdefinierte Funktionen hinzuzufügen oder zu entfernen, ändere /"
+"live/persistence/TailsData_unlocked/persistence.conf."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:720
-#, fuzzy
 msgid ""
 "<a href=\"doc/persistent_storage\">Learn more about the Persistent Storage.</"
 "a>"
 msgstr ""
-"Um deine Brücke zu speichern, <a href=\"doc/first_steps/"
-"persistence\">entsperre deine beständige Datenpartition</a>."
+"<a href=\"doc/persistent_storage\">Erfahre mehr über den beständigen "
+"Datenspeicher.</a>"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/locked_view.ui.in:52
 msgid ""
@@ -2789,6 +2805,13 @@ msgid ""
 "To delete your Persistent Storage, click <b>Delete</b> on the right of the "
 "title bar."
 msgstr ""
+"<b>Dein beständiger Datenspeicher ist gesperrt.</b>\n"
+"\n"
+"Um deinen beständigen Datenspeicher zu verwenden oder zu konfigurieren, "
+"musst du ihn im Willkommensbildschirm beim Start von Tails entsperren.\n"
+"\n"
+"Um deinen beständigen Datenspeicher zu löschen, klicke auf <b>Löschen</b> "
+"auf der rechten Seite der Titelleiste."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:52
 msgid ""
@@ -2797,6 +2820,10 @@ msgid ""
 "\n"
 "We recommend a long passphrase of 5 to 7 random words."
 msgstr ""
+"Wähle die Passphrase, mit der du die Verschlüsselung deines beständigen "
+"Datenspeichers und aller seiner Daten entsperrst.\n"
+"\n"
+"Wir empfehlen eine lange Passphrase mit 5 bis 7 zufälligen Wörtern."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:82
 msgid "Passphrase:"
@@ -2807,14 +2834,12 @@ msgid "Confirm:"
 msgstr "Bestätigen:"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:178
-#, fuzzy
 msgid "_Show Passphrase"
-msgstr "Passphrase anzeigen"
+msgstr "_Passphrase anzeigen"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:265
-#, fuzzy
 msgid "_Back"
-msgstr "Zurück"
+msgstr "_Zurück"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:56
 msgid ""
@@ -2831,6 +2856,19 @@ msgid ""
 "<a href=\"doc/persistent_storage\">Learn more about the Persistent Storage.</"
 "a>"
 msgstr ""
+"Alles, was du tust, verschwindet automatisch, wenn du Tails beendest.\n"
+"\n"
+"Du kannst aber einige deiner Dateien und die Konfiguration in einem "
+"verschlüsselten beständigen Datenspeicher, z.B. auf deinem Tails USB-Stick, "
+"speichern:\n"
+"\n"
+"• Deine Dokumente\n"
+"• Deine WLAN-Passwörter\n"
+"• Deine Browser-Lesezeichen\n"
+"• ...\n"
+"\n"
+"<a href=\"doc/persistent_storage\">Erfahre mehr über den beständigen "
+"Datenspeicher.</a>"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:92
 msgid ""
@@ -2839,30 +2877,32 @@ msgid ""
 "To be able to use Tails with a Persistent Storage, please follow our "
 "instructions on <a href=\"install\">installing Tails on a USB stick</a>."
 msgstr ""
+"Es ist leider nicht möglich, einen beständigen Datenspeicher auf diesem "
+"Gerät zu erstellen.\n"
+"\n"
+"Um Tails mit einem beständigen Datenspeicher nutzen zu können, folge bitte "
+"unseren Anweisungen auf <a href=\"install\">Tails auf einem USB-Stick "
+"installieren</a>."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:137
 msgid "Co_ntinue"
-msgstr ""
+msgstr "Fortfahre_n"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:29
-#, fuzzy
 msgid "_Delete..."
-msgstr "Wird gelöscht…"
+msgstr "_Löschen..."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:36
-#, fuzzy
 msgid "Delete Persistent Storage"
-msgstr "Beständige Datenpartition erzeugen"
+msgstr "Beständigen Datenspeicher löschen"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:49
-#, fuzzy
 msgid "_Change Passphrase..."
-msgstr "Passphrase anzeigen"
+msgstr "_Passphrase ändern..."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:66
-#, fuzzy
 msgid "_Restart Tails"
-msgstr "Tails neu starten"
+msgstr "_Tails neu starten"
 
 #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:61
 msgid "File Containers"
@@ -2904,11 +2944,11 @@ msgstr "_Entsperren"
 msgid "Detach this volume"
 msgstr "Container aushängen"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr "Ziel-USB-Stick:"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr "Neu installieren (alle Daten löschen)"
 
@@ -3048,27 +3088,22 @@ msgid "None"
 msgstr "Nichts"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:240
-#, fuzzy
 msgid "_Ask for a Tor bridge by email"
-msgstr "• Brücke über E-Mail"
+msgstr "_Tor-Brücke über E-Mail anfordern"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:259
-#, fuzzy
 msgid ""
 "Send an empty email to <tt>bridges@torproject.org</tt> from a Gmail or "
 "Riseup email address with your phone and scan the QR code that is attached "
 "to the automatic reply."
 msgstr ""
-"Um Tor-Brücken anzufordern, kannst du eine leere E-Mail an\n"
-"<tt>bridges@torproject.org</tt> von einer Gmail- or Riseup-E-Mail Adresse "
-"senden.\n"
-"\n"
-"Du kannst zum Beispiel die E-Mail von deinem Handy aus senden und die Brücke "
-"in Tails eingeben.\n"
+"Sende eine leere E-Mail an <tt>bridges@torproject.org</tt> von einer Gmail- "
+"oder Riseup-E-Mail-Adresse mit deinem Smartphone und scanne den QR-Code, der "
+"an die automatische Antwort angehängt ist."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:272
 msgid "Scan _QR code"
-msgstr ""
+msgstr "_QR-Code scannen"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:373
 msgid "_Enter a bridge that you already know"
@@ -3076,22 +3111,21 @@ msgstr "_Gib eine Brücke ein, die du bereits kennst"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:399
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1040
-#, fuzzy
 msgid "Bridge"
-msgstr "Tor-Brücke"
+msgstr "Brücke"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:412
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1053
 msgid "obfs4 ..."
-msgstr ""
+msgstr "obfs4..."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:485
 msgid "Save bridge to _Persistent Storage"
-msgstr "Speichere Brücke in _beständiger Datenpartition"
+msgstr "Brücke im _beständigen Datenspeicher speichern"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:510
 msgid "Save bridge to Persistent Storage"
-msgstr "Speichere Brücke in beständiger Datenpartition"
+msgstr "Brücke im beständigen Datenspeicher speichern"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:650
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1158
@@ -3151,12 +3185,10 @@ msgid "Configure a Local _Proxy"
 msgstr "Konfiguriere einen lokalen _Proxy"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:951
-#, fuzzy
 msgid "• Tor bridge by email"
-msgstr "• Brücke über E-Mail"
+msgstr "• Tor-Brücke über E-Mail"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:971
-#, fuzzy
 msgid ""
 "Tor bridges are secret Tor relays. Use a bridge as your first Tor relay if "
 "connections to Tor are blocked, for example in some countries, by some "
@@ -3164,29 +3196,22 @@ msgid ""
 msgstr ""
 "Tor-Brücken sind geheime Tor-Relays. Benutze eine Brücke als erstes Tor-"
 "Relay, wenn Verbindungen zu Tor blockiert sind, z.B. in einigen Ländern, "
-"einigen öffentlichen Netzwerken oder durch einige Kindersicherungen.\n"
-"\n"
-"Wähle diese Option, wenn du bereits weißt, dass du eine Brücke brauchst. "
-"Ansonsten erkennt Tails automatisch, ob du eine Brücke brauchst, um dich von "
-"deinem lokalen Netzwerk aus mit Tor zu verbinden."
+"einigen öffentlichen Netzwerken oder durch einige Kindersicherungen."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:991
-#, fuzzy
 msgid ""
 "To get a bridge, send an empty email to <tt>bridges@torproject.org</tt> from "
 "a Gmail or Riseup email address with your phone and scan the QR code that is "
 "attached to the automatic reply."
 msgstr ""
-"Um Tor-Brücken anzufordern, kannst du eine leere E-Mail an\n"
-"<tt>bridges@torproject.org</tt> von einer Gmail- or Riseup-E-Mail Adresse "
-"senden.\n"
-"\n"
-"Du kannst zum Beispiel die E-Mail von deinem Handy aus senden und die Brücke "
-"in Tails eingeben.\n"
+"Um eine Brücke zu erhalten, sende eine leere E-Mail an "
+"<tt>bridges@torproject.org</tt> von einer Gmail- oder Riseup-E-Mail-Adresse "
+"mit deinem Smartphone und scanne den QR-Code, der an die automatische "
+"Antwort angehängt ist."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1014
 msgid "Scan QR Code"
-msgstr ""
+msgstr "QR-Code scannen"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1145
 msgid ""
@@ -3345,9 +3370,8 @@ msgid "Failed to connect to Tor without bridges."
 msgstr "Verbindung zu Tor ohne Brücken fehlgeschlagen."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1870
-#, fuzzy
 msgid "This local network is blocking access to Tor."
-msgstr "Dein lokales Netzwerk blockiert den Zugang zu Tor."
+msgstr "Dieses lokale Netzwerk blockiert den Zugang zu Tor."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1902
 msgid "Connecting to Tor…"
@@ -3495,6 +3519,13 @@ msgstr "Dezember"
 msgid "Clock"
 msgstr "Uhr"
 
+#~ msgid "Encrypted _Persistent Storage"
+#~ msgstr "Verschlüsselter _beständiger Datenspeicher"
+
+#~ msgid "Enter your passphrase to unlock the persistent storage"
+#~ msgstr ""
+#~ "Gib dein Passphrase ein, um den beständigen Datenspeicher zu entsperren"
+
 #, python-format
 #~ msgid ""
 #~ "<h1>Help us fix your bug!</h1>\n"
diff --git a/po/el.po b/po/el.po
index b49e735933d..a5c06fe2b2c 100644
--- a/po/el.po
+++ b/po/el.po
@@ -33,8 +33,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
-"PO-Revision-Date: 2023-02-10 22:39+0000\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
+"PO-Revision-Date: 2023-03-09 08:38+0000\n"
 "Last-Translator: george kitsoukakis <norhorn@gmail.com>\n"
 "Language-Team: Greek <https://hosted.weblate.org/projects/tor/tails-gui/el/"
 ">\n"
@@ -43,7 +43,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.16-dev\n"
+"X-Generator: Weblate 4.16.2-dev\n"
 
 #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1
@@ -366,7 +366,7 @@ msgid "Upgrade later"
 msgstr "Αναβάθμιση αργότερα"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:518
-#, fuzzy, perl-brace-format
+#, perl-brace-format
 msgid ""
 "<b>You should do a manual upgrade to the latest version of {name}.</b>\n"
 "\n"
@@ -383,7 +383,7 @@ msgstr ""
 "Για περισσότερες πληροφορίες σχετικά με τη νέα έκδοση, δείτε το "
 "{details_url}\n"
 "\n"
-"Είναι δυνατή η αυτόματη αναβάθμιση του Tails στη νέα έκδοση.\n"
+"Είναι δυνατή η αυτόματη αναβάθμιση του Tails στη νέα έκδοση: {explanation}.\n"
 "\n"
 "Για να μάθετε πως να κάνετε χειροκίνητη αναβάθμιση, δείτε το "
 "{manual_upgrade_url}"
@@ -545,9 +545,9 @@ msgid "Additional Settings"
 msgstr "Πρόσθετες Ρυθμίσεις"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "Ακύρωση"
@@ -618,29 +618,28 @@ msgstr "Κλειστό"
 msgid "Off (default)"
 msgstr "Κλειστό (προεπιλογή)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
-#, fuzzy
-msgid "Persistent Storage Not Unlocked"
-msgstr "Μόνιμος αποθηκευτικός χώρος"
-
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
 #, fuzzy
+msgid "Persistent Storage Still Locked"
+msgstr "Ο μόνιμος αποθηκευτικός χώρος δεν ξεκλειδώθηκε"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
 msgstr ""
-"Θέλετε να επανεκκινήσετε το Tails τώρα;\\n\\nΟι εργασίες σας θα χαθούν."
+"Θέλετε να εκκινήσετε το Tails χωρίς να ξεκλειδώσετε τον μόνιμο αποθηκευτικό "
+"χώρο;"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
 #, fuzzy
-msgid "Continue Without Persistent Storage"
-msgstr "Δημιουργία Μόνιμου αποθηκευτικού χώρου"
+msgid "Start Without Persistent Storage"
+msgstr "Συνέχεια χωρίς το μόνιμο αποθηκευτικό χώρο"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
-#, fuzzy
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 msgid "Don't _Create Persistent Storage"
-msgstr "_Δημιουργία μόνιμου αποθηκευτικού χώρου"
+msgstr "Να μην _δημιουργηθεί μόνιμος αποθηκευτικός χώρος"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 msgid "_Create Persistent Storage"
 msgstr "_Δημιουργία μόνιμου αποθηκευτικού χώρου"
@@ -660,7 +659,6 @@ msgstr "Ξεκλειδώνεται…"
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr "Ξεκλείδωμα"
 
@@ -898,7 +896,7 @@ msgstr "Η συσκευή είναι loopback. Παρακάμπτεται η ε
 msgid "Synchronizing data on disk..."
 msgstr "Γίνεται συγχρονισμός των δεδομένων δίσκου..."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
@@ -906,63 +904,63 @@ msgstr ""
 "Σφάλμα: Αδυναμία ορισμού της ετικέτας ή λήψης του UUID της συσκευής σας. "
 "Αδυναμία συνέχειας."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr "Η εγκατάσταση ολοκληρώθηκε! (%s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr "Η εγκατάσταση του Tails απέτυχε!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr "Πρόγραμμα εγκατάστασης Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr "Κλωνοποίηση του τρέχοντος Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr "Χρησιμοποιήστε μια κατεβασμένη ISO image του Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr "Αναβάθμιση"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr "Οδηγίες χειροκίνητης αναβάθμισης"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr "Εγκατάσταση"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr "Οδηγίες εγκατάστασης"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(size)s %(vendor)s %(model)s συσκευή (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr "Δεν έχει επιλεχθεί ISO image"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr "Παρακαλούμε επιλέξτε ένα ISO image του Tails."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -973,16 +971,16 @@ msgstr ""
 "αφαιρέσιμο από τον κατασκευαστή του και το Tails θα αποτύχουν να εκκινηθούν "
 "σε αυτό. Παρακαλώ προσπαθήστε να εγκαταστήσετε σε διαφορετικό μοντέλο."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
 "%(size)s GB is required)."
 msgstr ""
-"Η συσκευή  \"%(pretty_name)s\" είναι πολύ μικρή για να εγκαταστήσετε το "
-"Tails (απαιτούνται τουλάχιστον %(size)s GB)."
+"Η συσκευή \"%(pretty_name)s\" είναι πολύ μικρή για να εγκαταστήσετε το Tails "
+"(απαιτούνται τουλάχιστον %(size)s GB)."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -994,36 +992,36 @@ msgstr ""
 "κατεβάσει:\n"
 "%(dl_url)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr ""
 "Δε βρέθηκε συσκευή που να πληρεί τις προϋποθέσεις για την εγκατάσταση του "
-"Tails "
+"Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr ""
 "Παρακαλώ εισάγετε μονάδα δίσκου usb ή κάρτα SD μεγέθους τουλάχιστον %0.1f GB."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr "Προέκυψε σφάλμα κατά την εγκατάσταση του Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr "Η εγκατάσταση ολοκληρώθηκε!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr "Αδυναμία προσάρτησης συσκευής"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(parent_size)s %(vendor)s %(model)s συσκευή (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
@@ -1033,11 +1031,11 @@ msgstr ""
 "\n"
 "Ο μόνιμος χώρος του αφαιρούμενου μέσου USB θα χαθεί."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr "Διαγραφή του μόνιμου αποθηκευτικού χώρου και επανεγκατάσταση"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
@@ -1047,20 +1045,20 @@ msgstr ""
 "\n"
 "Όλα τα δεδομένα αυτής της μονάδας USB θα χαθούν."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr "Διαγραφή όλων των δεδομένων και εγκατάσταση"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr "%(description)s%(delete_message)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr "Επιβεβαιώστε τη μονάδα USB προορισμού"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
@@ -1068,7 +1066,7 @@ msgstr ""
 "Το συγκεκριμένο αρχείο δεν μπορεί να αναγνωσθεί. Παρακαλώ διορθώστε τα "
 "δικαιώματά του ή διαλέξτε άλλο αρχείο."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
@@ -1076,7 +1074,7 @@ msgstr ""
 "Αδυναμία χρήσης του επιλεγμένου αρχείου. Μπορεί να έχετε καλύτερη τύχη αν "
 "μετακινήσετε το ISO στη ρίζα του δίσκου σας (π.χ.: C:\\)."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr "επιλέχθηκαν %(filename)s"
@@ -1167,7 +1165,7 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1233,7 +1231,7 @@ msgstr "μη διαθέσιμο"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -1242,7 +1240,7 @@ msgstr ""
 "{details} Παρακαλώ, ελέγξτε τη λίστα σας με τα επιπρόσθετα λογισμικά ή "
 "διαβάστε το αρχείο συστήματος για να κατανοήσετε το πρόβλημα."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
@@ -1250,56 +1248,56 @@ msgstr ""
 "[λεπτομέρειες] Παρακαλώ, ελέγξτε τη λίστα σας με τα επιπρόσθετα λογισμικά ή "
 "διαβάστε το αρχείο συστήματος για να κατανοήσετε το πρόβλημα."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr "Εμφάνιση αρχείου καταγραφής"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "Διαμόρφωση"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} και {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ", "
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "Να προστεθούν τα {packages} στο επιπρόθετο λογισμικό σας;"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 "Μπορείτε να εγκαταστήσετε επιπλέον λογισμικό αυτόματα από το μόνιμο "
 "αποθηκευτικό σας χώρο ξεκινώντας το Tails."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr "Εγκατάσταση κάθε φορά"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr "Εγκατάσταση μόνο μία φορά"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr "Η διαμόρφωση για το επιπρόσθετο λογισμικό απέτυχε."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -1308,69 +1306,69 @@ msgstr ""
 "δημιουργήσετε ένα μόνιμο αποθηκευτικό χώρο και να ενεργοποιήσετε τη "
 "λειτουργία <b>Πρόσθετο λογισμικό</b>."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr "Δημιουργία Μόνιμου αποθηκευτικού χώρου"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr "Η δημιουργία μόνιμου αποθηκευτικού χώρου απέτυχε."
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 "Θα μπορούσατε να εγκαταστήσετε {packages} αυτόματα ξεκινώντας το Tails."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr "Για να το κάνετε, χρειάζεται να τρέξετε το Tails από USB."
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "Να αφαιρεθούν τα {packages} από το επιπρόθετο λογισμικό σας;"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr "Αυτό θα σταματήσει την εγκατάσταση των {packages} αυτόματα."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "Απομάκρυνση"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 "Εγκαθιστάται το πρόσθετο λογισμικό σας από το μόνιμο αποθηκευτικό χώρο..."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr "Αυτό μπορεί να πάρει μερικά λεπτά."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr "Η εγκατάσταση του πρόσθετου λογισμικού απέτυχε."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr "Το πρόσθετο λογισμικό εγκαταστάθηκε επιτυχώς."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr "Ο έλεγχος για αναβαθμίσεις για τα πρόσθετα λογισμικά σας απέτυχε."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -1378,11 +1376,11 @@ msgstr ""
 "Ελέγξτε την σύνδεσή σας στο διαδίκτυο, επανεκκινήστε το Tails ή διαβάστε το "
 "ιστορικό συστήματος για να κατανοήσετε το πρόβλημα."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr "Η αναβάθμιση του πρόσθετού σας λογισμικού απέτυχε."
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "Τεκμηρίωση"
 
@@ -1545,19 +1543,19 @@ msgstr ""
 "Δείτε το {manual_upgrade_url}"
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr "σφάλμα:"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr "Προειδοποίηση: ανιχνεύτηκε εικονικό μηχάνημα!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr "Προσοχή: ανελεύθερη εικονική μηχανή εντοπίστηκε!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1569,11 +1567,11 @@ msgstr ""
 "Tails. Έμπιστο πρέπει να θεωρείται μόνο το ελεύθερο λογισμικό, τόσο για το "
 "λογισμικό εικονοποίησης όσο και για το λειτουργικό σύστημα."
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr "Να μην εμφανιστεί ξανά"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr "Μάθε περισσότερα"
 
@@ -1587,23 +1585,21 @@ msgid "_Use a bridge that you already know"
 msgstr "_Χρήση γέφυρας που γνωρίζετε"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:242
-#, fuzzy
 msgid ""
 "To save your bridge, <a href=\"doc/persistent_storage\">unlock your "
 "Persistent Storage</a>."
 msgstr ""
-"Για να αποθηκεύσετε τη γέφυρα, <a href=\"doc/first_steps/"
-"persistence\">ξεκλειδώστε το μόνιμο αποθηκευτικό χώρο</a>."
+"Για να αποθηκεύσετε τη γέφυρα σας, <a href=\"doc/"
+"persistent_storage\">ξεκλειδώστε το μόνιμο αποθηκευτικό χώρο σας</a>."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:249
-#, fuzzy
 msgid ""
 "To save your bridge, <a href=\"doc/persistent_storage\">create a Persistent "
 "Storage</a> on your Tails USB stick."
 msgstr ""
-"Για να αποθηκεύσετε τη γέφυρά σας, <a href=\"doc/first_steps/"
-"persistence\">δημιουργήστε ένα Μόνιμο αποθηκευτικό χώρο</a> στο στικάκι USB "
-"του Tails."
+"Για να αποθηκεύσετε τη γέφυρά σας, <a href=\"doc/"
+"persistent_storage\">δημιουργήστε ένα Μόνιμο αποθηκευτικό χώρο</a> στο "
+"στικάκι USB του Tails."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:269
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:773
@@ -1671,9 +1667,8 @@ msgstr ""
 "Μπορείτε τώρα να περιηγηθείτε στο Διαδίκτυο ανώνυμα και χωρίς λογοκρισία."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:703
-#, fuzzy
 msgid "This local network seems to be blocking access to Tor."
-msgstr "Το τοπικό σας δίκτυο δεν επιτρέπει την πρόσβαση στο Tor."
+msgstr "Το τοπικό σας δίκτυο φαίνεται πως εμποδίζει την πρόσβαση στο Tor."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:776
 msgid "Bridge address malformed"
@@ -1709,11 +1704,11 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1112
 msgid "Close and Lose Progress"
-msgstr ""
+msgstr "Κλείσιμο και απώλεια προόδου"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1113
 msgid "Wait"
-msgstr ""
+msgstr "Αναμονή"
 
 #: config/chroot_local-includes/usr/local/bin/thunderbird:41
 msgid "You need to migrate your OpenPGP keys"
@@ -1799,7 +1794,7 @@ msgstr "{volume_name} (Μόνο-για-ανάγνωση)"
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:125
 #, python-brace-format
 msgid "{partition_name} in {container_path}"
-msgstr "{partition_name}  στο {container_path}"
+msgstr "{partition_name} στο {container_path}"
 
 #. Translators: Don't translate {volume_name} and {path_to_file_container},
 #. they are placeholders and will be replaced. You should only have to translate
@@ -1929,18 +1924,19 @@ msgid ""
 "Please try using the <i>Disks</i> application instead."
 msgstr ""
 "Δεν μπόρεσε να προστεθεί ο φορέας αρχείου %s: Σφάλμα κατά την αναμονή "
-"εγκατάστασης. Παρακαλούμε προσπαθήστε να χρησιμοποιήσετε την εφαρμογή "
-"<i>δίσκων</i>αντ' αυτού."
+"εγκατάστασης.\n"
+"Παρακαλούμε προσπαθήστε να χρησιμοποιήσετε την εφαρμογή <i>δίσκων</i>αντ' "
+"αυτού."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
 msgid "Choose File Container"
 msgstr "Επιλέξτε φορέα αρχείων"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr "Το Unsafe Browser είναι απενεργοποιημένο στην Οθόνη Υποδοχής.\\n\\n"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
@@ -1949,48 +1945,48 @@ msgstr ""
 "το Unsafe Browser είναι ενεργοποιημένο από τις ρυθμίσεις της Οθόνης "
 "Καλωσορίσματος."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr "Για χρήση του Unsafe Browser, επανεκκινήστε το Tails."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr "_Επανεκκίνηση"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 msgid "_Cancel"
 msgstr "_Ακύρωση"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 msgstr ""
 "Θέλετε να επανεκκινήσετε το Tails τώρα;\\n\\nΟι εργασίες σας θα χαθούν."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr "Επανεκκίνηση τώρα"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr "Η επανεκκίνηση του συστήματος απέτυχε."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr "Εκκίνηση του μη ασφαλούς περιηγητή..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr "Αυτό μπορεί να πάρει λίγο χρόνο· παρακαλούμε περιμένετε."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr "Τερματισμός του μη ασφαλούς περιηγητή..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
@@ -1998,13 +1994,13 @@ msgstr ""
 "Αυτό μπορεί να πάρει λίγη ώρα, και δεν πρέπει να επανεκκινήσετε τον μη "
 "ασφαλή περιηγητή προτού τερματιστεί σωστά."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr "Unsafe Browser"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
@@ -2012,15 +2008,15 @@ msgstr ""
 "Ένα άλλο Unsafe Browser εκτελείται αυτή τη στιγμή ή είναι υπό εκκαθάριση. "
 "Παρακαλούμε προσπαθήστε σε λίγο."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr "Αποτυχία ρύθμισης chroot."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr "Αποτυχία ρύθμισης του περιηγητή."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
@@ -2030,7 +2026,7 @@ msgstr ""
 "ασφαλή περιηγητή, πρέπει αρχικά να συνδεθείτε σε ένα ασύρματο ή ενσύρματο "
 "δίκτυο."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr "Αποτυχία εκτέλεσης του φυλλομετρητή."
 
@@ -2208,6 +2204,7 @@ msgid "Tails documentation"
 msgstr "Τεκμηρίωση του Tails"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 msgid "Persistent Storage"
 msgstr "Μόνιμος αποθηκευτικός χώρος"
@@ -2236,6 +2233,19 @@ msgstr "Μάθετε πώς να χρησιμοποιείτε το Tails"
 msgid "Learn more about Tails"
 msgstr "Μάθετε περισσότερα σχετικά με Tails"
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "Μόνιμος αποθηκευτικός χώρος"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+#, fuzzy
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+"Ενεργοποιήστε τη δυνατότητα του Μόνιμου αποθηκευτικού χώρου για τα δεδομένα "
+"που θέλετε να αποθηκεύσετε στη συσκευή USB Tails."
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr "Εγκατάσταση, κλωνοποίηση, αναβάθμιση του Tails"
@@ -2311,7 +2321,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr "Κωδικός διαχειριστή"
 
@@ -2338,7 +2348,7 @@ msgid "Disable"
 msgstr "Απενεργοοίηση"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr "Ανωνυμοποίηση διευθύνσεων MAC"
 
@@ -2363,7 +2373,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr "Χωρίς ανωνυμοποίηση των διευθύνσεων MAC"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr "Ρύθμιση δικτύου"
 
@@ -2445,11 +2455,11 @@ msgstr "Οι ρυθμίσεις φορτώθηκαν από τον μόνιμο
 msgid "Welcome to Tails!"
 msgstr "Καλωσήρθατε στο Tails!"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 msgid "_Persistent Storage"
 msgstr "_Μόνιμος αποθηκευτικός χώρος"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
@@ -2459,49 +2469,52 @@ msgstr ""
 "κρυπτογραφημένο αποθηκευτικό χώρο της συσκευής USB Tails σας: έγγραφα, "
 "σελιδοδείκτες, κωδικοί πρόσβασης Wi-Fi κτλ."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr ""
 "Μπορείτε να δημιουργήσετε και να ρυθμίσετε τον αποθηκευτικό χώρος σας μετά "
 "την εκκίνηση του Tails."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr "Γλώσσα και περιοχή"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr "Προεπιλεγμένες ρυθμίσεις"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
-msgstr "Κρυπτογραφημένος _Μόνιμος αποθηκευτικός χώρος"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
 msgid "Show Passphrase"
 msgstr "Εμφάνιση συνθηματικού"
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
-msgstr "Εισάγετε το συνθηματικό για να ξεκλειδώσετε το μόνιμο χώρο αποθήκευσης"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "Συνθηματικό:"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+#, fuzzy
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 "Ο μόνιμος αποθηκευτικός χώρος σας είναι ξεκλειδωμένος. Επανεκκινήστε το "
 "Tails για να το ξανακλειδώσετε."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr "_Πρόσθετες Ρυθμίσεις"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr "Προσθήκη πρόσθετης ρύθμισης"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
@@ -2510,11 +2523,11 @@ msgstr ""
 "Για να προσθέσετε μια προσαρμοσμένη ρύθμιση, πατήστε το κουμπί \"+\" "
 "παρακάτω."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 msgid "Shutdown"
 msgstr "Κλείσιμο"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr "_Έναρξη Tails"
 
@@ -2577,7 +2590,6 @@ msgid "Send Error Report"
 msgstr "Υποβολή αναφοράς σφάλματος"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:61
-#, fuzzy
 msgid ""
 "Your Persistent Storage is unlocked.\n"
 "\n"
@@ -2590,7 +2602,7 @@ msgstr ""
 "\n"
 "Τα περιεχόμενά του θα είναι διαθέσιμα έως να τερματίσετε το Tails.\n"
 "\n"
-"<a href=\"doc/first_steps/persistence/backup\">Μάθετε πώς μπορείτε να "
+"<a href=\"doc/persistent_storage/backup\">Μάθετε πώς μπορείτε να "
 "δημιουργήσετε αντίγραφο ασφαλείας του αποθηκευτικού χώρου σας.</a>"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:89
@@ -2621,10 +2633,20 @@ msgstr "Ενεργοποίηση Μόνιμου αποθηκευτικού φα
 msgid "System Settings"
 msgstr "Ρυθμίσεις συστήματος"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+#, fuzzy
+msgid "Welcome Screen"
+msgstr "Ενεργοποίηση Οθόνης υποδοχής"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 msgid "Activate Welcome Screen"
 msgstr "Ενεργοποίηση Οθόνης υποδοχής"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+#, fuzzy
+msgid "Printers"
+msgstr "Ενεργοποίηση Εκτυπωτών"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 msgid "Activate Printers"
 msgstr "Ενεργοποίηση Εκτυπωτών"
@@ -2657,6 +2679,11 @@ msgstr "Ενεργοποίηση Γέφυρας Tor"
 msgid "Applications"
 msgstr "Εφαρμογές"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "Ενεργοποίηση Σελιδοδεικτών Tor Browser"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 msgid "Activate Tor Browser Bookmarks"
 msgstr "Ενεργοποίηση Σελιδοδεικτών Tor Browser"
@@ -2666,7 +2693,6 @@ msgid "Electrum Bitcoin Wallet"
 msgstr "Πορτοφόλι Electrum Bitcoin"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:419
-#, fuzzy
 msgid "Activate Electrum Bitcoin Wallet"
 msgstr "Ενεργοποίηση Πορτοφολιού Electrum Bitcoin"
 
@@ -2749,16 +2775,14 @@ msgstr ""
 "live/persistence/TailsData_unlocked/persistence.conf."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:720
-#, fuzzy
 msgid ""
 "<a href=\"doc/persistent_storage\">Learn more about the Persistent Storage.</"
 "a>"
 msgstr ""
-"<a href=\"doc/first_steps/persistence\">Μάθετε περισσότερα για τον μόνιμο "
-"αποθηκευτικό χώρο</a>"
+"<a href=\"doc/persistent_storage\">Μάθετε περισσότερα για τον μόνιμο "
+"αποθηκευτικό χώρο.</a>"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/locked_view.ui.in:52
-#, fuzzy
 msgid ""
 "<b>Your Persistent Storage is locked.</b>\n"
 "\n"
@@ -2771,7 +2795,10 @@ msgstr ""
 "<b>Ο αποθηκευτικός χώρος σας είναι κλειδωμένος.</b>\n"
 "\n"
 "Για χρήση ή ρύθμιση του αποθηκευτικού χώρου σας, ξεκλειδώστε τον από την "
-"οθόνη καλωσορίσματος κατά την έναρξη του Tails."
+"οθόνη καλωσορίσματος κατά την έναρξη του Tails.\n"
+"\n"
+"Για διαγραφή του αποθηκευτικού χώρου σας, κάντε κλικ στο <b>Διαγραφή</b> στα "
+"δεξιά της γραμμής τίτλου."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:52
 msgid ""
@@ -2802,7 +2829,6 @@ msgid "_Back"
 msgstr "_Πίσω"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:56
-#, fuzzy
 msgid ""
 "Everything you do disappears automatically when you shut down Tails.\n"
 "\n"
@@ -2817,34 +2843,32 @@ msgid ""
 "<a href=\"doc/persistent_storage\">Learn more about the Persistent Storage.</"
 "a>"
 msgstr ""
-"Γίνεται αυτόματη εκκαθάριση κατά τον τερματισμό του Tails.\n"
+"Γίνεται αυτόματη εκκαθάριση των ενεργειών σας κατά τον τερματισμό του "
+"Tails.\n"
 "\n"
 "Μπορείτε να αποθηκεύσετε ορισμένα αρχεία και ρυθμίσεις στον κρυπτογραφημένο "
-"αποθηκευτικό χώρο στο Tails USB:\n"
+"αποθηκευτικό χώρο στο Tails USB για παράδειγμα:\n"
 "\n"
 "• Τα έγγραφά σας\n"
 "• Τους κωδικούς πρόσβασης Wi-Fi\n"
 "• Τους σελιδοδείκτες σας\n"
 "• και πολλά άλλα\n"
 "\n"
-"<a href=\"doc/first_steps/persistence\">Μάθετε περισσότερα για τον μόνιμο "
-"αποθηκευτικό χώρο</a>"
+"<a href=\"doc/persistent_storage\">Μάθετε περισσότερα για τον μόνιμο "
+"αποθηκευτικό χώρο.</a>"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:92
-#, fuzzy
 msgid ""
 "Sorry, it is impossible to create a Persistent Storage on this device.\n"
 "\n"
 "To be able to use Tails with a Persistent Storage, please follow our "
 "instructions on <a href=\"install\">installing Tails on a USB stick</a>."
 msgstr ""
-"Δυστυχώς, αυτή η συσκευή Tails δεν υποστηρίζει τη δημιουργία μόνιμου "
-"αποθηκευτικού χώρου.\n"
+"Δυστυχώς, δεν είναι δυνατή η δημιουργία μόνιμου αποθηκευτικού χώρου σε αυτή "
+"τη συσκευή.\n"
 "\n"
 "Για χρήση του Tails με μόνιμο αποθηκευτικό χώρο, παρακαλούμε δείτε την "
-"τεκμηρίωση εγκατάστασης του Tails σε USB συσκευή:\n"
-"\n"
-"<a href=\"install\">Εγκατάσταση Tails</a>"
+"τεκμηρίωση <a href=\"install\">εγκατάστασης του Tails σε USB συσκευή</a>."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:137
 msgid "Co_ntinue"
@@ -2906,11 +2930,11 @@ msgstr "_Ξεκλείδωμα"
 msgid "Detach this volume"
 msgstr "Αποσύνδεση αυτού του τομέα"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr "USB stick προορισμού:"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr "Επανεγκατάσταση (διαγραφή όλων των δεδομένων)"
 
@@ -2937,22 +2961,22 @@ msgid ""
 "along with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 msgstr ""
 "WhisperBack - Επικοινωνήστε μαζί μας με κρυπτογραφημένο μήνυμα\n"
-"Πνευματική ιδιοκτησία (C) 2009-2018 Tails developers <tails@boum.org\n"
+"Πνευματική ιδιοκτησία (C) 2009-2018 Tails developers <tails@boum.org>\n"
 "\n"
 "Το πρόγραμμα αυτό αποτελεί δωρεάν λογισμικό· μπορείτε να το αναδιανέμετε ή/"
-"και να το τροποποιήσετε \n"
+"και να το τροποποιήσετε\n"
 "υπό τους όρους της GNU General Public License όπως αυτή δημοσιεύεται από\n"
-"το Free Software Foundation· είτε η έκδοση 3 της Άδειας, \n"
+"το Free Software Foundation· είτε η έκδοση 3 της Άδειας,\n"
 "είτε (με δική σας επιλογή) κάθε παλαιότερη έκδοσή της.\n"
 "\n"
-"Το πρόγραμμα διανέμεται με την ελπίδα ότι θα φανεί χρήσιμο, αλλά \n"
-"ΧΩΡΙΣ ΟΥΔΕΜΙΑ ΕΓΓΥΗΣΗ· χωρίς καν την υπονοούμενη εγγύηση \n"
-"ΕΜΠΟΡΕΥΣΙΜΟΤΗΤΑΣ ή ΚΑΤΑΛΛΗΛΟΤΗΤΑΣ ΓΙΑ ΚΑΠΟΙΟΝ ΣΥΓΚΕΚΡΙΜΕΝΟ ΣΚΟΠΟ. \n"
-"Για περισσότερες πληροφορίες, δείτε την Άδεια GNU \n"
-"General Public License. \n"
+"Το πρόγραμμα διανέμεται με την ελπίδα ότι θα φανεί χρήσιμο, αλλά\n"
+"ΧΩΡΙΣ ΟΥΔΕΜΙΑ ΕΓΓΥΗΣΗ· χωρίς καν την υπονοούμενη εγγύηση\n"
+"ΕΜΠΟΡΕΥΣΙΜΟΤΗΤΑΣ ή ΚΑΤΑΛΛΗΛΟΤΗΤΑΣ ΓΙΑ ΚΑΠΟΙΟΝ ΣΥΓΚΕΚΡΙΜΕΝΟ ΣΚΟΠΟ.\n"
+"Για περισσότερες πληροφορίες, δείτε την Άδεια GNU\n"
+"General Public License.\n"
 "\n"
 "Μαζί με το πρόγραμμα αυτό θα πρέπει να έχετε λάβει και ένα αντίγραφο της GNU "
-"General Public License. \n"
+"General Public License.\n"
 "Αν όχι, δείτε την ιστοσελίδα <http://www.gnu.org/licenses/>.\n"
 
 #: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:122
@@ -3051,9 +3075,8 @@ msgid "None"
 msgstr "Καμία"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:240
-#, fuzzy
 msgid "_Ask for a Tor bridge by email"
-msgstr "_Αίτηση γέφυρας μέσω email"
+msgstr "_Αίτηση γέφυρας Tor μέσω email"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:259
 msgid ""
@@ -3148,36 +3171,29 @@ msgid "Configure a Local _Proxy"
 msgstr "Ρύθμιση τοπικού _διακομιστή μεσολάβησης"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:951
-#, fuzzy
 msgid "• Tor bridge by email"
-msgstr "• Γέφυρα μέσω email"
+msgstr "• Γέφυρα Tor μέσω email"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:971
-#, fuzzy
 msgid ""
 "Tor bridges are secret Tor relays. Use a bridge as your first Tor relay if "
 "connections to Tor are blocked, for example in some countries, by some "
 "public networks, or by some parental controls."
 msgstr ""
-"Οι γέφυρες Tor είναι μυστικοί αναμεταδότες Tor. Χρησιμοποιείστε μια γέφυρα "
-"ως τον πρώτο σας αναμεταδότη Tor αν οι συνδέσεις στο Tor είναι "
+"Οι γέφυρες Tor είναι μυστικοί αναμεταδότες του Tor. Χρησιμοποιείστε μια "
+"γέφυρα ως τον πρώτο σας αναμεταδότη Tor αν οι συνδέσεις στο Tor είναι "
 "αποκλεισμένες, για παράδειγμα σε ορισμένες χώρες, σε ορισμένα δημόσια δίκτυα "
-"ή από ορισμένους γονικούς ελέγχους.\n"
-"\n"
-"Επιλέξτε αυτή την επιλογή αν ήδη γνωρίζετε πως χρειάζεστε μια γέφυρα. "
-"Αλλιώς, το Tails θα εντοπίσει αυτόματα αν χρειάζεστε γέφυρα για να "
-"συνδεθείτε στο Tor από το τοπικό δίκτυό σας."
+"ή από ορισμένους γονικούς ελέγχους."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:991
-#, fuzzy
 msgid ""
 "To get a bridge, send an empty email to <tt>bridges@torproject.org</tt> from "
 "a Gmail or Riseup email address with your phone and scan the QR code that is "
 "attached to the automatic reply."
 msgstr ""
-"Στείλτε ένα κενό email στο <tt>bridges@torproject.org</tt> από διεύθυνση "
-"Gmail ή Riseup από το τηλέφωνό σας και σαρώστε τον συνημμένο κωδικό QR που "
-"θα λάβετε αυτόματα ως απάντηση."
+"Για λήψη γέφυρας, στείλτε ένα κενό email στο <tt>bridges@torproject.org</tt> "
+"από διεύθυνση Gmail ή Riseup από το τηλέφωνό σας και σαρώστε τον συνημμένο "
+"κωδικό QR που θα λάβετε αυτόματα ως απάντηση."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1014
 msgid "Scan QR Code"
@@ -3339,9 +3355,8 @@ msgid "Failed to connect to Tor without bridges."
 msgstr "Αποτυχία σύνδεσης στο Tor χωρίς γέφυρες."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1870
-#, fuzzy
 msgid "This local network is blocking access to Tor."
-msgstr "Το τοπικό σας δίκτυο δεν επιτρέπει την πρόσβαση στο Tor."
+msgstr "Το τοπικό σας δίκτυο εμποδίζει την πρόσβαση στο Tor."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1902
 msgid "Connecting to Tor…"
@@ -3489,6 +3504,13 @@ msgstr "Δεκέμβριος"
 msgid "Clock"
 msgstr "Ρολόι"
 
+#~ msgid "Encrypted _Persistent Storage"
+#~ msgstr "Κρυπτογραφημένος _Μόνιμος αποθηκευτικός χώρος"
+
+#~ msgid "Enter your passphrase to unlock the persistent storage"
+#~ msgstr ""
+#~ "Εισάγετε το συνθηματικό για να ξεκλειδώσετε το μόνιμο χώρο αποθήκευσης"
+
 #, python-format
 #~ msgid ""
 #~ "<h1>Help us fix your bug!</h1>\n"
diff --git a/po/en_US.po b/po/en_US.po
index 974918f9d8e..ff6cdfcffb9 100644
--- a/po/en_US.po
+++ b/po/en_US.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
 "PO-Revision-Date: 2022-02-09 18:56+0000\n"
 "Last-Translator: mapmeld <nickd@codeforamerica.org>\n"
 "Language-Team: English (United States) (http://www.transifex.com/otf/"
@@ -429,9 +429,9 @@ msgid "Additional Settings"
 msgstr ""
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "Cancel"
@@ -503,24 +503,24 @@ msgstr ""
 msgid "Off (default)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
-msgid "Persistent Storage Not Unlocked"
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+msgid "Persistent Storage Still Locked"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
-msgid "Continue Without Persistent Storage"
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
+msgid "Start Without Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 msgid "Don't _Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 msgid "_Create Persistent Storage"
 msgstr ""
@@ -540,7 +540,6 @@ msgstr ""
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr ""
 
@@ -757,69 +756,69 @@ msgstr ""
 msgid "Synchronizing data on disk..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr "Install"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -827,14 +826,14 @@ msgid ""
 "a different model."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
 "%(size)s GB is required)."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -842,76 +841,76 @@ msgid ""
 "%(dl_url)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
 "The persistent storage on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
 "All data on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr ""
@@ -986,7 +985,7 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1046,143 +1045,143 @@ msgstr ""
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
 "log to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr ""
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr ""
 
@@ -1313,19 +1312,19 @@ msgid ""
 msgstr ""
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1333,11 +1332,11 @@ msgid ""
 "software."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr ""
 
@@ -1664,91 +1663,91 @@ msgstr ""
 msgid "Choose File Container"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 #, fuzzy
 msgid "_Cancel"
 msgstr "Cancel"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
 "network."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr ""
 
@@ -1906,6 +1905,7 @@ msgid "Tails documentation"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 msgid "Persistent Storage"
 msgstr ""
@@ -1932,6 +1932,15 @@ msgstr ""
 msgid "Learn more about Tails"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+msgid "Back Up Persistent Storage"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr ""
@@ -1998,7 +2007,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr ""
 
@@ -2022,7 +2031,7 @@ msgid "Disable"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr ""
 
@@ -2043,7 +2052,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr ""
 
@@ -2102,66 +2111,67 @@ msgstr ""
 msgid "Welcome to Tails!"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 msgid "_Persistent Storage"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
+msgid "Show Passphrase"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
-msgid "Show Passphrase"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+msgid "_Passphrase"
 msgstr ""
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 msgid "Shutdown"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr ""
 
@@ -2255,10 +2265,18 @@ msgstr ""
 msgid "System Settings"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+msgid "Welcome Screen"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 msgid "Activate Welcome Screen"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+msgid "Printers"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 msgid "Activate Printers"
 msgstr ""
@@ -2291,6 +2309,10 @@ msgstr ""
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+msgid "Tor Browser Bookmarks"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 msgid "Activate Tor Browser Bookmarks"
 msgstr ""
@@ -2501,11 +2523,11 @@ msgstr ""
 msgid "Detach this volume"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr ""
 
diff --git a/po/eo.po b/po/eo.po
index a35db2f2838..b3223aab2c0 100644
--- a/po/eo.po
+++ b/po/eo.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
 "PO-Revision-Date: 2023-01-25 11:39+0000\n"
 "Last-Translator: emma peel <emma.peel@riseup.net>\n"
 "Language-Team: Esperanto <https://hosted.weblate.org/projects/tor/tails-gui/"
@@ -440,9 +440,9 @@ msgid "Additional Settings"
 msgstr ""
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "Rezigni"
@@ -514,11 +514,11 @@ msgstr ""
 msgid "Off (default)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
-msgid "Persistent Storage Not Unlocked"
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+msgid "Persistent Storage Still Locked"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 #, fuzzy
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
@@ -526,15 +526,15 @@ msgstr ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
-msgid "Continue Without Persistent Storage"
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
+msgid "Start Without Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 msgid "Don't _Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 msgid "_Create Persistent Storage"
 msgstr ""
@@ -554,7 +554,6 @@ msgstr ""
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr ""
 
@@ -771,69 +770,69 @@ msgstr ""
 msgid "Synchronizing data on disk..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -841,14 +840,14 @@ msgid ""
 "a different model."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
 "%(size)s GB is required)."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -856,76 +855,76 @@ msgid ""
 "%(dl_url)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
 "The persistent storage on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
 "All data on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr "%(filename)s elektita"
@@ -1008,7 +1007,7 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1070,143 +1069,143 @@ msgstr "neatingebla"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
 "log to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr ""
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "Forigi"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr ""
 
@@ -1337,19 +1336,19 @@ msgid ""
 msgstr ""
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr "eraro:"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr "Atentigo: virtuala maŝino estas detektita!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1357,11 +1356,11 @@ msgid ""
 "software."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr ""
 
@@ -1690,32 +1689,32 @@ msgstr ""
 msgid "Choose File Container"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 #, fuzzy
 msgid "_Cancel"
 msgstr "Rezigni"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 #, fuzzy
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
@@ -1724,27 +1723,27 @@ msgstr ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr "Åœaltante la malsekuran retumilon..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr "Tio povas daÅ­ri kelkajn minutojn, do ni petas, estu paciencaj."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr "Malŝaltante la malsekuran retumilon..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
@@ -1752,13 +1751,13 @@ msgstr ""
 "Tio povas daÅ­ri kelkajn minutojn, kaj vi ne povas restartigi la malsekuran "
 "retumilon ĝis kiam ĝi ne estos tute malŝaltita."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr "Malsekura Retumilo"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
@@ -1766,22 +1765,22 @@ msgstr ""
 "Alia malsekura retumilo estas nun ŝaltita aŭ malŝaltota. Bonvolu reprovi "
 "tion post momento."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
 "network."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr ""
 
@@ -1941,6 +1940,7 @@ msgid "Tails documentation"
 msgstr "Dokumentado de Tails"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 msgid "Persistent Storage"
 msgstr ""
@@ -1967,6 +1967,15 @@ msgstr "Kiel uzi Tails"
 msgid "Learn more about Tails"
 msgstr "Ekscii pli pri Tails"
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+msgid "Back Up Persistent Storage"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr ""
@@ -2033,7 +2042,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr ""
 
@@ -2057,7 +2066,7 @@ msgid "Disable"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr ""
 
@@ -2078,7 +2087,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr ""
 
@@ -2139,68 +2148,70 @@ msgstr ""
 msgid "Welcome to Tails!"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 msgid "_Persistent Storage"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 #, fuzzy
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr "Tails is configuring your Persistent Storage. Please wait..."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
 msgid "Show Passphrase"
 msgstr ""
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "Pasvorto:"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 #, fuzzy
 msgid "Shutdown"
 msgstr "Shutdown"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr ""
 
@@ -2298,10 +2309,18 @@ msgstr ""
 msgid "System Settings"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+msgid "Welcome Screen"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 msgid "Activate Welcome Screen"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+msgid "Printers"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 msgid "Activate Printers"
 msgstr ""
@@ -2335,6 +2354,11 @@ msgstr "Startigi Tor Browser"
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "Startigi Tor Browser"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 #, fuzzy
 msgid "Activate Tor Browser Bookmarks"
@@ -2549,11 +2573,11 @@ msgstr ""
 msgid "Detach this volume"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr ""
 
diff --git a/po/es.po b/po/es.po
index b56906e2d4d..b411b1a953b 100644
--- a/po/es.po
+++ b/po/es.po
@@ -22,8 +22,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
-"PO-Revision-Date: 2023-02-09 11:36+0000\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
+"PO-Revision-Date: 2023-03-18 14:16+0100\n"
 "Last-Translator: emma peel <emma.peel@riseup.net>\n"
 "Language-Team: Spanish <https://hosted.weblate.org/projects/tor/tails-gui/es/"
 ">\n"
@@ -33,7 +33,7 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ((n != 0 && n % 1000000 == "
 "0) ? 1 : 2);\n"
-"X-Generator: Weblate 4.16-dev\n"
+"X-Generator: Weblate 4.16.2-dev\n"
 
 #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1
@@ -359,7 +359,7 @@ msgid "Upgrade later"
 msgstr "Actualizar más tarde"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:518
-#, fuzzy, perl-brace-format
+#, perl-brace-format
 msgid ""
 "<b>You should do a manual upgrade to the latest version of {name}.</b>\n"
 "\n"
@@ -375,7 +375,8 @@ msgstr ""
 "\n"
 "Para más información sobre la nueva versión, visita {details_url}\n"
 "\n"
-"Imposible hacer una actualización automática de Tails a esta nueva versión.\n"
+"Imposible hacer una actualización automática de Tails a esta nueva versión: "
+"{explanation}\n"
 "\n"
 "Para aprender cómo realizar una actualización manual, visita "
 "{manual_upgrade_url}"
@@ -536,9 +537,9 @@ msgid "Additional Settings"
 msgstr "Configuración adicional"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "Cancelar"
@@ -609,30 +610,27 @@ msgstr "Desactivado"
 msgid "Off (default)"
 msgstr "Desactivada (predeterminado)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
-#, fuzzy
-msgid "Persistent Storage Not Unlocked"
-msgstr "Almacenamiento Persistente"
-
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
 #, fuzzy
+msgid "Persistent Storage Still Locked"
+msgstr "Almacenamiento Persistente no desbloqueado"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
 msgstr ""
-"¿Realmente quieres reiniciar Tails ahora?\\n\\nSe perderá todo tu trabajo "
-"actual."
+"¿Realmente quieres iniciar Tails sin abrir el Almacenamiento Persistente?"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
 #, fuzzy
-msgid "Continue Without Persistent Storage"
-msgstr "Crear Almacenamiento Persistente"
+msgid "Start Without Persistent Storage"
+msgstr "Continuar sin Almacenamiento Persistente"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
-#, fuzzy
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 msgid "Don't _Create Persistent Storage"
-msgstr "_Crear Almacenamiento Persistente"
+msgstr "_No Crear Almacenamiento Persistente"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 msgid "_Create Persistent Storage"
 msgstr "_Crear Almacenamiento Persistente"
@@ -652,7 +650,6 @@ msgstr "Desbloqueando…"
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr "Desbloquear"
 
@@ -887,7 +884,7 @@ msgstr ""
 msgid "Synchronizing data on disk..."
 msgstr "Sincronizando datos en el disco..."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
@@ -895,63 +892,63 @@ msgstr ""
 "Error: No se pudo establecer u obtener el UUID de tu dispositivo. No se "
 "puede continuar."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr "¡Instalación completa! (%s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr "La instalación de Tails ha fallado!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr "Instalador de Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr "Clonar el Tails actual"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr "Usar una imagen ISO de Tails descargada"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr "Actualizar"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr "Instrucciones para la Actualización Manual"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr "Instalar"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr "Instrucciones de instalación"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "Dispositivo %(size)s %(vendor)s %(model)s (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr "No se seleccionó imagen ISO"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr "Por favor, selecciona una imagen ISO de Tails."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -962,7 +959,7 @@ msgstr ""
 "fabricante, y Tails no podrá iniciarse desde ella. Por favor, prueba a "
 "instalar en un modelo distinto."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
@@ -971,7 +968,7 @@ msgstr ""
 "El dispositivo \"%(pretty_name)s\" es demasiado pequeño para instalar Tails "
 "(se requieren al menos %(size)s GB)."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -982,35 +979,35 @@ msgstr ""
 "necesitas usar una imagen ISO de Tails descargada:\n"
 "%(dl_url)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr "No se encontró ningún dispositivo adecuado para instalar Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr ""
 "Por favor, inserta una memoria flash USB o una tarjeta SD de al menos %0.1f "
 "GB."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr "Ha ocurrido un error mientras se instalaba Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr "¡Instalación completa!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr "No se pudo montar el dispositivo"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "Dispositivo %(parent_size)s %(vendor)s %(model)s (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
@@ -1018,13 +1015,13 @@ msgid ""
 msgstr ""
 "\n"
 "\n"
-"Se perderá el almacenamiento persistente de esta memoria USB."
+"Se perderá el Almacenamiento Persistente de esta memoria USB."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
-msgstr "Borrar el Almacenamiento Persistente y Reinstalar"
+msgstr "Borrar Almacenamiento Persistente y Reinstalar"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
@@ -1034,28 +1031,28 @@ msgstr ""
 "\n"
 "Se perderán todos los datos de esta memoria USB."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
-msgstr "Borrar Todos los Datos e Instalar"
+msgstr "Borrar todos los datos e instalar"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr "%(description)s%(delete_message)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr "Confirmar la memoria USB de destino"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
 msgstr ""
-"El archivo seleccionado no se puede leer. Ajusta tus permisos o selecciona "
+"El archivo seleccionado no se puede leer. Ajusta sus permisos o selecciona "
 "otro archivo."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
@@ -1063,7 +1060,7 @@ msgstr ""
 "No se pudo utilizar el archivo seleccionado. Puede que tengas más suerte si "
 "mueves tu ISO a la carpeta raíz de su unidad (ej. C:\\)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr "%(filename)s seleccionado(s)"
@@ -1151,7 +1148,7 @@ msgstr "su está desactivado. En su lugar usa sudo."
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1217,7 +1214,7 @@ msgstr "no disponible"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -1226,7 +1223,7 @@ msgstr ""
 "{details} Comprueba la lista de tu software adicional o lee el registro del "
 "sistema para entender el problema."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
@@ -1234,56 +1231,56 @@ msgstr ""
 "Comprueba tu lista de software adicional o lee el log del sistema para "
 "entender el problema."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr "Mostrar registro ('log')"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "Configurar"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} y {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ", "
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "¿Añadir {packages} a tu software adicional?"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 "Para instalarlo automáticamente desde tu almacenamiento persistente cuando "
 "inicies Tails."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr "Instalarlo cada vez"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr "Instalarlo sólo una vez"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr "La configuración de tu software adicional ha fallado."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -1291,68 +1288,68 @@ msgstr ""
 "Para instalarlo automáticamente cuando inicies Tails, has de crear un "
 "almacenamiento persistente y activar la función <b>Software Adicional</b>."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr "Crear Almacenamiento Persistente"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr "La creación de tu almacenamiento persistente ha fallado."
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr "Podrías instalar {packages} automáticamente al iniciar Tails"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr "Para hacer eso, necesitas ejecutar Tails desde un memoria USB."
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "¿Quitar {packages} de tu software adicional?"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr "Esto parará la instalación de {packages} de forma automática."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "Eliminar"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 "Instalando tu software adicional desde el almacenamiento persistente..."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr "Esto puede tardar un poco..."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr "Ha fallado la instalación de software adicional"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr "Se ha instalado tu software adicional"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr "No he podido comprobar si tu software adicional necesita actualizarse"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -1360,11 +1357,11 @@ msgstr ""
 "Por favor, revisa tu conexión de red, reinicia Tails, o lee el registro del "
 "sistema para comprender el problema."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr "La actualización de tu software adicional ha fallado"
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "Documentación"
 
@@ -1527,19 +1524,19 @@ msgstr ""
 "Mira {manual_upgrade_url}"
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr "error:"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr "Advertencia: ¡máquina virtual detectada!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr "Precaución: se detectó una maquina virtual de código no libre!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1551,11 +1548,11 @@ msgstr ""
 "considerarse confiable el software libre, tanto para el sistema operativo "
 "anfitrión como para el software de virtualización."
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr "No mostrar de nuevo"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr "Más información"
 
@@ -1569,21 +1566,19 @@ msgid "_Use a bridge that you already know"
 msgstr "_Usa un puente que ya conozcas"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:242
-#, fuzzy
 msgid ""
 "To save your bridge, <a href=\"doc/persistent_storage\">unlock your "
 "Persistent Storage</a>."
 msgstr ""
-"Para guardar tu puente, <a href=\"doc/first_steps/persistence\">desbloquea "
-"el almacenamiento persistente</a>."
+"Para guardar tu puente,<a href=\"doc/persistent_storage\">desbloquea el "
+"Almacenamiento Persistente</a>."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:249
-#, fuzzy
 msgid ""
 "To save your bridge, <a href=\"doc/persistent_storage\">create a Persistent "
 "Storage</a> on your Tails USB stick."
 msgstr ""
-"Para guardar tu puente, <a href=\"doc/first_steps/persistence\">crea un "
+"Para guardar tu puente, <a href=\"doc/persistent_storage\">crea un "
 "Almacenamiento Persistente</a> en tu memoria USB de Tails."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:269
@@ -1650,9 +1645,8 @@ msgid "You can now browse the Internet anonymously and uncensored."
 msgstr "Puedes navegar por Internet de forma anónima y sin censura."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:703
-#, fuzzy
 msgid "This local network seems to be blocking access to Tor."
-msgstr "Tu red local está bloqueando el acceso a Tor."
+msgstr "Tu red local parece estar bloqueando el acceso a Tor."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:776
 msgid "Bridge address malformed"
@@ -1689,11 +1683,11 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1112
 msgid "Close and Lose Progress"
-msgstr ""
+msgstr "Cerrar y perder el trabajo actual"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1113
 msgid "Wait"
-msgstr ""
+msgstr "Esperar"
 
 #: config/chroot_local-includes/usr/local/bin/thunderbird:41
 msgid "You need to migrate your OpenPGP keys"
@@ -1807,7 +1801,7 @@ msgstr "{volume_name} – {drive_name}"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
 msgid "Wrong passphrase or parameters"
-msgstr "Contraseña o parámetros incorrectos"
+msgstr "Frase contraseña o parámetros incorrectos"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:236
 msgid "Error unlocking volume"
@@ -1916,12 +1910,12 @@ msgstr ""
 msgid "Choose File Container"
 msgstr "Selecciona contenedor de archivo"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 "El Navegador No Seguro se desactivó en la pantalla de bienvenida.\\n\\n"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
@@ -1930,21 +1924,21 @@ msgstr ""
 "Navegador No Seguro está activado en los ajustes adicionales de la Pantalla "
 "de Bienvenida."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr "Para usar el Navegador No Seguro debes reiniciar Tails."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr "_Reiniciar"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 msgid "_Cancel"
 msgstr "_Cancelar"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
@@ -1952,27 +1946,27 @@ msgstr ""
 "¿Realmente quieres reiniciar Tails ahora?\\n\\nSe perderá todo tu trabajo "
 "actual."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr "Reiniciar ahora"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr "Fallo al reiniciar el sistema."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr "Iniciando el Navegador No Seguro..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr "Esto puede llevar un tiempo, por favor ten paciencia."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr "Cerrando el Navegador No Seguro..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
@@ -1980,13 +1974,13 @@ msgstr ""
 "Esto puede llevar un tiempo, y no podrás reiniciar el Navegador No Seguro "
 "hasta que se haya cerrado adecuadamente."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr "Navegador No Seguro"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
@@ -1994,15 +1988,15 @@ msgstr ""
 "En este momento se está ejecutando o apagando otro Navegador No Seguro. "
 "Inténtalo de nuevo en un rato."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr "Fallo al establecer chroot."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr "Fallo al configurar el navegador."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
@@ -2012,7 +2006,7 @@ msgstr ""
 "Navegador No Seguro, primero necesitas conectarte a una red Wi-Fi, cableada "
 "o móvil."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr "Falló al iniciar el navegador."
 
@@ -2191,6 +2185,7 @@ msgid "Tails documentation"
 msgstr "Documentación de Tails"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 msgid "Persistent Storage"
 msgstr "Almacenamiento Persistente"
@@ -2221,6 +2216,19 @@ msgstr "Aprende a usar Tails"
 msgid "Learn more about Tails"
 msgstr "Aprende más acerca de Tails"
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "Almacenamiento Persistente"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+#, fuzzy
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+"Activa las opciones de Almacenamiento Persistente para los datos que quieras "
+"guardar en tu memoria USB Tails."
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr "Instalar, clonar, actualizar Tails"
@@ -2231,7 +2239,7 @@ msgstr "Conectar Tails a la red Tor"
 
 #: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:1
 msgid "Tor Browser"
-msgstr "Tor Browser"
+msgstr "Navegador Tor"
 
 #: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:2
 msgid "Anonymous Web Browser"
@@ -2293,7 +2301,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr "Contraseña de administración"
 
@@ -2320,7 +2328,7 @@ msgid "Disable"
 msgstr "Deshabilitar"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr "Anonimización de direcciones MAC"
 
@@ -2346,7 +2354,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr "No hacer anónimas las direcciones MAC"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr "Configuración de la red"
 
@@ -2429,11 +2437,11 @@ msgstr "La configuración se cargó desde tu almacenamiento persistente."
 msgid "Welcome to Tails!"
 msgstr "¡Bienvenido a Tails!"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 msgid "_Persistent Storage"
 msgstr "_Almacenamiento Persistente"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
@@ -2443,50 +2451,52 @@ msgstr ""
 "Persistente cifrado en tu memoria USB Tails: tus documentos, marcadores del "
 "navegador, contraseñas Wi-Fi, etc."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr ""
 "Crearás y configurarás tu Almacenamiento Persistente después de iniciar "
 "Tails."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr "Idioma y región"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr "Configuración predeterminada"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
-msgstr "Almacenamiento _Persistente Cifrado"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
 msgid "Show Passphrase"
-msgstr "Mostrar contraseña"
+msgstr "Mostrar Frase Contraseña"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "Frase contraseña:"
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
 msgstr ""
-"Introduce tu frase contraseña para desbloquear el almacenamiento persistente"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+#, fuzzy
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 "Tu almacenamiento persistente está desbloqueado. Reinicia Tails para volver "
 "a bloquearlo."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr "Configuración _Adicional"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr "Añadir una configuración adicional"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
@@ -2494,18 +2504,18 @@ msgstr ""
 "La configuración predeterminada es segura en la mayoría de los casos. Para "
 "añadir una configuración personalizada, pulsa debajo el botón \"+\"."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 msgid "Shutdown"
 msgstr "Cerrar"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr "Iniciar _Tails"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:8
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:56
 msgid "Change Passphrase"
-msgstr "Cambiar contraseña"
+msgstr "Cambiar frase contraseña"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:95
 msgid "Current _Passphrase"
@@ -2513,7 +2523,7 @@ msgstr "_Contraseña actual"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:131
 msgid "_New Passphrase"
-msgstr "_Nueva contraseña"
+msgstr "_Nueva Frase Contraseña"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:179
 msgid "_Confirm New Passphrase"
@@ -2526,7 +2536,7 @@ msgstr "_Mostrar contraseñas"
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:253
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:213
 msgid "The passphrases do not match"
-msgstr "Las frases contraseña no concuerdan"
+msgstr "Las frases contraseñas no concuerdan"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:317
 msgid "Ch_ange"
@@ -2561,7 +2571,6 @@ msgid "Send Error Report"
 msgstr "Enviar informe de error"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:61
-#, fuzzy
 msgid ""
 "Your Persistent Storage is unlocked.\n"
 "\n"
@@ -2574,8 +2583,8 @@ msgstr ""
 "\n"
 "Su contenido estará disponible hasta que apagues Tails.\n"
 "\n"
-"<a href=\"doc/first_steps/persistence/backup\">Consulta cómo hacer una copia "
-"de seguridad de tu Almacenamiento Persistente.</a>"
+"<a href=\"doc/persistent_storage/backup\">Consulta cómo hacer una copia de "
+"seguridad de tu Almacenamiento Persistente.</a>"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:89
 msgid ""
@@ -2603,15 +2612,25 @@ msgstr "Activar Carpeta Persistente"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:191
 msgid "System Settings"
-msgstr "Configuración de SIstema"
+msgstr "Configuración de sistema"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+#, fuzzy
+msgid "Welcome Screen"
+msgstr "Activar Pantalla de Bienvenida"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 msgid "Activate Welcome Screen"
-msgstr "Pantalla de bienvenida"
+msgstr "Activar Pantalla de Bienvenida"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+#, fuzzy
+msgid "Printers"
+msgstr "Activar impresoras"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 msgid "Activate Printers"
-msgstr "Habilitar impresoras"
+msgstr "Activar impresoras"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:275
 msgid "Network"
@@ -2641,16 +2660,20 @@ msgstr "Activar puente de Tor"
 msgid "Applications"
 msgstr "Aplicaciones"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "Activar marcadores del navegador Tor"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 msgid "Activate Tor Browser Bookmarks"
-msgstr "Activar marcadores del navegador"
+msgstr "Activar marcadores del navegador Tor"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:409
 msgid "Electrum Bitcoin Wallet"
 msgstr "Cartera de bitcoin Electrum"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:419
-#, fuzzy
 msgid "Activate Electrum Bitcoin Wallet"
 msgstr "Activar cartera de Bitcoin Electrum"
 
@@ -2729,17 +2752,16 @@ msgid ""
 "To add or remove custom features, modify /live/persistence/"
 "TailsData_unlocked/persistence.conf."
 msgstr ""
-"Para añadir o quitar características personalizadas, modifica /live/"
-"persistence/TailsData_unlocked/persistence.conf."
+"Para añadir o quitar funciones personalizadas, modifica /live/persistence/"
+"TailsData_unlocked/persistence.conf."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:720
-#, fuzzy
 msgid ""
 "<a href=\"doc/persistent_storage\">Learn more about the Persistent Storage.</"
 "a>"
 msgstr ""
-"<a href=\"doc/first_steps/persistence\">Aprende más sobre el Almacenamiento "
-"Persistente</a>"
+"<a href=\"doc/persistent_storage\">Aprende más sobre el Almacenamiento "
+"Persistente.</a>"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/locked_view.ui.in:52
 msgid ""
@@ -2751,6 +2773,13 @@ msgid ""
 "To delete your Persistent Storage, click <b>Delete</b> on the right of the "
 "title bar."
 msgstr ""
+"<b>Tu Almacenamiento Persistente está bloqueado.</b>\n"
+"\n"
+"Para usar o configurar tu Almacenamiento Persistente, desbloquéalo en la "
+"Pantalla de Bienvenida al iniciar Tails.\n"
+"\n"
+"Para borrar tu Almacenamiento Persistente, haz clic en <b>Elimiar</b> a la "
+"derecha de la barra de título."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:52
 msgid ""
@@ -2759,10 +2788,14 @@ msgid ""
 "\n"
 "We recommend a long passphrase of 5 to 7 random words."
 msgstr ""
+"Elige la frase contraseña que usarás para desbloquear el cifrado de tu "
+"Almacenamiento Persistente y todos los datos en su interior.\n"
+"\n"
+"Recomendamos una frase contraseña larga de 5 a 7 palabras aleatorias."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:82
 msgid "Passphrase:"
-msgstr "Frase de contraseña:"
+msgstr "Frase contraseña:"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:101
 msgid "Confirm:"
@@ -2791,6 +2824,18 @@ msgid ""
 "<a href=\"doc/persistent_storage\">Learn more about the Persistent Storage.</"
 "a>"
 msgstr ""
+"Todo lo que haces desaparece automáticamente cuando apagas Tails.\n"
+"\n"
+"Pero puedes guardar algunos archivos y configuraciones en un Almacenamiento "
+"Persistente cifrado en tu memoria USB de Tails, por ejemplo:\n"
+"\n"
+"• Tus documentos\n"
+"• Tus contraseñas Wi-Fi\n"
+"• Tus marcadores del navegador\n"
+"• ...\n"
+"\n"
+"<a href=\"doc/persistent_storage\">Descubre más sobre el Almacenamiento "
+"Persistente.</a>"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:92
 msgid ""
@@ -2799,10 +2844,15 @@ msgid ""
 "To be able to use Tails with a Persistent Storage, please follow our "
 "instructions on <a href=\"install\">installing Tails on a USB stick</a>."
 msgstr ""
+"Lamentablemente no se puede crear un Almacenamiento Persistente en este "
+"dispositivo.\n"
+"\n"
+"Para poder usar Tails con un Almacenamiento Persistente sigue las "
+"instrucciones para <a href=\"install\">instalar Tails en una memoria USB</a>."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:137
 msgid "Co_ntinue"
-msgstr ""
+msgstr "_Seguir"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:29
 msgid "_Delete..."
@@ -2860,11 +2910,11 @@ msgstr "_Desbloquear"
 msgid "Detach this volume"
 msgstr "Separar este volumen"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr "Memoria USB de destino:"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr "Reinstalar (borra todos los datos)"
 
@@ -3004,7 +3054,6 @@ msgid "None"
 msgstr "Ninguno"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:240
-#, fuzzy
 msgid "_Ask for a Tor bridge by email"
 msgstr "_Pide un puente por correo electrónico"
 
@@ -3075,6 +3124,8 @@ msgid ""
 "If you are in a shop, hotel, or airport, you might need to sign in to the "
 "local network using the Unsafe Browser."
 msgstr ""
+"Si estás en una tienda, hotel o aeropuerto, puede que necesites el Navegador "
+"No Seguro para unirte a la red local."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:840
 msgid "Try _Signing in to the Network"
@@ -3097,12 +3148,10 @@ msgid "Configure a Local _Proxy"
 msgstr "Configurar un _Proxy local"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:951
-#, fuzzy
 msgid "• Tor bridge by email"
-msgstr "• Puente por correo electrónico"
+msgstr "• Puente de tor por correo electrónico"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:971
-#, fuzzy
 msgid ""
 "Tor bridges are secret Tor relays. Use a bridge as your first Tor relay if "
 "connections to Tor are blocked, for example in some countries, by some "
@@ -3110,22 +3159,17 @@ msgid ""
 msgstr ""
 "Los puentes Tor son repetidores secretos de Tor. Usa un puente como tu "
 "primer repetidor de Tor si la conexión a Tor está bloqueada, como por "
-"ejemplo en algunos países, redes públicas o con controles parentales.\n"
-"\n"
-"Elige esta opción si ya sabes que necesitas un puente. De lo contrario, "
-"Tails autodetectará si necesitas un puente para conectarse a Tor desde su "
-"red local."
+"ejemplo en algunos países, redes públicas o con controles parentales."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:991
-#, fuzzy
 msgid ""
 "To get a bridge, send an empty email to <tt>bridges@torproject.org</tt> from "
 "a Gmail or Riseup email address with your phone and scan the QR code that is "
 "attached to the automatic reply."
 msgstr ""
-"Envía un correo vacío a <tt>bridges@torproject.org</tt> desde una dirección "
-"Gmail o Riseup con tu teléfono, y escanea el código QR adjunto a la "
-"respuesta automática."
+"Para conseguir un puente, envía un correo vacío a <tt>bridges@torproject."
+"org</tt> desde una dirección Gmail o Riseup con tu teléfono, y escanea el "
+"código QR adjunto a la respuesta automática."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1014
 msgid "Scan QR Code"
@@ -3158,7 +3202,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1241
 msgid "<b>Connect to Tor _automatically</b>"
-msgstr ""
+msgstr "<b>Conectar a Tor _automáticamente</b>"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1291
 msgid ""
@@ -3205,7 +3249,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1431
 msgid "<b>_Hide to my local network that I'm connecting to Tor</b>"
-msgstr ""
+msgstr "<b>_No mostrar a mi red local que me estoy conectando a Tor </b>"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1481
 msgid ""
@@ -3272,7 +3316,7 @@ msgstr "Tienes acceso a Internet"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1781
 msgid "Testing access to Tor…"
-msgstr "Probando acceso a Tor. . ."
+msgstr "Probando acceso a Tor…"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1824
 msgid "You can connect to Tor"
@@ -3283,13 +3327,12 @@ msgid "Failed to connect to Tor without bridges."
 msgstr "Fallo en la conexión a Tor sin puentes."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1870
-#, fuzzy
 msgid "This local network is blocking access to Tor."
 msgstr "Tu red local está bloqueando el acceso a Tor."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1902
 msgid "Connecting to Tor…"
-msgstr "Conectando a Tor. . ."
+msgstr "Conectando a Tor…"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2007
 msgid "Start Tor Browser"
@@ -3433,6 +3476,14 @@ msgstr "Diciembre"
 msgid "Clock"
 msgstr "Reloj"
 
+#~ msgid "Encrypted _Persistent Storage"
+#~ msgstr "Almacenamiento _Persistente Cifrado"
+
+#~ msgid "Enter your passphrase to unlock the persistent storage"
+#~ msgstr ""
+#~ "Introduce tu frase contraseña para desbloquear el almacenamiento "
+#~ "persistente"
+
 #, python-format
 #~ msgid ""
 #~ "<h1>Help us fix your bug!</h1>\n"
diff --git a/po/et.po b/po/et.po
index 8cf1b414f34..c564395373b 100644
--- a/po/et.po
+++ b/po/et.po
@@ -11,8 +11,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
-"PO-Revision-Date: 2023-01-25 11:39+0000\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
+"PO-Revision-Date: 2023-02-15 20:37+0000\n"
 "Last-Translator: emma peel <emma.peel@riseup.net>\n"
 "Language-Team: Estonian <https://hosted.weblate.org/projects/tor/tails-gui/"
 "et/>\n"
@@ -496,9 +496,9 @@ msgid "Additional Settings"
 msgstr "Lisaseaded"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "Katkesta"
@@ -571,27 +571,27 @@ msgstr "Väljas"
 msgid "Off (default)"
 msgstr "Väljas (vaikimisi)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
 #, fuzzy
-msgid "Persistent Storage Not Unlocked"
+msgid "Persistent Storage Still Locked"
 msgstr "Püsiv Salvestusruum"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
 #, fuzzy
-msgid "Continue Without Persistent Storage"
+msgid "Start Without Persistent Storage"
 msgstr "Loo püsiv salvestusruum"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 #, fuzzy
 msgid "Don't _Create Persistent Storage"
 msgstr "Loo püsiv salvestusruum"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 #, fuzzy
 msgid "_Create Persistent Storage"
@@ -614,7 +614,6 @@ msgstr "Avamine..."
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr "Ava"
 
@@ -839,7 +838,7 @@ msgstr "Draiv on loopback, jätan vahele MBR lähtestuse"
 msgid "Synchronizing data on disk..."
 msgstr "Sünkroniseerin andmeid kettal..."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
@@ -847,63 +846,63 @@ msgstr ""
 "Viga: Ei suutnud seada silti või teie seadme UUID'd kätte saada. Ei suuda "
 "jätkata."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr "Installatsioon lõpetatud! (%s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr "Tails installatsioon nurjus!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr "Tails'i installer"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr "Klooni praegust Tailsi isendit"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr "Kasuta allalaetud Tails'i ISO"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr "Uuenda"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr "Manuaalsed uuendusjuhised"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr "Installi"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr "Installimisjuhised"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(size)s%(vendor)s%(model)sseade(%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr "Ãœhtegi ISO't pole valitud"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr "Palun valige Tails'i ISO"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -914,7 +913,7 @@ msgstr ""
 "poolt ja Tails'i ei saa selle peal käivitada. Palun proovige installida "
 "teise mudeli peale."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
@@ -923,7 +922,7 @@ msgstr ""
 "Seade \"%(pretty_name)s\" on liiga väike et installida Tails'i (vaja on "
 "vähemalt %(size)s GB)."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -934,64 +933,64 @@ msgstr ""
 "kasutama allalaetud Tails'i ISO faili:\n"
 "%(dl_url)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr "Ãœhtegi seadet, mille peale sobib Tails'i installida, ei suudetud leida"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr "Palun sisestage USB pulk või SD kaart mille maht on vähemalt %0.1f GB."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr "Ilmnes viga Tails'i installimise ajal"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr "Installatsioon edukalt lõpetatud!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr "Ei suutnud seadet paigaldada"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(parent_size)s %(vendor)s %(model)s seade (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
 "The persistent storage on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
 "All data on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr "Kinnitage siht USB pulk"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
@@ -999,7 +998,7 @@ msgstr ""
 "Valitud fail on loetamatu. Palun korrigeerige selle loastaatust või valige "
 "muu fail."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
@@ -1007,7 +1006,7 @@ msgstr ""
 "Ei suutnud kasutada valitud faili. Te võite proovida liigutada oma ISO oma "
 "ketta root'i (nt: C:\\) ja proovida uuesti"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr "%(filename)s valitud"
@@ -1087,7 +1086,7 @@ msgstr "su on välja lülitatud. Palun kasutage selle asemel sudo't."
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1153,144 +1152,144 @@ msgstr "pole saadaval"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
 "log to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr "Kuva logi"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "Seadista"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} ja {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 #, fuzzy
 msgid ", "
 msgstr ", "
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "Lisada {packages} sinu lisatarkvarade hulka?"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr "Paigalda iga kord"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr "Paigalda ainult üks kord"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr "Sinu lisatarkvara seadistamine ebaõnnestus."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr "Loo püsiv salvestusruum"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr "Sinu püsiva salvestusruumi loomine ebaõnnestus."
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "Eemaldada {packages} sinu lisatarkvarade hulgast?"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "Eemalda"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr "Sinu lisatarkvarade paigaldamine püsivast salvestusruumist..."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr "Selleks võib kuluda mitu minutit."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr "Sinu lisatarkvara paigaldamine ebaõnnestus"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr "Lisatarkvara paigaldatud edukalt"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr "Sinu lisatarkvarade uuenduste kontrollimine ebaõnnestus"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr "Sinu lisatarkvarade uuendamine ebaõnnestus"
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "Dokumentatsioon"
 
@@ -1423,19 +1422,19 @@ msgid ""
 msgstr ""
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr "tõrge:"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1443,11 +1442,11 @@ msgid ""
 "software."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr "Ära kuva uuesti"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr "Loe lähemalt"
 
@@ -1776,90 +1775,90 @@ msgstr ""
 msgid "Choose File Container"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 msgid "_Cancel"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr "Taaskäivita kohe"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
 "network."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr ""
 
@@ -2017,6 +2016,7 @@ msgid "Tails documentation"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 msgid "Persistent Storage"
 msgstr "Püsiv Salvestusruum"
@@ -2043,6 +2043,16 @@ msgstr ""
 msgid "Learn more about Tails"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "Püsiv Salvestusruum"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr ""
@@ -2109,7 +2119,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr "Administreerimise parool"
 
@@ -2133,7 +2143,7 @@ msgid "Disable"
 msgstr "Keela"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr ""
 
@@ -2154,7 +2164,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr ""
 
@@ -2214,19 +2224,19 @@ msgstr ""
 msgid "Welcome to Tails!"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 #, fuzzy
 msgid "_Persistent Storage"
 msgstr "Loo püsiv salvestusruum"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 #, fuzzy
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
@@ -2234,51 +2244,53 @@ msgstr ""
 "Sa saad paigaldada lisatarkvara automaatselt püsivast salvestusruumist "
 "Tails\\'i käivitamisel."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr "Keel ja piiskond"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr "Vaikeseaded"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
 msgid "Show Passphrase"
 msgstr "Näita parool"
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "Parool:"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 #, fuzzy
 msgid "Shutdown"
 msgstr "Shutdown"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr ""
 
@@ -2384,11 +2396,21 @@ msgstr "Loo püsiv salvestusruum"
 msgid "System Settings"
 msgstr "Vaikeseaded"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+#, fuzzy
+msgid "Welcome Screen"
+msgstr "Tervituskuva"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 #, fuzzy
 msgid "Activate Welcome Screen"
 msgstr "Tervituskuva"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+#, fuzzy
+msgid "Printers"
+msgstr "Printerid"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 #, fuzzy
 msgid "Activate Printers"
@@ -2424,6 +2446,11 @@ msgstr "Käivita Tor\\'i brauser"
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "Brauseri järjehoidja"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 #, fuzzy
 msgid "Activate Tor Browser Bookmarks"
@@ -2651,11 +2678,11 @@ msgstr ""
 msgid "Detach this volume"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr "Siht USB pulk:"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr "Taasinstalli (kustuta kõik andmed)"
 
diff --git a/po/eu.po b/po/eu.po
index 3c83109e502..4b14456ac32 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -14,7 +14,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
 "PO-Revision-Date: 2023-02-10 16:36+0000\n"
 "Last-Translator: Joseba Martos <otzarri@users.noreply.hosted.weblate.org>\n"
 "Language-Team: Basque <https://hosted.weblate.org/projects/tor/tails-gui/eu/"
@@ -446,9 +446,9 @@ msgid "Additional Settings"
 msgstr "Ezarpen gehigarriak"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "Utzi"
@@ -520,12 +520,12 @@ msgstr ""
 msgid "Off (default)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
 #, fuzzy
-msgid "Persistent Storage Not Unlocked"
+msgid "Persistent Storage Still Locked"
 msgstr "Biltegiratze iraunkor"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 #, fuzzy
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
@@ -533,17 +533,17 @@ msgstr ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
 #, fuzzy
-msgid "Continue Without Persistent Storage"
+msgid "Start Without Persistent Storage"
 msgstr "Euskarri iraunkorra ezabatzen..."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 #, fuzzy
 msgid "Don't _Create Persistent Storage"
 msgstr "Euskarri iraunkorra ezabatzen..."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 msgid "_Create Persistent Storage"
 msgstr ""
@@ -563,7 +563,6 @@ msgstr "Desblokeatzen..."
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr "Desblokeatu"
 
@@ -782,7 +781,7 @@ msgstr "Gailua atzera-begizta bat da, MBRa berrezartzea saltatzen"
 msgid "Synchronizing data on disk..."
 msgstr "Datuak diskoan sinkronizatzen..."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
@@ -790,63 +789,63 @@ msgstr ""
 "Akatsa: Ezin da etiketa ezarri edo zure gailuaren UUIDa eskuratu. Ezin da "
 "jarraitu."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr "Instalazioa burutu da! (%s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr "Tails instalatzailea"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr "Eguneratu"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr "Ezarri"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr "Instalazio Argibideak"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr "Ez da ISO irudirik aukeratu"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -854,14 +853,14 @@ msgid ""
 "a different model."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
 "%(size)s GB is required)."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -869,64 +868,64 @@ msgid ""
 "%(dl_url)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr "Instalazioa burutu da!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr "Ezin da gailua muntatu"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
 "The persistent storage on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
 "All data on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
@@ -934,7 +933,7 @@ msgstr ""
 "Aukeratutako fitxategia irakurtezina da. Mesedez zuzendu bere baimenak edo "
 "beste fitxategi bat aukeratu."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
@@ -942,7 +941,7 @@ msgstr ""
 "Hautatutako fitxategia ezin da erabili. Sorte gehiago izan dezakezu zure "
 "ISOa zure gailuaren oinarrira mugitzen baduzu (adib: C:\\)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr "%(filename)s hautatua"
@@ -1025,7 +1024,7 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1091,143 +1090,143 @@ msgstr "ez dago eskuragarri"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
 "log to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr "Erakutsi erregistroa"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "Konfiguratu"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ", "
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr "Instalatu behin bakarrik"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "Kendu"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "Dokumentazioa"
 
@@ -1358,19 +1357,19 @@ msgid ""
 msgstr ""
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr "akatsa:"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr "Kontuz: makina birtual bat detektatu da!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1378,11 +1377,11 @@ msgid ""
 "software."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr "Ikasi gehiago"
 
@@ -1711,32 +1710,32 @@ msgstr ""
 msgid "Choose File Container"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 #, fuzzy
 msgid "_Cancel"
 msgstr "_Utzi"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 #, fuzzy
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
@@ -1745,60 +1744,60 @@ msgstr ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr "Nabigatzaile ez segurua abiatzen..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr "Honek debora behar dezake, izan pazientzia."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr "Nabigatzaile ez segurua itzaltzen..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr "Nabigatzaile ez-seguru"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr "Huts egin du chroot ezartzean."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr "Huts egin du nabigatzailea konfiguratzean."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
 "network."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr "Huts egin du nabigatzailea abiatzean."
 
@@ -1973,6 +1972,7 @@ msgid "Tails documentation"
 msgstr "Tails dokumentazioa"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 msgid "Persistent Storage"
 msgstr "Biltegiratze iraunkor"
@@ -1999,6 +1999,16 @@ msgstr "Ikasi Tails erabiltzen"
 msgid "Learn more about Tails"
 msgstr "Ikasi gehiago Tails-i buruz"
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "Biltegiratze iraunkor"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr ""
@@ -2065,7 +2075,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr "Administrazio Pasahitza"
 
@@ -2089,7 +2099,7 @@ msgid "Disable"
 msgstr "Desgaitu"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr ""
 
@@ -2110,7 +2120,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr "Sare Ezarpenak"
 
@@ -2171,67 +2181,69 @@ msgstr ""
 msgid "Welcome to Tails!"
 msgstr "Ongi etorri Tails-era"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 msgid "_Persistent Storage"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 #, fuzzy
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr "Tails is configuring your Persistent Storage. Please wait..."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr "Hizkuntza eta eskualdea"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr "Ezarpen lehenetsiak"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
 msgid "Show Passphrase"
 msgstr "Erakutsi Sar-esaldia"
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "Pasahitza"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr "_Ezarpen Gehiagarriak"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr "Gehitu ezarpen gehigarria"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 msgid "Shutdown"
 msgstr "Itzali"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr "_Abiarazi Tails"
 
@@ -2335,10 +2347,20 @@ msgstr "Euskarri iraunkorra sortzen..."
 msgid "System Settings"
 msgstr "Ezarpen lehenetsiak"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+#, fuzzy
+msgid "Welcome Screen"
+msgstr "Blokeo-pantaila"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 msgid "Activate Welcome Screen"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+#, fuzzy
+msgid "Printers"
+msgstr "Imprimagailuak"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 #, fuzzy
 msgid "Activate Printers"
@@ -2374,6 +2396,11 @@ msgstr "Abiarazi Tor Nabigatzailea"
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "Abiarazi Tor Nabigatzailea"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 #, fuzzy
 msgid "Activate Tor Browser Bookmarks"
@@ -2599,11 +2626,11 @@ msgstr ""
 msgid "Detach this volume"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr "Instalatu berriro (datu guztiak ezabatu)"
 
diff --git a/po/fa.po b/po/fa.po
index eae1a1cddf1..989ed84559c 100644
--- a/po/fa.po
+++ b/po/fa.po
@@ -38,8 +38,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
-"PO-Revision-Date: 2023-01-26 19:00+0000\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
+"PO-Revision-Date: 2023-03-05 10:37+0000\n"
 "Last-Translator: emma peel <emma.peel@riseup.net>\n"
 "Language-Team: Persian <https://hosted.weblate.org/projects/tor/tails-gui/fa/"
 ">\n"
@@ -48,7 +48,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: Weblate 4.16-dev\n"
+"X-Generator: Weblate 4.16.2-dev\n"
 
 #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1
@@ -405,8 +405,8 @@ msgstr ""
 "<b>بسته به روز رسانی دانلود نشد!</b> \\n\\n\n"
 "لطفاً اتصال خود را به شبکه بررسی کنید و تیلز را مجدداً راه اندازی کرده و "
 "دوباره اقدام به به روز رسانی کنید.\\n\\n\n"
-"اگر مشکل حل نشد، به این جا سر بزنید:  file:///usr/share/doc/tails/website/"
-"doc/upgrade/error/download.en.html"
+"اگر مشکل حل نشد، به این جا سر بزنید: file:///usr/share/doc/tails/website/doc/"
+"upgrade/error/download.en.html"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:711
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:726
@@ -539,9 +539,9 @@ msgid "Additional Settings"
 msgstr "تنظیمات اضافی"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "لغو"
@@ -614,12 +614,12 @@ msgstr "خاموش"
 msgid "Off (default)"
 msgstr "خاموش (پیش فرض)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
 #, fuzzy
-msgid "Persistent Storage Not Unlocked"
+msgid "Persistent Storage Still Locked"
 msgstr "ایجاد ذخیره سازی مداوم"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 #, fuzzy
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
@@ -627,17 +627,17 @@ msgstr ""
 "آیا واقعا می‌خواهید اکنون Tails را دوباره راه‌اندازی کنید؟\\n\\nتمام کارهای "
 "فعلی شما از بین می‌رود."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
 #, fuzzy
-msgid "Continue Without Persistent Storage"
+msgid "Start Without Persistent Storage"
 msgstr "ایجاد ذخیره سازی مداوم"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 #, fuzzy
 msgid "Don't _Create Persistent Storage"
 msgstr "ایجاد ذخیره سازی مداوم"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 #, fuzzy
 msgid "_Create Persistent Storage"
@@ -660,7 +660,6 @@ msgstr "در حال باز کردن..."
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr "باز کردن قفل"
 
@@ -696,7 +695,7 @@ msgstr "_طرح بندی صفحه کلید"
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:288
 #, python-format
 msgid "Unable to write on %(device)s, skipping."
-msgstr "خطا در نوشتن بر روی دستگاه  %(device)s. این مرحله را جا می‌اندازم."
+msgstr "خطا در نوشتن بر روی دستگاه %(device)s. این مرحله را جا می‌اندازم."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:332
 #, python-format
@@ -887,7 +886,7 @@ msgstr ""
 msgid "Synchronizing data on disk..."
 msgstr "هماهنگ سازی داده‌ها بر روی دیسک..."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
@@ -895,63 +894,63 @@ msgstr ""
 "خطا: امکان تنظیم کردن نام دستگاه شما نیست و یا خواندن UUID دستگاه شما ممکن "
 "نبود. نمی توان ادامه داد."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr "عمليات نصب به پايان رسيد! (%s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr "نصب تیلز ناموفق بود!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr "نصب کننده تیلز"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr "همین تیلز را کلون کن"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr "از یک تصویر ISO تیلز بارگیری شده استفاده کن"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr "ارتقاء"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr "دستورالعمل‌های بروزرسانی دستی"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr "نصب"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr "دستورالعمل‌های نصب"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(size)s %(vendor)s %(model)s دستگاه (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr "هیچ تصویر ISO انتخاب نشده است"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr "لطفا یک تصویر ISO تیلز انتخاب کنید."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -962,7 +961,7 @@ msgstr ""
 "است. تیلز ممکن است در اجرا روی این دستگاه با مشکل مواجه شود. لطفا مدل دیگری "
 "را امتحان کنید."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
@@ -971,7 +970,7 @@ msgstr ""
 "فضای دستگاه \"%(pretty_name)s\" برای نصب کم است (حداقل %(size)s گیگابایت فضا "
 "لازم است)."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -981,34 +980,34 @@ msgstr ""
 "برای ارتقای دستگاه \"%(pretty_name)s\" از این تیلز، باید از تصویر بارگیری "
 "شده ISO تیلز استفاده کنید: %(dl_url)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr "دستگاه مناسبی برای نصب تیلز پیدا نشد"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr ""
 "لطفا یک فلش درایو USB یا SD کارتی با حجم حداقل %0.1f گیگابایت وارد کنید."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr "در نصب تیلز یک خطا رخ داد"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr "عمليات نصب به پايان رسيد!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr "فادر به بارگذاري دستگاه نيست."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(parent_size)s %(vendor)s %(model)s دستگاه (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
@@ -1018,11 +1017,11 @@ msgstr ""
 "\n"
 "ذخیره‌ساز دائم روی این یو‌اس‌بی از بین خواهد رفت."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr "حذف ذخیره‌ساز دائم و نصب مجدد"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
@@ -1032,20 +1031,20 @@ msgstr ""
 "\n"
 "تمام داده روی این یواس‌بی از بین خواهد رفت."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr "حذف همه اطلاعات و نصب"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr "%(description)s%(delete_message)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr "فلش USB هدف را تایید کنید"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
@@ -1053,7 +1052,7 @@ msgstr ""
 "فایل انتخاب‌شده قابل خواندن نیست. لطفا اجازه دسترسی به آن را اصلاح کنید یا "
 "فایل دیگری را انتخاب کنید"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
@@ -1061,7 +1060,7 @@ msgstr ""
 "قادر به استفاده از فايل انتخاب شده نيست. اگر فايل ايزو را به ريشه درايو خود "
 "(مثلاً C) منتقل كنيد ممكن است شانس بيتشري داشته باشيد."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr "%(filename)s انتخاب شده"
@@ -1150,7 +1149,7 @@ msgstr "su غیرفعال است. لطفا از sudo استفاده کنید."
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1216,7 +1215,7 @@ msgstr "امکان‌پذیر نیست"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -1225,7 +1224,7 @@ msgstr ""
 "{details} لطفا لیست نرم افزار های جانبی را بررسی کنید یا گزارش های سیستم را "
 "بخوانید تا مشکل را درک کنید."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
@@ -1233,54 +1232,54 @@ msgstr ""
 "لطفا لیست نرم افزار های جانبی را بررسی کنید یا گزارش های سیستم را بخوانید تا "
 "مشکل را درک کنید."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr "نمایش گزارش"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "پیکربندی"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} Ùˆ {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
-msgstr "،"
+msgstr "، "
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "{packages} را به نرم افزار های جانبی اضافه کنم؟"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr "برای نصب خودکار آن از ذخیره سازی مداوم خود هنگام شروع تیلز."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr "هر بار نصب کن"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr "فقط یک بار نصب کن"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr "پیکربندی نرم افزار جانبی با شکست رو به رو شد."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -1288,67 +1287,67 @@ msgstr ""
 "برای نصب خودکار آن در هنگام شروع تیلز، می‌توانید یک ذخیره سازی مداوم ایجاد "
 "کرده و ویژگی <b>نرم افزار اضافی</b> را فعال کنید."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr "ایجاد ذخیره سازی مداوم"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr "ایجاد ذخیره سازی مداوم شما موفق نبود."
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr "شما می‌توانید {packages} را به طور خودکار در هنگام شروع تیلز نصب کنید"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr "برای انجام آن، شما نیاز به اجرای Tails از روی یک حافظه USB دارید."
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "حذف {packages} از نرم افزار های جانبی شما؟"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr "این به طور خودکار نصب {packages} را متوقف خواهد کرد."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "حذف"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr "نصب نرم افزار اضافی شما از ذخیره سازی مداوم..."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr "این ممکن چندین دقیقه طول بکشه..."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr "نصب نرم افزار جانبی با شکست رو به رو شد."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr "نرم افزار جانبی با موفقیت نصب شد."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr "بررسی به روز رسانی نرم افزار جانبی با شکست رو به رو شد."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -1356,11 +1355,11 @@ msgstr ""
 "لطفا اتصال شبکه خود را بررسی کنید، تیلز را دوباره راه‌اندازی کنید ، یا گزارش "
 "های سیستم را بخوانید تا مشکل را درک کنید."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr "به روز رسانی نرم افزار جانبی با شکست رو به رو شد."
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "مستندات"
 
@@ -1455,7 +1454,7 @@ msgstr "رمز عبور"
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:93
 msgid "Confirm"
-msgstr "تایید "
+msgstr "تایید"
 
 #: config/chroot_local-includes/usr/local/bin/tails-security-check:121
 msgid "This version of Tails has known security issues:"
@@ -1520,22 +1519,22 @@ msgstr ""
 "سعی کنید تیلز را مجددا راه‌اندازی کنید تا وجود ارتقا را بررسی کند.\n"
 "\n"
 "یا یک ارتقا دستی انجام دهید.\n"
-"به {manual_upgrade_url} مراجعه کنید "
+"به {manual_upgrade_url} مراجعه کنید"
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr "خطا :"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr "هشدار: ماشین مجازی کشف شد!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr "هشدار: ماشین مجازی غیر آزاد شناسایی شد!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1546,11 +1545,11 @@ msgstr ""
 "دهید را مشاهده کنند. تنها نرم افزارهای آزاد می توانند برای سیستم عامل میزبان "
 "و نرم افزار مجازی ساز قابل اعتماد باشند."
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr "دیگر نشان نده"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr "بیشتر بدانید"
 
@@ -1672,7 +1671,7 @@ msgstr ""
 "پس از بستن دستیار اتصال تور، تیلز به اتصال به تور ادامه خواهد داد.\n"
 "\n"
 "اگر اتصال به تور انجام نشد، باید دوباره تا پایان نوار پیشرفت صبر کنید تا "
-"بتوانید اتصال خود را عیب‌یابی کنید. "
+"بتوانید اتصال خود را عیب‌یابی کنید."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1112
 msgid "Close and Lose Progress"
@@ -1694,7 +1693,7 @@ msgid ""
 msgstr ""
 "<i>Thunderbird</i> 78 اکنون افزونه <i>Enigmail</i> را با پشتیبانی داخلی برای "
 "رمزگذاری OpenPGP جایگزین می‌کند. برای ادامه استفاده از کلیدهای OpenPGP خود در "
-"<i>Thunderbird</i>، دستورالعمل‌های مهاجرت ما را دنبال کنید. "
+"<i>Thunderbird</i>، دستورالعمل‌های مهاجرت ما را دنبال کنید."
 
 #: config/chroot_local-includes/usr/local/bin/thunderbird:45
 msgid "_Open Migration Instructions"
@@ -1901,32 +1900,32 @@ msgstr ""
 msgid "Choose File Container"
 msgstr "انتخاب مخزن فایل"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 #, fuzzy
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr "غیر فعال کردن مرورگر ناامن (پیش‌فرض)"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr "_راه‌اندازی مجدد"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 msgid "_Cancel"
 msgstr "_لغو"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
@@ -1934,27 +1933,27 @@ msgstr ""
 "آیا واقعا می‌خواهید اکنون Tails را دوباره راه‌اندازی کنید؟\\n\\nتمام کارهای "
 "فعلی شما از بین می‌رود."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr "راه اندازی مجدد"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr "راه اندازی مجدد سیستم انجام نشد."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr "در حال اجرای مرورگر نا امن"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr "این ممکن است مدتی طول بکشد, بنابراین لطفا شکیبا باشید."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr "در حال بستن مرورگر نا امن"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
@@ -1962,13 +1961,13 @@ msgstr ""
 "ممکن است مدتی طول بکشد. تا زمانی که به درستی خاموش شود لطفا مرورگر ناامن را "
 "ری استارت نکنید"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr "مرورگر ناامن"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
@@ -1976,15 +1975,15 @@ msgstr ""
 "یک مرورگر نا امن دیگر درحال اجرا, یا در حال پاکسازی است. لطفا کمی دیرتر "
 "دوباره امتحان کنید."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr "عدم موفقیت در راه اندازی Chroot"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr "پیکربندی مرورگر ناموفق بود."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
@@ -1993,7 +1992,7 @@ msgstr ""
 "شما هنوز به یک شبکه محلی متصل نیستید.\\n\\nبرای امکان راه‌اندازی مرورگر "
 "Unsafe ، ابتدا باید به شبکه Wi-Fi، اینترنت سیمی یا تلفن همراه متصل شوید."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr "اجرای مرورگر ناموفق بود."
 
@@ -2064,7 +2063,7 @@ msgstr ""
 "\n"
 "\n"
 "گزارش باگ\"خطا نرم افزار\" فرستاده نشد. به نظر میرسد که این اشکال از شبکه "
-"باشد. لطفا سعی کنید  دوباره به شبکه متصل شوید و روی گزینه ارسال کلیک کنید.⏎\n"
+"باشد. لطفا سعی کنید دوباره به شبکه متصل شوید و روی گزینه ارسال کلیک کنید.⏎\n"
 "⏎\n"
 "اگرموارد ذکر شده در بالا کار نکرد، به شما پیشنهاد داده خواهد شد تا گزارش باگ "
 "\"خطا نرم افزار\" را ذخیره کنید."
@@ -2099,7 +2098,7 @@ msgstr ""
 "باشد.\n"
 "\n"
 "برای حل این مشکل، میتوانید فایل گزارش باگ\"خطا نرم افزار\" را روی یک درایو "
-"USB ذخیره  و از طریق ایمیل و با استفاده از یک سیستم دیگر برای ما به آدرس %s "
+"USB ذخیره و از طریق ایمیل و با استفاده از یک سیستم دیگر برای ما به آدرس %s "
 "بفرستید. توجه داشته باشید که گزارش باگ\"خطا نرم افزار\" سیستم شما، ناشناس "
 "نخواهد بود مگر اینکه اقدامات مقتضی را در جهت رفع مشکل پیش آمده انجام دهید. "
 "(بطور مثال از یک ایمیل ناشناس و بر روی شبکه Tor اقدام به ارسال گزارش کنید)\n"
@@ -2169,6 +2168,7 @@ msgid "Tails documentation"
 msgstr "مستندات Tails"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 #, fuzzy
 msgid "Persistent Storage"
@@ -2198,6 +2198,16 @@ msgstr "آموزش نحوهٔ استفاده از Tails"
 msgid "Learn more about Tails"
 msgstr "اطلاعات بیشتر در مورد Tails را یاد بگیرید"
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "ایجاد ذخیره سازی مداوم"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr "نصب، همسانه‌سازی، ارتقا تیلز"
@@ -2266,7 +2276,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr "گذرواژه مدیریت"
 
@@ -2292,7 +2302,7 @@ msgid "Disable"
 msgstr "غیرفعال کردن"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr "ناشناس‌سازی نشانی مک"
 
@@ -2317,7 +2327,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr "ناشناس نکردن نشانی‌های ‌‌‌MAC"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr "پیکربندی شبکه"
 
@@ -2398,59 +2408,61 @@ msgstr "تنظیمات از حافظه مداوم بارگذاری شدند."
 msgid "Welcome to Tails!"
 msgstr "به تیلز خوش آمدید!"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 #, fuzzy
 msgid "_Persistent Storage"
 msgstr "ایجاد ذخیره سازی مداوم"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 #, fuzzy
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr "برای نصب خودکار آن از ذخیره سازی مداوم خود هنگام شروع تیلز."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr "زبان و منطقه"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr "تنظیمات پیش فرض"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-#, fuzzy
-msgid "Encrypted _Persistent Storage"
-msgstr "ذخیره دائمی رمزگذاری شده"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
 msgid "Show Passphrase"
 msgstr "نمایش کلمه عبور"
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
-msgstr "رمز خود را برای باز کردن درایو ذخيره‌ دائمی وارد کنید"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "رمز"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+#, fuzzy
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr "ذخیره دائمی باز شد. برای قفل کردن, Tail ها را ری استارت کنید"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr "_تنظیمات اضافی"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr "اضافه کردن یک تنظیمات اضافی"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
@@ -2458,11 +2470,11 @@ msgstr ""
 "تنظیمات پیش فرض در بسیاری از موارد امن‌تر هستند. برای افزودن تنظیم سفارشی، "
 "دکمه‌ی \"+\" در پایین را بفشارید."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 msgid "Shutdown"
 msgstr "خاموش کردن"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr "_آغاز Tailها"
 
@@ -2569,11 +2581,21 @@ msgstr "ایجاد ذخیره سازی مداوم"
 msgid "System Settings"
 msgstr "تنظیمات پیش فرض"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+#, fuzzy
+msgid "Welcome Screen"
+msgstr "صفحه خوش‌آمدگویی"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 #, fuzzy
 msgid "Activate Welcome Screen"
 msgstr "صفحه خوش‌آمدگویی"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+#, fuzzy
+msgid "Printers"
+msgstr "چاپگر‌ها"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 #, fuzzy
 msgid "Activate Printers"
@@ -2609,6 +2631,11 @@ msgstr "پل Tor"
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "نشانک‌های مرورگر"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 #, fuzzy
 msgid "Activate Tor Browser Bookmarks"
@@ -2743,7 +2770,7 @@ msgstr "رمز"
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:101
 #, fuzzy
 msgid "Confirm:"
-msgstr "تایید "
+msgstr "تایید"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:178
 #, fuzzy
@@ -2842,11 +2869,11 @@ msgstr "_باز کردن"
 msgid "Detach this volume"
 msgstr "جدا کردن این حجم"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr "فلش USB هدف:"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr "نصب مجدد (حذف تمام داده ها)"
 
@@ -3408,6 +3435,13 @@ msgstr "دسامبر"
 msgid "Clock"
 msgstr "ساعت"
 
+#, fuzzy
+#~ msgid "Encrypted _Persistent Storage"
+#~ msgstr "ذخیره دائمی رمزگذاری شده"
+
+#~ msgid "Enter your passphrase to unlock the persistent storage"
+#~ msgstr "رمز خود را برای باز کردن درایو ذخيره‌ دائمی وارد کنید"
+
 #, python-format
 #~ msgid ""
 #~ "<h1>Help us fix your bug!</h1>\n"
diff --git a/po/fi.po b/po/fi.po
index 143f154b738..affb9f702cd 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -22,8 +22,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
-"PO-Revision-Date: 2023-01-27 06:49+0000\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
+"PO-Revision-Date: 2023-03-09 04:37+0000\n"
 "Last-Translator: Oskari Lavinto <olavinto@protonmail.com>\n"
 "Language-Team: Finnish <https://hosted.weblate.org/projects/tor/tails-gui/fi/"
 ">\n"
@@ -32,7 +32,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.16-dev\n"
+"X-Generator: Weblate 4.16.2-dev\n"
 
 #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1
@@ -347,7 +347,7 @@ msgid "Upgrade later"
 msgstr "Päivitä myöhemmin"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:518
-#, fuzzy, perl-brace-format
+#, perl-brace-format
 msgid ""
 "<b>You should do a manual upgrade to the latest version of {name}.</b>\n"
 "\n"
@@ -363,8 +363,8 @@ msgstr ""
 "\n"
 "Lue lisää uudesta versiosta osoitteesta {details_url}\n"
 "\n"
-"Tails-järjestelmääsi on mahdotonta päivittää tähän versioon "
-"automaattisesti.\n"
+"Tails-järjestelmääsi on mahdotonta päivittää tähän versioon automaattisesti: "
+"{explanation}\n"
 "\n"
 "Lue miten manuaalinen päivitys tapahtuu osoitteesta {manual_upgrade_url}"
 
@@ -525,9 +525,9 @@ msgid "Additional Settings"
 msgstr "Lisäasetukset"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "Peruuta"
@@ -598,30 +598,27 @@ msgstr "Pois päältä"
 msgid "Off (default)"
 msgstr "Pois päältä (oletus)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
-#, fuzzy
-msgid "Persistent Storage Not Unlocked"
-msgstr "Pysyvä tallennustila"
-
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
 #, fuzzy
+msgid "Persistent Storage Still Locked"
+msgstr "Pysyvää tallennustilaa ei ole avattu"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
 msgstr ""
-"Haluatko varmasti käynnistää Tailsin uudelleen nyt?\\n\\nKaikki nykyinen työ "
-"menetetään."
+"Haluatko todella käynnistää Tailsin avaamatta pysyvää tallennustilaasi?"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
 #, fuzzy
-msgid "Continue Without Persistent Storage"
-msgstr "Luo pysyvä tallennustila"
+msgid "Start Without Persistent Storage"
+msgstr "Jatka ilman pysyvää tallennustilaa"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
-#, fuzzy
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 msgid "Don't _Create Persistent Storage"
-msgstr "_Luo pysyvä tallennustila"
+msgstr "Älä _luo pysyvää tallennustilaa"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 msgid "_Create Persistent Storage"
 msgstr "_Luo pysyvä tallennustila"
@@ -641,7 +638,6 @@ msgstr "Avataan…"
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr "Poista lukitus"
 
@@ -872,7 +868,7 @@ msgstr "Levy on loopback-laite: ohitetaan MBR:n palautus"
 msgid "Synchronizing data on disk..."
 msgstr "Synkronoidaan levyn tiedot..."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
@@ -880,63 +876,63 @@ msgstr ""
 "Virhe: Nimiön tai laitteen UUID:n hakeminen epäonnistui. Jatkaminen "
 "epäonnistui."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr "Asennus on valmis! (%s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr "Tails'in asennnus epäonnistui!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr "Tails-asennusohjelma"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr "Kopioi nykyinen Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr "Käytä ladattua Tails'in ISO-kuvaa"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr "Päivitys"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr "Manuaalisen päivityksen ohjeet"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr "Asenna"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr "Asennusohjeet"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(size)s%(vendor)s%(model)slaite (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr "ISO-kuvaa ei ole valittu"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr "Ole hyvä ja valitse Tails'in ISO-kuva."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -947,7 +943,7 @@ msgstr ""
 "poistettavaksi, eikä se käynnistä Tails'iä. Ole hyvä ja yritä asentaa eri "
 "malliin."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
@@ -956,7 +952,7 @@ msgstr ""
 "Laitteen \"%(pretty_name)s\" tallennustila ei riitä Tails:n asentamiseen "
 "(asennukseen vaaditaan vähintään %(size)s GB)."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -967,34 +963,34 @@ msgstr ""
 "ladata Tails ISO-levykuva:\n"
 "%(dl_url)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr "Tails'in asentamiseen sopivaa laitetta ei voitu löytää"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr ""
 "Ole hyvä ja kiinnitä ainakin %0.1f'n gigatavun USB- tai SD-muistilaite."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr "Tails'iä asentaessa tapahtui virhe"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr "Asennus on valmis!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr "Laitteen liittäminen epäonnistui"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(parent_size)s%(vendor)s%(model)slaite (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
@@ -1004,11 +1000,11 @@ msgstr ""
 "\n"
 "Tämän USB-tikun pysyvä tallennustila häviää."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr "Poista pysyvä tallennustila ja uudelleenasenna"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
@@ -1018,20 +1014,20 @@ msgstr ""
 "\n"
 "Kaikki tämän USB-tikun data poistetaan."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr "Poista kaikki data ja asenna"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr "%(description)s%(delete_message)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr "Vahvista kohde-USB-tikku"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
@@ -1039,7 +1035,7 @@ msgstr ""
 "Valittu tiedosto ei ole luettavissa. Korjaa käyttöoikeudet tai valitse "
 "toinen tiedosto."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
@@ -1047,7 +1043,7 @@ msgstr ""
 "Valittua tiedostoa ei voitu käyttää.  Tämä voi onnistua paremmin, jos "
 "siirrät ISO-tiedoston aseman juurikansioon (esim. C:\\)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr "%(filename)s valittu"
@@ -1135,7 +1131,7 @@ msgstr "su-komento on poissa käytöstä. Käytä sudo-komentoa sen sijaan."
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1197,7 +1193,7 @@ msgstr "ei saatavilla"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -1206,7 +1202,7 @@ msgstr ""
 "{details} Ole hyvä ja tarkista lisäohjelmistolistasi tai lue järjestelmäloki "
 "ymmärtääksesi pulman paremmin."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
@@ -1214,56 +1210,56 @@ msgstr ""
 "Ole hyvä ja tarkista lisäohjelmistolistasi tai lue järjestelmäloki "
 "ymmärtääksesi pulman paremmin."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr "Näytä loki"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "Aseta"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} ja {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ", "
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "Lisää {packages} lisäohjelmistoosi?"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 "Asentaaksesi sen automaattisesti pysyvästä tallennustilastasi, kun "
 "käynnistät Tailsin."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr "Asenna joka kerta"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr "Asenna kertaalleen"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr "Lisäohjelmistosi määrittely epäonnistui."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -1271,67 +1267,67 @@ msgstr ""
 "Asentaaksesi sen automaattisesti, kun käynnistät Tailsin, voit luoda pysyvän "
 "tallennustilan ja aktivoida toiminnon <b>Lisäohjelmisto</b>."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr "Luo pysyvä tallennustila"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr "Pysyvän tallennustilan luonti epäonnistui."
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr "Voit asentaa {packages} automaattisesti, kun käynnistät Tailsin"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr "Tehdäksesi niin tulee sinun suorittaa Tails USB-tikulta."
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "Poistetaanko {packages} lisäohjelmistostasi?"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr "Tämä lopettaa {packages} asentamisen automaattisesti."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "Poista"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr "Lisäohjelmistoasi asennetaan pysyvästä tallennustilasta..."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr "Tämä saattaa kestää useita minuutteja."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr "Lisäohjelmistosi asennus epäonnistui"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr "Lisäohjelmisto asennettu onnistuneesti"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr "Lisäohjelmiston päivitysten tarkistus epäonnistui"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -1339,13 +1335,13 @@ msgstr ""
 "Tarkista verkkoyhteytesi, käynnistä Tails uudelleen, tai lue järjestelmäloki "
 "ymmärtääksesi pulman paremmin."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr "Lisäohjelmistosi päivitys epäonnistui"
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
-msgstr "Ohjeet"
+msgstr "Ohjeistus"
 
 #. Translators: Don't translate {package}, it's a placeholder and will be replaced.
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
@@ -1504,19 +1500,19 @@ msgstr ""
 "Katso {manual_upgrade_url}"
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr "virhe:"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr "Varoitus: virtuaalikone havaittu!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr "Varoitus: epävapaa virtuaalikone havaittu!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1528,11 +1524,11 @@ msgstr ""
 "pitää luotettavana sekä isäntäkäyttöjärjestelmän että "
 "virtualisointiohjelmiston osalta."
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr "Älä näytä enään"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr "Opi lisää"
 
@@ -1546,22 +1542,20 @@ msgid "_Use a bridge that you already know"
 msgstr "_Käytä jo tuntemaasi siltaa"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:242
-#, fuzzy
 msgid ""
 "To save your bridge, <a href=\"doc/persistent_storage\">unlock your "
 "Persistent Storage</a>."
 msgstr ""
-"Tallenna silta <a href=\"doc/first_steps/persistence\">avaamalla pysyvän "
-"tallennustilan salaus</a>."
+"Tallentaaksesi siltasi, <a href=\"doc/persistent_storage\">avaa pysyvä "
+"tallennustilasi</a>."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:249
-#, fuzzy
 msgid ""
 "To save your bridge, <a href=\"doc/persistent_storage\">create a Persistent "
 "Storage</a> on your Tails USB stick."
 msgstr ""
-"Tallenna silta <a href=\"doc/first_steps/persistence\">luomalla pysyvä "
-"tallennustila</a> Tailsin USB-muistitikulle."
+"Tallentaaksesi siltasi, <a href=\"doc/persistent_storage\">luo pysyvä "
+"tallennustila</a> Tails USB -muistillesi."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:269
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:773
@@ -1625,9 +1619,8 @@ msgid "You can now browse the Internet anonymously and uncensored."
 msgstr "Voit nyt käyttää Internetiä anonyymisti ja sensuroimattomasti."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:703
-#, fuzzy
 msgid "This local network seems to be blocking access to Tor."
-msgstr "Paikallinen verkkoyhteytesi estää Torin käytön."
+msgstr "Paikallinen verkko näyttää estävän Tor-yhteydet."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:776
 msgid "Bridge address malformed"
@@ -1654,20 +1647,19 @@ msgid ""
 "If connecting to Tor fails, you will have to wait again until the end of the "
 "progress bar to be able to troubleshoot your connection."
 msgstr ""
-"Tails jatkaa yhteyden muodostamista Tor-verkkoon sen jälkeen, kun olet "
-"sulkenut Tor-yhteysavustajan.\n"
+"Tails jatkaa yhteyden muodostusta Tor-verkkoon sen jälkeen, kun olet "
+"sulkenut Tor-yhteysapurin.\n"
 "\n"
-"Jos yhteyden muodostaminen Tor-verkkoon epäonnistuu, sinun on odotettava "
-"uudelleen edistymispalkin loppuun asti voidaksesi suorittaa yhden "
-"vianmäärityksen."
+"Jos yhteyden muodostus epäonnistuu, sinun on odotettava uudelleen "
+"edistymispalkin loppuun asti voidaksesi suorittaa yhteyden vianmäärityksen."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1112
 msgid "Close and Lose Progress"
-msgstr ""
+msgstr "Sulje ja menetä edistyminen"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1113
 msgid "Wait"
-msgstr ""
+msgstr "Odota"
 
 #: config/chroot_local-includes/usr/local/bin/thunderbird:41
 msgid "You need to migrate your OpenPGP keys"
@@ -1888,11 +1880,11 @@ msgstr ""
 msgid "Choose File Container"
 msgstr "Valitse tiedostosäilö"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr "Suojaamaton selain poistettiin käytöstä aloitusnäytössä.\\n\\n"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
@@ -1900,21 +1892,21 @@ msgstr ""
 "Käynnistä Tails uudelleen käyttääksesi Suojaamatonta selainta ja varmista, "
 "että se on otettu käyttöön aloitusnäytön lisäasetuksista."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr "Käynnistä Tails uudelleen käyttääksesi Suojaamatonta selainta."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr "_Käynnistä uudelleen"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 msgid "_Cancel"
 msgstr "__Peruuta"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
@@ -1922,27 +1914,27 @@ msgstr ""
 "Haluatko varmasti käynnistää Tailsin uudelleen nyt?\\n\\nKaikki nykyinen työ "
 "menetetään."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr "Käynnistä uudelleen nyt"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr "Järjestelmän uudelleenkäynnistys epäonnistui."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr "Käynnistetään Suojaamaton selain..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr "Tämä voi kestää hetken, odota rauhassa."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr "Suljetaan Suojaamaton selain..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
@@ -1950,13 +1942,13 @@ msgstr ""
 "Tämä saattaa kestää jonkin aikaa, etkä voi käynnistää Suojaamatonta selainta "
 "uudelleen ennen kuin se on suljettu oikein."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr "Suojaamaton selain"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
@@ -1964,15 +1956,15 @@ msgstr ""
 "Toinen Suojaamaton selain on käynnissä, tai sitä siivotaan. Yritä hetken "
 "kuluttua uudelleen."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr "Chroot-asennus epäonnistui."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr "Selaimen asettaminen epäonnistui."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
@@ -1982,7 +1974,7 @@ msgstr ""
 "Suojaamattoman selaimen, muodosta yhteys Wi-Fiin, kiinteään verkkoon tai "
 "mobiiliverkkoon."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr "Selaimen suorittaminen epäonnistui."
 
@@ -2159,6 +2151,7 @@ msgid "Tails documentation"
 msgstr "Tails-ohjeet"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 msgid "Persistent Storage"
 msgstr "Pysyvä tallennustila"
@@ -2188,6 +2181,19 @@ msgstr "Opi käyttämään Tailsia"
 msgid "Learn more about Tails"
 msgstr "Opi lisää Tails-ohjelmasta"
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "Pysyvä tallennustila"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+#, fuzzy
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+"Ota käyttöön ne pysyvän tallennustilan ominaisuudet, joiden tietoja haluat "
+"tallentaa Tailsin USB-muistitikulle."
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr "Asenna, kopioi, päivitä Tails"
@@ -2257,7 +2263,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr "Ylläpitosalasana"
 
@@ -2284,7 +2290,7 @@ msgid "Disable"
 msgstr "Poista käytöstä"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr "MAC osoitteen anonymisointi"
 
@@ -2310,7 +2316,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr "Älä anonymisoi MAC osoitteita"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr "Verkon asetukset"
 
@@ -2326,13 +2332,13 @@ msgid ""
 "settings."
 msgstr ""
 "Korvasimme tämän lisäasetuksen Tails-versiossa 4.19 (Kesäkuu 2021) "
-"työpöydälle integroidulla Tor-yhteysavustajalla.\n"
+"työpöydälle integroidulla Tor-yhteysapurilla.\n"
 "\n"
 "Muodostaessasi Tor-yhteyttä Tailsin käynnistyttyä sinulta kysytään haluatko "
 "käyttää yhteyteen Tor-siltoja.\n"
 "\n"
-"Jos haluat toimia yhteydettömässä tilassa, ota yhteydetön tila "
-"lisäasetuksista käyttöön."
+"Jos haluat toimia yhteydettömässä tilassa, ota yhteydetön tila käyttöön "
+"lisäasetuksista."
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:357
 msgid "Offline Mode"
@@ -2392,11 +2398,11 @@ msgstr "Asetukset ladattiin pysyvästä tallennustilasta."
 msgid "Welcome to Tails!"
 msgstr "Tervetuloa käyttämään Tailsia!"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 msgid "_Persistent Storage"
 msgstr "_Pysyvä tallennustila"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
@@ -2406,45 +2412,48 @@ msgstr ""
 "tallennustilalle Tailsin USB-muistitikulle: asiakirjat, selaimen "
 "kirjanmerkit, wifi-salasanat ja niin edelleen."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr "Luot ja määrität pysyvän tallennustilan, kun käynnistät Tailsin."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr "Kieli & Alue"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr "Oletusasetukset"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
-msgstr "Salattu _pysyvä tallennustila"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
 msgid "Show Passphrase"
 msgstr "Näytä salauslauseke"
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
-msgstr "Avaa pysyvä tallennustila syöttämällä salauslausekkeesi"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "Salauslauseke:"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+#, fuzzy
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr "Pysyvä säilystilasi on auki. Käynnistä Tails uudelleen lukitaksesi se."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr "_Lisäasetukset"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr "Lisää lisäasetus"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
@@ -2452,11 +2461,11 @@ msgstr ""
 "Oletusasetukset ovat useimmiten turvallisia. Paina alla olevaa \"+\"-"
 "painiketta lisätäksesi oman asetuksesi."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 msgid "Shutdown"
 msgstr "Sammuta"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr "_Käynnistä Tails"
 
@@ -2519,7 +2528,6 @@ msgid "Send Error Report"
 msgstr "Lähetä virheilmoitus"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:61
-#, fuzzy
 msgid ""
 "Your Persistent Storage is unlocked.\n"
 "\n"
@@ -2528,12 +2536,12 @@ msgid ""
 "<a href=\"doc/persistent_storage/backup\">Learn how to make a backup of your "
 "Persistent Storage.</a>"
 msgstr ""
-"Pysyvän tallennustilan salaus on avattu.\n"
+"Pysyvä tallennustilasi on avattu.\n"
 "\n"
-"Sen sisältö on saatavilla siihen asti, kunnes sammutat Tailsin.\n"
+"Sen sisältö on käytettävissä kunnes Tails sammuu.\n"
 "\n"
-"<a href=\"doc/first_steps/persistence/backup\">Lue kuinka tehdä varmuuskopio "
-"pysyvästä tallennustilasta.</a>"
+"<a href=\"doc/persistent_storage/backup\">Lue miten varmuuskopioit pysyvän "
+"tallennustilasi</a>"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:89
 msgid ""
@@ -2563,10 +2571,20 @@ msgstr "Aktivoi pysyvä kansio"
 msgid "System Settings"
 msgstr "Järjestelmän asetukset"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+#, fuzzy
+msgid "Welcome Screen"
+msgstr "Aktivoi tervetulonäyttö"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 msgid "Activate Welcome Screen"
 msgstr "Aktivoi tervetulonäyttö"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+#, fuzzy
+msgid "Printers"
+msgstr "Aktivoi tulostimet"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 msgid "Activate Printers"
 msgstr "Aktivoi tulostimet"
@@ -2599,6 +2617,11 @@ msgstr "Aktivoi Tor-silta"
 msgid "Applications"
 msgstr "Sovellukset"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "Aktivoi Tor-selaimen kirjanmerkit"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 msgid "Activate Tor Browser Bookmarks"
 msgstr "Aktivoi Tor-selaimen kirjanmerkit"
@@ -2608,9 +2631,8 @@ msgid "Electrum Bitcoin Wallet"
 msgstr "Electrumin bitcoin-lompakko"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:419
-#, fuzzy
 msgid "Activate Electrum Bitcoin Wallet"
-msgstr "Aktivoi Electrumin bitcoin-lompakko"
+msgstr "Aktivoi Electrum Bitcoin Wallet"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:430
 msgid "Thunderbird Email Client"
@@ -2691,16 +2713,13 @@ msgstr ""
 "live/persistence/TailsData_unlocked/persistence.conf."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:720
-#, fuzzy
 msgid ""
 "<a href=\"doc/persistent_storage\">Learn more about the Persistent Storage.</"
 "a>"
 msgstr ""
-"<a href=\"doc/first_steps/persistence\">Lue lisää pysyvästä "
-"tallennustilasta</a>"
+"<a href=\"doc/persistent_storage\">Lue lisää pysyvästä tallennustilasta</a>"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/locked_view.ui.in:52
-#, fuzzy
 msgid ""
 "<b>Your Persistent Storage is locked.</b>\n"
 "\n"
@@ -2710,10 +2729,13 @@ msgid ""
 "To delete your Persistent Storage, click <b>Delete</b> on the right of the "
 "title bar."
 msgstr ""
-"<b>Pysyvä tallennustila on lukittu.</b>\n"
+"<b>Pysyvä tallennustilasi on lukittu.</b>\n"
+"\n"
+"Käyttääksesi tai määrittääksesi pysyvän tallennustilasi, avaa sen lukitus "
+"aloitusnäytöltä Tailsin käynnistyksen yhteydessä.\n"
 "\n"
-"Käyttääksesi tai määrittääksesi pysyvän tallennustilan, avaa sen lukitus "
-"aloitusnäytöltä, kun käynnistät Tailsin."
+"Poista pysyvä tallennustilasi painamalla otsikkopalkin oikealta puolelta "
+"<b>Poista</b>."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:52
 msgid ""
@@ -2744,7 +2766,6 @@ msgid "_Back"
 msgstr "_Takaisin"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:56
-#, fuzzy
 msgid ""
 "Everything you do disappears automatically when you shut down Tails.\n"
 "\n"
@@ -2759,33 +2780,29 @@ msgid ""
 "<a href=\"doc/persistent_storage\">Learn more about the Persistent Storage.</"
 "a>"
 msgstr ""
-"Kaikki mitä teet katoaa, kun sammutat Tailsin.\n"
+"Kaikki toimesi katoavat automaattisesti, kun Tails sammuu.\n"
 "\n"
-"Voit halutessasi tallentaa joitain tiedostoja ja asetuksia salattuun "
-"pysyvään tallennustilaan Tailsin USB-muistitikulle:\n"
+"Halutessasi voit kuitenkin tallentaa mm. seuraavia tiedostoja ja asetuksia "
+"salattuun pysyvään tallennustilaan Tails USB -muistille:\n"
 "\n"
 "• Asiakirjat\n"
-"• Wifi-salasanat\n"
+"• Wi-Fi-verkkojen salasanat\n"
 "• Selaimen kirjanmerkit\n"
-"• Ja paljon muuta.\n"
 "\n"
-"<a href=\"doc/first_steps/persistence\">Lue lisää pysyvästä "
-"tallennustilasta</a>"
+"<a href=\"doc/persistent_storage\">Lue lisää pysyvästä tallennustilasta</a>"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:92
-#, fuzzy
 msgid ""
 "Sorry, it is impossible to create a Persistent Storage on this device.\n"
 "\n"
 "To be able to use Tails with a Persistent Storage, please follow our "
 "instructions on <a href=\"install\">installing Tails on a USB stick</a>."
 msgstr ""
-"Valitettavasti tämä Tails-laite ei tue pysyvän tallennustilan luomista.\n"
-"\n"
-"Käyttääksesi Tailsia ja pysyvää tallennustilaa, seuraa Tailsin "
-"asennusohjeita USB-muistitikulle:\n"
+"Valitettavasti tälle laitteelle ei ole mahdollista luoda pysyvää "
+"tallennustilaa.\n"
 "\n"
-"<a href=\"install\">Asenna Tails</a>"
+"Käyttääksesi Tailsia pysyvällä tallennustilalla, seuraa <a "
+"href=\"install\">asennusohjeitamme USB-muistille</a>."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:137
 msgid "Co_ntinue"
@@ -2847,11 +2864,11 @@ msgstr "_Avaa lukitus"
 msgid "Detach this volume"
 msgstr "Irrota tämä taltio"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr "Kohde-USB-tikku:"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr "Asenna uudelleen (poista kaikki data)"
 
@@ -2987,9 +3004,8 @@ msgid "None"
 msgstr "Ei mikään"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:240
-#, fuzzy
 msgid "_Ask for a Tor bridge by email"
-msgstr "_Pyydä siltaa sähköpostitse"
+msgstr "_Pyydä Tor-siltaa sähköpostitse"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:259
 msgid ""
@@ -3084,34 +3100,26 @@ msgid "Configure a Local _Proxy"
 msgstr "Määritä paikallinen _välityspalvelin"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:951
-#, fuzzy
 msgid "• Tor bridge by email"
-msgstr "• Silta sähköpostilla"
+msgstr "• Tor-silta sähköpostitse"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:971
-#, fuzzy
 msgid ""
 "Tor bridges are secret Tor relays. Use a bridge as your first Tor relay if "
 "connections to Tor are blocked, for example in some countries, by some "
 "public networks, or by some parental controls."
 msgstr ""
-"Tor-sillat ovat salaisia Tor-välittäjiä. Käytä siltaa ensimmäisenä Tor-"
-"välittäjänäsi, jos yhteydet Tor-verkkoon on estetty esimerkiksi joissakin "
-"maissa, joissakin julkisissa verkoissa tai joidenkin lapsilukkosovellusten "
-"toimesta.\n"
-"\n"
-"Valitse tämä vaihtoehto, jos tiedät että tarvitset siltaa. Muussa "
-"tapauksessa Tails tunnistaa automaattisesti, tarvitsetko siltaa voidaksi "
-"muodostaa yhteyden Tor-verkkoon."
+"Tor-sillat ovat salaisia Tor-reitittimiä. Käytä siltaa ensimmäisenä Tor-"
+"reitittimenäsi, jos yhteydet Tor-verkkoon on estetty, esimerkiksi joidenkin "
+"maiden, julkisten verkkojen tai käytönvalvontaratkaisujen toimesta."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:991
-#, fuzzy
 msgid ""
 "To get a bridge, send an empty email to <tt>bridges@torproject.org</tt> from "
 "a Gmail or Riseup email address with your phone and scan the QR code that is "
 "attached to the automatic reply."
 msgstr ""
-"Lähetä puhelimellasi tyhjä sähköpostiviesti osoitteeseen "
+"Hanki silta lähetämällä puhelimellasi tyhjä sähköpostiviesti osoitteeseen "
 "<tt>bridges@torproject.org</tt> Gmail- tai Riseup-osoitteesta ja lue "
 "automaattiseen vastaukseen liitetty QR-koodi."
 
@@ -3275,9 +3283,8 @@ msgid "Failed to connect to Tor without bridges."
 msgstr "Toriin ei voitu muodostaa yhteyttä ilman siltoja."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1870
-#, fuzzy
 msgid "This local network is blocking access to Tor."
-msgstr "Paikallinen verkkoyhteytesi estää Torin käytön."
+msgstr "Paikallinen verkko estää Tor-yhteydet."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1902
 msgid "Connecting to Tor…"
@@ -3425,6 +3432,12 @@ msgstr "Joulukuu"
 msgid "Clock"
 msgstr "Kello"
 
+#~ msgid "Encrypted _Persistent Storage"
+#~ msgstr "Salattu _pysyvä tallennustila"
+
+#~ msgid "Enter your passphrase to unlock the persistent storage"
+#~ msgstr "Avaa pysyvä tallennustila syöttämällä salauslausekkeesi"
+
 #, python-format
 #~ msgid ""
 #~ "<h1>Help us fix your bug!</h1>\n"
diff --git a/po/fr.po b/po/fr.po
index c2bd1cb3b98..d9e50540593 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -46,9 +46,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
-"PO-Revision-Date: 2023-02-05 18:38+0000\n"
-"Last-Translator: Chre <tor@renaudineau.org>\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
+"PO-Revision-Date: 2023-03-04 04:37+0000\n"
+"Last-Translator: tachyglossues <tachyglossues@gmail.com>\n"
 "Language-Team: French <https://hosted.weblate.org/projects/tor/tails-gui/fr/"
 ">\n"
 "Language: fr\n"
@@ -57,7 +57,7 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % "
 "1000000 == 0 ? 1 : 2;\n"
-"X-Generator: Weblate 4.16-dev\n"
+"X-Generator: Weblate 4.16.2-dev\n"
 
 #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1
@@ -384,7 +384,7 @@ msgid "Upgrade later"
 msgstr "Mettre à niveau plus tard"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:518
-#, fuzzy, perl-brace-format
+#, perl-brace-format
 msgid ""
 "<b>You should do a manual upgrade to the latest version of {name}.</b>\n"
 "\n"
@@ -399,10 +399,10 @@ msgstr ""
 "de {name}.</b>\n"
 "\n"
 "Pour plus d'informations sur cette nouvelle version, rendez-vous sur "
-"{details_url}\n"
+"{details_url}.\n"
 "\n"
 "Il est impossible d'effectuer une mise à niveau automatique de Tails vers "
-"cette nouvelle version.\n"
+"cette nouvelle version : {explanation}.\n"
 "\n"
 "Pour savoir comment effectuer une mise à niveau manuelle, rendez-vous sur "
 "{manual_upgrade_url}"
@@ -565,9 +565,9 @@ msgid "Additional Settings"
 msgstr "Paramètres supplémentaires"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "Annuler"
@@ -638,30 +638,28 @@ msgstr "Désactivé"
 msgid "Off (default)"
 msgstr "Désactivé (par défaut)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
-#, fuzzy
-msgid "Persistent Storage Not Unlocked"
-msgstr "Stockage persistant"
-
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
 #, fuzzy
+msgid "Persistent Storage Still Locked"
+msgstr "Le stockage persistant n'est pas déverrouillé"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
 msgstr ""
-"Voulez-vous vraiment redémarrer Tails maintenant ?\\n\\nTout le travail en "
-"cours sera perdu."
+"Voulez-vous vraiment commencer Tails sans déverrouiller votre stockage "
+"persistant ?"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
 #, fuzzy
-msgid "Continue Without Persistent Storage"
-msgstr "Créer un stockage persistant"
+msgid "Start Without Persistent Storage"
+msgstr "Continuer sans stockage persistant"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
-#, fuzzy
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 msgid "Don't _Create Persistent Storage"
-msgstr "_Créer un stockage persistant"
+msgstr "Ne pas _Créer de stockage persistant"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 msgid "_Create Persistent Storage"
 msgstr "_Créer un stockage persistant"
@@ -681,7 +679,6 @@ msgstr "Déverrouillage…"
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr "Déverrouiller"
 
@@ -921,7 +918,7 @@ msgstr ""
 msgid "Synchronizing data on disk..."
 msgstr "Synchronisation des données sur le disque…"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
@@ -929,63 +926,63 @@ msgstr ""
 "Erreur : impossible de définir l’étiquette ou d’obtenir l’UUID de votre "
 "périphérique. Impossible de poursuivre."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr "L’installation est terminée. (%s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr "L’installation de Tails a échoué."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr "Programme d’installation de Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr "Cloner le Tails utilisé actuellement"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr "Utiliser une image ISO Tails téléchargée"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr "Mettre à niveau"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr "Instructions de mise à niveau manuelle"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr "Installer"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr "Instructions d’installation"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "Périphérique %(vendor)s %(model)s %(size)s (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr "Aucune image ISO n’a été sélectionnée"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr "Veuillez sélectionner une image ISO de Tails."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -996,7 +993,7 @@ msgstr ""
 "fabricant et le démarrage de Tails échouera sur cette clé. Veuillez tenter "
 "d’installer Tails sur un modèle différent."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
@@ -1005,7 +1002,7 @@ msgstr ""
 "Le périphérique « %(pretty_name)s » est trop petit pour installer Tails (au "
 "moins %(size)s Go sont exigés)."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -1016,33 +1013,33 @@ msgstr ""
 "Tails, vous devez utiliser une image ISO Tails téléchargée :\n"
 "%(dl_url)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr "Aucun périphérique adapté n’a été trouvé pour installer Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr "Veuillez brancher une clé USB ou une carte SD d’au moins %0.1f Go."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr "Une erreur est survenue lors de l’installation de Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr "L’installation est terminée !"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr "Impossible de monter le périphérique"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "Périphérique %(vendor)s %(model)s %(parent_size)s (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
@@ -1052,11 +1049,11 @@ msgstr ""
 "\n"
 "L’espace de stockage persistant de cette clé USB sera perdu."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr "Supprimer l’espace de stockage persistant et réinstaller"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
@@ -1066,20 +1063,20 @@ msgstr ""
 "\n"
 "Toutes les données de cette clé USB seront perdues."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr "Supprimer toutes les données et installer"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr "%(description)s%(delete_message)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr "Confirmer la clé USB cible"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
@@ -1087,7 +1084,7 @@ msgstr ""
 "Le fichier sélectionné est illisible. Veuillez changer ses droits ou "
 "sélectionner un autre fichier."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
@@ -1095,7 +1092,7 @@ msgstr ""
 "Impossible d’utiliser le fichier sélectionné. Vous pourriez avoir plus de "
 "chance en déplaçant l’ISO sur la racine de votre disque (c.-à-d : C:\\)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr "%(filename)s est sélectionné"
@@ -1185,7 +1182,7 @@ msgstr "su est désactivée. Veuillez plutôt utiliser sudo."
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1251,7 +1248,7 @@ msgstr "non disponible"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -1260,7 +1257,7 @@ msgstr ""
 "{details} Veuillez vérifier votre liste de logiciels supplémentaires ou lire "
 "le journal système afin de mieux comprendre le problème."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
@@ -1268,56 +1265,56 @@ msgstr ""
 "Veuillez vérifier votre liste de logiciels supplémentaires ou lire le "
 "journal système afin de mieux comprendre le problème."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr "Afficher le journal"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "Configurer"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} et {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ", "
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "Ajouter {packages} à vos logiciels supplémentaires ?"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 "Pour l’installer automatiquement à partir de votre stockage persistant lors "
 "du démarrage de Tails."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr "Installer à chaque fois"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr "Installer une seule fois"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr "La configuration de vos logiciels supplémentaires a échoué."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -1326,72 +1323,72 @@ msgstr ""
 "créer un stockage persistant et activer l’option <b>Logiciels "
 "supplémentaires</b>."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr "Créer un stockage persistant"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr "La création de votre stockage persistant a échoué."
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 "Vous pourriez installer {packages} automatiquement lors du démarrage de Tails"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr "Pour ce faire, vous devez lancer Tails à partir d’une clé USB."
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "Enlever {packages} de vos logiciels supplémentaires ?"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr "Cela arrêtera l’installation automatique de {packages}."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "Supprimer"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 "Installation de vos logiciels supplémentaires à partir du stockage "
 "persistant…"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr "Cela peut prendre plusieurs minutes."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr "L’installation de vos logiciels supplémentaires a échoué"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr "Logiciels supplémentaires installés avec succès"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 "La vérification de la présence de mises à niveau pour vos logiciels "
 "supplémentaires a échoué"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -1399,11 +1396,11 @@ msgstr ""
 "Veuillez vérifier votre connexion réseau, essayer de redémarrer Tails, ou "
 "lire le journal système afin de mieux comprendre le problème."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr "La mise à niveau de vos logiciels supplémentaires a échoué"
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "Documentation"
 
@@ -1568,19 +1565,19 @@ msgstr ""
 "Consultez {manual_upgrade_url}"
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr "erreur :"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr "Avertissement : Une machine virtuelle a été détectée !"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr "Attention : machine virtuelle non-libre détectée !"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1592,11 +1589,11 @@ msgstr ""
 "peuvent être considérés de confiance, à la fois pour le système "
 "d’exploitation hôte et le logiciel de virtualisation."
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr "Ne plus afficher"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr "En apprendre davantage"
 
@@ -1610,22 +1607,20 @@ msgid "_Use a bridge that you already know"
 msgstr "_Utiliser un pont que vous connaissez déjà"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:242
-#, fuzzy
 msgid ""
 "To save your bridge, <a href=\"doc/persistent_storage\">unlock your "
 "Persistent Storage</a>."
 msgstr ""
-"Pour enregistrer votre pont, <a href=\"doc/first_steps/"
-"persistence\">déverrouillez votre espace de stockage persistant</a>."
+"Pour sauvegarder votre pont, <a href=\"doc/"
+"persistent_storage\">déverrouillez votre stockage persistant</a>."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:249
-#, fuzzy
 msgid ""
 "To save your bridge, <a href=\"doc/persistent_storage\">create a Persistent "
 "Storage</a> on your Tails USB stick."
 msgstr ""
-"Pour enregistrer votre pont, <a href=\"doc/first_steps/persistence\">créez "
-"un espace de stockage persistant</a> sur votre clé USB Tails."
+"Pour sauvegarder votre pont, <a href=\"doc/persistent_storage\">créez un "
+"stockage persistant</a> sur votre clé USB Tails."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:269
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:773
@@ -1694,9 +1689,8 @@ msgid "You can now browse the Internet anonymously and uncensored."
 msgstr "Vous pouvez désormais parcourir Internet anonymement et sans censure."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:703
-#, fuzzy
 msgid "This local network seems to be blocking access to Tor."
-msgstr "Votre réseau local bloque l’accès Tor."
+msgstr "Il semblerait que ce réseau local bloque l'accès à Tor."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:776
 msgid "Bridge address malformed"
@@ -1733,11 +1727,11 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1112
 msgid "Close and Lose Progress"
-msgstr ""
+msgstr "Fermer et renoncer aux progrès réalisés"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1113
 msgid "Wait"
-msgstr ""
+msgstr "Attendre"
 
 #: config/chroot_local-includes/usr/local/bin/thunderbird:41
 msgid "You need to migrate your OpenPGP keys"
@@ -1960,12 +1954,12 @@ msgstr ""
 msgid "Choose File Container"
 msgstr "Choisir un conteneur de fichiers"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 "Le navigateur non sécurisé a été désactivé dans l'écran de bienvenue. \\n\\n"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
@@ -1974,21 +1968,21 @@ msgstr ""
 "que le navigateur non sécurisé est activé dans les paramètres "
 "supplémentaires de la fenêtre d'accueil."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr "Pour utiliser le navigateur non sécurisé, redémarrez Tails."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr "_Redémarrer"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 msgid "_Cancel"
 msgstr "_Annuler"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
@@ -1996,27 +1990,27 @@ msgstr ""
 "Voulez-vous vraiment redémarrer Tails maintenant ?\\n\\nTout le travail en "
 "cours sera perdu."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr "Redémarrer maintenant"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr "Échec de redémarrage du système."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr "Démarrage du Navigateur non sécurisé…"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr "Cela peut prendre du temps, veuillez être patient."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr "Fermeture du Navigateur non sécurisé…"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
@@ -2024,13 +2018,13 @@ msgstr ""
 "Cela peut prendre du temps et vous ne devez pas redémarrer le "
 "Navigateur non sécurisé avant sa fermeture complète."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr "Navigateur non sécurisé"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
@@ -2038,15 +2032,15 @@ msgstr ""
 "Un autre Navigateur non sécurisé est en cours d’exécution ou de nettoyage. "
 "Veuillez réessayer dans un moment."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr "Échec d’exécution de chroot."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr "Échec de configuration du navigateur."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
@@ -2056,7 +2050,7 @@ msgstr ""
 "Navigateur non sécurisé, vous devez d’abord vous connecter à un réseau Wi-"
 "fi, filaire ou mobile."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr "Échec de démarrage du navigateur."
 
@@ -2238,6 +2232,7 @@ msgid "Tails documentation"
 msgstr "Documentation de Tails"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 msgid "Persistent Storage"
 msgstr "Stockage persistant"
@@ -2268,6 +2263,19 @@ msgstr "Apprendre à utiliser Tails"
 msgid "Learn more about Tails"
 msgstr "En apprendre davantage sur Tails"
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "Stockage persistant"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+#, fuzzy
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+"Activez les fonctionnalités du stockage persistant pour les données que vous "
+"souhaitez sauvegarder sur votre clé USB Tails."
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr "Installer, cloner, mettre Tails à niveau"
@@ -2340,7 +2348,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr "Mot de passe d’administration"
 
@@ -2367,7 +2375,7 @@ msgid "Disable"
 msgstr "Désactiver"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr "Anonymisation de l’adresse MAC"
 
@@ -2393,7 +2401,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr "Ne pas anonymiser les adresses MAC"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr "Configuration du réseau"
 
@@ -2476,11 +2484,11 @@ msgstr "Les paramètres ont été chargés du stockage persistant."
 msgid "Welcome to Tails!"
 msgstr "Bienvenue dans Tails !"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 msgid "_Persistent Storage"
 msgstr "_Stockage persistant"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
@@ -2490,50 +2498,52 @@ msgstr ""
 "un stockage persistant chiffré sur votre clé USB Tails : documents, signets "
 "de navigateur, mots de passe Wi-Fi, etc."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr ""
 "Vous pourrez créer et configurer votre stockage persistant après avoir "
 "démarré Tails."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr "Langue et région"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr "Paramètres par défaut"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
-msgstr "_Stockage persistant chiffré"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
 msgid "Show Passphrase"
 msgstr "Afficher la phrase de passe"
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "Phrase de passe :"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
 msgstr ""
-"Saisissez votre phrase de passe pour déverrouiller le stockage persistant"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+#, fuzzy
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 "Votre stockage persistant est déverrouillé. Redémarrez Tails pour le "
 "verrouiller à nouveau."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr "_Paramètres supplémentaires"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr "Ajouter un paramètre supplémentaire"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
@@ -2541,11 +2551,11 @@ msgstr ""
 "Les paramètres par défaut sont sûrs dans la plupart des cas. Pour ajouter un "
 "paramètre personnalisé, appuyer sur le bouton « + » ci-dessous."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 msgid "Shutdown"
 msgstr "Éteindre"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr "_Démarrer Tails"
 
@@ -2608,7 +2618,6 @@ msgid "Send Error Report"
 msgstr "Envoyer un rapport d'erreur"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:61
-#, fuzzy
 msgid ""
 "Your Persistent Storage is unlocked.\n"
 "\n"
@@ -2619,10 +2628,10 @@ msgid ""
 msgstr ""
 "Votre stockage persistant est déverrouillé.\n"
 "\n"
-"Son contenu sera disponible jusqu'à ce que vous arrêtiez Tails.\n"
+"Son contenu est disponible jusqu'à ce que vous éteigniez Tails.\n"
 "\n"
-"<a href=\"doc/first_steps/persistence/backup\" >Apprenez à faire une "
-"sauvegarde de votre stockage persistant.</a>"
+"<a href=\"doc/persistent_storage/backup\" >Apprenez à faire une sauvegarde "
+"de votre stockage persistant.</a>"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:89
 msgid ""
@@ -2652,10 +2661,20 @@ msgstr "Activer le dossier persistant"
 msgid "System Settings"
 msgstr "Paramètres système"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+#, fuzzy
+msgid "Welcome Screen"
+msgstr "Activer l'écran de bienvenue"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 msgid "Activate Welcome Screen"
 msgstr "Activer l'écran de bienvenue"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+#, fuzzy
+msgid "Printers"
+msgstr "Activer les imprimantes"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 msgid "Activate Printers"
 msgstr "Activer les imprimantes"
@@ -2689,6 +2708,11 @@ msgstr "Activer le pont Tor"
 msgid "Applications"
 msgstr "Applications"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "Activer les signets au Navigateur Tor"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 msgid "Activate Tor Browser Bookmarks"
 msgstr "Activer les signets au Navigateur Tor"
@@ -2698,7 +2722,6 @@ msgid "Electrum Bitcoin Wallet"
 msgstr "Portefeuille Bitcoin Electrum"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:419
-#, fuzzy
 msgid "Activate Electrum Bitcoin Wallet"
 msgstr "Activer Electrum Bitcoin Waller"
 
@@ -2783,16 +2806,14 @@ msgstr ""
 "fichier /live/persistence/TailsData_unlocked/persistence.conf."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:720
-#, fuzzy
 msgid ""
 "<a href=\"doc/persistent_storage\">Learn more about the Persistent Storage.</"
 "a>"
 msgstr ""
 "<a href=\"doc/first_steps/persistence\">En savoir plus sur le stockage "
-"persistant</a>"
+"persistant.</a>"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/locked_view.ui.in:52
-#, fuzzy
 msgid ""
 "<b>Your Persistent Storage is locked.</b>\n"
 "\n"
@@ -2805,7 +2826,10 @@ msgstr ""
 "<b>Votre stockage persistant est verrouillé.</b>\n"
 "\n"
 "Pour utiliser ou configurer votre stockage persistant, déverrouillez-le dans "
-"l'écran de bienvenue lors du démarrage de Tails."
+"l'écran de bienvenue lors du démarrage de Tails.\n"
+"\n"
+"Pour supprimer votre stockage persistant, cliquez sur <b>Supprimer</b> à "
+"droite de la barre de titre."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:52
 msgid ""
@@ -2838,7 +2862,6 @@ msgid "_Back"
 msgstr "_Retour"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:56
-#, fuzzy
 msgid ""
 "Everything you do disappears automatically when you shut down Tails.\n"
 "\n"
@@ -2853,35 +2876,34 @@ msgid ""
 "<a href=\"doc/persistent_storage\">Learn more about the Persistent Storage.</"
 "a>"
 msgstr ""
-"Tout ce que vous faites disparaît automatiquement lorsque vous arrêtez "
+"Toutes vos actions disparaissent automatiquement lorsque vous arrêtez "
 "Tails.\n"
 "\n"
-"Cependant, vous pouvez sauvegarder certains de vos fichiers et votre "
-"configuration dans un stockage persistant chiffré sur votre clé USB Tails :\n"
+"Toutefois, vous pouvez sauvegarder certains de vos fichiers et votre "
+"configuration dans un stockage persistant crypté sur votre clé USB Tails, "
+"par exemple :\n"
 "\n"
-"- Vos documents\n"
-"- Vos mots de passe Wi-Fi\n"
-"- Les signets de votre navigateur\n"
-"- et plus encore\n"
+"• Vos documents\n"
+"• Vos mots de passe Wi-Fi\n"
+"• Les signets de votre navigateur\n"
+"• ...\n"
 "\n"
-"<a href=\"doc/first_steps/persistence\" >Apprendre plus sur le stockage "
-"persistant</a>"
+"<a href=\"doc/persistent_storage\" >En savoir plus sur le stockage "
+"persistant.</a>"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:92
-#, fuzzy
 msgid ""
 "Sorry, it is impossible to create a Persistent Storage on this device.\n"
 "\n"
 "To be able to use Tails with a Persistent Storage, please follow our "
 "instructions on <a href=\"install\">installing Tails on a USB stick</a>."
 msgstr ""
-"Malheureusement, ce dispositif Tails ne supporte pas la création de stockage "
-"persistant.\n"
-"\n"
-"Pour pouvoir utiliser Tails avec un stockage persistant, veuillez suivre la "
-"documentation permettant d'installer Tails sur une clé USB :\n"
+"Malheureusement, il est impossible de créer un stockage persistant sur cet "
+"appareil.\n"
 "\n"
-"<a href=\"install\" >Installer Tails</a>"
+"Pour pouvoir utiliser Tails avec un stockage persistant, veuillez suivre nos "
+"instructions sur <a href=\"install\">installation de Tails sur une clé USB</"
+"a>."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:137
 msgid "Co_ntinue"
@@ -2943,11 +2965,11 @@ msgstr "_Déverrouiller"
 msgid "Detach this volume"
 msgstr "Détacher ce volume"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr "Clé USB cible :"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr "Réinstaller (supprimer toutes les données)"
 
@@ -3088,7 +3110,6 @@ msgid "None"
 msgstr "Aucune"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:240
-#, fuzzy
 msgid "_Ask for a Tor bridge by email"
 msgstr "_Demandez un pont par e-mail"
 
@@ -3186,35 +3207,29 @@ msgid "Configure a Local _Proxy"
 msgstr "Configurer un _mandataire local"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:951
-#, fuzzy
 msgid "• Tor bridge by email"
-msgstr "- Pont par e-mail"
+msgstr "• Pont de Tor par e-mail"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:971
-#, fuzzy
 msgid ""
 "Tor bridges are secret Tor relays. Use a bridge as your first Tor relay if "
 "connections to Tor are blocked, for example in some countries, by some "
 "public networks, or by some parental controls."
 msgstr ""
-"Les ponts Tor sont des relais Tor secrets. Utilisez un pont comme premier "
-"relais Tor si les connexions à Tor sont bloquées, par exemple dans certains "
-"pays, par certains réseaux publics ou encore par des contrôles parentaux.\n"
-"\n"
-"Choisissez cette option si vous savez déjà que vous avez besoin d’un pont. "
-"Autrement, Tails détectera automatiquement si vous en avez besoin pour vous "
-"connecter à Tor de votre réseau local."
+"Les passerelles Tor sont des relais Tor secrets. Utilisez une passerelle "
+"comme premier relais Tor si les connexions à Tor sont bloquées, par exemple "
+"dans certains pays, par certains réseaux publics, ou par certains contrôles "
+"parentaux."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:991
-#, fuzzy
 msgid ""
 "To get a bridge, send an empty email to <tt>bridges@torproject.org</tt> from "
 "a Gmail or Riseup email address with your phone and scan the QR code that is "
 "attached to the automatic reply."
 msgstr ""
-"Envoyez un courriel vide à <tt>bridges@torproject.org</tt> à partir d'une "
-"adresse électronique Gmail ou Riseup avec votre téléphone et scannez le code "
-"QR qui est joint à la réponse automatique."
+"Pour obtenir un pont, envoyez un courriel vide à <tt>bridges@torproject.org</"
+"tt> à partir d'une adresse électronique Gmail ou Riseup avec votre téléphone "
+"et scannez le code QR qui est joint à la réponse automatique."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1014
 msgid "Scan QR Code"
@@ -3377,9 +3392,8 @@ msgid "Failed to connect to Tor without bridges."
 msgstr "Échec de connexion à Tor sans pont."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1870
-#, fuzzy
 msgid "This local network is blocking access to Tor."
-msgstr "Votre réseau local bloque l’accès Tor."
+msgstr "Ce réseau local bloque l'accès à Tor."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1902
 msgid "Connecting to Tor…"
@@ -3527,6 +3541,13 @@ msgstr "décembre"
 msgid "Clock"
 msgstr "Horloge"
 
+#~ msgid "Encrypted _Persistent Storage"
+#~ msgstr "_Stockage persistant chiffré"
+
+#~ msgid "Enter your passphrase to unlock the persistent storage"
+#~ msgstr ""
+#~ "Saisissez votre phrase de passe pour déverrouiller le stockage persistant"
+
 #, python-format
 #~ msgid ""
 #~ "<h1>Help us fix your bug!</h1>\n"
diff --git a/po/fy.po b/po/fy.po
index c777ad9a3a4..893e3ca222a 100644
--- a/po/fy.po
+++ b/po/fy.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
 "PO-Revision-Date: 2023-01-25 11:39+0000\n"
 "Last-Translator: emma peel <emma.peel@riseup.net>\n"
 "Language-Team: Frisian <https://hosted.weblate.org/projects/tor/tails-gui/fy/"
@@ -439,9 +439,9 @@ msgid "Additional Settings"
 msgstr ""
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "Annulearje"
@@ -513,11 +513,11 @@ msgstr ""
 msgid "Off (default)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
-msgid "Persistent Storage Not Unlocked"
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+msgid "Persistent Storage Still Locked"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 #, fuzzy
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
@@ -525,15 +525,15 @@ msgstr ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
-msgid "Continue Without Persistent Storage"
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
+msgid "Start Without Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 msgid "Don't _Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 msgid "_Create Persistent Storage"
 msgstr ""
@@ -553,7 +553,6 @@ msgstr ""
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr ""
 
@@ -770,69 +769,69 @@ msgstr ""
 msgid "Synchronizing data on disk..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -840,14 +839,14 @@ msgid ""
 "a different model."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
 "%(size)s GB is required)."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -855,76 +854,76 @@ msgid ""
 "%(dl_url)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
 "The persistent storage on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
 "All data on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr ""
@@ -1007,7 +1006,7 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1067,143 +1066,143 @@ msgstr ""
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
 "log to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr ""
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr ""
 
@@ -1334,19 +1333,19 @@ msgid ""
 msgstr ""
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr "flater:"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1354,11 +1353,11 @@ msgid ""
 "software."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr ""
 
@@ -1687,32 +1686,32 @@ msgstr ""
 msgid "Choose File Container"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 #, fuzzy
 msgid "_Cancel"
 msgstr "Annulearje"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 #, fuzzy
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
@@ -1721,60 +1720,60 @@ msgstr ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
 "network."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr ""
 
@@ -1934,6 +1933,7 @@ msgid "Tails documentation"
 msgstr "Tails-dokumintaasje"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 msgid "Persistent Storage"
 msgstr ""
@@ -1960,6 +1960,15 @@ msgstr ""
 msgid "Learn more about Tails"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+msgid "Back Up Persistent Storage"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr ""
@@ -2026,7 +2035,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr ""
 
@@ -2050,7 +2059,7 @@ msgid "Disable"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr ""
 
@@ -2071,7 +2080,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr ""
 
@@ -2130,67 +2139,69 @@ msgstr ""
 msgid "Welcome to Tails!"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 msgid "_Persistent Storage"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 #, fuzzy
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr "Tails is configuring your Persistent Storage. Please wait..."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
 msgid "Show Passphrase"
 msgstr ""
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "Wachtwurd:"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 msgid "Shutdown"
 msgstr "Ofslute"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr ""
 
@@ -2288,10 +2299,18 @@ msgstr ""
 msgid "System Settings"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+msgid "Welcome Screen"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 msgid "Activate Welcome Screen"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+msgid "Printers"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 msgid "Activate Printers"
 msgstr ""
@@ -2324,6 +2343,11 @@ msgstr ""
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "Tor-browser"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 msgid "Activate Tor Browser Bookmarks"
 msgstr ""
@@ -2536,11 +2560,11 @@ msgstr ""
 msgid "Detach this volume"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr ""
 
diff --git a/po/ga.po b/po/ga.po
index c300584d3c9..c8e2ba4c29f 100644
--- a/po/ga.po
+++ b/po/ga.po
@@ -9,8 +9,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
-"PO-Revision-Date: 2023-01-27 10:38+0000\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
+"PO-Revision-Date: 2023-03-05 10:37+0000\n"
 "Last-Translator: emma peel <emma.peel@riseup.net>\n"
 "Language-Team: Irish <https://hosted.weblate.org/projects/tor/tails-gui/ga/"
 ">\n"
@@ -20,7 +20,7 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : "
 "4);\n"
-"X-Generator: Weblate 4.16-dev\n"
+"X-Generator: Weblate 4.16.2-dev\n"
 
 #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1
@@ -500,9 +500,9 @@ msgid "Additional Settings"
 msgstr "Socruithe Breise"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "Cealaigh"
@@ -575,28 +575,28 @@ msgstr "Múchta"
 msgid "Off (default)"
 msgstr "Múchta (réamhshocrú)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
 #, fuzzy
-msgid "Persistent Storage Not Unlocked"
+msgid "Persistent Storage Still Locked"
 msgstr "Cruthaigh Stóras Seasmhach"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 #, fuzzy
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
 msgstr "Cuir isteach an frása faire chun an stóras seasmhach a dhíghlasáil"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
 #, fuzzy
-msgid "Continue Without Persistent Storage"
+msgid "Start Without Persistent Storage"
 msgstr "Cruthaigh Stóras Seasmhach"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 #, fuzzy
 msgid "Don't _Create Persistent Storage"
 msgstr "Cruthaigh Stóras Seasmhach"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 #, fuzzy
 msgid "_Create Persistent Storage"
@@ -619,7 +619,6 @@ msgstr "Á dhíghlasáil…"
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr "Díghlasáil"
 
@@ -840,7 +839,7 @@ msgstr "Is gléas aislúbtha é an tiomántán; ní athshocrófar an MBR"
 msgid "Synchronizing data on disk..."
 msgstr "Sonraí á sioncronú ar an diosca..."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
@@ -848,63 +847,63 @@ msgstr ""
 "Earráid: Ní féidir lipéad an ghléis a shocrú, ná UUID an ghléis a fháil. Ní "
 "féidir dul ar aghaidh."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr "Críochnaíodh an tsuiteáil! (%s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr "Theip ar shuiteáil Tails!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr "Suiteálaí Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr "Cóipeáil an leagan reatha de Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr "Úsáid íomhá ISO Tails íoslódáilte"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr "Nuashonraigh"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr "Treoracha le nuashonrú de láimh"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr "Suiteáil"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr "Treoracha Suiteála"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "Gléas %(vendor)s %(model)s %(size)s  (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr "Níl aon íomhá ISO roghnaithe"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr "Roghnaigh íomhá ISO Tails."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -915,7 +914,7 @@ msgstr ""
 "dobhainte, agus ní thosóidh Tails air. Déan iarracht Tails a shuiteáil ar "
 "mhéaróg eile."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
@@ -924,7 +923,7 @@ msgstr ""
 "Tá an gléas \"%(pretty_name)s\" róbheag le Tails a shuiteáil (ar a laghad "
 "%(size)s GB de dhíth)."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -932,66 +931,66 @@ msgid ""
 "%(dl_url)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr "Níor aimsíodh aon ghléas feiliúnach le Tails a shuiteáil"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr ""
 "Cuir isteach méaróg chuimhne USB nó cárta SD ar a bhfuil ar a laghad %0.1f "
 "GB."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr "Tharla earráid agus Tails á shuiteáil"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr "Críochnaíodh an tsuiteáil!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr "Níorbh fhéidir an gléas a fheistiú"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "Gléas %(vendor)s %(model)s %(parent_size)s (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
 "The persistent storage on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
 "All data on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr "Deimhnigh an mhéaróg USB mar sprioc"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
@@ -999,7 +998,7 @@ msgstr ""
 "Ní féidir an comhad roghnaithe a léamh. Ceartaigh na ceadanna nó roghnaigh "
 "comhad eile."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
@@ -1007,7 +1006,7 @@ msgstr ""
 "Níorbh fhéidir an comhad roghnaithe a úsáid. Gheobhaidh tú torthaí níos "
 "fearr má bhogann tú an ISO go dtí fréamhchomhadlann an tiomántáin (.i. C:\\)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr "%(filename)s roghnaithe"
@@ -1082,7 +1081,7 @@ msgstr "Tá su díchumasaithe. Bain úsáid as sudo ina áit."
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1148,7 +1147,7 @@ msgstr "níl ar fáil"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -1157,7 +1156,7 @@ msgstr ""
 "{details} Féach ar liosta na mbogearraí breise nó caith súil ar loganna an "
 "chóras chun tuiscint níos fearr a fháil ar an bhfadhb."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
@@ -1165,55 +1164,55 @@ msgstr ""
 "Féach ar liosta na mbogearraí breise nó caith súil ar loganna an chóras chun "
 "tuiscint níos fearr a fháil ar an bhfadhb."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr "Taispeáin an Logchomhad"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "Cumraigh"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} agus {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ", "
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "An bhfuil fonn ort {packages} a chur le do chuid bogearraí breise?"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 "Suiteáil uathoibríoch ó do stóras seasmhach nuair a thosaíonn tú Tails."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr "Suiteáil Gach Uair"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr "Suiteáil Uair Amháin"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr "Theip ar chumraíocht na mbogearraí breise."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -1221,69 +1220,69 @@ msgstr ""
 "Chun é a shuiteáil go huathoibríoch nuair a thosaíonn tú Tails, is féidir "
 "leat stóras seasmhach a chruthú agus an ghné <b>Bogearraí Breise</b> a úsáid."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr "Cruthaigh Stóras Seasmhach"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr "Níorbh fhéidir an stóras seasmhach a chruthú."
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 "Is féidir leat {packages} a shuiteáil go huathoibríoch nuair a thosaíonn "
 "Tails"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr "Chun é seo a dhéanamh, caithfidh tú Tails a rith ó mhéaróg USB."
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "An bhfuil fonn ort {packages} a bhaint de na bogearraí breise?"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr "Ní shuiteálfar {packages} go huathoibríoch a thuilleadh."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "Bain"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr "Bogearraí breise á suiteáil ón stóras seasmhach..."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr "Seans go dtógfaidh seo cúpla nóiméad."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr "Theip ar shuiteáil na mbogearraí breise"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr "D'éirigh le suiteáil na mbogearraí breise"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr "Earráid agus nuashonruithe ar bhogearraí breise á lorg"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -1291,11 +1290,11 @@ msgstr ""
 "Deimhnigh go bhfuil tú ceangailte leis an Idirlíon, atosaigh Tails, nó caith "
 "súil ar loganna an chórais chun tuiscint níos fearr a fháil ar an bhfadhb."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr "Theip ar nuashonrú na mbogearraí breise"
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "Doiciméadú"
 
@@ -1440,19 +1439,19 @@ msgid ""
 msgstr ""
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr "earráid:"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr "Rabhadh: braitheadh meaisín fíorúil!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr "Rabhadh: braitheadh meaisín fíorúil neamhshaor!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1464,11 +1463,11 @@ msgstr ""
 "muinín a chur i gcóras oibriúcháin ná i mbogearra fíorúlaithe nach bhfuil "
 "saor."
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr "Tuilleadh Eolais"
 
@@ -1805,58 +1804,58 @@ msgstr ""
 msgid "Choose File Container"
 msgstr "Roghnaigh Coimeádán"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 #, fuzzy
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr "Díchumasaigh an Brabhsálaí Neamhshlán (réamhshocrú)"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 msgid "_Cancel"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr "An brabhsálaí neamhshlán á thosú..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr "Seans go dtógfaidh sé seo tamall, fan nóiméad."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr "An brabhsálaí neamhshlán á dhúnadh..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
@@ -1864,13 +1863,13 @@ msgstr ""
 "Seans go dtógfaidh sé seo tamall, agus ní bheidh tú in ann an brabhsálaí "
 "neamhshlán a thosú arís go dtí go mbeidh sé dúnta mar is ceart."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr "Brabhsálaí Neamhshlán"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
@@ -1878,22 +1877,22 @@ msgstr ""
 "Tá brabhsálaí neamhshlán eile ar siúl, nó á dhúnadh, faoi láthair. Déan "
 "iarracht eile ar ball."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr "Theip ar shocrú chroot."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr "Níorbh fhéidir an brabhsálaí a chumrú."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
 "network."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr "Níorbh fhéidir an brabhsálaí a thosú."
 
@@ -2043,7 +2042,7 @@ msgstr "Eochair neamhbhailí OpenPGP: %s"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/whisperback.py:84
 msgid "Invalid contact OpenPGP public key block"
-msgstr "Bloc eochrach poiblí OpenPGP neamhbhailí "
+msgstr "Bloc eochrach poiblí OpenPGP neamhbhailí"
 
 #: config/chroot_local-includes/usr/local/bin/tca:154
 msgid "You turned on Offline Mode in the Welcome Screen."
@@ -2067,6 +2066,7 @@ msgid "Tails documentation"
 msgstr "Doiciméadú Tails"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 #, fuzzy
 msgid "Persistent Storage"
@@ -2098,6 +2098,16 @@ msgstr "Foghlaim conas Tails a úsáid"
 msgid "Learn more about Tails"
 msgstr "Tuilleadh eolais faoi Tails"
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "Cruthaigh Stóras Seasmhach"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr ""
@@ -2168,7 +2178,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr "Focal Faire Riaracháin"
 
@@ -2195,7 +2205,7 @@ msgid "Disable"
 msgstr "Díchumasaigh"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr ""
 
@@ -2216,7 +2226,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr "Cumraíocht Líonra"
 
@@ -2277,61 +2287,64 @@ msgstr "Lódáladh socruithe ón stóras seasmhach."
 msgid "Welcome to Tails!"
 msgstr "Fáilte go Tails!"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 #, fuzzy
 msgid "_Persistent Storage"
 msgstr "Cruthaigh Stóras Seasmhach"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 #, fuzzy
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr ""
 "Suiteáil uathoibríoch ó do stóras seasmhach nuair a thosaíonn tú Tails."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr "Teanga agus Réigiún"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr "Réamhshocruithe"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
-msgstr "Stóras _Seasmhach Criptithe"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
 msgid "Show Passphrase"
 msgstr "Taispeáin an Frása Faire"
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
-msgstr "Cuir isteach an frása faire chun an stóras seasmhach a dhíghlasáil"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "Frása faire:"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+#, fuzzy
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 "Tá an stóras seasmhach díghlasáilte. Atosaigh Tails lena chur faoi ghlas "
 "arís."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr "_Socruithe Breise"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr "Cuir socrú breise leis"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
@@ -2339,11 +2352,11 @@ msgstr ""
 "Tá na réamhshocruithe slán an chuid is mó den am. Brúigh an cnaipe \"+\" "
 "thíos le do shocrú féin a chur leis."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 msgid "Shutdown"
 msgstr "Múch"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr "To_saigh Tails"
 
@@ -2450,11 +2463,21 @@ msgstr "Cruthaigh Stóras Seasmhach"
 msgid "System Settings"
 msgstr "Réamhshocruithe"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+#, fuzzy
+msgid "Welcome Screen"
+msgstr "Scáileán Fáilte"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 #, fuzzy
 msgid "Activate Welcome Screen"
 msgstr "Scáileán Fáilte"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+#, fuzzy
+msgid "Printers"
+msgstr "Printéirí"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 #, fuzzy
 msgid "Activate Printers"
@@ -2490,6 +2513,11 @@ msgstr "Tosaigh Brabhsálaí Tor"
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "Leabharmharcanna an bhrabhsálaí"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 #, fuzzy
 msgid "Activate Tor Browser Bookmarks"
@@ -2719,11 +2747,11 @@ msgstr "_Díghlasáil"
 msgid "Detach this volume"
 msgstr "Dícheangail an t-imleabhar seo"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr "Méaróg USB mar sprioc:"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr "Athshuiteáil (scriosfar na sonraí go léir)"
 
@@ -3233,6 +3261,12 @@ msgstr ""
 msgid "Clock"
 msgstr ""
 
+#~ msgid "Encrypted _Persistent Storage"
+#~ msgstr "Stóras _Seasmhach Criptithe"
+
+#~ msgid "Enter your passphrase to unlock the persistent storage"
+#~ msgstr "Cuir isteach an frása faire chun an stóras seasmhach a dhíghlasáil"
+
 #, python-format
 #~ msgid ""
 #~ "<h1>Help us fix your bug!</h1>\n"
diff --git a/po/gl.po b/po/gl.po
index 969ad362413..1e0a3861a9c 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -11,8 +11,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
-"PO-Revision-Date: 2023-01-25 11:39+0000\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
+"PO-Revision-Date: 2023-02-24 14:35+0000\n"
 "Last-Translator: emma peel <emma.peel@riseup.net>\n"
 "Language-Team: Galician <https://hosted.weblate.org/projects/tor/tails-gui/"
 "gl/>\n"
@@ -504,9 +504,9 @@ msgid "Additional Settings"
 msgstr "Configuración adicional"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "Cancelar"
@@ -579,29 +579,29 @@ msgstr "Apagado"
 msgid "Off (default)"
 msgstr "Apagado (predeterminado)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
 #, fuzzy
-msgid "Persistent Storage Not Unlocked"
+msgid "Persistent Storage Still Locked"
 msgstr "Crear almacén persistente"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 #, fuzzy
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
 msgstr ""
 "Introduza a súa frase de constrasinal para desbloquear o almacén persistente"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
 #, fuzzy
-msgid "Continue Without Persistent Storage"
+msgid "Start Without Persistent Storage"
 msgstr "Crear almacén persistente"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 #, fuzzy
 msgid "Don't _Create Persistent Storage"
 msgstr "Crear almacén persistente"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 #, fuzzy
 msgid "_Create Persistent Storage"
@@ -624,7 +624,6 @@ msgstr "Desbloqueando..."
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr "Desbloquear"
 
@@ -855,7 +854,7 @@ msgstr "A unidade é un loopback, omitindo reinicio do MBR"
 msgid "Synchronizing data on disk..."
 msgstr "Sincronizando datos no disco..."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
@@ -863,63 +862,63 @@ msgstr ""
 "Erro: Non se puido configurar a etiqueta ou obter o UUID do dispositivo. Non "
 "se pode continuar."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr "Instalación completa! (%s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr "Fallou a instalación do Tails!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr "Instalador do Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr "Clonar o Tails actual"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr "Utilice unha imaxe ISO do Tails descargada"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr "Anovar"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr "Instrucións de anovación manual"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr "Instalar"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr "Instrucións de instalación"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(size)s%(vendor)s%(model)s dispositivo (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr "Non se seleccionou ningunha imaxe ISO"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr "Seleccione unha imaxe ISO do Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -930,7 +929,7 @@ msgstr ""
 "fabricante e Tails non poderá arrancar desde ela. Ténteo instalando noutro "
 "modelo diferente. "
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
@@ -939,7 +938,7 @@ msgstr ""
 "O dispositivo \"%(pretty_name)s\" é demasiado pequeno para instalar Tails "
 "(precísanse alomenos %(size)s GB)."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -950,65 +949,65 @@ msgstr ""
 "unha imaxe ISO do Tails: \n"
 "%(dl_url)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr "Non se atopou ningún dispositivo adecuado no que instalar o Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr ""
 "Enchufe unha unidade flash USB ou unha tarxeca SD con %0.1f GB, polo menos."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr "Produciuse un erro ao instalar o Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr "Instalación completa!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr "Non foi posíbel montar o dispositivo"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(parent_size)s%(vendor)s%(model)s dispositivo (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
 "The persistent storage on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
 "All data on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr "Confirmar a unidade USB de destino"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
@@ -1016,7 +1015,7 @@ msgstr ""
 "Non se pode ler o ficheiro seleccionado. Por favor amañe os seus permisos ou "
 "seleccione outro ficheiro."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
@@ -1024,7 +1023,7 @@ msgstr ""
 "Imposible usar o ficheiro seleccionado. Poida que teña máis sorte se move a "
 "súa ISO á raíz da súa unidade (p.ex. C:\\)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr "%(filename)s seleccionado"
@@ -1104,7 +1103,7 @@ msgstr "su está desactivado. Utilice sudo no seu lugar. "
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1170,7 +1169,7 @@ msgstr "non dispoñíbel"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -1179,7 +1178,7 @@ msgstr ""
 "{details} Comprobe a súa lista de software adicional ou lea o rexistro do "
 "sistema para comprender o problema."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
@@ -1187,56 +1186,56 @@ msgstr ""
 "Comprobe a súa lista de software adicional ou lea o rexistro do sistema para "
 "comprender o problema."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr "Amosar rexistro"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "Configurar"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} e {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ","
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "Engadir {packages} ao seu software adicional?"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 "Para instalalo automaticamente desde o seu almacenamento persistente ao "
 "arrancar Tails."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr "Instalar de cada vez"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr "Instalar só unha vez"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr "Fallou a configuración do seu software adicional."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -1244,67 +1243,67 @@ msgstr ""
 "Para instalalo automaticamente ao arrancar Tails, pode crear un almacén "
 "persistente e activar a funcionalidade <b>Software adicional</b>."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr "Crear almacén persistente"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr "Fallou a creación do seu almacén persistente."
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr "Pode instalar {packages} automaticamente ao arrancar Tails"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr "Para facelo, cómpre executar Tails desde unha unidade USB."
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "Retirar {packages} do seu software adicional?"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr "Isto deterá inmediatamente a instalación de {packages} ."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "Eliminar"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr "Instalando o seu software adicional desde un almacén persistente..."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr "Pode levar varios minutos."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr "Fallou a instalación do seu software adicional"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr "O software adicional instalouse correctamente"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr "Fallou a comprobación de anovacións do seu software adicional"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -1312,13 +1311,13 @@ msgstr ""
 "Comprobe a súa conexión á rede, reinicie o Tails ou lea o rexistro do "
 "sistema para comprender o problema."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr "Fallou a anovación do seu software adicional"
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
-msgstr "Documentación"
+msgstr ""
 
 #. Translators: Don't translate {package}, it's a placeholder and will be replaced.
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
@@ -1471,19 +1470,19 @@ msgstr ""
 "Véxase {manual_upgrade_url}"
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr "erro:"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr "Aviso: detectouse unha máquina virtual"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr "Aviso: detectouse unha máquina virtual que non é libre!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1495,11 +1494,11 @@ msgstr ""
 "software libre pode ser considerado merecedor de confianza, tanto como "
 "sistema operativo hospedeiro como software de virtualización."
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr "Non amosar outra vez"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr "Saber máis"
 
@@ -1841,58 +1840,58 @@ msgstr ""
 msgid "Choose File Container"
 msgstr "Escoller un contedor do ficheiro"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 #, fuzzy
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr "Desactivar o navegador inseguro (predeterminado)"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 msgid "_Cancel"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr "Rearrancar agora"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr "Iniciando o navegador inseguro..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr "Isto pode levar un pouco de tempo. Por favor, sé paciente."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr "Pechar o navegador inseguro"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
@@ -1900,13 +1899,13 @@ msgstr ""
 "Isto pode levar un rato, e non pode reiniciar o navegador inseguro ata que "
 "se cerre correctamente."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr "Navegador inseguro"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
@@ -1914,22 +1913,22 @@ msgstr ""
 "Está en execución outro navegador inseguro ou está sendo despexado. Volva a "
 "tentalo máis adiante."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr "Produciuse un fallo ao configurar chroot."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr "Produciuse un fallo ao configurar o navegador."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
 "network."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr "Produciuse un fallo ao executar o navegador."
 
@@ -2104,6 +2103,7 @@ msgid "Tails documentation"
 msgstr "Documentación do Tails"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 #, fuzzy
 msgid "Persistent Storage"
@@ -2135,6 +2135,16 @@ msgstr "Aprender a utilizar Tails"
 msgid "Learn more about Tails"
 msgstr "Saber máis de Tails"
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "Crear almacén persistente"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr "Instalar, clonar, anovar o Tails"
@@ -2205,7 +2215,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr "Contrasinal de administración"
 
@@ -2232,7 +2242,7 @@ msgid "Disable"
 msgstr "Desactivar"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr ""
 
@@ -2253,7 +2263,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr "Configuración da rede"
 
@@ -2314,19 +2324,19 @@ msgstr "Cargouse a configuración desde o almacén persistente."
 msgid "Welcome to Tails!"
 msgstr "Dámoslle a benvida a Tails!"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 #, fuzzy
 msgid "_Persistent Storage"
 msgstr "Crear almacén persistente"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 #, fuzzy
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
@@ -2334,43 +2344,45 @@ msgstr ""
 "Para instalalo automaticamente desde o seu almacenamento persistente ao "
 "arrancar Tails."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr "Idioma e rexión"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr "Axustes por defecto"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
-msgstr "Almacén cifrado _persistente"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
 msgid "Show Passphrase"
 msgstr "Amosar a frase de contrasinal"
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "Frase de acceso:"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
 msgstr ""
-"Introduza a súa frase de constrasinal para desbloquear o almacén persistente"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+#, fuzzy
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 "O almacén persistente está desbloqueado. Rearranque Tails para bloquealo de "
 "novo."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr "Configuración _adicional"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr "Engadir un axuste adicional"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
@@ -2378,12 +2390,12 @@ msgstr ""
 "A configuración predeterminada é segura na maior parte das situacións. Para "
 "engadir un axuste personalizado, prema o seguinte botón «+»."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 #, fuzzy
 msgid "Shutdown"
 msgstr "Shutdown"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr "_Arrancar Tails"
 
@@ -2490,11 +2502,21 @@ msgstr "Crear almacén persistente"
 msgid "System Settings"
 msgstr "Axustes por defecto"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+#, fuzzy
+msgid "Welcome Screen"
+msgstr "Pantalla de benvida"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 #, fuzzy
 msgid "Activate Welcome Screen"
 msgstr "Pantalla de benvida"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+#, fuzzy
+msgid "Printers"
+msgstr "Impresoras"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 #, fuzzy
 msgid "Activate Printers"
@@ -2530,6 +2552,11 @@ msgstr "Arrancar Tor Browser"
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "Marcadores do navegador"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 #, fuzzy
 msgid "Activate Tor Browser Bookmarks"
@@ -2764,11 +2791,11 @@ msgstr "_Desbloquear"
 msgid "Detach this volume"
 msgstr "Desenchufar este volume"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr "Unidade USB de destino:"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr "Reinstalar (eliminar todos os datos)"
 
@@ -3278,6 +3305,14 @@ msgstr ""
 msgid "Clock"
 msgstr ""
 
+#~ msgid "Encrypted _Persistent Storage"
+#~ msgstr "Almacén cifrado _persistente"
+
+#~ msgid "Enter your passphrase to unlock the persistent storage"
+#~ msgstr ""
+#~ "Introduza a súa frase de constrasinal para desbloquear o almacén "
+#~ "persistente"
+
 #, python-format
 #~ msgid ""
 #~ "<h1>Help us fix your bug!</h1>\n"
diff --git a/po/gu.po b/po/gu.po
index 651ce3d5e5a..37597267b64 100644
--- a/po/gu.po
+++ b/po/gu.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
 "PO-Revision-Date: 2023-01-26 19:00+0000\n"
 "Last-Translator: emma peel <emma.peel@riseup.net>\n"
 "Language-Team: Gujarati <https://hosted.weblate.org/projects/tor/tails-gui/"
@@ -438,9 +438,9 @@ msgid "Additional Settings"
 msgstr "વધારાની સેટિંગ્સ"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "રદ્ કરો"
@@ -512,12 +512,12 @@ msgstr ""
 msgid "Off (default)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
 #, fuzzy
-msgid "Persistent Storage Not Unlocked"
+msgid "Persistent Storage Still Locked"
 msgstr "એનક્રિપ્ટ થયેલ સતત સંગ્રહ"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 #, fuzzy
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
@@ -525,17 +525,17 @@ msgstr ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
 #, fuzzy
-msgid "Continue Without Persistent Storage"
+msgid "Start Without Persistent Storage"
 msgstr "એનક્રિપ્ટ થયેલ સતત સંગ્રહ"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 #, fuzzy
 msgid "Don't _Create Persistent Storage"
 msgstr "એનક્રિપ્ટ થયેલ સતત સંગ્રહ"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 #, fuzzy
 msgid "_Create Persistent Storage"
@@ -558,7 +558,6 @@ msgstr "અનલૉક થઇ રહ્યું..."
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr "લોક ખોલો"
 
@@ -778,69 +777,69 @@ msgstr ""
 msgid "Synchronizing data on disk..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -848,14 +847,14 @@ msgid ""
 "a different model."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
 "%(size)s GB is required)."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -863,76 +862,76 @@ msgid ""
 "%(dl_url)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
 "The persistent storage on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
 "All data on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr ""
@@ -1015,7 +1014,7 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1075,143 +1074,143 @@ msgstr ""
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
 "log to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr ""
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "દૂર કરો"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr ""
 
@@ -1342,19 +1341,19 @@ msgid ""
 msgstr ""
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1362,11 +1361,11 @@ msgid ""
 "software."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr ""
 
@@ -1695,32 +1694,32 @@ msgstr ""
 msgid "Choose File Container"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 #, fuzzy
 msgid "_Cancel"
 msgstr "રદ્ કરો"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 #, fuzzy
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
@@ -1729,60 +1728,60 @@ msgstr ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
 "network."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr ""
 
@@ -1942,6 +1941,7 @@ msgid "Tails documentation"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 #, fuzzy
 msgid "Persistent Storage"
@@ -1969,6 +1969,16 @@ msgstr ""
 msgid "Learn more about Tails"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "એનક્રિપ્ટ થયેલ સતત સંગ્રહ"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr ""
@@ -2035,7 +2045,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr "વહીવટ પાસવર્ડ"
 
@@ -2059,7 +2069,7 @@ msgid "Disable"
 msgstr "નિષ્ક્રિય કરો"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr ""
 
@@ -2080,7 +2090,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr "નેટવર્ક અનામિત્વ"
 
@@ -2139,69 +2149,69 @@ msgstr ""
 msgid "Welcome to Tails!"
 msgstr "Tails પર આપનું સ્વાગત છે!"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 #, fuzzy
 msgid "_Persistent Storage"
 msgstr "એનક્રિપ્ટ થયેલ સતત સંગ્રહ"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 #, fuzzy
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr "Tails is configuring your Persistent Storage. Please wait..."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr "ભાષા અને પ્રદેશ"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr "મૂળભૂત સેટિંગ્સ"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-#, fuzzy
-msgid "Encrypted _Persistent Storage"
-msgstr "એનક્રિપ્ટ થયેલ સતત સંગ્રહ"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
 msgid "Show Passphrase"
 msgstr ""
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+msgid "_Passphrase"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr "વધારાના સેટિંગ ઉમેરો"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 msgid "Shutdown"
 msgstr "બંધ કરો"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr ""
 
@@ -2299,10 +2309,19 @@ msgstr "એનક્રિપ્ટ થયેલ સતત સંગ્રહ"
 msgid "System Settings"
 msgstr "મૂળભૂત સેટિંગ્સ"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+msgid "Welcome Screen"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 msgid "Activate Welcome Screen"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+#, fuzzy
+msgid "Printers"
+msgstr "પ્રિન્ટર્સ"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 #, fuzzy
 msgid "Activate Printers"
@@ -2337,6 +2356,11 @@ msgstr ""
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "બ્રાઉઝર બુકમાર્ક્સ"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 #, fuzzy
 msgid "Activate Tor Browser Bookmarks"
@@ -2556,11 +2580,11 @@ msgstr ""
 msgid "Detach this volume"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr ""
 
@@ -3051,6 +3075,10 @@ msgstr ""
 msgid "Clock"
 msgstr ""
 
+#, fuzzy
+#~ msgid "Encrypted _Persistent Storage"
+#~ msgstr "એનક્રિપ્ટ થયેલ સતત સંગ્રહ"
+
 #, fuzzy
 #~ msgid ""
 #~ "The Unsafe Browser is not anonymous and the websites that you visit can "
diff --git a/po/he.po b/po/he.po
index 942ccd0e4dc..b75846ecb40 100644
--- a/po/he.po
+++ b/po/he.po
@@ -20,8 +20,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
-"PO-Revision-Date: 2023-01-25 11:39+0000\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
+"PO-Revision-Date: 2023-03-05 10:37+0000\n"
 "Last-Translator: emma peel <emma.peel@riseup.net>\n"
 "Language-Team: Hebrew <https://hosted.weblate.org/projects/tor/tails-gui/he/"
 ">\n"
@@ -31,7 +31,7 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=4; plural=(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && "
 "n % 10 == 0) ? 2 : 3));\n"
-"X-Generator: Weblate 4.16-dev\n"
+"X-Generator: Weblate 4.16.2-dev\n"
 
 #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1
@@ -512,9 +512,9 @@ msgid "Additional Settings"
 msgstr "הגדרות נוספות"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "בטל"
@@ -587,28 +587,28 @@ msgstr "כבה"
 msgid "Off (default)"
 msgstr "כבוי (ברירת מחדל)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
 #, fuzzy
-msgid "Persistent Storage Not Unlocked"
+msgid "Persistent Storage Still Locked"
 msgstr "צור אחסון מתמיד"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 #, fuzzy
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
 msgstr "הכנס את ביטוי הסיסמה שלך כדי לבטל נעילת אחסון מתמיד"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
 #, fuzzy
-msgid "Continue Without Persistent Storage"
+msgid "Start Without Persistent Storage"
 msgstr "צור אחסון מתמיד"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 #, fuzzy
 msgid "Don't _Create Persistent Storage"
 msgstr "צור אחסון מתמיד"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 #, fuzzy
 msgid "_Create Persistent Storage"
@@ -631,7 +631,6 @@ msgstr "מבטל נעילה…"
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr "בטל נעילה"
 
@@ -854,7 +853,7 @@ msgstr "הכונן הוא לולאה חוזרת, מדלג על איפוס MBR"
 msgid "Synchronizing data on disk..."
 msgstr "מסנכרן נתונים על הדיסק…"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
@@ -862,63 +861,63 @@ msgstr ""
 "שגיאה: לא ניתן להגדיר את התווית או לקבל את ה־UUID של ההתקן שלך. לא ניתן "
 "להמשיך."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr "ההתקנה הושלמה! (%s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr "התקנת Tails נכשלה!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr "מתקין Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr "שבט את ה־Tails הנוכחי"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr "השתמש בתמונת ISO שהורדה של Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr "שדרג"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr "הוראות שדרוג ידני"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr "התקן"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr "הוראות התקנה"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(size)s %(vendor)s %(model)s התקן (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr "תמונת ISO לא נבחרה"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr "אנא בחר תמונת ISO של Tails."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -928,7 +927,7 @@ msgstr ""
 "החסן ה־USB \"%(pretty_name)s\" מוגדר כבלתי בר־הסרה ע״י היצרן שלו ו־Tails "
 "יכשל בהפעלה עליו. אנא נסה להתקין על דגם שונה."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
@@ -937,7 +936,7 @@ msgstr ""
 "ההתקן \"%(pretty_name)s\" קטן מדי כדי להתקין עליו את Tails (לפחות %(size)s "
 "ג״ב דרושים)."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -948,33 +947,33 @@ msgstr ""
 "שהורדת:\n"
 "%(dl_url)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr "לא היה ניתן למצוא התקן הולם להתקין את Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr "אנא חבר כונן החסן USB או כרטיס SD של לפחות %0.1f ג״ב."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr "שגיאה התרחשה בזמן התקנת Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr "התקנה הושלמה!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr "לא היה ניתן להציב התקן."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(parent_size)s %(vendor)s %(model)s התקן (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
@@ -984,11 +983,11 @@ msgstr ""
 "\n"
 "האחסון המתמיד בהחסן USB זה יאבד."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr "מחק אחסון מתמיד והתקן מחדש"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
@@ -998,26 +997,26 @@ msgstr ""
 "\n"
 "כל מידע על יואסבי זה ימחק."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr "מחק כל מידע והתקן"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr "%(description)s%(delete_message)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr "אשר את החסן ה־USB של המטרה"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
 msgstr "הקובץ הנבחר בלתי קריא. אנא תקן את הרשאותיו או בחר קובץ אחר."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
@@ -1025,7 +1024,7 @@ msgstr ""
 "לא היה ניתן להשתמש בקובץ הנבחר. יהיה לך אולי יותר מזל אם תעביר את ה־ISO שלך "
 "לשורש של הכונן שלך (למשל: \\:C)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr "%(filename)s נבחרו"
@@ -1105,7 +1104,7 @@ msgstr "su מושבת. אנא השתמש ב־sudo במקום."
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1167,7 +1166,7 @@ msgstr "בלתי זמין"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -1176,7 +1175,7 @@ msgstr ""
 "{details} אנא בדוק את הרשימה של התוכנה הנוספת שלך או קרא את יומן האירועים של "
 "המערכת כדי להבין את הבעיה."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
@@ -1184,54 +1183,54 @@ msgstr ""
 "אנא בדוק את הרשימה של תוכנה נוספת שלך או קרא את יומן האירועים של המערכת כדי "
 "להבין את הבעיה."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr "הראה יומן"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "תצר"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} ו {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ", "
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "להוסיף את {packages} לתוכנה הנוספת שלך?"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr "כדי להתקין זאת באופן אוטומטי מהאחסון המתמיד שלך בזמן התחלת Tails."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr "התקן בכל פעם"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr "התקן פעם אחת בלבד"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr "התצורה של התוכנה הנוספת שלך נכשלה."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -1239,67 +1238,67 @@ msgstr ""
 "כדי להתקין זאת באופן אוטומטי בזמן התחלת Tails, אתה יכול ליצור אחסון מתמיד "
 "ולשפעל את המאפיין <b>תוכנה נוספת</b>."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr "צור אחסון מתמיד"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr "יצירת האחסון המתמיד שלך נכשלה."
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr "אתה יכול להתקין {packages} באופן אוטומטי בזמן התחלת Tails"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr "כדי לעשות זאת, אתה צריך להריץ את Tails מתוך החסן USB."
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "האם להסיר את {packages} מהתוכנה הנוספת שלך?"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr "זה יפסיק להתקין את {packages} באופן אוטומטי."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "הסר"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr "מתקין את התוכנה הנוספת שלך מאחסון מתמיד…"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr "זה עשוי לקחת מספר דקות."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr "ההתקנה של התוכנה הנוספת שלך נכשלה"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr "תוכנה נוספת הותקנה בהצלחה"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr "הבדיקה אחר שדרוגים של התוכנה הנוספת שלך נכשלה"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -1307,11 +1306,11 @@ msgstr ""
 "אנא בדוק את חיבור הרשת שלך, הפעל מחדש את Tails או קרא את יומן האירועים של "
 "המערכת כדי להבין את הבעיה."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr "השדרוג של התוכנה הנוספת שלך נכשל"
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "תיעוד"
 
@@ -1469,19 +1468,19 @@ msgstr ""
 "ראה {manual_upgrade_url}"
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr "שגיאה:"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr "אזהרה: מכשיר מדומה התגלה!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr "אזהרה: מכשיר מדומה בלתי־חינמי התגלה!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1492,11 +1491,11 @@ msgstr ""
 "רק תוכנה חופשית יכולה להיות מצונזרת בצורה אמינה, עבור מערכת ההפעלה של המארח "
 "ועבור תוכנת ההדמיה."
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr "אל תראה שוב"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr "למד עוד"
 
@@ -1846,58 +1845,58 @@ msgstr ""
 msgid "Choose File Container"
 msgstr "בחר מֵכַל קבצים"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 #, fuzzy
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr "השבת את הדפדפן הבלתי בטוח (ברירת מחדל)"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr "_הפעל מחדש"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 msgid "_Cancel"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr "הפעל מחדש כעת"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr "נכשל בהפעלה מחדש של המערכת."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr "מתחיל את הדפדפן הבלתי בטוח…"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr "זה עשוי לקחת זמן מה, אז הייה סבלני."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr "מכבה את הדפדפן הבלתי בטוח…"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
@@ -1905,27 +1904,27 @@ msgstr ""
 "זה עשוי לקחת זמן מה ועליך לא להפעיל מחדש את הדפדפן הבלתי־בטוח עד שהוא לא "
 "יכובה כראוי."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr "דפדפן בלתי־בטוח"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
 msgstr "דפדפן בלתי־בטוח אחר רץ כרגע או שהוא מתנקה. אנא נסה שוב עוד מעט."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr "נכשל בהתקנת chroot."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr "נכשל בתיצור הדפדפן."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
@@ -1934,7 +1933,7 @@ msgstr ""
 "אתה לא מחובר עדיין אל רשת מקומית.\\n\\nכדי להיות מסוגל להתחיל את הדפדפן "
 "הבלתי בטוח, אתה צריך תחילה להתחבר אל רשת Wi-Fi, חוטית, או סלולרית."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr "נכשל בהרצת הדפדפן."
 
@@ -2105,6 +2104,7 @@ msgid "Tails documentation"
 msgstr "תיעוד Tails"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 #, fuzzy
 msgid "Persistent Storage"
@@ -2132,6 +2132,16 @@ msgstr "למד איך להשתמש ב־Tails"
 msgid "Learn more about Tails"
 msgstr "למד עוד אודות Tails"
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "צור אחסון מתמיד"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr "התקן, שבט או שדרג את Tails"
@@ -2198,7 +2208,7 @@ msgstr "אימות נדרש כדי להסיר חבילה מתוך תוכנה נ
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr "סיסמת מינהל"
 
@@ -2224,7 +2234,7 @@ msgid "Disable"
 msgstr "השבת"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr "העלמת זהות של כתובת MAC"
 
@@ -2249,7 +2259,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr "אל תעלים זהות של כתובות MAC"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr "תצורת רשת"
 
@@ -2325,58 +2335,61 @@ msgstr "הגדרות נטענו מהאחסון המתמיד."
 msgid "Welcome to Tails!"
 msgstr "ברוך הבא אל Tails!"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 #, fuzzy
 msgid "_Persistent Storage"
 msgstr "צור אחסון מתמיד"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 #, fuzzy
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr "כדי להתקין זאת באופן אוטומטי מהאחסון המתמיד שלך בזמן התחלת Tails."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr "שפה ואיזור"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr "הגדרות ברירת מחדל"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
-msgstr "אחסון _מתמיד מוצפן"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
 msgid "Show Passphrase"
 msgstr "הראה ביטוי סיסמה"
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
-msgstr "הכנס את ביטוי הסיסמה שלך כדי לבטל נעילת אחסון מתמיד"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "ביטוי סיסמה:"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+#, fuzzy
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr "האחסון המתמיד שלך אינו נעול. הפעל מחדש את Tails כדי לנעול אותו שוב."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr "הגדרות _נוספות"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr "הוסף הגדרה נוספת"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
@@ -2384,11 +2397,11 @@ msgstr ""
 "הגדרות ברירת המחדל בטוחות ברוב המצבים. כדי להוסיף הגדרה מותאמת, לחץ על "
 "הכפתור \"+\" למטה."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 msgid "Shutdown"
 msgstr "כבה"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr "_התחל את Tails"
 
@@ -2495,11 +2508,21 @@ msgstr "צור אחסון מתמיד"
 msgid "System Settings"
 msgstr "הגדרות ברירת מחדל"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+#, fuzzy
+msgid "Welcome Screen"
+msgstr "מסך ברוך הבא"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 #, fuzzy
 msgid "Activate Welcome Screen"
 msgstr "מסך ברוך הבא"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+#, fuzzy
+msgid "Printers"
+msgstr "מדפסות"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 #, fuzzy
 msgid "Activate Printers"
@@ -2535,6 +2558,11 @@ msgstr "גשר Tor"
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "סימניות דפדפן"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 #, fuzzy
 msgid "Activate Tor Browser Bookmarks"
@@ -2768,11 +2796,11 @@ msgstr "_בטל נעילה"
 msgid "Detach this volume"
 msgstr "נתק כרך זה"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr "החסן USB מטרה:"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr "התקן מחדש (מחק כל הנתונים)"
 
@@ -2818,7 +2846,7 @@ msgid ""
 "a link to your key, or the key as a public key block:"
 msgstr ""
 "אם אתה רוצה שנצפין הודעות כשאנחנו מגיבים לך, הוסף את זהות המפתח שלך, קישור "
-"אל המפתח שלך, או המפתח כגוש של מפתח ציבורי: "
+"אל המפתח שלך, או המפתח כגוש של מפתח ציבורי:"
 
 #: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:308
 msgid "Summary"
@@ -3327,6 +3355,12 @@ msgstr "דצמבר"
 msgid "Clock"
 msgstr "שעון"
 
+#~ msgid "Encrypted _Persistent Storage"
+#~ msgstr "אחסון _מתמיד מוצפן"
+
+#~ msgid "Enter your passphrase to unlock the persistent storage"
+#~ msgstr "הכנס את ביטוי הסיסמה שלך כדי לבטל נעילת אחסון מתמיד"
+
 #, python-format
 #~ msgid ""
 #~ "<h1>Help us fix your bug!</h1>\n"
diff --git a/po/hi.po b/po/hi.po
index 34e4698bd13..a098deb86ef 100644
--- a/po/hi.po
+++ b/po/hi.po
@@ -10,8 +10,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
-"PO-Revision-Date: 2023-02-11 10:42+0000\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
+"PO-Revision-Date: 2023-03-05 10:37+0000\n"
 "Last-Translator: emma peel <emma.peel@riseup.net>\n"
 "Language-Team: Hindi <https://hosted.weblate.org/projects/tor/tails-gui/hi/"
 ">\n"
@@ -20,7 +20,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.16-dev\n"
+"X-Generator: Weblate 4.16.2-dev\n"
 
 #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1
@@ -445,9 +445,9 @@ msgid "Additional Settings"
 msgstr "अतिरिक्त सेटिंग्स"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "रद्द करें"
@@ -519,12 +519,12 @@ msgstr ""
 msgid "Off (default)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
 #, fuzzy
-msgid "Persistent Storage Not Unlocked"
+msgid "Persistent Storage Still Locked"
 msgstr "लगातार स्टोरेज बनाएं"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 #, fuzzy
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
@@ -532,17 +532,17 @@ msgstr ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
 #, fuzzy
-msgid "Continue Without Persistent Storage"
+msgid "Start Without Persistent Storage"
 msgstr "_लगातार स्टोरेज बनाएं"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 #, fuzzy
 msgid "Don't _Create Persistent Storage"
 msgstr "_लगातार स्टोरेज बनाएं"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 #, fuzzy
 msgid "_Create Persistent Storage"
@@ -564,7 +564,6 @@ msgstr "अनलॉकिंग"
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr "अनलॉक"
 
@@ -781,69 +780,69 @@ msgstr ""
 msgid "Synchronizing data on disk..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -851,14 +850,14 @@ msgid ""
 "a different model."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
 "%(size)s GB is required)."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -866,76 +865,76 @@ msgid ""
 "%(dl_url)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
 "The persistent storage on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
 "All data on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr ""
@@ -1018,7 +1017,7 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1084,143 +1083,143 @@ msgstr "उपलब्ध नहीं"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
 "log to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr "लॉग दिखाओं"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "कॉन्फ़िगर"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "हटाना"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "दस्तावेज़ीकरण"
 
@@ -1351,19 +1350,19 @@ msgid ""
 msgstr ""
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr "त्रुटि :"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr "चेतावनी : आभासी यंत्र का पता चला !"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1371,11 +1370,11 @@ msgid ""
 "software."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr "और अधिक जानें"
 
@@ -1704,32 +1703,32 @@ msgstr ""
 msgid "Choose File Container"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 #, fuzzy
 msgid "_Cancel"
 msgstr "रद्द करें (_C)"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 #, fuzzy
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
@@ -1738,60 +1737,60 @@ msgstr ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
 "network."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr ""
 
@@ -1951,6 +1950,7 @@ msgid "Tails documentation"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 #, fuzzy
 msgid "Persistent Storage"
@@ -1978,6 +1978,16 @@ msgstr ""
 msgid "Learn more about Tails"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "लगातार स्टोरेज बनाएं"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr ""
@@ -2044,7 +2054,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr "प्रशासन का पासवर्ड"
 
@@ -2070,7 +2080,7 @@ msgid "Disable"
 msgstr "अक्षम"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr ""
 
@@ -2091,7 +2101,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr ""
 
@@ -2150,71 +2160,72 @@ msgstr ""
 msgid "Welcome to Tails!"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 #, fuzzy
 msgid "_Persistent Storage"
 msgstr "_लगातार स्टोरेज बनाएं"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 #, fuzzy
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr ""
-" पूंछ शुरू करते समय आप अपने निरंतर भंडारण से स्वचालित रूप से अतिरिक्त सॉफ़्टवेयर स्थापित कर "
+"पूंछ शुरू करते समय आप अपने निरंतर भंडारण से स्वचालित रूप से अतिरिक्त सॉफ़्टवेयर स्थापित कर "
 "सकते हैं।"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr "भाषा और क्षेत्र"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr "डिफ़ॉल्ट सेटिंग्स"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
+msgid "Show Passphrase"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
-msgid "Show Passphrase"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+msgid "_Passphrase"
 msgstr ""
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 #, fuzzy
 msgid "Shutdown"
 msgstr "Shutdown"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr ""
 
@@ -2311,10 +2322,19 @@ msgstr "लगातार स्टोरेज बनाएं"
 msgid "System Settings"
 msgstr "डिफ़ॉल्ट सेटिंग्स"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+#, fuzzy
+msgid "Welcome Screen"
+msgstr "लॉक स्क्रीन"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 msgid "Activate Welcome Screen"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+msgid "Printers"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 msgid "Activate Printers"
 msgstr ""
@@ -2347,6 +2367,11 @@ msgstr ""
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "टॉर ब्राउज़र"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 msgid "Activate Tor Browser Bookmarks"
 msgstr ""
@@ -2404,7 +2429,7 @@ msgstr "अतिरिक्त सेटिंग्स"
 #, fuzzy
 msgid "Install additional software automatically when starting Tails."
 msgstr ""
-" पूंछ शुरू करते समय आप अपने निरंतर भंडारण से स्वचालित रूप से अतिरिक्त सॉफ़्टवेयर स्थापित कर "
+"पूंछ शुरू करते समय आप अपने निरंतर भंडारण से स्वचालित रूप से अतिरिक्त सॉफ़्टवेयर स्थापित कर "
 "सकते हैं।"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:577
@@ -2567,11 +2592,11 @@ msgstr ""
 msgid "Detach this volume"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr ""
 
diff --git a/po/hr.po b/po/hr.po
index 0e8eaaaf6f1..03e4ca57cfd 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -12,8 +12,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-01-23 09:28+0100\n"
-"PO-Revision-Date: 2022-12-24 11:49+0000\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
+"PO-Revision-Date: 2023-02-15 20:37+0000\n"
 "Last-Translator: emma peel <emma.peel@riseup.net>\n"
 "Language-Team: Croatian <https://hosted.weblate.org/projects/tor/tails-gui/"
 "hr/>\n"
@@ -21,9 +21,9 @@ msgstr ""
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
-"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: Weblate 4.15.1-dev\n"
+"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
+"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+"X-Generator: Weblate 4.16-dev\n"
 
 #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1
@@ -50,9 +50,9 @@ msgstr ""
 #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
 msgid ""
-"To add more, install some software using <a href=\"synaptic.desktop"
-"\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop"
-"\">APT on the command line</a>."
+"To add more, install some software using <a href=\"synaptic."
+"desktop\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal."
+"desktop\">APT on the command line</a>."
 msgstr ""
 "Za dodavanje softvera, instaliraj neki softver pomoću <a href=\"synaptic."
 "desktop\">Synaptic Package Managera</a> ili <a href=\"org.gnome.Terminal."
@@ -98,12 +98,12 @@ msgstr "Nepoznato vrijeme"
 #. will be replaced.
 #. y is the short form for years.
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/DownloadProgress.pm:78
-#, perl-brace-format
+#, fuzzy, perl-brace-format
 msgid "1y"
 msgid_plural "{count}y"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
+msgstr[0] "{count} god"
+msgstr[1] "godine"
+msgstr[2] "{count} god"
 
 #. Translators: Don't translate {count}, it's a place holder and
 #. will be replaced.
@@ -112,9 +112,9 @@ msgstr[2] ""
 #, perl-brace-format
 msgid "1d"
 msgid_plural "{count}d"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
+msgstr[0] "{count} d"
+msgstr[1] "{count} d"
+msgstr[2] "{count} d"
 
 #. Translators: Don't translate {count}, it's a place holder and
 #. will be replaced.
@@ -123,9 +123,9 @@ msgstr[2] ""
 #, perl-brace-format
 msgid "1h"
 msgid_plural "{count}h"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
+msgstr[0] "{count} h"
+msgstr[1] "{count} h"
+msgstr[2] "{count} h"
 
 #. Translators: Don't translate {count}, it's a place holder and
 #. will be replaced.
@@ -134,9 +134,9 @@ msgstr[2] ""
 #, perl-brace-format
 msgid "1m"
 msgid_plural "{count}m"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
+msgstr[0] "{count} min"
+msgstr[1] "{count} min"
+msgstr[2] "{count} min"
 
 #. Translators: Don't translate {count}, it's a place holder and
 #. will be replaced.
@@ -145,9 +145,9 @@ msgstr[2] ""
 #, perl-brace-format
 msgid "1s"
 msgid_plural "{count}s"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
+msgstr[0] "{count} s"
+msgstr[1] "{count} s"
+msgstr[2] "{count} s"
 
 #. Translators: don't translate {time}, {downloaded}, {size}
 #. and {speed}, they are placeholders and will be replaced.
@@ -188,16 +188,16 @@ msgstr ""
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:289
 msgid ""
 "<b>An error occured while updating the signing key.</b>\\n\\n<b>This "
-"prevents determining whether an upgrade is available from our website.</b>\\n"
-"\\nCheck your network connection, and restart Tails to try upgrading again."
-"\\n\\nIf the problem persists, go to file:///usr/share/doc/tails/website/doc/"
-"upgrade/error/check.en.html"
+"prevents determining whether an upgrade is available from our website.</"
+"b>\\n\\nCheck your network connection, and restart Tails to try upgrading "
+"again.\\n\\nIf the problem persists, go to file:///usr/share/doc/tails/"
+"website/doc/upgrade/error/check.en.html"
 msgstr ""
-"<b>Došlo je do greške prilikom aktualiziranja ključa za potpis.</b>\\n"
-"\\n<b>To sprečava provjeravanje dostupnih nadogradnji s naše web stranice.</"
-"b>\\n\\nProvjeri mrežnu vezu, ponovo pokreni Tails i ponovo pokušaj "
-"aktualizirati ključ.\\n\\nAko problem ne nestane, idi na file:///usr/share/"
-"doc/tails/website/doc/upgrade/error/check.en.html"
+"<b>Došlo je do greške prilikom aktualiziranja ključa za potpis.</"
+"b>\\n\\n<b>To sprečava provjeravanje dostupnih nadogradnji s naše web "
+"stranice.</b>\\n\\nProvjeri mrežnu vezu, ponovo pokreni Tails i ponovo "
+"pokušaj aktualizirati ključ.\\n\\nAko problem ne nestane, idi na file:///usr/"
+"share/doc/tails/website/doc/upgrade/error/check.en.html"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:303
 msgid "Error while downloading the signing key"
@@ -496,8 +496,8 @@ msgid ""
 "install.en.html"
 msgstr ""
 "<b>Došlo je do greške tijekom instalacije nadogradnje.</b>\\n\\nTvoj Tails "
-"uređaj se mora popraviti i možda se neće moći ponovno pokrenuti.\\n"
-"\\nSlijedi upute na file:///usr/share/doc/tails/website/doc/upgrade/error/"
+"uređaj se mora popraviti i možda se neće moći ponovno pokrenuti."
+"\\n\\nSlijedi upute na file:///usr/share/doc/tails/website/doc/upgrade/error/"
 "install.en.html"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:863
@@ -509,8 +509,9 @@ msgid "Additional Settings"
 msgstr "Dodatne postavke"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "Odustani"
@@ -583,23 +584,39 @@ msgstr "Isključeno"
 msgid "Off (default)"
 msgstr "Isključeno (standardno)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:401
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#, fuzzy
+msgid "Persistent Storage Still Locked"
+msgstr "Stvori trajno spremište"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
+#, fuzzy
+msgid ""
+"Do you really want to start Tails without unlocking your Persistent Storage?"
+msgstr "Upiši lozinku za otključavanje trajnog spremišta"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
+#, fuzzy
+msgid "Start Without Persistent Storage"
+msgstr "Stvori trajno spremište"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 #, fuzzy
 msgid "Don't _Create Persistent Storage"
 msgstr "Stvori trajno spremište"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:403
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 #, fuzzy
 msgid "_Create Persistent Storage"
 msgstr "Stvori trajno spremište"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:81
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:83
 #, fuzzy
 msgid "Error unlocking Persistent Storage: {}"
 msgstr "Šifrirano _trajno spremište"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:100
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:102
 #, fuzzy
 msgid "Error activating Persistent Storage: {}"
 msgstr "Stvori trajno spremište"
@@ -611,7 +628,6 @@ msgstr "Otključavanje …"
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr "Otključaj"
 
@@ -836,7 +852,7 @@ msgstr "Pogon se vrti u krug, resetiranje MBR‑a se preskače"
 msgid "Synchronizing data on disk..."
 msgstr "Sinkroniziranje podataka na disku …"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
@@ -844,63 +860,63 @@ msgstr ""
 "Greška: Nije moguće postaviti oznaku ili doći do UUID‑a tvog uređaja. Nije "
 "moguće nastaviti."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr "Instalacija dovršena! (%s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr "Tails instalacija nije uspjela!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr "Tails instalacija"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr "Kloniraj trenutačni Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr "Koristi preuzetu Tails ISO sliku"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr "Nadogradnja"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr "Upute za ručnu nadogradnju"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr "Instalacija"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr "Upute za instalaciju"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(size)s %(vendor)s %(model)s uređaj (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr "ISO slika nije odabrana"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr "Odaberi Tails ISO sliku"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -910,7 +926,7 @@ msgstr ""
 "Proizvođač je konfigurirao USB stick „%(pretty_name)s” kao neuklonjiv medij "
 "i Tails se neće uspjeti pokrenuti. Pokušaj instalirati na drugačijem modelu."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
@@ -919,7 +935,7 @@ msgstr ""
 "Uređaj „%(pretty_name)s” je premalen da bi se na njega instalirao Tails "
 "(potrebno je barem %(size)s GB)."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -930,33 +946,33 @@ msgstr ""
 "koristiti preuzetu Tails ISO sliku:\n"
 "%(dl_url)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr "Nije pronađen uređaj prikladan za instalaciju Tailsa"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr "Uključi USB ili SD karticu s barem %0.1f GB."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr "Došlo je do pogreške prilikom instaliranja Tailsa"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr "Instalacija je dovršena!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr "Nije moguće montirati uređaj"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(parent_size)s %(vendor)s %(model)s uređaj (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
@@ -966,11 +982,11 @@ msgstr ""
 "\n"
 "Trajno spremište na ovom USB-u će se izgubiti."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr "Izbriši trajno spremište i instaliraj ga ponovo"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
@@ -980,20 +996,20 @@ msgstr ""
 "\n"
 "Svi podaci na ovom USB-u će se izgubiti."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr "Izbriši sve podatke i deinstaliraj"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr "%(description)s%(delete_message)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr "Potvrdi odredišni USB stick"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
@@ -1001,7 +1017,7 @@ msgstr ""
 "Izabrana datoteka je nečitljiva. Popravi njezine dozvole ili odaberi jednu "
 "drugu datoteku."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
@@ -1009,7 +1025,7 @@ msgstr ""
 "Nije moguće koristiti odabranu datoteku. Možda ćeš imati više sreće, ako "
 "premjestiš ISO sliku u korijen tvog pogona (npr C:\\)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr "%(filename)s odabrano"
@@ -1089,7 +1105,7 @@ msgstr "su je deaktivirano. Umjesto toga, koristi sudo."
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1155,7 +1171,7 @@ msgstr "nije dostupno"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -1164,7 +1180,7 @@ msgstr ""
 "{details} Provjeri popis dodatnog softvera ili pročitaj dnevnik sustava radi "
 "razumijevanja problema."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
@@ -1172,56 +1188,56 @@ msgstr ""
 "Provjeri popis dodatnog softvera ili pročitaj dnevnik sustava radi "
 "razumijevanja problema."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr "Prikaži dnevnik"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "Konfiguriraj"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} i {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ", "
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "Dodati {packages} tvom dodatnom softveru?"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 "Za automatsko instaliranje iz tvog trajnog spremišta prilikom pokretanja "
 "Tailsa."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr "Instaliraj svaki put"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr "Instaliraj samo jednom"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr "Neuspjela konfiguracija tvog dodatnom softvera."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -1229,67 +1245,67 @@ msgstr ""
 "Za automatsko instaliranje prilikom pokretanja programa Tails, možeš "
 "stvoriti trajno spremište i aktivirati funkciju <b>Dodatni softver</b>."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr "Stvori trajno spremište"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr "Neuspjelo stvaranje trajnog spremišta."
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr "Pri pokretanju Tailsa možeš automatski instalirati {packages}."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr "Da bi se to desilo, moraš pokrenuti Tails s USB sticka."
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "Ukloniti {packages} iz tvog dodatnog softvera?"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr "Ovo će automatski prekinuti instaliranje paketa {packages}."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "Ukloni"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr "Instaliranje dodatnog softvera iz trajnog spremišta …"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr "Ovo može potrajati nekoliko minuta."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr "Neuspjelo instaliranje tvog dodatnog softvera"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr "Dodatni softver je uspješno instaliran"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr "Neuspjela provjera nadogradnji tvog dodatnog softvera"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -1297,11 +1313,11 @@ msgstr ""
 "Provjeri tvoju internetsku vezu, ponovo pokreni Tails ili pročitaj dnevnik "
 "sustava radi razumijevanja problema."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr "Neuspjela nadogradnja tvog dodatnog softvera"
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "Dokumentacija"
 
@@ -1358,9 +1374,9 @@ msgid ""
 "href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a href=\"org."
 "gnome.Terminal.desktop\">APT on the command line</a>."
 msgstr ""
-"Za to, stvori trajno spremište i instaliraj neki softver pomoću <a href="
-"\"synaptic.desktop\">Synaptic Package Managera</a> ili <a href=\"org.gnome."
-"Terminal.desktop\">APT-a u naredbenom retku</a>."
+"Za to, stvori trajno spremište i instaliraj neki softver pomoću <a "
+"href=\"synaptic.desktop\">Synaptic Package Managera</a> ili <a href=\"org."
+"gnome.Terminal.desktop\">APT-a u naredbenom retku</a>."
 
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:214
 msgid "To do so, install Tails on a USB stick and create a persistent storage."
@@ -1444,19 +1460,19 @@ msgid ""
 msgstr ""
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr "greška:"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr "Upozorenje: otkriven je virtualni stroj!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr "Upozorenje: otkriven je ne-slobodan virtualni stroj!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1467,11 +1483,11 @@ msgstr ""
 "Tailsu. Samo se slobodan softver može smatrati vjerodostojnim, kako za "
 "operacijski sustav tako i za virtualizacijski softver."
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr "Nemoj više prikazivati"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr "Saznaj više"
 
@@ -1487,16 +1503,17 @@ msgstr "_Koristi most koji već poznaš"
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:242
 #, fuzzy
 msgid ""
-"To save your bridge, <a href=\"doc/first_steps/persistence\">unlock your "
+"To save your bridge, <a href=\"doc/persistent_storage\">unlock your "
 "Persistent Storage</a>."
 msgstr ""
 "Za spremanje mosta <a href=\"doc/first_steps/persistence\">otključaj stalno "
 "spremište</a>."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:249
+#, fuzzy
 msgid ""
-"To save your bridge, <a href=\"doc/first_steps/persistence\">create a "
-"Persistent Storage</a> on your Tails USB stick."
+"To save your bridge, <a href=\"doc/persistent_storage\">create a Persistent "
+"Storage</a> on your Tails USB stick."
 msgstr ""
 "Za spremanje mosta, <a href=\"doc/first_steps/persistence\">stvori stalno "
 "spremište</a> na tvom Tails USB stiku."
@@ -1576,11 +1593,11 @@ msgstr "Postavljanje mosta je potrebno ako želiš sakriti da koristiš Tor"
 msgid "Scanned {bridge_type} bridge: <b>{bridge_info}</b>."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1096
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1102
 msgid "Are you sure you want to lose progress?"
 msgstr "Stvarno želiš izgubiti napredak?"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1100
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1106
 msgid ""
 "Tails will continue connecting to Tor after you close the Tor Connection "
 "assistant.\n"
@@ -1594,11 +1611,11 @@ msgstr ""
 "Ako povezivanje na Tor ne uspije, za ispravljanje tvoje veze morat ćeš "
 "ponovo čekati do kraja trake napretka."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1106
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1112
 msgid "Close and Lose Progress"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1107
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1113
 msgid "Wait"
 msgstr ""
 
@@ -1819,58 +1836,58 @@ msgstr ""
 msgid "Choose File Container"
 msgstr "Odaberi spremnik datoteka"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 #, fuzzy
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr "Deaktiviraj nesigurnog preglednika (standardno)"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr "_Pokreni ponovo"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
-#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:123
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 msgid "_Cancel"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr "Ponovo pokreni sada"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr "Pokretanje nesigurnog preglednika …"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr "Ovo može potrajati, malo se strpi."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr "Gašenje nesigurnog preglednika …"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
@@ -1878,13 +1895,13 @@ msgstr ""
 "Ovo može potrajati. Ne možeš ponovo pokrenuti nesiguran preglednik dok se "
 "nije potpuno ugasio."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr "Nesiguran preglednik"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
@@ -1892,22 +1909,22 @@ msgstr ""
 "Trenutačno radi ili se čisti jedan drugi nesiguran preglednik. Pokušaj "
 "ponovo malo kasnije."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr "Neuspjelo postavljanje chroot."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr "Neuspjelo konfiguriranje preglednika."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
 "network."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr "Neuspjelo pokretanje preglednika."
 
@@ -2036,6 +2053,7 @@ msgid "Tails developers <tails@boum.org>"
 msgstr "Programeri Tailsa <tails@boum.org>"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:343
+#, fuzzy
 msgid "translator-credits"
 msgstr ""
 "Recenzenti:\n"
@@ -2108,6 +2126,7 @@ msgid "Tails documentation"
 msgstr "Tails dokumentacija"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 #, fuzzy
 msgid "Persistent Storage"
@@ -2137,6 +2156,16 @@ msgstr "Nauči kako koristiti Tails"
 msgid "Learn more about Tails"
 msgstr "Saznaj više o Tailsu"
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "Stvori trajno spremište"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr "Instaliraj, kloniraj, nadogradi Tails"
@@ -2207,7 +2236,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr "Administratorska lozinka"
 
@@ -2234,7 +2263,7 @@ msgid "Disable"
 msgstr "Deaktiviraj"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr "Anonimizacija MAC adrese"
 
@@ -2255,7 +2284,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr "Ne anonimiziraj MAC adrese"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr "Mrežna konfiguracija"
 
@@ -2272,6 +2301,7 @@ msgid ""
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:357
+#, fuzzy
 msgid "Offline Mode"
 msgstr "_Izvanmrežni način rada"
 
@@ -2316,19 +2346,19 @@ msgstr "Postavke su učitane iz stalnog spremišta."
 msgid "Welcome to Tails!"
 msgstr "Dobrodošli u Tails!"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 #, fuzzy
 msgid "_Persistent Storage"
 msgstr "Stvori trajno spremište"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 #, fuzzy
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
@@ -2336,42 +2366,45 @@ msgstr ""
 "Za automatsko instaliranje iz tvog trajnog spremišta prilikom pokretanja "
 "Tailsa."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr "Jezik i regija"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr "Standardne postavke"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
-msgstr "Šifrirano _trajno spremište"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
 msgid "Show Passphrase"
 msgstr "Pokaži lozinku"
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
-msgstr "Upiši lozinku za otključavanje trajnog spremišta"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "Lozinka:"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
+msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+#, fuzzy
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 "Tvoje trajno spremište je otključano. Ponovo pokreni Tails kako bi opet bilo "
 "zaključano."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr "_Dodatne postavke"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr "Dodaj jednu dodatnu postavku"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
@@ -2379,11 +2412,11 @@ msgstr ""
 "Standardne postavke su sigurne u većini slučajeva. Za dodavanje prilagođene "
 "postavke, pritisni gumb „+”."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 msgid "Shutdown"
 msgstr "Gašenje"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr "_Pokreni Tails"
 
@@ -2453,10 +2486,10 @@ msgstr "WhisperBack izvještavanje o greškama"
 msgid ""
 "Your Persistent Storage is unlocked.\n"
 "\n"
-"Its content will be available until you shut down Tails.\n"
+"Its content is available until you shut down Tails.\n"
 "\n"
-"<a href=\"doc/first_steps/persistence/backup\">Learn how to make a backup of "
-"your Persistent Storage.</a>"
+"<a href=\"doc/persistent_storage/backup\">Learn how to make a backup of your "
+"Persistent Storage.</a>"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:89
@@ -2490,11 +2523,21 @@ msgstr "Stvori trajno spremište"
 msgid "System Settings"
 msgstr "Standardne postavke"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+#, fuzzy
+msgid "Welcome Screen"
+msgstr "Uvodni ekran"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 #, fuzzy
 msgid "Activate Welcome Screen"
 msgstr "Uvodni ekran"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+#, fuzzy
+msgid "Printers"
+msgstr "Pisači"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 #, fuzzy
 msgid "Activate Printers"
@@ -2530,6 +2573,11 @@ msgstr "Tor most"
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "Zabilješke preglednika"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 #, fuzzy
 msgid "Activate Tor Browser Bookmarks"
@@ -2606,6 +2654,7 @@ msgid "Activate Additional Software"
 msgstr "Dodatni programi"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:601
+#, fuzzy
 msgid "Dotfiles"
 msgstr "Dotfiles"
 
@@ -2613,26 +2662,26 @@ msgstr "Dotfiles"
 msgid "Symlink every file in the Dotfiles folder into the Home folder."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:612
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:629
 #, fuzzy
 msgid "Activate Dotfiles"
 msgstr "Dotfiles"
 
-#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:642
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:659
 msgid "Custom"
 msgstr "Prilagođeno"
 
-#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:661
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:678
 msgid ""
 "To add or remove custom features, modify /live/persistence/"
 "TailsData_unlocked/persistence.conf."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:703
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:720
 #, fuzzy
 msgid ""
-"<a href=\"doc/first_steps/persistence\">Learn more about the Persistent "
-"Storage</a>"
+"<a href=\"doc/persistent_storage\">Learn more about the Persistent Storage.</"
+"a>"
 msgstr ""
 "Za spremanje mosta <a href=\"doc/first_steps/persistence\">otključaj stalno "
 "spremište</a>."
@@ -2642,7 +2691,10 @@ msgid ""
 "<b>Your Persistent Storage is locked.</b>\n"
 "\n"
 "To use or configure your Persistent Storage, unlock it in the Welcome Screen "
-"when starting Tails."
+"when starting Tails.\n"
+"\n"
+"To delete your Persistent Storage, click <b>Delete</b> on the right of the "
+"title bar."
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:52
@@ -2677,29 +2729,26 @@ msgid ""
 "Everything you do disappears automatically when you shut down Tails.\n"
 "\n"
 "But you can save some of your files and configuration in an encrypted "
-"Persistent Storage on your Tails USB stick:\n"
+"Persistent Storage on your Tails USB stick, for example:\n"
 "\n"
 "• Your documents\n"
 "• Your Wi-Fi passwords\n"
 "• Your browser bookmarks\n"
-"• and so on\n"
+"• ...\n"
 "\n"
-"<a href=\"doc/first_steps/persistence\">Learn more about the Persistent "
-"Storage</a>"
+"<a href=\"doc/persistent_storage\">Learn more about the Persistent Storage.</"
+"a>"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:92
 msgid ""
-"Unfortunately, this Tails device does not support creating a Persistent "
-"Storage.\n"
+"Sorry, it is impossible to create a Persistent Storage on this device.\n"
 "\n"
-"To be able to use Tails with Persistent Storage, please follow the "
-"documentation to install Tails on a USB stick:\n"
-"\n"
-"<a href=\"install\">Install Tails</a>"
+"To be able to use Tails with a Persistent Storage, please follow our "
+"instructions on <a href=\"install\">installing Tails on a USB stick</a>."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:139
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:137
 msgid "Co_ntinue"
 msgstr ""
 
@@ -2763,11 +2812,11 @@ msgstr "Ot_ključaj"
 msgid "Detach this volume"
 msgstr "Odspoji ovaj pogon"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr "Odredišni USB stick:"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr "Instaliraj ponovo (obriši sve podatke)"
 
@@ -2964,6 +3013,7 @@ msgid "• Public network"
 msgstr "• Javna mreža"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:827
+#, fuzzy
 msgid ""
 "If you are in a shop, hotel, or airport, you might need to sign in to the "
 "local network using the Unsafe Browser."
@@ -3035,6 +3085,7 @@ msgid ""
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1241
+#, fuzzy
 msgid "<b>Connect to Tor _automatically</b>"
 msgstr "<b>Connect to Tor _automatically</b>"
 
@@ -3068,6 +3119,7 @@ msgid ""
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1431
+#, fuzzy
 msgid "<b>_Hide to my local network that I'm connecting to Tor</b>"
 msgstr "<b>_Hide to my local network that I'm connecting to Tor</b>"
 
@@ -3280,6 +3332,12 @@ msgstr "Prosinac"
 msgid "Clock"
 msgstr "Sat"
 
+#~ msgid "Encrypted _Persistent Storage"
+#~ msgstr "Šifrirano _trajno spremište"
+
+#~ msgid "Enter your passphrase to unlock the persistent storage"
+#~ msgstr "Upiši lozinku za otključavanje trajnog spremišta"
+
 #, python-format
 #~ msgid ""
 #~ "<h1>Help us fix your bug!</h1>\n"
@@ -3299,7 +3357,7 @@ msgstr "Sat"
 #~ "confirm that you are using Tails.\n"
 #~ "</p>\n"
 #~ msgstr ""
-#~ "<h1>Pomogni nam  riješiti tvoj problem!</h1>\n"
+#~ "<h1>Pomogni nam riješiti tvoj problem!</h1>\n"
 #~ "<p>Pročitaj <a href=\"%s\">naše upute za prijavu problema</a>.</p>\n"
 #~ "<p><strong>Ne uključuj više osobnih podataka nego što je\n"
 #~ "potrebno!</strong></p>\n"
@@ -3333,6 +3391,7 @@ msgstr "Sat"
 #~ msgid "Launch the Unsafe Browser?"
 #~ msgstr "Pokrenuti nesiguran preglednik?"
 
+#, fuzzy
 #~ msgid ""
 #~ "The Unsafe Browser is not anonymous and the websites that you visit can "
 #~ "see your real IP address.\\n\\nOnly use the Unsafe Browser to sign in to "
@@ -3572,15 +3631,15 @@ msgstr "Sat"
 #~ "Tailsa."
 
 #~ msgid ""
-#~ "Only use the Unsafe Browser to sign in to a network, then close it.\\n"
-#~ "\\nThe Unsafe Browser is disabled by default for security.\\n\\nTo <a "
+#~ "Only use the Unsafe Browser to sign in to a network, then close it."
+#~ "\\n\\nThe Unsafe Browser is disabled by default for security.\\n\\nTo <a "
 #~ "href='file:///usr/share/doc/tails/website/doc/anonymous_internet/"
 #~ "unsafe_browser.en.html#use'>use the Unsafe Browser</a>, restart Tails and "
 #~ "enable the Unsafe Browser in the additional settings of the Welcome "
 #~ "Screen."
 #~ msgstr ""
-#~ "Only use the Unsafe Browser to sign in to a network, then close it.\\n"
-#~ "\\nThe Unsafe Browser is disabled by default for security.\\n\\nTo <a "
+#~ "Only use the Unsafe Browser to sign in to a network, then close it."
+#~ "\\n\\nThe Unsafe Browser is disabled by default for security.\\n\\nTo <a "
 #~ "href='file:///usr/share/doc/tails/website/doc/anonymous_internet/"
 #~ "unsafe_browser.en.html#use'>use the Unsafe Browser</a>, restart Tails and "
 #~ "enable the Unsafe Browser in the additional settings of the Welcome "
diff --git a/po/hu.po b/po/hu.po
index 4e5d932508d..50a027a9f69 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -18,7 +18,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
 "PO-Revision-Date: 2023-01-25 11:39+0000\n"
 "Last-Translator: emma peel <emma.peel@riseup.net>\n"
 "Language-Team: Hungarian <https://hosted.weblate.org/projects/tor/tails-gui/"
@@ -510,9 +510,9 @@ msgid "Additional Settings"
 msgstr "További beállítások"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "Mégse"
@@ -586,28 +586,28 @@ msgstr "Ki"
 msgid "Off (default)"
 msgstr "Ki (alapértelmezett)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
 #, fuzzy
-msgid "Persistent Storage Not Unlocked"
+msgid "Persistent Storage Still Locked"
 msgstr "Tartós tároló létrehozása"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 #, fuzzy
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
 msgstr "Adja meg a jelszavát a tartóstár feloldásához"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
 #, fuzzy
-msgid "Continue Without Persistent Storage"
+msgid "Start Without Persistent Storage"
 msgstr "Tartós tároló létrehozása"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 #, fuzzy
 msgid "Don't _Create Persistent Storage"
 msgstr "Tartós tároló létrehozása"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 #, fuzzy
 msgid "_Create Persistent Storage"
@@ -630,7 +630,6 @@ msgstr "Feloldás…"
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr "Feloldás"
 
@@ -856,7 +855,7 @@ msgstr "Az egység egy hurok, az MBR alaphelyzetbe állítás átugrása"
 msgid "Synchronizing data on disk..."
 msgstr "Adat lemezre szinkronizálása..."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
@@ -864,63 +863,63 @@ msgstr ""
 "Hiba: A címkét nem lehet beállítani, vagy az eszköz UUID-jét lekérni. A "
 "folytatás nem lehetséges."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr "Telepítés kész! (%s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr "A Tails telepítése sikertelen!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr "Tails telepítő"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr "A Tails klónozása"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr "Egy letöltött Tails ISO használata."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr "Frissítés"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr "Kézi frissítés útmutató"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr "Telepít"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr "Telepítési instrukciók"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(size)s%(vendor)s%(model)seszköz(%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr "Nincs kiválasztva ISO fájl"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr "Kérjük válasszon ki egy Tails ISO fájlt."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -931,7 +930,7 @@ msgstr ""
 "Tails nem fog elindulni rajta. Kérjük próbálja meg a telepítést egy másik "
 "modellen."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
@@ -940,7 +939,7 @@ msgstr ""
 "A'z' \"%(pretty_name)s\" eszköz túl kicsi a Tails telepítéséhez (legalább "
 "%(size)s GB szükséges)."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -951,35 +950,35 @@ msgstr ""
 "Tails ISO képet kell használnia:\n"
 "%(dl_url)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr "Nem található olyan eszköz amire a Tails telepíthető lenne."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr ""
 "Csatlakoztasson egy USB meghajtót vagy SD kártyát amin legalább ennyi hely "
 "van:%0.1fGB"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr "Hiba történt a Tails telepítése közben"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr "Telepítés kész!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr "Nem lehetséges az eszköz csatolása"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(parent_size)s%(vendor)s%(model)s eszköz(%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
@@ -989,11 +988,11 @@ msgstr ""
 "\n"
 "Az USB kulcson lévő állandó tárhely el fog veszni."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr "Tartós tár törlése és újratelepítés"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
@@ -1003,20 +1002,20 @@ msgstr ""
 "\n"
 "Minden adat erről az USB kulcsról el fog veszni."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr "Minden adat törlése és telepítés"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr "%(description)s%(delete_message)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr "Erősítse meg a cél USB meghajtót"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
@@ -1024,7 +1023,7 @@ msgstr ""
 "A kijelölt fájl nem olvasható. Változtassa meg a jogosultságokat vagy "
 "válasszon egy másik fájlt."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
@@ -1032,7 +1031,7 @@ msgstr ""
 "Nem lehet a kiválasztott fájlt használni. Szerencsésebb lenne az ISO fájlt a "
 "meghajtó gyökerébe mozgatni (pl: C:\\)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr "%(filename)s kiválasztva"
@@ -1113,7 +1112,7 @@ msgstr "Az su tiltott. Használjon sudo-t helyette."
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1179,7 +1178,7 @@ msgstr "nem elérhető"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -1188,7 +1187,7 @@ msgstr ""
 "{details} Kérjük ellenőrizze további szoftverei listáját vagy ellenőrizze a "
 "rendszernaplót a probléma megértéséhez."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
@@ -1196,55 +1195,55 @@ msgstr ""
 "Kérjük ellenőrizze további szoftverei listáját vagy ellenőrizze a "
 "rendszernaplót a probléma megértéséhez."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr "Log megtekintése"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "Beállít"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} és {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ", "
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "{packages} csomagok hozzáadása a további szoftvereihez?"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 "Automatikus telepítéshez, a  tartós tárolójából, amikor elindítja a Tails-t."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr "Telepítés mindig"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr "Telepítés egy alkalommal"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr "A további szoftvereinek konfigurálása sikertelen."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -1252,68 +1251,68 @@ msgstr ""
 "Az automatikus telepítéshez, amikor a Tails indul, létrehozhat egy  tartós "
 "tárolót és aktiválni tudja a <b>További szoftverek</b> szolgáltatást."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr "Tartós tároló létrehozása"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr "Tartós tároló létrehozása sikertelen."
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 "Automatikusan telepítheti a(z) {packages} csomagokat a Tails indulásakor"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr "Hogy így tehessen, a Tails-t egy USB tárolóról kell futtatnia."
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "{packages} eltávolítása a további szoftveri közül?"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr "Ez leállítja a(z) {packages} csomagok automatikus telepítését."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "Eltávolít"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr "A további szoftverek telepítése a tartós tárolóból..."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr "Ez néhány percig is eltarthat."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr "A további szoftverei telepítése sikertelen"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr "További szoftverei telepítése sikeres"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr "A további szoftverei frissítésének ellenőrzése sikertelen"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -1321,11 +1320,11 @@ msgstr ""
 "Kérjük ellenőrizze hálózati kapcsolátát, indíta újra a Tails-t vagy olvassa "
 "el a rendszer logot a probléma megértéséhez."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr "A további szoftverei frissítése sikertelen"
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "Dokumentáció"
 
@@ -1487,19 +1486,19 @@ msgstr ""
 "{manual_upgrade_url}"
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr "hiba:"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr "Figyelem: virtualizált gép /VM/ érzékelve!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr "Figyelem: nem ingyenes virtualizációs szoftver /VM/ érzékelve!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1511,11 +1510,11 @@ msgstr ""
 "ezért ajánljuk hogy használjon ingyenes operációs rendszert és "
 "virtualizációs szoftvert."
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr "Ne mutassa megint"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr "Tudjon meg többet"
 
@@ -1867,58 +1866,58 @@ msgstr ""
 msgid "Choose File Container"
 msgstr "Válasszon fájl konténert"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 #, fuzzy
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr "Az Unsafe Browser tiltása (alapértelmezett)"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr "_Újraindítás"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 msgid "_Cancel"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr "Újraindítás most"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr "Nem sikerült a rendszer újraindítása."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr "Az Unsafe Browser indítása..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr "Ez eltarthat egy ideig, kérjük legyen türelemmel."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr "Az Unsafe Browser leállítása..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
@@ -1926,14 +1925,14 @@ msgstr ""
 "Ez eltarthat egy ideig, és addig nem indíthatja újra az Unsafe Browser-t "
 "amíg az megfelelően le nem állt."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 #, fuzzy
 msgid "Unsafe Browser"
 msgstr "Unsafe Browser"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
@@ -1941,15 +1940,15 @@ msgstr ""
 "Jelenleg egy másik példánya is fut az Unsafe Browser-nek, vagy épp tisztítás "
 "folyamata zajlik. Kérjük térjen vissza később."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr "A chroot beállítása sikertelen."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr "A böngésző beállítása sikertelen."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
@@ -1959,7 +1958,7 @@ msgstr ""
 "indításához először csatlakoznia kell egy Wi-Fi, vezetékes vagy mobil "
 "hálózathoz."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr "A böngésző indítása sikertelen."
 
@@ -2133,6 +2132,7 @@ msgid "Tails documentation"
 msgstr "A Tails dokumentációja"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 #, fuzzy
 msgid "Persistent Storage"
@@ -2162,6 +2162,16 @@ msgstr "A Tails használati útmutatója"
 msgid "Learn more about Tails"
 msgstr "Tudjon meg többet a Tails-ről."
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "Tartós tároló létrehozása"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr "Tails telepítése, klónozása, frissítése"
@@ -2234,7 +2244,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr "Adminisztrátori jelszó"
 
@@ -2261,7 +2271,7 @@ msgid "Disable"
 msgstr "Kikapcsol"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr "MAC cím anonimizálás"
 
@@ -2287,7 +2297,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr "Ne anonimizálja a MAC címeket"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr "Hálózati konfiguráció"
 
@@ -2368,59 +2378,62 @@ msgstr "A beállítások betöltésre kerültek a tartós tárolóból."
 msgid "Welcome to Tails!"
 msgstr "Köszöntjük a Tails-ben!"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 #, fuzzy
 msgid "_Persistent Storage"
 msgstr "Tartós tároló létrehozása"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 #, fuzzy
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr ""
 "Automatikus telepítéshez, a  tartós tárolójából, amikor elindítja a Tails-t."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr "Nyelv és régió"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr "Alapbeállítások"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
-msgstr "Titkosított _Tartós tár"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
 msgid "Show Passphrase"
 msgstr "Jelmondat megjelenítése"
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
-msgstr "Adja meg a jelszavát a tartóstár feloldásához"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "Jelszó:"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+#, fuzzy
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr "A tartós tára nyitva. Indítsa újra a Tails-t a visszazárásához."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr "_További beállítások"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr "Tovább beállítások hozzá adása"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
@@ -2428,11 +2441,11 @@ msgstr ""
 "Az alapértelmezett beállítások biztonságosak a legtöbb helyzetben. Az egyéni "
 "beállítások hozzáadásához nyomja meg a \"+\" gombot alább."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 msgid "Shutdown"
 msgstr "Leállítás"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr "_Tails indítása"
 
@@ -2539,11 +2552,21 @@ msgstr "Tartós tároló létrehozása"
 msgid "System Settings"
 msgstr "Alapbeállítások"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+#, fuzzy
+msgid "Welcome Screen"
+msgstr "Üdvözlő képernyő"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 #, fuzzy
 msgid "Activate Welcome Screen"
 msgstr "Üdvözlő képernyő"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+#, fuzzy
+msgid "Printers"
+msgstr "Nyomtatók"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 #, fuzzy
 msgid "Activate Printers"
@@ -2579,6 +2602,11 @@ msgstr "Tor híd"
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "Böngésző könyvjelzők"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 #, fuzzy
 msgid "Activate Tor Browser Bookmarks"
@@ -2813,11 +2841,11 @@ msgstr "_Feloldás"
 msgid "Detach this volume"
 msgstr "Kötet leválasztása"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr "A cél USB meghajtó:"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr "Újratelepítés (összes adat törlése)"
 
@@ -3393,6 +3421,12 @@ msgstr "December"
 msgid "Clock"
 msgstr "Óra"
 
+#~ msgid "Encrypted _Persistent Storage"
+#~ msgstr "Titkosított _Tartós tár"
+
+#~ msgid "Enter your passphrase to unlock the persistent storage"
+#~ msgstr "Adja meg a jelszavát a tartóstár feloldásához"
+
 #, python-format
 #~ msgid ""
 #~ "<h1>Help us fix your bug!</h1>\n"
diff --git a/po/hy.po b/po/hy.po
index 4072d051216..f728896743f 100644
--- a/po/hy.po
+++ b/po/hy.po
@@ -9,16 +9,17 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
-"PO-Revision-Date: 2013-07-25 09:07+0000\n"
-"Last-Translator: At protom <atprotom@gmail.com>, 2021-2022\n"
-"Language-Team: Armenian (http://www.transifex.com/otf/torproject/language/"
-"hy/)\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
+"PO-Revision-Date: 2023-02-28 14:39+0000\n"
+"Last-Translator: emma peel <emma.peel@riseup.net>\n"
+"Language-Team: Armenian <https://hosted.weblate.org/projects/tor/tails-gui/"
+"hy/>\n"
 "Language: hy\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Weblate 4.16-rc\n"
 
 #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1
@@ -457,9 +458,9 @@ msgid "Additional Settings"
 msgstr "Õ€Õ¡Õ¾Õ¥Õ¬ÕµÕ¡Õ¬ Õ¯Õ¡Ö€Õ£Õ¡Õ¾Õ¸Ö€Õ¸Ö‚Õ´Õ¶Õ¥Ö€"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "Õ‰Õ¥Õ²Õ¡Ö€Õ¯Õ¥Õ¬"
@@ -532,27 +533,27 @@ msgstr ""
 msgid "Off (default)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
 #, fuzzy
-msgid "Persistent Storage Not Unlocked"
+msgid "Persistent Storage Still Locked"
 msgstr "Ստեղծել հաստատակամ պահեստարան"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
 #, fuzzy
-msgid "Continue Without Persistent Storage"
+msgid "Start Without Persistent Storage"
 msgstr "Ստեղծել հաստատակամ պահեստարան"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 #, fuzzy
 msgid "Don't _Create Persistent Storage"
 msgstr "Ստեղծել հաստատակամ պահեստարան"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 #, fuzzy
 msgid "_Create Persistent Storage"
@@ -575,7 +576,6 @@ msgstr ""
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr ""
 
@@ -794,69 +794,69 @@ msgstr ""
 msgid "Synchronizing data on disk..."
 msgstr "Համաժամեցվում է տվյալները սկավառակում..."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr "Տեղադրումն ավարտվե՜ց։ (%s) "
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr "Tails-ի տեղադրումը ձախողվե՜ց:"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr "Tails-Õ« Õ¿Õ¥Õ²Õ¡Õ¤Ö€Õ«Õ¹"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr "Բազմացնել ներկայիս Tails-ը"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr "Արդիացում"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr "Տեղադրել"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr "Տեղադրման հրահանգներ"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -864,14 +864,14 @@ msgid ""
 "a different model."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
 "%(size)s GB is required)."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -879,76 +879,76 @@ msgid ""
 "%(dl_url)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr "Տեղադրումն ավարտվե՜ց։"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
 "The persistent storage on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr "Õ‹Õ¶Õ»Õ¥Õ¬ Õ°Õ¡Õ½Õ¿Õ¡Õ¿Õ¡Õ¯Õ¡Õ´ ÕºÕ¡Õ°Õ¸Ö‚Õ½Õ¿Õ¨ Ö‡ Õ¾Õ¥Ö€Õ¡Õ¿Õ¥Õ²Õ¡Õ¤Ö€Õ¥Õ¬"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
 "All data on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr "Õ‹Õ¶Õ»Õ¥Õ¬ Õ¢Õ¸Õ¬Õ¸Ö€ Õ¿Õ¾ÕµÕ¡Õ¬Õ¶Õ¥Ö€Õ¨ Ö‡ Õ¿Õ¥Õ²Õ¡Õ¤Ö€Õ¥Õ¬"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr "%(filename)s Õ¨Õ¶Õ¿Ö€Õ¾Õ¡Õ® Õ§"
@@ -1023,7 +1023,7 @@ msgstr "«su»-ն կարողազրկված է: Խնդրում ենք օգտվե
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1085,137 +1085,137 @@ msgstr "Õ¡Õ¼Õ¯Õ¡ Õ¹Õ§"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
 "log to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr "Ցուցադրել մատյանը"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "Ô¿Õ¡Ö€Õ£Õ¡Õ¾Õ¸Ö€Õ¥Õ¬"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} Ö‡ {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr "՝"
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "Ավելացնե՞լ «{packages}»-ը Ձեր հավելյալ ծրագրային ապահովմանը:"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 "Tails-ի մեկնարկման ժամանակ Ձեր հաստատակամ պահեստարանից ինքնաբերաբար "
 "Õ¿Õ¥Õ²Õ¡Õ¤Ö€Õ´Õ¡Õ¶ Õ°Õ¡Õ´Õ¡Ö€:"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr "Տեղադրել ամեն անգամ"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr "Տեղադրել միայն մեկ անգամ"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr "Ձեր հավելյալ ծրագրային ապահովման կարագվորումը ձախողվեց:"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr "Ստեղծել հաստատակամ պահեստարան"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr "Ձեր հաստատակամ պահեստարանի ստեղծումը ձախողվեց"
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 "Դուք կարող էիք ինքնաբերաբար տեղադրել «{packages}»-ը երբ մեկնարկեր Tails-ը"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "Հեռացնե՞լ «{packages}»-ը Ձեր հավելյալ ծրագրային ապահովումից:"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr "Սա կդադարեցնի «{packages}»-ի ինքնաբերաբար տեղադրումը:"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "Հեռացնել"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 "Տեղադրվում է Ձեր հավելյալ ծրագրային ապահովումները հաստատակամ պահեստարանից..."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr "Սա կարող է տևել մի քանի րոպե:"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr "Ձեր հավելյալ ծրագրային ապահովման տեղադրումը ձախողվեց"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr "Հավելյալ ծրագրային ապահովումը հաջողությամբ տեղադրվեց"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr "Ձեր հավելյալ ծրագրային ապահովման արդիացման ստուգումը ձախողվեց"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -1223,13 +1223,13 @@ msgstr ""
 "Խնդրում ենք ստուգել Ձեր ցանցային միացումը, վերսկսել Tails-ը, կամ կարդալ "
 "համակարգի մատյանը՝ խնդիրը հասկանալու համար"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr "Ձեր հավելյալ ծրագրային ապահովման արդիացումը ձախողվեց"
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
-msgstr ""
+msgstr "Ուղեցույցներ"
 
 #. Translators: Don't translate {package}, it's a placeholder and will be replaced.
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
@@ -1360,19 +1360,19 @@ msgid ""
 msgstr ""
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr "սխալ՝"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1380,11 +1380,11 @@ msgid ""
 "software."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr "Չցուցադրել նորից"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr "Ô»Õ´Õ¡Õ¶Õ¡Õ¬ Õ¡Õ¾Õ¥Õ¬Õ«Õ¶"
 
@@ -1718,91 +1718,91 @@ msgstr ""
 msgid "Choose File Container"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 #, fuzzy
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr "Ô¿Õ¡Ö€Õ¸Õ²Õ¡Õ¦Ö€Õ¯Õ¥Õ¬ Õ¡Õ¶Õ¡ÕºÕ¡Õ°Õ¸Õ¾ Õ¤Õ«Õ¿Õ¡Ö€Õ¯Õ«Õ¹Õ¨ (Õ¬Õ¼Õ¥Õ¬Õ¡ÕµÕ¶)"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr "_ÕŽÕ¥Ö€Õ½Õ¯Õ½Õ¥Õ¬"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 msgid "_Cancel"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr "ÕŽÕ¥Ö€Õ½Õ¯Õ½Õ¥Õ¬ Õ°Õ«Õ´Õ¡"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr "Համակարգի վերսկսումը ձախողվեց:"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr "Ô±Õ¶Õ¡ÕºÕ¡Õ°Õ¸Õ¾ Õ¤Õ«Õ¿Õ¡Ö€Õ¯Õ«Õ¹Õ« Õ½Õ¯Õ½Õ¸Ö‚Õ´..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr "Սա կարող է երկար տևել, խնդրում ենք համբերատար լինել:"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr "Անապահով դիտարկիչի վերջացում..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr "Ô±Õ¶Õ¡ÕºÕ¡Õ°Õ¸Õ¾ Õ¤Õ«Õ¿Õ¡Ö€Õ¯Õ«Õ¹"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr "Դիտարկիչի կարգվարումը ձախողվեց:"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
 "network."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr "Դիտակիչի գործարկումը ձախողվեց:"
 
@@ -1975,6 +1975,7 @@ msgid "Tails documentation"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 #, fuzzy
 msgid "Persistent Storage"
@@ -2002,6 +2003,16 @@ msgstr "Իմանալ թե ինչպես օգտվել Tails-ից"
 msgid "Learn more about Tails"
 msgstr "Ô»Õ´Õ¡Õ¶Õ¡Õ¬ Õ¡Õ¾Õ¥Õ¬Õ«Õ¶ Tails-Õ« Õ´Õ¡Õ½Õ«Õ¶"
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "Ստեղծել հաստատակամ պահեստարան"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr "Տեղադրել, բազմացնել, արդիացնել Tails-ը"
@@ -2068,7 +2079,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr ""
 
@@ -2092,7 +2103,7 @@ msgid "Disable"
 msgstr "Ô¿Õ¡Ö€Õ¸Õ²Õ¡Õ¦Ö€Õ¯Õ¥Õ¬"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr "MAC հասցեի անանունացում"
 
@@ -2113,7 +2124,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr "Չանանունացնել MAC հասցեները"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr "Ցանցի կարգավորում"
 
@@ -2174,19 +2185,19 @@ msgstr "Ô¿Õ¡Ö€Õ£Õ¡Õ¾Õ¸Ö€Õ¸Ö‚Õ´Õ¶Õ¥Ö€Õ¨ Õ¢Õ¥Õ¼Õ¶Õ¾Õ¡Õ® Õ¥Õ¶ Õ°Õ¡Õ½Õ¿Õ¡Õ¿Õ¯Õ¡Õ´ Õº
 msgid "Welcome to Tails!"
 msgstr "Բարի գալուս՜տ Tails:"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 #, fuzzy
 msgid "_Persistent Storage"
 msgstr "Ստեղծել հաստատակամ պահեստարան"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 #, fuzzy
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
@@ -2194,52 +2205,55 @@ msgstr ""
 "Tails-ի մեկնարկման ժամանակ Ձեր հաստատակամ պահեստարանից ինքնաբերաբար "
 "Õ¿Õ¥Õ²Õ¡Õ¤Ö€Õ´Õ¡Õ¶ Õ°Õ¡Õ´Õ¡Ö€:"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr "Ô¼Õ¥Õ¦Õ¸Ö‚ Ö‡ Õ¿Õ¥Õ²Õ¡Õ¶Ö„"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr "Ô¼Õ¼Õ¥Õ¬Õ¡ÕµÕ¶ Õ¯Õ¡Ö€Õ£Õ¡Õ¾Õ¸Ö€Õ¸Ö‚Õ´Õ¶Õ¥Ö€"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
-msgstr "Ô³Õ¡Õ²Õ¿Õ¶Õ¡Õ£Ö€Õ¾Õ¡Õ® _Õ°Õ¡Õ½Õ¿Õ¡Õ¿Õ¡Õ¯Õ¡Õ´ ÕºÕ¡Õ°Õ¥Õ½Õ¿Õ¡Ö€Õ¡Õ¶"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
 msgid "Show Passphrase"
 msgstr "Ցույց տալ գաղտնադարձվածքը"
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "Գաղտնադարձվածք՝"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+#, fuzzy
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 "Ձեր հաստատակամ պահեստարանը արգելաբացվել է: Նորից արգելափակելու համար "
 "Õ¾Õ¥Ö€Õ½Õ¯Õ½Õ¥Ö„ Tails-Õ¨:"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr "_Õ€Õ¡Õ¾Õ¥Õ¬ÕµÕ¡Õ¬ Õ¯Õ¡Ö€Õ£Õ¡Õ¾Õ¸Ö€Õ¸Ö‚Õ´Õ¶Õ¥Ö€"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr "Ավելացնել հավելյալ կարգավորում"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 msgid "Shutdown"
 msgstr "Վերջացում"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr "_Սկսել Tails-ը"
 
@@ -2345,11 +2359,21 @@ msgstr "Ստեղծել հաստատակամ պահեստարան"
 msgid "System Settings"
 msgstr "Ô¼Õ¼Õ¥Õ¬Õ¡ÕµÕ¶ Õ¯Õ¡Ö€Õ£Õ¡Õ¾Õ¸Ö€Õ¸Ö‚Õ´Õ¶Õ¥Ö€"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+#, fuzzy
+msgid "Welcome Screen"
+msgstr "«Բարի գալուստի» էկրան"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 #, fuzzy
 msgid "Activate Welcome Screen"
 msgstr "«Բարի գալուստի» էկրան"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+#, fuzzy
+msgid "Printers"
+msgstr "Տպիչներ"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 #, fuzzy
 msgid "Activate Printers"
@@ -2385,6 +2409,11 @@ msgstr "Tor Õ¯Õ¡Õ´Õ¸Ö‚Ö€Õ»"
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "Ô´Õ«Õ¿Õ¡Ö€Õ¯Õ«Õ¹Õ« Õ§Õ»Õ¡Õ¶Õ«Õ¶Õ·Õ¶Õ¥Ö€"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 #, fuzzy
 msgid "Activate Tor Browser Bookmarks"
@@ -2613,11 +2642,11 @@ msgstr "_Արգելաբացել"
 msgid "Detach this volume"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr "ÕŽÕ¥Ö€Õ¡Õ¿Õ¥Õ²Õ¡Õ¤Ö€Õ¥Õ¬ (Õ»Õ¶Õ»Õ¥Õ¬ Õ¢Õ¸Õ¬Õ¸Ö€ Õ¿Õ¾ÕµÕ¡Õ¬Õ¶Õ¥Ö€Õ¨)"
 
@@ -3117,6 +3146,9 @@ msgstr "Ô´Õ¥Õ¯Õ¿Õ¥Õ´Õ¢Õ¥Ö€"
 msgid "Clock"
 msgstr "Ժամացույց"
 
+#~ msgid "Encrypted _Persistent Storage"
+#~ msgstr "Ô³Õ¡Õ²Õ¿Õ¶Õ¡Õ£Ö€Õ¾Õ¡Õ® _Õ°Õ¡Õ½Õ¿Õ¡Õ¿Õ¡Õ¯Õ¡Õ´ ÕºÕ¡Õ°Õ¥Õ½Õ¿Õ¡Ö€Õ¡Õ¶"
+
 #~ msgid "Error while choosing a download server"
 #~ msgstr "Սխալ ներբեռնման սերվերը ընտրելու ժամանակ"
 
diff --git a/po/id.po b/po/id.po
index 85354fc9d05..d91c6fb0d7c 100644
--- a/po/id.po
+++ b/po/id.po
@@ -27,8 +27,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
-"PO-Revision-Date: 2023-01-26 17:50+0000\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
+"PO-Revision-Date: 2023-02-27 08:38+0000\n"
 "Last-Translator: emma peel <emma.peel@riseup.net>\n"
 "Language-Team: Indonesian <https://hosted.weblate.org/projects/tor/tails-gui/"
 "id/>\n"
@@ -515,9 +515,9 @@ msgid "Additional Settings"
 msgstr "Pengaturan Tambahan"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "Batal"
@@ -565,14 +565,12 @@ msgid "_Unsafe Browser"
 msgstr "_Penjelajah tidak aman"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:347
-#, fuzzy
 msgid "Enabled (default)"
 msgstr "Dimatikan (bawaan)"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:349
-#, fuzzy
 msgid "Disabled"
-msgstr "Matikan"
+msgstr "Nonaktifkan"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:400
 msgid "On (default)"
@@ -590,12 +588,12 @@ msgstr "Mati"
 msgid "Off (default)"
 msgstr "Nonaktif (default)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
 #, fuzzy
-msgid "Persistent Storage Not Unlocked"
+msgid "Persistent Storage Still Locked"
 msgstr "Membuat Penyimpanan Persisten"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 #, fuzzy
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
@@ -603,17 +601,17 @@ msgstr ""
 "Anda yakin hendak memulai ulang Tails sekarang?\\n\\nSemua pekerjaan Anda "
 "saat ini akan hilang."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
 #, fuzzy
-msgid "Continue Without Persistent Storage"
+msgid "Start Without Persistent Storage"
 msgstr "Membuat Penyimpanan Persisten"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 #, fuzzy
 msgid "Don't _Create Persistent Storage"
 msgstr "Membuat Penyimpanan Persisten"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 #, fuzzy
 msgid "_Create Persistent Storage"
@@ -636,7 +634,6 @@ msgstr "Membuka kunci..."
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr "Tidak terkunci"
 
@@ -865,7 +862,7 @@ msgstr "Perangkat balikan (loopback), melewatkan mengatur ulang MBR"
 msgid "Synchronizing data on disk..."
 msgstr "Sinkronisasi data pada disk"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
@@ -873,63 +870,63 @@ msgstr ""
 "Kesalahan: Tidak dapat mengatur label atau memperoleh UUID perangkat Anda. "
 "Tidak dapat melanjutkan."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr "Pemasangan sudah tuntas! (%s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr "Instalasi Tails gagal!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr "Installer untuk Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr "Kloning Tails sekarang"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr "Gunakan gambar Tails ISO yang sudah diunduh"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr "Pemutakhiran"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr "Petunjuk Upgrade Manual"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr "Install"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr "Instruksi Pemasangan"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(size)s %(vendor)s %(model)s alat (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr "Tidak ada file ISO yang dipilih"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr "Silakan pilih file ISO dari Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -941,7 +938,7 @@ msgstr ""
 "disk tersebut. Silakan lakukan instalasi dengan merek atau model flash disk "
 "lain."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
@@ -950,7 +947,7 @@ msgstr ""
 "Device \"%(pretty_name)s\" terlalu kecil untuk menginstall Tails (minimal "
 "perlu %(size)s GB)."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -961,33 +958,33 @@ msgstr ""
 "menggunakan image ISO Tails yang telah diunduh:\n"
 "%(dl_url)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr "Alat yang cocok untuk instalasi Tails tidak ditemukan"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr "Silakan masukkan USB flash disk atau SD card sebesar minimal %0.1fGB."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr "Sebuah kesalahan terjadi ketika melakukan instalasi Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr "Pemasangan sudah tuntas!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr "Gagal memuat perangkat"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(parent_size)s %(vendor)s %(model)s alat (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
@@ -997,11 +994,11 @@ msgstr ""
 "\n"
 "Penyimpanan persisten pada stik USB ini akan hilang."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr "Hapus Penyimpanan Persisten dan Instal Ulang"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
@@ -1011,20 +1008,20 @@ msgstr ""
 "\n"
 "Semua data pada stik USB ini akan hilang."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr "Hapus semua data dan instal"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr "%(description)s%(delete_message)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr "Konfirmasi tujuan USB flash disk"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
@@ -1032,7 +1029,7 @@ msgstr ""
 "File terpilih tidak bisa dibaca. silakan perbaharui izinnya atau pilih file "
 "lain"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
@@ -1040,7 +1037,7 @@ msgstr ""
 "Tidak bisa menggunakan file yang terpilih. anda mungkin lebih beruntung jika "
 "anda memindahkan ISO anda ke akar/root dari drive (ie:C\\) anda"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr "%(filename)s terpilih"
@@ -1130,7 +1127,7 @@ msgstr "su dinonaktifkan. Mohon gunakan sudo sebagai gantinya."
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1196,7 +1193,7 @@ msgstr "tak tersedia"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -1205,7 +1202,7 @@ msgstr ""
 "{details} tolong, mohon cek daftar perangkat lunak tambahan anda atau baca "
 "catatan sistem untuk memahami masalahnya."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
@@ -1213,56 +1210,56 @@ msgstr ""
 "tolong, mohon cek daftar perangkat lunak tambahan anda atau baca catatan "
 "sistem untuk memahami masalahnya."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr "Tampilkan Log"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "Konfigurasikan"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} dan {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ","
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "menambah {packages} untuk perangkat lunak tambahanmu?"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 "Untuk memasangnya secara otomatis dari tempat penyimpanan tetap Anda saat "
 "memulai Tails."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr "Memasang Setiap Waktu"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr "Memasang Hanya Sekali"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr "Konfigurasi pada perangkat lunak tambahan Anda gagal."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -1270,67 +1267,67 @@ msgstr ""
 "Untuk memasang secara otomatis saat memulai Tails, Anda dapat membuat tempat "
 "penyimpanan tetap dan mengaktifkan fitur <b>Perangkat Lunak Tambahan</b>."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr "Membuat Penyimpanan Persisten"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr "Gagal membuat penyimpanan persisten Anda."
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr "Anda dapat memasang {packages} secara otomatis saat memulai Tails"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr "Untuk melakukannya, Anda harus menjalankan Tails dari stik USB."
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "Hapus {packages} dari perangkat lunak tambahan Anda?"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr "Ini akan menghentikan pemasangan {packages} secara otomatis."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "Hapus"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr "Memasang perangkat lunak tambahan Anda dari penyimpanan tetap..."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr "Ini akan memakan waktu beberapa menit."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr "Pemasangan perangkat lunak tambahan Anda gagal"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr "Perangkat lunak tambahan berhasil terpasang"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr "Pengecekan pemutakhiran untuk perangkat lunak tambahan Anda gagal"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -1338,11 +1335,11 @@ msgstr ""
 "Mohon periksa koneksi jaringan anda, mulai ulang Tails, atau baca catatan "
 "sistem untuk memahami masalahnya."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr "Pembaruan perangkat lunak tambahan Anda gagal"
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "Dokumentasi"
 
@@ -1503,19 +1500,19 @@ msgstr ""
 "Lihat {manual_upgrade_url}"
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr "kesalahan:"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr "Peringatan: mesin virtual terdeteksi!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr "Peringatan: mesin virtual non-free terdeteksi!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1527,11 +1524,11 @@ msgstr ""
 "dipandang terpercaya, untuk kedua sistem operasi host dan perangkat lunak "
 "virtualisasi."
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr "Jangan Tampilkan Lagi"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr "Pelajari lebih lanjut"
 
@@ -1890,32 +1887,32 @@ msgstr ""
 msgid "Choose File Container"
 msgstr "Pilih Kontainer Berkas"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 #, fuzzy
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr "Matikan Penjelajah yang Tidak Aman (bawaan)"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr "_Memulai Ulang"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 msgid "_Cancel"
 msgstr "_Batal"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
@@ -1923,27 +1920,27 @@ msgstr ""
 "Anda yakin hendak memulai ulang Tails sekarang?\\n\\nSemua pekerjaan Anda "
 "saat ini akan hilang."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr "Mulai Ulang Sekarang"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr "Gagal memulai ulang sistem."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr "Memulai Unsafe Browser"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr "Mungkin ini memakan waktu lama, mohon bersabar."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr "Mematikan Unsafe Browser..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
@@ -1951,14 +1948,14 @@ msgstr ""
 "Mungkin ini akan memakan waktu, dan Anda tidak boleh memulai ulang Unsafe "
 "Browser sampai ia dimatikan secara layak."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 #, fuzzy
 msgid "Unsafe Browser"
 msgstr "Unsafe Browser"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
@@ -1966,15 +1963,15 @@ msgstr ""
 "Peramban tak aman lain sedang berjalan, atau sedang dibersihkan. Silakan "
 "coba lagi nanti."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr "Gagal mengkonfigurasi chroot."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr "Konfigurasi peramban gagal."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
@@ -1984,7 +1981,7 @@ msgstr ""
 "yang tidak aman, Anda harus menyambungkan ke Wi-Fi, kabel, atau jaringan "
 "seluler."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr "Gagal menjalankan peramban."
 
@@ -2160,6 +2157,7 @@ msgid "Tails documentation"
 msgstr "Dokumentasi Tails"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 #, fuzzy
 msgid "Persistent Storage"
@@ -2190,6 +2188,16 @@ msgstr "Pelajari bagaimana menggunakan Tails"
 msgid "Learn more about Tails"
 msgstr "Pelajari lebih lanjut mengenail Tails"
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "Membuat Penyimpanan Persisten"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr "Pasang, klon, dan upgrade Tails"
@@ -2264,7 +2272,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr "Password Admin"
 
@@ -2290,7 +2298,7 @@ msgid "Disable"
 msgstr "Matikan"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr "Pengaturan anonim alamat MAC"
 
@@ -2316,7 +2324,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr "Jangan menganonimkan alamat MAC"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr "Konfigurasi Jaringan"
 
@@ -2397,19 +2405,19 @@ msgstr "Pengaturan dimuat dari penyimpanan persisten."
 msgid "Welcome to Tails!"
 msgstr "Selamat datang di Tails!"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 #, fuzzy
 msgid "_Persistent Storage"
 msgstr "Membuat Penyimpanan Persisten"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 #, fuzzy
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
@@ -2417,42 +2425,45 @@ msgstr ""
 "Untuk memasangnya secara otomatis dari tempat penyimpanan tetap Anda saat "
 "memulai Tails."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr "Bahasa & Wilayah"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr "Pengaturan Default"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
-msgstr "_Penyimpanan Menetap Terenkripsi"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
 msgid "Show Passphrase"
 msgstr "Tampilkan Kata Kunci"
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
-msgstr "Masukkan kata kunci untuk memprotect volume persistent"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "Frasa sandi:"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
+msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+#, fuzzy
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 "Penyimpanan Menetap Anda tidak terkunci. Memulai kembali Tails untuk "
 "menguncinya lagi."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr "_Pengaturan Tambahan"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr "Tambah pengaturan tambahan"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
@@ -2460,11 +2471,11 @@ msgstr ""
 "Pengaturan default aman untuk banyak situasi. Untuk menambah pengaturan "
 "tambahan, tekan tombol \"+\" di bawah."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 msgid "Shutdown"
 msgstr "Matikan"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr "_Mulai Tails"
 
@@ -2571,11 +2582,21 @@ msgstr "Membuat Penyimpanan Persisten"
 msgid "System Settings"
 msgstr "Pengaturan Default"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+#, fuzzy
+msgid "Welcome Screen"
+msgstr "Layar Selamat Datang"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 #, fuzzy
 msgid "Activate Welcome Screen"
 msgstr "Layar Selamat Datang"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+#, fuzzy
+msgid "Printers"
+msgstr "Pencetak"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 #, fuzzy
 msgid "Activate Printers"
@@ -2612,6 +2633,11 @@ msgstr "Tor Bridge"
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "Markah Peramban"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 #, fuzzy
 msgid "Activate Tor Browser Bookmarks"
@@ -2846,11 +2872,11 @@ msgstr "_Buka kunci"
 msgid "Detach this volume"
 msgstr "Lepaskan volume ini"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr "Sasaran stik USB:"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr "Pasang ulang (hapus semua data)"
 
@@ -3428,6 +3454,12 @@ msgstr "Desember"
 msgid "Clock"
 msgstr "Jam"
 
+#~ msgid "Encrypted _Persistent Storage"
+#~ msgstr "_Penyimpanan Menetap Terenkripsi"
+
+#~ msgid "Enter your passphrase to unlock the persistent storage"
+#~ msgstr "Masukkan kata kunci untuk memprotect volume persistent"
+
 #, python-format
 #~ msgid ""
 #~ "<h1>Help us fix your bug!</h1>\n"
diff --git a/po/is.po b/po/is.po
index cf2ab4c0648..1763257dd92 100644
--- a/po/is.po
+++ b/po/is.po
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
 "PO-Revision-Date: 2023-01-26 22:48+0000\n"
 "Last-Translator: emma peel <emma.peel@riseup.net>\n"
 "Language-Team: Icelandic <https://hosted.weblate.org/projects/tor/tails-gui/"
@@ -509,9 +509,9 @@ msgid "Additional Settings"
 msgstr "Aukastillingar"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "Hætta við"
@@ -582,12 +582,12 @@ msgstr "Slökkt"
 msgid "Off (default)"
 msgstr "Slökkt (sjálfgefið)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
 #, fuzzy
-msgid "Persistent Storage Not Unlocked"
+msgid "Persistent Storage Still Locked"
 msgstr "Varanleg gagnageymsla"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 #, fuzzy
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
@@ -595,17 +595,17 @@ msgstr ""
 "Viltu í alvörunni endurræsa Tails núna?\\n\\nAllt sem þú ert að vinna við "
 "mun tapast."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
 #, fuzzy
-msgid "Continue Without Persistent Storage"
+msgid "Start Without Persistent Storage"
 msgstr "Útbúa varanlega gagnageymslu"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 #, fuzzy
 msgid "Don't _Create Persistent Storage"
 msgstr "Út_búa varanlega gagnageymslu"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 msgid "_Create Persistent Storage"
 msgstr "Út_búa varanlega gagnageymslu"
@@ -625,7 +625,6 @@ msgstr "Aflæsi…"
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr "Aflæsa"
 
@@ -854,7 +853,7 @@ msgstr "Drifið er hringtengt (loopback), sleppi endurstillingu á MBR-ræsigeir
 msgid "Synchronizing data on disk..."
 msgstr "Samræmi gögn á diski..."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
@@ -862,63 +861,63 @@ msgstr ""
 "Villa: gat ekki sett merkingu eða fengið UUID-auðkenni tækisins. Get ekki "
 "haldið áfram."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr "Uppsetningu lokið! (%s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr "Uppsetning Tails mistókst!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr "Tails-uppsetningarforrit"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr "Klóna núverandi Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr "Nota Tails ISO-diskmynd sem sótt var á netinu"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr "Uppfæra"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr "Leiðbeiningar fyrir handvirka uppfærslu"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr "Setja upp"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr "Leiðbeiningar fyrir uppsetningu"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(size)s %(vendor)s %(model)s tæki (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr "Engin ISO-diskmynd valin"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr "Veldu Tails ISO-diskmynd."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -929,7 +928,7 @@ msgstr ""
 "til að vera útskiptanlegur, Tails mun því ekki geta ræst upp af honum. "
 "Prófaðu að nota einhverja aðra tegund minnislykils."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
@@ -938,7 +937,7 @@ msgstr ""
 "Tækið \"%(pretty_name)s\" er of lítið til að hægt sé að setja Tails upp á "
 "því (að minnsta kosti %(size)s GB eru nauðsynleg)."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -949,35 +948,35 @@ msgstr ""
 "að nota Tails ISO diskmynd sem þú nærð í hér:\n"
 "%(dl_url)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr "Ekkert hentugt tæki fannst til uppsetningar á Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr ""
 "Tengdu USB-minnislykil eða SD-minniskort með að minnsta kosti %0.1f GB "
 "gagnarýmd."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr "Villa kom upp við að setja upp Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr "Uppsetningu lokið!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr "Tókst ekki að tengja tæki"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(parent_size)s %(vendor)s %(model)s tæki (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
@@ -987,11 +986,11 @@ msgstr ""
 "\n"
 "Varanlega gagnageymslan á þessum USB-lykli mun tapast."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr "Eyða varanlegri gagnageymslu og setja upp aftur"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
@@ -1001,20 +1000,20 @@ msgstr ""
 "\n"
 "Öll gögn á þessum USB-lykli munu tapast."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr "Eyða öllum gögnum og setja upp"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr "%(description)s%(delete_message)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr "Staðfestu USB-minnislykilinn sem á að skrifa á"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
@@ -1022,7 +1021,7 @@ msgstr ""
 "Skráin sem þú valdir er ekki lesanleg. Lagaðu heimildir hennar eða veldu "
 "aðra skrá."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
@@ -1030,7 +1029,7 @@ msgstr ""
 "Gat ekki notað völdu skrána. Það gæti gengið betur ef þú færir ISO-skrána á "
 "rót drifsins (dæmi: C:\\)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr "%(filename)s valið"
@@ -1118,7 +1117,7 @@ msgstr "su er óvirkt. Notaðu frekar sudo."
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1184,7 +1183,7 @@ msgstr "ekki tiltækt"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -1193,7 +1192,7 @@ msgstr ""
 "{details} Athugaðu listann yfir viðbótarhugbúnaðinn eða lestu kerfisannálana "
 "svo þú getir skilið betur hvað er í gangi."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
@@ -1201,56 +1200,56 @@ msgstr ""
 "Athugaðu listann yfir viðbótarhugbúnaðinn eða lestu kerfisannálana svo þú "
 "getir skilið betur hvað er í gangi."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr "Birta atvikaskrá"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "Stilla"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} og {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ", "
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "Bæta {packages} í viðbótarhugbúnaðinn þinn?"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 "Til að setja þetta sjálfvirkt upp úr varanlegri gagnageymslu við ræsingu "
 "Tails."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr "Setja upp í hvert skipti"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr "Setja upp aðeins einu sinni"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr "Stillingar á viðbótarhugbúnaðnum þínum mistókst."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -1258,67 +1257,67 @@ msgstr ""
 "Til að setja þetta sjálfvirkt upp við ræsingu Tails, geturðu útbúið úr "
 "varanlega gagnageymslu og virkjað eiginleikann <b>Viðbótarhugbúnaður</b>."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr "Útbúa varanlega gagnageymslu"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr "Mistókst að útbúa varanlega gagnageymslu."
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr "Þú getur sett upp {packages} sjálfvirkt við ræsingu Tails"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr "Til að gera þetta, þarftu að keyra Tails af USB-minnislykli."
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "Fjarlægja {packages} úr viðbótarhugbúnaðnum þínum?"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr "Þetta mun hætta að setja upp {packages} sjálfvirkt."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "Fjarlægja"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr "Set sjálfvirkt upp viðbótarhugbúnað úr varanlegri gagnageymslu..."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr "Þetta gæti tekið nokkrar mínútur."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr "Uppsetning á viðbótarhugbúnaðnum þínum mistókst"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr "Það tókst að setja upp viðbótarhugbúnað"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr "Athugun á uppfærslum á viðbótarhugbúnaðnum þínum mistókst"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -1326,11 +1325,11 @@ msgstr ""
 "Athugaðu nettenginguna þína, endurræstu Tails eða lestu kerfisannálana svo "
 "þú getir skilið betur hvað er í gangi."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr "Uppfærsla á viðbótarhugbúnaðnum þínum mistókst"
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "Hjálparskjöl"
 
@@ -1493,19 +1492,19 @@ msgstr ""
 "Skoðaðu {manual_upgrade_url}"
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr "villa:"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr "Aðvörun: sýndarvél fannst!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr "Aðvörun: ófrjáls sýndarvél fannst!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1517,11 +1516,11 @@ msgstr ""
 "treysta frjálsum og opnum hugbúnaði, bæði hvað varðar hýsilstýrikerfið og "
 "sýndarvélarhugbúnaðinn."
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr "Ekki birta þetta aftur"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr "Fræðast frekar"
 
@@ -1876,11 +1875,11 @@ msgstr ""
 msgid "Choose File Container"
 msgstr "Veldu skráagám"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr "Óöruggi vafrinn var gerður óvirkur á upphafsskjánum.\\n\\n"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
@@ -1888,21 +1887,21 @@ msgstr ""
 "Til að nota óörugga netvafrann skaltu endurræsa Tails og ganga úr skugga um "
 "að óöruggi vafrinn sé virkjaður í viðbótarstillingum upphafsskjásins."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr "Til að nota óörugga netvafrann skaltu endurræsa Tails."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr "Endu_rræsa"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 msgid "_Cancel"
 msgstr "_Hætta við"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
@@ -1910,27 +1909,27 @@ msgstr ""
 "Viltu í alvörunni endurræsa Tails núna?\\n\\nAllt sem þú ert að vinna við "
 "mun tapast."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr "Endurræsa núna"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr "Mistókst að endurræsa kerfið."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr "Ræsi óörugga netvafrann..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr "Þetta getur tekið dálítinn tíma, sýndu smá þolinmæði."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr "Stöðva óörugga netvafrann..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
@@ -1938,13 +1937,13 @@ msgstr ""
 "Þetta getur tekið smá tíma, ekki er víst að hægt sé að ræsa óöruggan vafra "
 "fyrr enn því er lokið."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr "Óöruggur vafri"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
@@ -1952,15 +1951,15 @@ msgstr ""
 "Annað tilvik af óörugga netvafranum er í gangi eða er verið að hreinsa upp "
 "eftir slíkt. Prófaðu aftur eftir smá stund."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr "Mistókst að setja upp chroot."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr "Mistókst að stilla vafra."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
@@ -1969,7 +1968,7 @@ msgstr ""
 "Þú ert ekki enn með tengingu við staðarnet.\\n\\nTil að geta ræst óörugga "
 "vafrann, þarftu fyrst að tengjast við Wi-Fi, kapal eða farsímanetkerfi."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr "Mistókst að ræsa vafra."
 
@@ -2146,6 +2145,7 @@ msgid "Tails documentation"
 msgstr "Hjálparskjöl Tails"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 msgid "Persistent Storage"
 msgstr "Varanleg gagnageymsla"
@@ -2175,6 +2175,19 @@ msgstr "Lærðu hvernig á að nota Tails"
 msgid "Learn more about Tails"
 msgstr "Læra meira um Tails"
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "Varanleg gagnageymsla"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+#, fuzzy
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+"Kveiktu á eiginleikum varanlegu gagnageymslunnar fyrir þau gögn sem þú vilt "
+"vista á USB-lykil Tails."
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr "Setja upp, klóna eða uppfæra Tails"
@@ -2246,7 +2259,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr "Lykilorð kerfisstjórnunar"
 
@@ -2273,7 +2286,7 @@ msgid "Disable"
 msgstr "Gera óvirkt"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr "Nafnleysi MAC-vistfangs"
 
@@ -2298,7 +2311,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr "Ekki gera MAC-vistföng nafnlaus"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr "Stillingar netkerfis"
 
@@ -2382,11 +2395,11 @@ msgstr "Stillingum var hlaðið inn úr varanlegri gagnageymslu."
 msgid "Welcome to Tails!"
 msgstr "Velkomin í Tails!"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 msgid "_Persistent Storage"
 msgstr "_Varanleg gagnageymsla"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
@@ -2396,49 +2409,52 @@ msgstr ""
 "gagnageymslu á USB-minnislykli Tails; skjölin þín, bókamerki vafrans, Wi-Fi "
 "lykilorð og ýmislegt fleira."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr ""
 "Þú munt setja upp og stilla varanlegu gagnageymsluna þína eftir að Tails er "
 "ræst."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr "Tungumál og landsvæði"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr "Sjálfgefnar stillingar"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
-msgstr "Dulrituð varanleg _gagnageymsla"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
 msgid "Show Passphrase"
 msgstr "Birta lykilsetningu"
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
-msgstr "Settu inn lykilfrasann til að aflæsa varanlegu gagnageymslunni"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "Lykilfrasi:"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+#, fuzzy
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 "Varanlega gagnageymslan þín er ólæst. Endurræstu Tails til að læsa henni "
 "aftur."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr "Viðbót_arstillingar"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr "Bæta við aukastillingum"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
@@ -2446,11 +2462,11 @@ msgstr ""
 "Sjálfgefnar stillingar eru í flestum tilfellum nógu öruggar. Til að bæta við "
 "sérsniðnum stillingum, ýttu á \"+\" hnappinn hér fyrir neðan."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 msgid "Shutdown"
 msgstr "Slökkva"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr "Ræ_sa Tails"
 
@@ -2557,10 +2573,20 @@ msgstr "Virkja varanlega möppu"
 msgid "System Settings"
 msgstr "Kerfisstillingar"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+#, fuzzy
+msgid "Welcome Screen"
+msgstr "Virkja upphafsskjá"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 msgid "Activate Welcome Screen"
 msgstr "Virkja upphafsskjá"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+#, fuzzy
+msgid "Printers"
+msgstr "Virkja prentara"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 msgid "Activate Printers"
 msgstr "Virkja prentara"
@@ -2593,6 +2619,11 @@ msgstr "Virkja Tor-brú"
 msgid "Applications"
 msgstr "Forrit"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "Virkja bókamerki Tor-vafrans"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 msgid "Activate Tor Browser Bookmarks"
 msgstr "Virkja bókamerki Tor-vafrans"
@@ -2841,11 +2872,11 @@ msgstr "_Aflæsa"
 msgid "Detach this volume"
 msgstr "Aftengja þessa gagnageymslu"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr "USB-minnislykill til að skrifa á:"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr "Setja upp aftur (eyða öllum gögnum)"
 
@@ -3412,6 +3443,12 @@ msgstr "desember"
 msgid "Clock"
 msgstr "Klukka"
 
+#~ msgid "Encrypted _Persistent Storage"
+#~ msgstr "Dulrituð varanleg _gagnageymsla"
+
+#~ msgid "Enter your passphrase to unlock the persistent storage"
+#~ msgstr "Settu inn lykilfrasann til að aflæsa varanlegu gagnageymslunni"
+
 #, python-format
 #~ msgid ""
 #~ "<h1>Help us fix your bug!</h1>\n"
diff --git a/po/it.po b/po/it.po
index 6d1dd7e7535..ad97505a43f 100644
--- a/po/it.po
+++ b/po/it.po
@@ -39,7 +39,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
 "PO-Revision-Date: 2023-01-26 19:00+0000\n"
 "Last-Translator: emma peel <emma.peel@riseup.net>\n"
 "Language-Team: Italian <https://hosted.weblate.org/projects/tor/tails-gui/it/"
@@ -553,9 +553,9 @@ msgid "Additional Settings"
 msgstr "Impostazioni aggiuntive"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "Annulla"
@@ -629,29 +629,29 @@ msgstr "Off"
 msgid "Off (default)"
 msgstr "Off (predefinito)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
 #, fuzzy
-msgid "Persistent Storage Not Unlocked"
+msgid "Persistent Storage Still Locked"
 msgstr "Crea archiviazione persistente"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 #, fuzzy
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
 msgstr ""
 "Vuoi veramente riavviare Tails adesso?\\n\\nIl lavoro attuale verrà perso."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
 #, fuzzy
-msgid "Continue Without Persistent Storage"
+msgid "Start Without Persistent Storage"
 msgstr "Crea archiviazione persistente"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 #, fuzzy
 msgid "Don't _Create Persistent Storage"
 msgstr "Crea archiviazione persistente"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 #, fuzzy
 msgid "_Create Persistent Storage"
@@ -674,7 +674,6 @@ msgstr "Sbloccaggio in corso…"
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr "Sblocca"
 
@@ -906,7 +905,7 @@ msgstr "Il drive è una unità di loopback, operazione di reset del MBR ignorata
 msgid "Synchronizing data on disk..."
 msgstr "Sincronizzazione dati sul disco..."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
@@ -914,63 +913,63 @@ msgstr ""
 "Errore: impossibile impostare l'etichetta o ottenere l'UUID del dispositivo. "
 "Impossibile continuare."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr "Installazione completata! (%s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr "Installazione di Tails fallita!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr "Installer di Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr "Clona l'attuale Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr "Usa un'immagine ISO di Tails scaricata"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr "Aggiorna"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr "Istruzioni aggiornamento manuale"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr "Installa"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr "Istruzioni di installazione"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "Dispositivo %(size)s %(vendor)s %(model)s (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr "Nessuna immagine ISO selezionata"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr "Seleziona un'immagine ISO di Tails."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -981,7 +980,7 @@ msgstr ""
 "produttore e Tails non potrà avviarsi. Prova ad installarlo in un modello "
 "differente."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
@@ -990,7 +989,7 @@ msgstr ""
 "Il dispositivo \"%(pretty_name)s\" è troppo piccolo per installarci Tails "
 "(almeno %(size)s GB necessari)."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -1001,33 +1000,33 @@ msgstr ""
 "usare un'immagine ISO di Tails scaricata:\n"
 "%(dl_url)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr "Nessun dispositivo adatto all'installazione di Tails trovato"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr "Inserisci una chiave USB o una scheda SD di almeno %0.1f GB."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr "Riscontrato un errore durante l'installazione di Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr "Installazione completata!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr "Impossibile montare il dispositivo"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(parent_size)s %(vendor)s %(model)s dispositivo (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
@@ -1037,11 +1036,11 @@ msgstr ""
 "\n"
 "L'archiviazione persistente in questa penna USB verrà persa."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr "Elimina archiviazione persistente e reinstalla"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
@@ -1051,20 +1050,20 @@ msgstr ""
 "\n"
 "Tutti i dati in questa penna USB verranno persi."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr "Elimina tutti i dati e installa"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr "%(description)s%(delete_message)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr "Conferma la penna USB di destinazione"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
@@ -1072,7 +1071,7 @@ msgstr ""
 "Il file selezionato è illeggibile. Si prega di modificarne i permessi o "
 "selezionare un altro file."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
@@ -1080,7 +1079,7 @@ msgstr ""
 "Impossibile aprire il file selezionato. Provare a spostare il file ISO sulla "
 "root del disco (ie: C:\\)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr "%(filename)s selezionato/i"
@@ -1168,7 +1167,7 @@ msgstr "su è disattivato. Per favore usa sudo."
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1234,7 +1233,7 @@ msgstr "non disponibile"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -1243,7 +1242,7 @@ msgstr ""
 "{details} Controlla il tuo elenco di software aggiuntivi o leggi il log di "
 "sistema per scoprire il problema."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
@@ -1251,56 +1250,56 @@ msgstr ""
 "Controlla il tuo elenco di software aggiuntivi o leggi il log di sistema per "
 "scoprire il problema."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr "Mostra log"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "Configura"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} e {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ", "
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "Aggiungere {packages} ai tuoi software aggiuntivi?"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 "Per installarlo automaticamente dalla tua archiviazione persistente "
 "all'avvio di Tails."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr "Installa ogni volta"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr "Installa solo una volta"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr "La configurazione del tuo software aggiuntivo è fallita."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -1309,67 +1308,67 @@ msgstr ""
 "un'archiviazione persistente e attivare la funzione <b>Software aggiuntivo</"
 "b>."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr "Crea archiviazione persistente"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr "Creazione dell'archiviazione persistente fallita."
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr "Potresti installare {packages} automaticamente all'avvio di Tails"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr "Per farlo, devi eseguire Tails da una penna USB."
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "Rimuovere {packages} dai software aggiuntivi?"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr "Ciò eviterà l'installazione automatica di {packages}."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "Rimuovi"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr "Installazione del software aggiuntivo dall'archivio persistente..."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr "Questa operazione può richiedere diversi minuti."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr "L'installazione del software aggiuntivo è fallita"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr "Software aggiuntivo installato con successo"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr "La verifica di aggiornamenti del software aggiuntivo è fallita"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -1377,11 +1376,11 @@ msgstr ""
 "Controlla la tua connessione di rete, riavvia Tails, o leggi il log di "
 "sistema per scoprire il problema."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr "L'aggiornamento del software aggiuntivo è fallito"
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "Documentazione"
 
@@ -1544,19 +1543,19 @@ msgstr ""
 "Vedi {manual_upgrade_url}"
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr "errore:"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr "Attenzione: macchina virtuale rilevata!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr "Attenzione: macchina virtuale non-free rilevata!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1568,11 +1567,11 @@ msgstr ""
 "considerato affidabile, sia per il sistema operativo host sia per il "
 "software di virtualizzazione."
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr "Non mostrare più"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr "Maggiori informazioni"
 
@@ -1928,60 +1927,60 @@ msgstr ""
 msgid "Choose File Container"
 msgstr "Scegli contenitore di file"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 #, fuzzy
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr "Disattiva il browser non sicuro (predefinito)"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr "_Riavvia"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 #, fuzzy
 msgid "_Cancel"
 msgstr "Annulla"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 msgstr ""
 "Vuoi veramente riavviare Tails adesso?\\n\\nIl lavoro attuale verrà perso."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr "Riavvia ora"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr "Riavvio del sistema fallito."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr "Avvio del browser non sicuro..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr "Questa operazione potrebbe richiedere del tempo."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr "Arresto del browser non sicuro..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
@@ -1989,13 +1988,13 @@ msgstr ""
 "Questa operazione potrebbe richiedere del tempo: non riavviare il browser "
 "non sicuro finchè non viene arrestato correttamente."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr "Browser non sicuro"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
@@ -2003,15 +2002,15 @@ msgstr ""
 "Un altro browser non sicuro è già in esecuzione, o sta venendo ripulito. "
 "Riprovare più tardi."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr "Configurazione chroot fallita."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr "Configurazione del browser fallita."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
@@ -2021,7 +2020,7 @@ msgstr ""
 "Browser Non Sicuro, devi prima connetterti ad un Wi-Fi, cavo di rete, o rete "
 "mobile."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr "Esecuzione del browser fallita."
 
@@ -2197,6 +2196,7 @@ msgid "Tails documentation"
 msgstr "Documentazione di Tails"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 #, fuzzy
 msgid "Persistent Storage"
@@ -2227,6 +2227,16 @@ msgstr "Impara a usare Tails"
 msgid "Learn more about Tails"
 msgstr "Maggiori informazioni su Tails"
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "Crea archiviazione persistente"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr "Installa, clona, aggiorna Tails"
@@ -2299,7 +2309,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr "Password di amministrazione"
 
@@ -2326,7 +2336,7 @@ msgid "Disable"
 msgstr "Disabilita"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr "Anonimizzazione del MAC Address"
 
@@ -2352,7 +2362,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr "Non anonimizzare i MAC address"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr "Configurazione di rete"
 
@@ -2433,19 +2443,19 @@ msgstr "Le impostazioni sono state caricate dall'archivio persistente."
 msgid "Welcome to Tails!"
 msgstr "Benvenuto in Tails!"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 #, fuzzy
 msgid "_Persistent Storage"
 msgstr "Crea archiviazione persistente"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 #, fuzzy
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
@@ -2453,40 +2463,43 @@ msgstr ""
 "Per installarlo automaticamente dalla tua archiviazione persistente "
 "all'avvio di Tails."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr "Lingua & Regione"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr "Impostazioni predefinite"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
-msgstr "_Volume persistente cifrato"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
 msgid "Show Passphrase"
 msgstr "Mostra passphrase"
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
-msgstr "Inserisci la tua passphrase per sbloccare il volume persistente"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "Frase segreta:"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
+msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+#, fuzzy
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr "Il tuo volume persistente è sbloccato. Riavvia Tails per ribloccarlo."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr "_Impostazioni aggiuntive"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr "Aggiungi un'impostazione aggiuntiva"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
@@ -2494,11 +2507,11 @@ msgstr ""
 "Le impostazioni predefinite vanno bene nella maggior parte dei casi. Per "
 "aggiungere un'impostazione personale, premi il pulsante \"+\" sotto."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 msgid "Shutdown"
 msgstr "Arresto"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr "_Avvia Tails"
 
@@ -2605,11 +2618,21 @@ msgstr "Crea archiviazione persistente"
 msgid "System Settings"
 msgstr "Impostazioni predefinite"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+#, fuzzy
+msgid "Welcome Screen"
+msgstr "Schermata di benvenuto"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 #, fuzzy
 msgid "Activate Welcome Screen"
 msgstr "Schermata di benvenuto"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+#, fuzzy
+msgid "Printers"
+msgstr "Stampanti"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 #, fuzzy
 msgid "Activate Printers"
@@ -2645,6 +2668,11 @@ msgstr "Bridge di Tor"
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "Segnalibri del browser"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 #, fuzzy
 msgid "Activate Tor Browser Bookmarks"
@@ -2880,11 +2908,11 @@ msgstr "_Sblocca"
 msgid "Detach this volume"
 msgstr "Rimuovi questo volume"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr "Penna USB di destinazione:"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr "Reinstalla (elimina tutti i dati)"
 
@@ -3465,6 +3493,12 @@ msgstr "Dicembre"
 msgid "Clock"
 msgstr "Orologio"
 
+#~ msgid "Encrypted _Persistent Storage"
+#~ msgstr "_Volume persistente cifrato"
+
+#~ msgid "Enter your passphrase to unlock the persistent storage"
+#~ msgstr "Inserisci la tua passphrase per sbloccare il volume persistente"
+
 #, python-format
 #~ msgid ""
 #~ "<h1>Help us fix your bug!</h1>\n"
diff --git a/po/ja.po b/po/ja.po
index a5ee5e1407f..be221556df7 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -33,9 +33,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
-"PO-Revision-Date: 2023-02-11 10:42+0000\n"
-"Last-Translator: emma peel <emma.peel@riseup.net>\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
+"PO-Revision-Date: 2023-03-10 11:36+0000\n"
+"Last-Translator: isikawarento <Nippon2023secure@proton.me>\n"
 "Language-Team: Japanese <https://hosted.weblate.org/projects/tor/tails-gui/"
 "ja/>\n"
 "Language: ja\n"
@@ -43,7 +43,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Weblate 4.16-dev\n"
+"X-Generator: Weblate 4.16.2-dev\n"
 
 #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1
@@ -65,7 +65,7 @@ msgid ""
 "storage when starting Tails."
 msgstr ""
 "Tails を起動するときに、以下のソフトウェアは自動的に永続的ストレージからイン"
-"ストールされます。 "
+"ストールされます。"
 
 #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
@@ -203,12 +203,11 @@ msgid ""
 "again.\\n\\nIf the problem persists, go to file:///usr/share/doc/tails/"
 "website/doc/upgrade/error/check.en.html"
 msgstr ""
-"<b>署名キーの更新中にエラーが発生しました</b>\\n\\n\n"
-"<b>これにより、当社の Web サイトからアップグレードが利用可能かどうかを判断で"
-"きません。</b>\\n\\n\n"
-"ネットワーク接続を確認し、Tails を再起動してアップグレードを再試行してくださ"
-"い\\n\\n\n"
-"file:///usr/share/doc/tails/website/doc/upgrade/error/check.en.html"
+"<b>署名キーの更新中にエラーが発生しました。</b>\\n\\n<b>これにより、当社の "
+"Web サイトからアップグレードを利用できるかどうかを判断できません。</b>\\n\\n"
+"ネットワーク接続を確認して、Tails を再起動してください。 もう一度アップグレー"
+"ドしてみてください。\\n\\n問題が解決しない場合は、file:///usr/share/doc/"
+"tails/website/doc/upgrade/error/check.en.html にアクセスしてください"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:303
 msgid "Error while downloading the signing key"
@@ -232,7 +231,7 @@ msgid ""
 "If the problem persists, go to file:///usr/share/doc/tails/website/doc/"
 "upgrade/error/check.en.html"
 msgstr ""
-"<b>アップグレードが Tor のウェブサイトから入手可能か断定できませんでした。</"
+"<b>アップグレードが Tor のウェブサイトから入手可能か判断できませんでした。</"
 "b>\n"
 "\n"
 "ネットワーク接続を確認してから Tails を再起動して、もう一度アップグレードを試"
@@ -303,8 +302,8 @@ msgid ""
 "An error ocurred while detecting available upgrades.\n"
 "This should not happen. Please report a bug."
 msgstr ""
-"利用可能なアップグレードを見つけている間に問題が発生しました。通常は発生しな"
-"いエラーです。バグを報告してください。"
+"利用可能なアップグレードを見つけている間に問題が発生しました。\n"
+"通常は発生しないエラーです。バグを報告してください。"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:468
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:487
@@ -371,10 +370,19 @@ msgid ""
 "\n"
 "To learn how to do a manual upgrade, go to {manual_upgrade_url}"
 msgstr ""
+"<b>{name}の最新バージョンへの手動アップグレードを行う必要があります。</b>。\n"
+"\n"
+"この新バージョンの詳細については、{details_url}にアクセスしてください。\n"
+"\n"
+"この新しいバージョンへのTailsの自動アップグレードを行うことは不可能です:"
+"{explanation}。\n"
+"\n"
+"手動アップグレードの方法については、{manual_upgrade_url}にアクセスしてくださ"
+"い。"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:528
 msgid "New version available"
-msgstr "新しいバージョン利用可能です"
+msgstr "新しいバージョンが利用可能です"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:609
 msgid "Downloading upgrade"
@@ -417,7 +425,7 @@ msgstr "一時的ダウンロード用ディレクトリの作成中にエラー
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:740
 msgid "Failed to create temporary download directory"
-msgstr "一時的ダウンロードディレクトリを作成できませんでした。"
+msgstr "ダウンロード用一時ディレクトリの作成に失敗しました"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:752
 msgid ""
@@ -528,9 +536,9 @@ msgid "Additional Settings"
 msgstr "追加の設定"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "キャンセル"
@@ -578,14 +586,12 @@ msgid "_Unsafe Browser"
 msgstr "安全でないブラウザー (_U)"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:347
-#, fuzzy
 msgid "Enabled (default)"
 msgstr "無効 (既定)"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:349
-#, fuzzy
 msgid "Disabled"
-msgstr "無効する"
+msgstr "無効"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:400
 msgid "On (default)"
@@ -603,52 +609,45 @@ msgstr "オフ"
 msgid "Off (default)"
 msgstr "オフ (既定)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
-#, fuzzy
-msgid "Persistent Storage Not Unlocked"
-msgstr "永続的ストレージの作成"
-
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
 #, fuzzy
+msgid "Persistent Storage Still Locked"
+msgstr "ロック解除されていない永続ストレージ"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
-msgstr ""
-"今すぐ Tails を再起動してよろしいですか?\\n\\nすべての作業は失われます。"
+msgstr "永続ストレージのロックを解除せずに Tails を開始してもよろしいですか?"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
 #, fuzzy
-msgid "Continue Without Persistent Storage"
-msgstr "永続的ストレージの作成"
+msgid "Start Without Persistent Storage"
+msgstr "永続ストレージを使用せずに継続する"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
-#, fuzzy
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 msgid "Don't _Create Persistent Storage"
-msgstr "永続的ストレージの作成"
+msgstr "永続的ストレージを作成_しない"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
-#, fuzzy
 msgid "_Create Persistent Storage"
-msgstr "永続的ストレージの作成"
+msgstr "_永続ストレージの作成"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:83
-#, fuzzy
 msgid "Error unlocking Persistent Storage: {}"
-msgstr "暗号化された永続的ストレージ (_P)"
+msgstr "暗号化された永続的ストレージ: {}"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:102
-#, fuzzy
 msgid "Error activating Persistent Storage: {}"
-msgstr "永続的ストレージの作成"
+msgstr "永続ストレージのアクティブ化エラー:{}"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:68
 msgid "Unlocking…"
-msgstr "ロック解除しています..."
+msgstr "ロック解除しています…"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr "ロック解除"
 
@@ -662,12 +661,16 @@ msgid ""
 "Failed to unlock the Persistent Storage. Please start Tails and send an "
 "error report."
 msgstr ""
+"永続ストレージのロックを解除できませんでした。 Tails を起動して、エラー レ"
+"ポートを送信してください。"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:122
 msgid ""
 "Failed to activate the Persistent Storage. Please start Tails and send an "
 "error report."
 msgstr ""
+"永続ストレージのアクティブ化に失敗しました。 Tails を起動して、エラー レポー"
+"トを送信してください。"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/region_settings.py:164
 msgid "_Language"
@@ -684,7 +687,7 @@ msgstr "キーボード配列 (_K)"
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:288
 #, python-format
 msgid "Unable to write on %(device)s, skipping."
-msgstr "%(device)sに書き込めません、スキップします"
+msgstr "%(device)sに書き込めません、スキップします。"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:332
 #, python-format
@@ -867,13 +870,13 @@ msgstr "%sのマスターブートレコードをリセット中"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:1144
 msgid "Drive is a loopback, skipping MBR reset"
-msgstr "ドライブがループバックです。MBRリセットをスキップします。"
+msgstr "ドライブがループバックです。MBRリセットをスキップします"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:1148
 msgid "Synchronizing data on disk..."
 msgstr "ディスク上のデータを同期化中..."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
@@ -881,63 +884,63 @@ msgstr ""
 "エラー: ファイルシステムのラベルを設定できないか、デバイスの UUID を取得でき"
 "ません。そのため処理を継続できません。"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr "インストールが完了しました! (%s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr "Tails のインストールに失敗しました!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr "Tails インストーラー"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr "現在の Tails を複製"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr "ダウンロードした Tails ISO イメージを使用"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr "アップグレード"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr "マニュアルアップグレード指示"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr "インストール"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr "インストール指示"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(size)s%(vendor)s%(model)sデバイス(%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr "ISO イメージが選択されていません"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr "Tails ISO イメージを選択してください。"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -948,7 +951,7 @@ msgstr ""
 "設定されたので、Tailsインストールは開始できません。USBメモリーの別モデルでイ"
 "ンストールして下さい。"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
@@ -957,7 +960,7 @@ msgstr ""
 "デバイス \"%(pretty_name)s\" は記憶領域が小さすぎるため、 Tails をインストー"
 "ルすることができません(少なくとも %(size)s GB 必要です)。"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -968,33 +971,33 @@ msgstr ""
 "ISO イメージをダウンロードして使用する必要があります:\n"
 "%(dl_url)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr "Talis を設置するのに適した装置が見つかりませんでした"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr "%0.1f GB 以上の USB メモリーや SD カードを差し込んでください。"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
-msgstr "Tails のインストール中にエラーが発生しました。"
+msgstr "Tails のインストール中にエラーが発生しました"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr "インストールが完了しました!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr "デバイスをマウントできません"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(parent_size)s%(vendor)s%(model)sデバイス(%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
@@ -1004,11 +1007,11 @@ msgstr ""
 "\n"
 "この USB メモリにある永続的ストレージは失われます。"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr "永続的なストレージを削除して再インストール"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
@@ -1018,20 +1021,20 @@ msgstr ""
 "\n"
 "USB スティックからすべてのデータ失われます。"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr "すべてのデータを削除してインストール"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr "%(description)s%(delete_message)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr "目標USBスティックを確認する"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
@@ -1039,15 +1042,15 @@ msgstr ""
 "選択されたファイルは読み込めません。パーミッションを修正するか、ほかのファイ"
 "ルを選択してください。"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
 msgstr ""
-"選択されたファイルを使用できません。ISO をデバイスのルート(例えば C:\\) に移"
-"動するとさらに上手くいくかもしれません。"
+"選択したファイルは使用できません。 ISO をドライブのルート (例: C:\\) に移動す"
+"ると、うまくいく可能性があります。"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr "%(filename)sが選択されました"
@@ -1135,7 +1138,7 @@ msgstr "su は無効になっています。代わりに sudo を使ってくだ
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1201,7 +1204,7 @@ msgstr "利用不可"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -1210,7 +1213,7 @@ msgstr ""
 "{details} 追加ソフトウェアのリストを確認して、またはシステムログを参照して、"
 "より問題を理解して下さい。"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
@@ -1218,54 +1221,54 @@ msgstr ""
 "追加ソフトウェアのリストを確認して、またはシステムログを参照して、より問題を"
 "理解して下さい。"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr "ログの表示"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "設定"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} と {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ", "
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "追加したソフトウェアに {packages} を加えますか?"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr "Tails を起動する時に、永続的ストレージから自動的にインストールする。"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr "毎回インストールする"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr "1回だけインストールする"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr "追加ソフトウェアの設定に失敗しました。"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -1273,79 +1276,79 @@ msgstr ""
 "Tails を起動する時に自動的にインストールするには、永続的ストレージを作成して"
 "<b>追加ソフトウェア</b>の機能を有効できます。"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
-msgstr "永続的ストレージの作成"
+msgstr "永続ストレージの作成"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
-msgstr "永続的ストレージの作成に失敗しました。"
+msgstr "永続ストレージの作成に失敗しました。"
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
-msgstr "Tails を起動する時に {packages} を自動的にインストールできます。"
+msgstr "Tails を起動する時に {packages} を自動的にインストールできます"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr "そのためには、USB スティックから Tails を実行する必要があります。"
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "追加したソフトウェアから {packages} を外しますか?"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr "これは {packages} の自動的インストールを停止します。"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "解除"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
-msgstr "永続的ストレージから追加ソフトウェアをインストール中..."
+msgstr "永続ストレージから追加ソフトウェアをインストール中..."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr "これは数分かかります。"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr "追加ソフトウェアのインストールに失敗しました"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
-msgstr "追加ソフトウェアが正常にインストールされました。"
+msgstr "追加ソフトウェアが正常にインストールされました"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
-msgstr "追加ソフトウェア更新のチェックは失敗しました。"
+msgstr "追加ソフトのバージョンアップのチェックに失敗しました"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
 msgstr ""
-"ネットワーク接続をチェックして、Tails を再起動して、あるいはシステムログを参"
-"照してより問題を理解して下さい。 "
+"問題を理解するには、ネットワーク接続を確認するか、Tails を再起動するか、シス"
+"テム ログを読んでください。"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
-msgstr "追加ソフトウェアの更新は失敗しました。"
+msgstr "追加ソフトウェアのアップグレードに失敗しました"
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "ドキュメント"
 
@@ -1356,8 +1359,8 @@ msgid ""
 "Remove {package} from your additional software? This will stop installing "
 "the package automatically."
 msgstr ""
-" 追加したソフトウェアから {package} を外しますか?これはパッケージの自動的イ"
-"ンストールを停止します。"
+"追加したソフトウェアから {package} を外しますか?これはパッケージの自動的イン"
+"ストールを停止します。"
 
 #. Translators: Don't translate {pkg}, it's a placeholder and will be replaced.
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:106
@@ -1495,32 +1498,32 @@ msgid ""
 "Or do a manual upgrade.\n"
 "See {manual_upgrade_url}"
 msgstr ""
-"<b>アップグレードの確認に十分なメモリが利用できません。</b>\n"
+"<b>アップグレードをチェックするために使用できるメモリが不足しています</b>。\n"
 "\n"
-"このシステムが Tails の動作する要件を満たしているか確認してください。\n"
-"See file:///usr/share/doc/tails/website/doc/about/requirements.en.html\n"
-" をご覧ください。\n"
+"このシステムがTailsを実行するための要件を満たしていることを確認してくださ"
+"い。\n"
+"file:///usr/share/doc/tails/website/doc/about/requirements.ja.htmlを参照して"
+"ください。\n"
 "\n"
-"Tails を再起動してから、もう一度アップグレードを確認してください。\n"
+"Tailsを再起動し、再度アップグレードを確認してみてください。\n"
 "\n"
-"または、手動でアップグレードを行ってください。\n"
-"{manual_upgrade_url} \n"
-"をご覧ください。"
+"または、手動アップグレードを行ってください。\n"
+"{manual_upgrade_url}を参照してください。"
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr "エラー:"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr "警告: 仮想マシンを検出しました!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr "警告:フリーソフトではない仮想マシンを検出!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1531,11 +1534,11 @@ msgstr ""
 "いることを監視できます。ホストオペレーティングシステムと仮想化ソフトウェアに"
 "は、フリーソフトのみが信頼されます。"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr "今後表示しない"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr "詳細情報"
 
@@ -1549,22 +1552,20 @@ msgid "_Use a bridge that you already know"
 msgstr "既知のブリッジを使用 (_U)"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:242
-#, fuzzy
 msgid ""
 "To save your bridge, <a href=\"doc/persistent_storage\">unlock your "
 "Persistent Storage</a>."
 msgstr ""
 "ブリッジを保存するには、<a href=\"doc/first_steps/persistence\">永続的スト"
-"レージのロックを解除</a>します。"
+"レージのロックを解除</a>してください。"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:249
-#, fuzzy
 msgid ""
 "To save your bridge, <a href=\"doc/persistent_storage\">create a Persistent "
 "Storage</a> on your Tails USB stick."
 msgstr ""
-"ブリッジを保存するには、Tails USB ステックに<a href=\"doc/first_steps/"
-"persistence\">永続的なストレージを作成</a>します。"
+"ブリッジを保存するには、Tails USB スティックに<a href=\"doc/"
+"persistent_storage\">永続ストレージを作成</a>してください。"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:269
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:773
@@ -1585,14 +1586,18 @@ msgstr "永続的ストレージの構成に失敗しました"
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:385
 msgid "Failed to detect a webcam. Maybe your webcam is too old."
 msgstr ""
+"ウェブカメラの検出に失敗しました。ウェブカメラが古すぎるのかもしれません。"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:394
 msgid "Failed to scan QR code. Try with more light or closer to the camera."
 msgstr ""
+"QR コードのスキャンに失敗しました。もっと明るくするか、カメラに近づけて試して"
+"みてください。"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:401
 msgid "Invalid QR code. Try sending another email and scanning again."
 msgstr ""
+"無効なQRコードです。別のメールを送信して、再度スキャンしてみてください。"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:451
 msgid "Synchronizing the system's clock…"
@@ -1600,12 +1605,12 @@ msgstr "システム時計を同期しています…"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:500
 msgid "Connecting to Tor without bridges…"
-msgstr "ブリッジなしで Tor に接続しています..."
+msgstr "ブリッジなしで Tor に接続しています…"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:507
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:531
 msgid "Connecting to Tor with default bridges…"
-msgstr "標準ブリッジを使って Tor に接続しています..."
+msgstr "デフォルトのブリッジを使って Tor に接続しています…"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:514
 msgid "Connecting to Tor with a custom bridge…"
@@ -1626,10 +1631,10 @@ msgid "You can now browse the Internet anonymously and uncensored."
 msgstr "匿名かつ検閲されていないインターネットを閲覧することができます。"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:703
-#, fuzzy
 msgid "This local network seems to be blocking access to Tor."
 msgstr ""
-"あなたのローカル ネットワークは Tor にアクセスすることをブロックしています。"
+"あなたのローカル ネットワークは Tor にアクセスすることをブロックしているよう"
+"です。"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:776
 msgid "Bridge address malformed"
@@ -1642,7 +1647,7 @@ msgstr "Tor を使用していることを隠したい場合はブリッジを
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1011
 #, python-brace-format
 msgid "Scanned {bridge_type} bridge: <b>{bridge_info}</b>."
-msgstr ""
+msgstr "スキャンされた {bridge_type} ブリッジ: <b>{bridge_info}</b>。"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1102
 msgid "Are you sure you want to lose progress?"
@@ -1663,15 +1668,15 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1112
 msgid "Close and Lose Progress"
-msgstr ""
+msgstr "終了して経過を削除する"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1113
 msgid "Wait"
-msgstr ""
+msgstr "待つ"
 
 #: config/chroot_local-includes/usr/local/bin/thunderbird:41
 msgid "You need to migrate your OpenPGP keys"
-msgstr "OpenPGP のキーを退避させる必要があります。"
+msgstr "OpenPGPの鍵を移行する必要があります"
 
 #: config/chroot_local-includes/usr/local/bin/thunderbird:43
 msgid ""
@@ -1889,59 +1894,60 @@ msgstr ""
 msgid "Choose File Container"
 msgstr "ファイルコンテナーを選択"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
-msgstr ""
+msgstr "ようこそ画面で安全でないブラウザを無効にしました。\\n\\n"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
+"Unsafe Browser を使用するには、Tails を再起動し、ようこそ画面の追加設定で "
+"Unsafe Browser が有効になっていることを確認します。"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
-#, fuzzy
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 msgid "To use the Unsafe Browser, restart Tails."
-msgstr "安全でないブラウザーを無効化 (デフォルト)"
+msgstr "Unsafe Browserを使用するには、Tailsを再起動してください。"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr "再起動 (_R)"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 msgid "_Cancel"
 msgstr "キャンセル(_C)"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 msgstr ""
 "今すぐ Tails を再起動してよろしいですか?\\n\\nすべての作業は失われます。"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr "今すぐ再起動"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr "システムの再起動に失敗しました。"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr "安全でないブラウザーを起動中..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr "しばらくかかる場合があるので、お待ちください。"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr "安全でないブラウザーをシャットダウンしています..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
@@ -1949,13 +1955,13 @@ msgstr ""
 "しばらく時間がかかる恐れがあり、適切にシャットダウンされるまで、安全でないブ"
 "ラウザーを再起動できません。"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr "安全でないブラウザー"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
@@ -1963,15 +1969,15 @@ msgstr ""
 "別の安全でないブラウザーが起動中か、クリーンアップされています。少ししてから"
 "もう一度お試しください。"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr "chroot のセットアップに失敗しました。"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr "ブラウザーの設定に失敗しました。"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
@@ -1980,7 +1986,7 @@ msgstr ""
 "まだローカルネットワークに接続していません。\\n\\n安全ではないブラウザーを開"
 "始するには、Wi-Fi、有線接続、モバイルネットワークに接続する必要があります。"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr "ブラウザーを起動できませんでした。"
 
@@ -1990,6 +1996,7 @@ msgid ""
 "The %s variable was not found in the configuration file: /etc/whisperback/"
 "config.py"
 msgstr ""
+"%s 変数が構成ファイルに見つかりませんでした: /etc/whisperback/config.py"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:113
 msgid "Name of the affected software"
@@ -2009,7 +2016,7 @@ msgstr "望まれる結果"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:132
 msgid "Unable to load a valid configuration."
-msgstr "有効な設定を読み込めません"
+msgstr "有効な設定を読み込めません。"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:169
 msgid "Sending mail..."
@@ -2049,10 +2056,11 @@ msgid ""
 "If it does not work, you will be offered to save the bug report."
 msgstr ""
 "\n"
-"バグ報告は送信されませんでした。おそらくネットワークの問題によるものでしょ"
-"う。 ネットワークに再接続して、もう一度送信するをクリックしてください。\n"
 "\n"
-"動作しない場合は、 バグ報告の保存を提案します。"
+"ネットワークの問題で、バグレポートを送信できませんでした。ネットワークに再接"
+"続して、もう一度送信をクリックしてみてください。\n"
+"\n"
+"うまくいかない場合は、バグレポートを保存するように指示されます。"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:225
 msgid "Your message has been sent."
@@ -2080,13 +2088,15 @@ msgid ""
 "\n"
 "Do you want to save the bug report to a file?"
 msgstr ""
-"バグ報告は送信されませんでした。おそらくネットワーク問題によるものです。\n"
+"ネットワークの問題でバグレポートを送信できませんでした。\n"
 "\n"
-"回避策として、バグ報告をUSBドライブ上にファイルとして保存して、他のシステムで"
-"使用しているあなたのメールアカウントから%sで私達に送信しようとすることが出来"
-"ます。 あなたが自分でさらにステップ(例えば、捨てアカウントでTorを使用するな"
-"ど)を踏まないなら、そうする時あなたのバグ報告は匿名でないことにご注意くださ"
-"い。"
+"回避策として、バグレポートをUSBドライブにファイルとして保存し、他のシステムを"
+"使ってあなたのメールアカウントから%sで私たちに送信してみることができます。た"
+"だし、この場合、あなた自身がさらなる対策を講じない限り、あなたのバグレポート"
+"は匿名化されません(例えば、使い捨てのメールアカウントでTorを使用するな"
+"ど)。\n"
+"\n"
+"バグレポートをファイルに保存しますか?"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:337
 #: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:280
@@ -2152,10 +2162,10 @@ msgid "Tails documentation"
 msgstr "Tails ドキュメント"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
-#, fuzzy
 msgid "Persistent Storage"
-msgstr "永続的ストレージの作成"
+msgstr "永続ストレージ"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:2
 msgid ""
@@ -2179,6 +2189,18 @@ msgstr "Tails の使い方を知る"
 msgid "Learn more about Tails"
 msgstr "Tails について詳しく知る"
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "永続ストレージ"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+#, fuzzy
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+"Tails USB スティックに保存するデータの永続ストレージの機能をオンにします。"
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr "Tails をインストール、クローン、アップグレード"
@@ -2247,7 +2269,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr "管理パスワード"
 
@@ -2273,7 +2295,7 @@ msgid "Disable"
 msgstr "無効する"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr "MAC アドレスの匿名化"
 
@@ -2298,7 +2320,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr "MAC アドレスを匿名化しない"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr "ネットワーク設定"
 
@@ -2335,7 +2357,6 @@ msgstr ""
 "ワークを無効化することができます。"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:528
-#, fuzzy
 msgid ""
 "The Unsafe Browser allows you to sign in to a network using a captive "
 "portal.\n"
@@ -2351,25 +2372,27 @@ msgid ""
 "2022), after we fixed the security vulnerabilities that made us disable it "
 "by default in Tails 4.8 (June 2020)."
 msgstr ""
-"安全ではないブラウザーでは、Captive Portal を使ってネットワークにサインインす"
-"ることができます。\n"
+"Unsafe Browserを使用すると、キャプティブポータルを使用してネットワークにサイ"
+"ンインすることができます。\n"
 "\n"
-"Captive Portal とはインターネットにアクセスする前に表示される Web ページのこ"
-"とです。Captive Portal はネットワークに接続するためにログインを要求したり、"
-"メールアドレスなどの情報の入力を求めることがあります。\n"
+"キャプティブポータルとは、インターネットにアクセスする前に表示されるウェブ"
+"ページのことです。キャプティブポータルでは通常、ネットワークにログインする"
+"か、電子メールアドレスなどの情報を入力する必要があります。\n"
 "\n"
-"安全ではないブラウザーは匿名ではありません。ネットワークにサインインするとき"
-"のみに使用してください。"
+"Unsafe Browserは匿名ではないので、匿名化を解除することができます。ネットワー"
+"クへのサインインにのみ使用してください。\n"
+"\n"
+"Unsafe Browserは、Tails 4.8(2020年6月)でデフォルトで無効にしたセキュリティ"
+"脆弱性を修正した後、Tails 5.8(2022年12月)より再びデフォルトで有効になってい"
+"ます。"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:576
-#, fuzzy
 msgid "Enable the Unsafe Browser (default)"
-msgstr "安全でないブラウザーを無効化 (デフォルト)"
+msgstr "安全でないブラウザを有効にする(デフォルト)"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:622
-#, fuzzy
 msgid "Disable the Unsafe Browser"
-msgstr "安全でないブラウザーを有効化"
+msgstr "安全でないブラウザを無効化する"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:100
 msgid "Settings were loaded from the persistent storage."
@@ -2379,60 +2402,63 @@ msgstr "永続的ストレージから設定が読み込まれました。"
 msgid "Welcome to Tails!"
 msgstr "Tails へようこそ!"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
-#, fuzzy
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 msgid "_Persistent Storage"
-msgstr "永続的ストレージの作成"
+msgstr "_永続ストレージ"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
+"ファイルと設定の一部を Tails USB スティックの暗号化された永続ストレージに保存"
+"できます: ドキュメント、ブラウザーのブックマーク、Wi-Fi パスワードなどです。"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
-#, fuzzy
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
-msgstr "Tails を起動する時に、永続的ストレージから自動的にインストールする。"
+msgstr "Tails を開始した後、永続ストレージを作成して設定します。"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr "言語と地域"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr "デフォルト設定"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
-msgstr "暗号化された永続的ストレージ (_P)"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
 msgid "Show Passphrase"
 msgstr "パスフレーズの表示"
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
-msgstr "永続的ストレージのロックを解除するためのパスフレーズを入力してください"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "パスフレーズ:"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+#, fuzzy
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 "永続的ストレージのロックが解除されました。もう一度ロックするには、Tails を再"
 "起動してください。"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr "追加の設定 (_A)"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr "追加設定を追加"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
@@ -2440,62 +2466,55 @@ msgstr ""
 "デフォルト設定は大抵の場合安全です。カスタム設定を追加するのに、下の\"+\"ボタ"
 "ンを押して下さい。"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 msgid "Shutdown"
 msgstr "停止"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr "Tails ã‚’èµ·å‹• (_S)"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:8
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:56
-#, fuzzy
 msgid "Change Passphrase"
-msgstr "パスフレーズの表示"
+msgstr "パスフレーズを変更する"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:95
-#, fuzzy
 msgid "Current _Passphrase"
-msgstr "パスフレーズ:"
+msgstr "現在の_パスフレーズ"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:131
-#, fuzzy
 msgid "_New Passphrase"
-msgstr "パスフレーズの表示"
+msgstr "_新しいパスフレーズ"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:179
-#, fuzzy
 msgid "_Confirm New Passphrase"
-msgstr "パスフレーズの表示"
+msgstr "_新しいパスフレーズを確認する"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:215
-#, fuzzy
 msgid "_Show Passphrases"
-msgstr "パスフレーズの表示"
+msgstr "_パスフレーズを表示"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:253
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:213
-#, fuzzy
 msgid "The passphrases do not match"
 msgstr "パスフレーズが一致しません"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:317
 msgid "Ch_ange"
-msgstr ""
+msgstr "Ch_ange"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/deleted_view.ui.in:21
-#, fuzzy
 msgid "The Persistent Storage was successfully deleted."
-msgstr "永続的なストレージを削除して再インストール"
+msgstr "永続ストレージが正常に削除されました。"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/deleted_view.ui.in:32
 msgid "_Close"
-msgstr ""
+msgstr "_閉じる"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/fail_view.ui.in:30
 msgid "Oh no! Something has gone wrong."
-msgstr ""
+msgstr "ぴえん! 何か問題が発生しました。"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/fail_view.ui.in:45
 msgid ""
@@ -2504,11 +2523,14 @@ msgid ""
 "You can send an error report or check the output of the following commands "
 "to investigate:"
 msgstr ""
+"永続ストレージ サービスが予期せず終了しました。\n"
+"\n"
+"エラー レポートを送信するか、次のコマンドの出力を確認して調査することができま"
+"す。"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/fail_view.ui.in:74
-#, fuzzy
 msgid "Send Error Report"
-msgstr "WhisperBack エラー報告"
+msgstr "エラーレポートを送信する"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:61
 msgid ""
@@ -2519,51 +2541,61 @@ msgid ""
 "<a href=\"doc/persistent_storage/backup\">Learn how to make a backup of your "
 "Persistent Storage.</a>"
 msgstr ""
+"永続ストレージのロックが解除されました。\n"
+"\n"
+"そのコンテンツは、Tails をシャットダウンするまで利用できます。\n"
+"\n"
+"<a href=\"doc/persistent_storage/backup\">永続ストレージのバックアップを作成"
+"する方法を学びます。</a>"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:89
 msgid ""
 "Turn on the features of the Persistent Storage for the data that you want to "
 "save to your Tails USB stick."
 msgstr ""
+"Tails USB スティックに保存するデータの永続ストレージの機能をオンにします。"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:106
-#, fuzzy
 msgid "Personal Documents"
-msgstr "個人データ"
+msgstr "個人文書"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:134
-#, fuzzy
 msgid "Persistent Folder"
-msgstr "永続的ボリュームを削除"
+msgstr "永続フォルダー"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:153
-#, fuzzy
 msgid "Open Persistent Folder"
-msgstr "永続的ボリュームを削除"
+msgstr "永続フォルダーを開く"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:166
-#, fuzzy
 msgid "Activate Persistent Folder"
-msgstr "永続的ストレージの作成"
+msgstr "永続フォルダを有効化"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:191
-#, fuzzy
 msgid "System Settings"
-msgstr "デフォルト設定"
+msgstr "システム設定"
 
-#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
 #, fuzzy
+msgid "Welcome Screen"
+msgstr "ウェルカムスクリーンを有効にする"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 msgid "Activate Welcome Screen"
-msgstr "ウェルカムスクリーン"
+msgstr "ウェルカムスクリーンを有効にする"
 
-#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
 #, fuzzy
+msgid "Printers"
+msgstr "プリンターの有効化"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 msgid "Activate Printers"
-msgstr "プリンター"
+msgstr "プリンターの有効化"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:275
 msgid "Network"
-msgstr ""
+msgstr "ネットワーク"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:303
 msgid "Network Connections"
@@ -2571,49 +2603,48 @@ msgstr "ネットワーク接続"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:304
 msgid "Save Wi-Fi passwords and mobile broadband configuration."
-msgstr ""
+msgstr "Wi-Fi パスワードとモバイル ブロードバンド構成を保存します。"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:314
-#, fuzzy
 msgid "Activate Network Connections"
-msgstr "ネットワーク接続"
+msgstr "ネットワーク接続を有効にする"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:325
 msgid "Tor Bridge"
 msgstr "Tor ブリッジ"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:335
-#, fuzzy
 msgid "Activate Tor Bridge"
-msgstr "Tor ブリッジ"
+msgstr "Tor ブリッジを有効にする"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:360
 msgid "Applications"
-msgstr ""
+msgstr "アプリケーション"
 
-#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
 #, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "Tor Browserのブックマークを有効化する"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 msgid "Activate Tor Browser Bookmarks"
-msgstr "ブラウザーのブックマーク"
+msgstr "Tor Browserのブックマークを有効化する"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:409
-#, fuzzy
 msgid "Electrum Bitcoin Wallet"
-msgstr "Electrum のBitcoin ウォレットと設定"
+msgstr "Electrum Bitcoin ウォレット"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:419
-#, fuzzy
 msgid "Activate Electrum Bitcoin Wallet"
-msgstr "Electrum のBitcoin ウォレットと設定"
+msgstr "Electrum Bitcoin ウォレットを有効にする"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:430
-#, fuzzy
 msgid "Thunderbird Email Client"
-msgstr "Thunderbird"
+msgstr "Thunderbird メールクライアント"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:440
 msgid "Activate Thunderbird Email Client"
-msgstr ""
+msgstr "Thunderbird メール クライアントを有効にする"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:451
 msgid "GnuPG"
@@ -2621,64 +2652,57 @@ msgstr "GnuPG"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:452
 msgid "OpenPGP keys outside of Thunderbird."
-msgstr ""
+msgstr "Thunderbird 以外の OpenPGP キー。"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:462
 msgid "Activate GnuPG"
-msgstr ""
+msgstr "GnuPG を有効にする"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:473
 msgid "Pidgin Internet Messenger"
-msgstr ""
+msgstr "Pidgin インターネットメッセンジャー"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:483
 msgid "Activate Pidgin Internet Messenger"
-msgstr ""
+msgstr "Pidginインターネットメッセンジャーをアクティベートする"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:494
 msgid "SSH Client"
 msgstr "SSH クライアント"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:504
-#, fuzzy
 msgid "Activate SSH Client"
-msgstr "SSH クライアント"
+msgstr "SSH クライアントを有効にする"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:529
-#, fuzzy
 msgid "Advanced Settings"
-msgstr "追加の設定"
+msgstr "高度な設定"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:558
-#, fuzzy
 msgid "Install additional software automatically when starting Tails."
-msgstr ""
-"Tails を起動するときに、永続的ストレージから追加ソフトウェアをインストールで"
-"きます。"
+msgstr "Tails起動時に自動的に追加ソフトをインストールする。"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:577
-#, fuzzy
 msgid "Configure Additional Software"
-msgstr "追加ソフトウェア"
+msgstr "追加のソフトウェアを構成する"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:590
-#, fuzzy
 msgid "Activate Additional Software"
-msgstr "追加ソフトウェア"
+msgstr "追加のソフトウェアを有効にする"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:601
 msgid "Dotfiles"
 msgstr "ドットファイル"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:602
-#, fuzzy
 msgid "Symlink every file in the Dotfiles folder into the Home folder."
-msgstr "ホームフォルダーにあるドットファイルフォルダーの Symlink ファイル"
+msgstr ""
+"Dotfiles フォルダー内のすべてのファイルをホーム フォルダーにシンボリック リン"
+"クする。"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:629
-#, fuzzy
 msgid "Activate Dotfiles"
-msgstr "ドットファイル"
+msgstr "ドットファイルを有効にする"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:659
 msgid "Custom"
@@ -2689,15 +2713,15 @@ msgid ""
 "To add or remove custom features, modify /live/persistence/"
 "TailsData_unlocked/persistence.conf."
 msgstr ""
+"カスタム機能を追加または削除するには、/live/persistence/TailsData_unlocked/"
+"persistence.confを修正します。"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:720
-#, fuzzy
 msgid ""
 "<a href=\"doc/persistent_storage\">Learn more about the Persistent Storage.</"
 "a>"
 msgstr ""
-"ブリッジを保存するには、<a href=\"doc/first_steps/persistence\">永続的スト"
-"レージのロックを解除</a>します。"
+"<a href=\"doc/persistent_storage\">永続ストレージの詳細をご覧ください。</a>"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/locked_view.ui.in:52
 msgid ""
@@ -2709,6 +2733,13 @@ msgid ""
 "To delete your Persistent Storage, click <b>Delete</b> on the right of the "
 "title bar."
 msgstr ""
+"<b>永続ストレージはロックされています。</b>\n"
+"\n"
+"永続ストレージを使用または構成するには、Tails の起動時にウェルカム画面でロッ"
+"クを解除します。\n"
+"\n"
+"永続ストレージを削除するには、タイトル バーの右側にある [<b>削除</b>] をク"
+"リックしてください。"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:52
 msgid ""
@@ -2717,25 +2748,26 @@ msgid ""
 "\n"
 "We recommend a long passphrase of 5 to 7 random words."
 msgstr ""
+"永続ストレージとそのすべてのデータの暗号化を解除するために使用するパスフレー"
+"ズを選択します。\n"
+"\n"
+"5 ~ 7 個のランダムな単語からなる長いパスフレーズをお勧めします。"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:82
 msgid "Passphrase:"
 msgstr "パスフレーズ:"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:101
-#, fuzzy
 msgid "Confirm:"
-msgstr "確認"
+msgstr "確認:"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:178
-#, fuzzy
 msgid "_Show Passphrase"
-msgstr "パスフレーズの表示"
+msgstr "_パスフレーズを表示"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:265
-#, fuzzy
 msgid "_Back"
-msgstr "戻る"
+msgstr "_戻る"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:56
 msgid ""
@@ -2752,6 +2784,18 @@ msgid ""
 "<a href=\"doc/persistent_storage\">Learn more about the Persistent Storage.</"
 "a>"
 msgstr ""
+"Tailsをシャットダウンすると、あなたが行ったことはすべて自動的に消えてしまいま"
+"す。\n"
+"\n"
+"しかし、例えばTailsのUSBメモリにある暗号化されたPersistent Storageにファイル"
+"や設定の一部を保存することは可能です。\n"
+"\n"
+"・あなたのドキュメント\n"
+"・あなたのWi-Fiパスワード\n"
+"・お使いのブラウザのブックマーク\n"
+"・...\n"
+"\n"
+"<a href=\"doc/persistent_storage\">永続ストレージの詳細をご覧ください。</a>"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:92
 msgid ""
@@ -2760,30 +2804,30 @@ msgid ""
 "To be able to use Tails with a Persistent Storage, please follow our "
 "instructions on <a href=\"install\">installing Tails on a USB stick</a>."
 msgstr ""
+"このデバイスに永続ストレージを作成することはできません。\n"
+"\n"
+"永続ストレージで Tails を使用できるようにするには、<a href=\"install\">Tails "
+"を USB スティックにインストールする</a> を参照してください。"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:137
 msgid "Co_ntinue"
-msgstr ""
+msgstr "Co_ntinue"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:29
-#, fuzzy
 msgid "_Delete..."
-msgstr "削除中..."
+msgstr "_削除中..."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:36
-#, fuzzy
 msgid "Delete Persistent Storage"
-msgstr "永続的ストレージの作成"
+msgstr "永続ストレージの削除"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:49
-#, fuzzy
 msgid "_Change Passphrase..."
-msgstr "パスフレーズの表示"
+msgstr "_パスフレーズの変更..."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:66
-#, fuzzy
 msgid "_Restart Tails"
-msgstr "Tails を再起動"
+msgstr "_Tails を再起動"
 
 #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:61
 msgid "File Containers"
@@ -2825,11 +2869,11 @@ msgstr "ロック解除 (_U)"
 msgid "Detach this volume"
 msgstr "ボリュームを取り外す"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr "ターゲット USB スティック:"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr "再インストール(全てのデータを消去)"
 
@@ -2855,20 +2899,25 @@ msgid ""
 "You should have received a copy of the GNU General Public License\n"
 "along with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 msgstr ""
-"WhisperBack -暗号化されたメールでフィードバックをお送りください\n"
-"Copyright (C) 2009-2012 Tails developers <tails@boum.org>\n"
+"WhisperBack - 暗号化されたメールでフィードバックを送信します。\n"
+"著作権 (C) 2009-2018 Tails デベロッパー <tails@boum.org> \n"
 "\n"
-"このプログラムはフリーソフトウェアです。フリーソフトウェア財団によって公開さ"
-"れた本ライセンスのバージョン3、または (あなたの\n"
-"選択で)  任意の以降のバージョンのGNU General Public Licenseのもと、再配布およ"
-"び改変が可能です。\n"
+"本プログラムはフリーソフトウェアであり、再配布や改変が可能です。\n"
+"によって発行されたGNU一般公衆利用許諾書の条項の下で、それを使用することができ"
+"ます。\n"
+"フリーソフトウェアファウンデーション; バージョン3のライセンス、または(当時)\n"
+"また、それ以降のバージョンも選択可能です。\n"
 "\n"
-"このプログラムは役立つものであればという思いで配布されていますが、保証はあり"
-"ません。 商品性や特定の目的に対する適合性の黙示保証もありません。詳細はGNU\n"
-"General Public Licenseを参照してください。\n"
+"本プログラムは、有用であることを期待して配布していますが\n"
+"本製品は、いかなる保証もなく、また、暗黙の保証もなく、使用することができま"
+"す。\n"
+"マーチャンダビリティまたは特定目的への適合性(FITNESS FOR A PARTICULAR "
+"PURPOSE)。  GNUをご覧ください。\n"
+"詳しくは、GNU General Public Licenseをご覧ください。\n"
 "\n"
-"このプログラムに併せ、GNU General Public Licenseのコピーを受け取ったはずで"
-"す。受け取っていなければ、<http://www.gnu.org/licenses/>を参照のこと。\n"
+"あなたはGNU General Public Licenseのコピーを受け取ったはずです。\n"
+"をこのプログラムとともにご覧ください。 そうでない場合は、<http://www.gnu.org/"
+"licenses/>を参照してください。\n"
 
 #: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:122
 msgid ""
@@ -2894,7 +2943,7 @@ msgstr "ヘルプ:"
 
 #: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:388
 msgid "Read our bug reporting guidelines."
-msgstr "バグ報告ガイドラインを読む"
+msgstr "バグレポートのガイドラインをお読みください。"
 
 #: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:416
 msgid "Email address (if you want an answer from us)"
@@ -2963,26 +3012,21 @@ msgid "None"
 msgstr "なし"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:240
-#, fuzzy
 msgid "_Ask for a Tor bridge by email"
-msgstr "• Bridge over email"
+msgstr "_Tor ブリッジをメールで依頼する"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:259
-#, fuzzy
 msgid ""
 "Send an empty email to <tt>bridges@torproject.org</tt> from a Gmail or "
 "Riseup email address with your phone and scan the QR code that is attached "
 "to the automatic reply."
 msgstr ""
-"ブリッジを要求するには、Gmail または Riseup メールアドレスから "
-"<tt>bridges@torproject.org</tt> に空メールを送信してください。\n"
-"\n"
-"スマートフォンなどからメールを送信して、Tails にブリッジを入力することができ"
-"ます。\n"
+"GmailまたはRiseupのメールアドレスから<tt>bridges@torproject.org</tt>宛にスマ"
+"ホで空メールを送り、自動返信に添付されているQRコードを読み取ってください。"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:272
 msgid "Scan _QR code"
-msgstr ""
+msgstr "スキャン_QRコード"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:373
 msgid "_Enter a bridge that you already know"
@@ -2990,19 +3034,17 @@ msgstr "既知のブリッジを入力 (_E)"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:399
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1040
-#, fuzzy
 msgid "Bridge"
-msgstr "Tor ブリッジ"
+msgstr "ブリッジ"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:412
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1053
 msgid "obfs4 ..."
-msgstr ""
+msgstr "obfs4 ..."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:485
-#, fuzzy
 msgid "Save bridge to _Persistent Storage"
-msgstr "ブリッジを永続的ストレージに保存"
+msgstr "ブリッジを _永続ストレージに保存"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:510
 msgid "Save bridge to Persistent Storage"
@@ -3039,6 +3081,8 @@ msgid ""
 "If you are in a shop, hotel, or airport, you might need to sign in to the "
 "local network using the Unsafe Browser."
 msgstr ""
+"お店、ホテル、または空港にいる場合は、安全でないブラウザを使用してローカル "
+"ネットワークにサインインする必要がある場合があります。"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:840
 msgid "Try _Signing in to the Network"
@@ -3061,41 +3105,32 @@ msgid "Configure a Local _Proxy"
 msgstr "ローカル プロキシを構成 (_P)"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:951
-#, fuzzy
 msgid "• Tor bridge by email"
-msgstr "• Bridge over email"
+msgstr "• メールでのTor ブリッジのご案内"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:971
-#, fuzzy
 msgid ""
 "Tor bridges are secret Tor relays. Use a bridge as your first Tor relay if "
 "connections to Tor are blocked, for example in some countries, by some "
 "public networks, or by some parental controls."
 msgstr ""
-"Tor ブリッジは秘密の Tor リレーです。Tor が国、公共のネットワーク、ペアレンタ"
-"ルコントロールなどでブロックされている場合、ブリッジを使用して最初の Tor リ"
-"レーとして利用することができます。\n"
-"\n"
-"すでにブリッジを知っている場合は、このオプションを選択してください。それ以外"
-"の場合は、Tails がローカルネットワークから Tor に接続するときにブリッジが必要"
-"か自動的に検出します。"
+"Tor ブリッジは秘密の Tor リレーです。国や公共ネットワーク、ペアレンタルコント"
+"ロールなどでTorへの接続がブロックされている場合、最初のTorリレーとしてブリッ"
+"ジを使用します。"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:991
-#, fuzzy
 msgid ""
 "To get a bridge, send an empty email to <tt>bridges@torproject.org</tt> from "
 "a Gmail or Riseup email address with your phone and scan the QR code that is "
 "attached to the automatic reply."
 msgstr ""
-"ブリッジを要求するには、Gmail または Riseup メールアドレスから "
-"<tt>bridges@torproject.org</tt> に空メールを送信してください。\n"
-"\n"
-"スマートフォンなどからメールを送信して、Tails にブリッジを入力することができ"
-"ます。\n"
+"ブリッジの入手方法は、GmailまたはRiseupのメールアドレスから"
+"<tt>bridges@torproject.org</tt>宛にスマホで空メールを送り、自動返信に添付され"
+"ているQRコードを読み取ってください。"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1014
 msgid "Scan QR Code"
-msgstr ""
+msgstr "QRコードを読み取る"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1145
 msgid ""
@@ -3125,7 +3160,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1241
 msgid "<b>Connect to Tor _automatically</b>"
-msgstr ""
+msgstr "<b>Torに_自動的に接続する</b>"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1291
 msgid ""
@@ -3171,7 +3206,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1431
 msgid "<b>_Hide to my local network that I'm connecting to Tor</b>"
-msgstr ""
+msgstr "<b>_Torに接続していることを自分のローカルネットワークに隠す</b>"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1481
 msgid ""
@@ -3247,10 +3282,8 @@ msgid "Failed to connect to Tor without bridges."
 msgstr "ブリッジを使用しないで Tor に接続することに失敗しました。"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1870
-#, fuzzy
 msgid "This local network is blocking access to Tor."
-msgstr ""
-"あなたのローカル ネットワークは Tor にアクセスすることをブロックしています。"
+msgstr "このローカルネットワークはTorへのアクセスをブロックしています。"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1902
 msgid "Connecting to Tor…"
@@ -3398,6 +3431,13 @@ msgstr "12 月"
 msgid "Clock"
 msgstr "時間"
 
+#~ msgid "Encrypted _Persistent Storage"
+#~ msgstr "暗号化された永続的ストレージ (_P)"
+
+#~ msgid "Enter your passphrase to unlock the persistent storage"
+#~ msgstr ""
+#~ "永続的ストレージのロックを解除するためのパスフレーズを入力してください"
+
 #, python-format
 #~ msgid ""
 #~ "<h1>Help us fix your bug!</h1>\n"
diff --git a/po/ka.po b/po/ka.po
index d197adb99a0..0c6be5f884f 100644
--- a/po/ka.po
+++ b/po/ka.po
@@ -10,8 +10,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
-"PO-Revision-Date: 2023-02-11 10:42+0000\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
+"PO-Revision-Date: 2023-03-05 10:37+0000\n"
 "Last-Translator: emma peel <emma.peel@riseup.net>\n"
 "Language-Team: Georgian <https://hosted.weblate.org/projects/tor/tails-gui/"
 "ka/>\n"
@@ -20,7 +20,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.16-dev\n"
+"X-Generator: Weblate 4.16.2-dev\n"
 
 #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1
@@ -513,9 +513,9 @@ msgid "Additional Settings"
 msgstr "დამატებითი პარამეტრები"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "გაუქმება"
@@ -588,12 +588,12 @@ msgstr "გამორთ."
 msgid "Off (default)"
 msgstr "გამორთ. (ნაგულისხმევი)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
 #, fuzzy
-msgid "Persistent Storage Not Unlocked"
+msgid "Persistent Storage Still Locked"
 msgstr "მუდმივი საცავის შექმნა"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 #, fuzzy
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
@@ -601,17 +601,17 @@ msgstr ""
 "ნამდვილად გსურთ, კვლავ გაუშვათ Tails ახლავე?\\n\\nმიმდინარე ნამუშევარი "
 "დაიკარგება."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
 #, fuzzy
-msgid "Continue Without Persistent Storage"
+msgid "Start Without Persistent Storage"
 msgstr "მუდმივი საცავის შექმნა"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 #, fuzzy
 msgid "Don't _Create Persistent Storage"
 msgstr "მუდმივი საცავის შექმნა"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 #, fuzzy
 msgid "_Create Persistent Storage"
@@ -634,7 +634,6 @@ msgstr "იხსნება..."
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr "გახსნა"
 
@@ -683,7 +682,8 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:341
 msgid "Extracting live image to the target device..."
-msgstr "პირდაპირ გამშვები დისკის შიგთავსის ამოარქივება სასურველ მოწყობილობაზე "
+msgstr ""
+"პირდაპირ გამშვები დისკის შიგთავსის ამოარქივება სასურველ მოწყობილობაზე..."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:348
 #, python-format
@@ -862,7 +862,7 @@ msgstr "მოწყობილობა ვირტუალურია, MBR
 msgid "Synchronizing data on disk..."
 msgstr "მონაცემების დისკზე სინქრონიზაცია..."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
@@ -870,63 +870,63 @@ msgstr ""
 "შეცდომა: ვერ ხერხდება ჭდის მინიჭება ან თქვენი მოწყობილობის UUID-ის მიღება. "
 "გაგრძელება შეუძლებელია."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr "დაყენება დასრულებულია! (%s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr "Tails-ის დაყენება ვერ მოხერხდა!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr "Tails-ის დაყენების მეგზური"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr "მიმდინარე Tails-ის ასლი"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr "Tails-ის ჩამოტვირთული ISO-გამოსახულების გამოყენება"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr "განახლება"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr "მითითებები ხელით განახლებისთვის"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr "დაყენება"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr "დაყენების მითითებები"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(size)s %(vendor)s %(model)s მოწყობილობა (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr "დისკის ასლი არაა შერჩეული"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr "გთხოვთ, მიუთითოთ Tails-ის დისკის ასლი."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -937,7 +937,7 @@ msgstr ""
 "მოხსნის შესაძლებლობის არმქონე და Tails ვერ მოახერხებს მისი მეშვეობით "
 "გაშვებას. გთხოვთ, სცადოთ სხვა მოდელზე დაყენება."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
@@ -946,7 +946,7 @@ msgstr ""
 "მოწყობილობა „%(pretty_name)s“ მეტად მცირე მოცულობისაა Tails-ის დასაყენებლად "
 "(საჭიროა, სულ მცირე %(size)s გბაიტი)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -957,33 +957,33 @@ msgstr ""
 "ჩამოტვირთული ISO-გამოსახულება:\n"
 "%(dl_url)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr "Tails-ს დასაყენებლად თავსებადი მოწყობილობა ვერ მოიძებნა"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr "გთხოვთ, შეაერთოთ USB-მოწყობილობა ან SD-ბარათი სულ მცირე %0.1f გბაიტით."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr "შეცდომა წარმოიქმნა Tails-ის დაყენებისას"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr "დაყენება დასრულებულია!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr "მოწყობილობის მიერთება ვერ ხერხდება"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(parent_size)s %(vendor)s %(model)s მოწყობილობა (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
@@ -993,11 +993,11 @@ msgstr ""
 "\n"
 "მუდმივი მეხსიერება ამ USB-მოწყობილობაზე დაიკარგება."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr "მუდმივი მეხსიერების წაშლა და ახლიდან დაყენება"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
@@ -1007,20 +1007,20 @@ msgstr ""
 "\n"
 "ყველა მონაცემი ამ USB-მოწყობილობაზე დაიკარგება."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr "ყველაფრის წაშლა და დაყენება"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr "%(description)s%(delete_message)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr "შესაბამისი USB-მოწყობილობის დამოწმება"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
@@ -1028,7 +1028,7 @@ msgstr ""
 "მითითებული ფაილი არ იკითხება. გთხოვთ, გაასწოროთ შესაბამისი ნებართვები ან "
 "სხვა ფაილი აირჩიოთ."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
@@ -1036,7 +1036,7 @@ msgstr ""
 "მითითებული ფაილის გამოყენება ვერ ხერხდება. შესაძლოა უშველოს თქვენი ISO-"
 "ფაილის, ძირეულ საქაღალდეში გადატანამ (მაგ: C:\\)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr "%(filename)s შერჩეულია"
@@ -1126,7 +1126,7 @@ msgstr "su გათიშულია. გთხოვთ, სანაცვ
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1192,7 +1192,7 @@ msgstr "არაა ხელმისაწვდომი"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -1201,7 +1201,7 @@ msgstr ""
 "{details} გთხოვთ, გადაამოწმოთ დამატებითი პროგრამების სია ან ნახოთ სისტემის "
 "აღრიცხული ჩანაწერები ხარვეზის მიზეზის გამოსარკვევად."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
@@ -1209,54 +1209,54 @@ msgstr ""
 "გთხოვთ გადაამოწმოთ დამატებითი პროგრამების სია ან ნახოთ სისტემის აღრიცხული "
 "ჩანაწერები ხარვეზის მიზეზის გამოსარკვევად."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr "ჩანაწერების ჩვენება"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "გამართვა"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} და {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ", "
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "ჩაემატოს {packages} თქვენს დამატებით პროგრამაში?"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr "მისი ავტომატურად დაყენება მუდმივი მეხსიერებიდან Tails-ის გაშვებისას."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr "ყოველ ჯერზე დაყენება"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr "მხოლოდ ერთხელ დაყენება"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr "დამატებითი პროგრამის გამართვა ვერ მოხერხდა."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -1264,67 +1264,67 @@ msgstr ""
 "ავტომატურად დასაყენებლად Tails-ის გაშვებისას, შეგიძლიათ შექმნათ მუდმივი "
 "საცავი და აამოქმედოთ <b>დამატებითი პროგრამის</b> შესაძლებლობა."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr "მუდმივი საცავის შექმნა"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr "მუდმივი საცავის შექმნა ვერ მოხერხდა."
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr "შეგიძლიათ დააყენოთ {packages} ავტომატურად Tails-ის გაშვებისას"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr "ამისთვის, საჭიროა Tails გაუშვათ USB-მეხსიერებიდან."
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "წაიშალოს {packages} თქვენი დამატებითი პროგრამებიდან?"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr "შედეგად, აღარ დაყენდება {packages} ავტომატურად."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "წაშლა"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr "დამატებითი პროგრამის მუდმივი მეხსიერების საცავიდან დაყენება..."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr "შეიძლება გასტანოს რამდენიმე წუთს."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr "თქვენი დამატებითი პროგრამის დაყენება ვერ მოხერხდა"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr "დამატებითი პროგრამა დაყენდა წარმატებით"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr "თქვენი დამატებითი პროგრამის განახლებებზე შემოწმება ვერ მოხერხდა"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -1332,11 +1332,11 @@ msgstr ""
 "გთხოვთ, გადაამოწმოთ ქსელთან კავშირი, ხელახლა გაუშვათ Tails ან ნახოთ სისტემის "
 "აღრიცხული ჩანაწერები ხარვეზის მიზეზების გამოსარკვევად."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr "თქვენი დამატებითი პროგრამის განახლება ვერ მოხერხდა"
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "დამხმარე მასალები"
 
@@ -1499,19 +1499,19 @@ msgstr ""
 "ბმულიდან {manual_upgrade_url}"
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr "შეცდომა:"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr "ყურადღება: აღმოჩენილია ვირტუალური მანქანა!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr "გაფრთხილება: აღმოჩენილია არათავისუფალი ვირტუალური მანქანა!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1522,11 +1522,11 @@ msgstr ""
 "თქვენს მოქმედებებს Tails-ში. მხოლოდ თავისუფალი პროგრამა შეიძლება ჩაითვალოს "
 "სანდოდ, როგორც საოპერაციო სისტემის, ასევე ვირტუალური პროგრამის შემთხვევაში."
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr "აღარ გამოჩნდეს"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr "იხილეთ ვრცლად"
 
@@ -1673,7 +1673,7 @@ msgid ""
 "<i>Thunderbird</i>, follow our migration instructions."
 msgstr ""
 "<i>Thunderbird</i> 78 ახლა უკვე ანაცვლებს გაფართოებას <i>Enigmail</i> "
-"ჩაშენებული  OpenPGP- დაშიფვრის მხარდაჭერით. თუ გსურთ განაგრძოთ OpenPGP-"
+"ჩაშენებული OpenPGP- დაშიფვრის მხარდაჭერით. თუ გსურთ განაგრძოთ OpenPGP-"
 "გასაღებების გამოყენება <i>Thunderbird</i>-ში, მიჰყევით ჩვენს მითითებებს "
 "გადასატანად."
 
@@ -1881,32 +1881,32 @@ msgstr ""
 msgid "Choose File Container"
 msgstr "ფაილის სათავსის არჩევა"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 #, fuzzy
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr "გამორთვა დაუცველი ბრაუზერის (ნაგულისხმევი)"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr "_ახლიდან გაშვება"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 msgid "_Cancel"
 msgstr "_გაუქმება"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
@@ -1914,27 +1914,27 @@ msgstr ""
 "ნამდვილად გსურთ, კვლავ გაუშვათ Tails ახლავე?\\n\\nმიმდინარე ნამუშევარი "
 "დაიკარგება."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr "ხელახლა გაშვება ახლავე"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr "სისტემის ხელახლა გაშვება ვერ მოხერხდა."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr "ეშვება დაუცველი ბრაუზერი..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr "შესაძლოა გარკვეულ ხანს გასტანოს, გთხოვთ მოითმინოთ."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr "დაუცველი ბრაუზერის დახურვა..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
@@ -1942,13 +1942,13 @@ msgstr ""
 "შესაძლოა გარკვეულ ხანს გასტანოს, არ გამორთოთ დაუცველი ბრაუზერი, სანამ "
 "სათანადოდ არ დაიხურება."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr "დაუცველი ბრაუზერი"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
@@ -1956,15 +1956,15 @@ msgstr ""
 "სხვა დაუცველი ბრაუზერი გაშვებულია ან მიმდინარეობს მისი გასუფთავება. გთხოვთ, "
 "სცადოთ ხელახლა ცოტა ხანში."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr "ვერ ხერხდება chroot-ის გამართვა."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr "ბრაუზერის გამართვა ვერ მოხერხდა."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
@@ -1974,7 +1974,7 @@ msgstr ""
 "Unsafe Browser, პირველ რიგში საჭიროა Wi-Fi, სადენიანი ან მობილური "
 "ინტერნეტკავშირი."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr "ბრაუზერის გაშვება ვერ მოხერხდა."
 
@@ -2149,6 +2149,7 @@ msgid "Tails documentation"
 msgstr "Tails-ის დამხმარე მასალები"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 #, fuzzy
 msgid "Persistent Storage"
@@ -2179,6 +2180,16 @@ msgstr "იხილეთ, როგორ უნდა გამოიყე
 msgid "Learn more about Tails"
 msgstr "ვრცლად იხილეთ Tails-ის შესახებ"
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "მუდმივი საცავის შექმნა"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr "დააყენეთ, გაამრავლეთ, განაახლეთ Tails"
@@ -2245,11 +2256,11 @@ msgid ""
 "($(command_line))"
 msgstr ""
 "ანგარიშის მონაცემების მითითებაა საჭირო პაკეტის დამატებითი პროგრამიდან "
-"ამოსაშლელად ($(command_line)"
+"ამოსაშლელად ($(command_line))"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr "მთავარი პაროლი"
 
@@ -2276,7 +2287,7 @@ msgid "Disable"
 msgstr "გამორთვა"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr "MAC-მისამართის გაუმხელობა"
 
@@ -2302,7 +2313,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr "MAC-მისამართების გაუმხელობის გარეშე"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr "ქსელის გამართვა"
 
@@ -2382,59 +2393,62 @@ msgstr "პარამეტრები ჩაიტვირთა მუდ
 msgid "Welcome to Tails!"
 msgstr "მოგესალმებათ Tails!"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 #, fuzzy
 msgid "_Persistent Storage"
 msgstr "მუდმივი საცავის შექმნა"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 #, fuzzy
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr "მისი ავტომატურად დაყენება მუდმივი მეხსიერებიდან Tails-ის გაშვებისას."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr "ენა და რეგიონი"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr "ნაგულისხმევი პარამეტრები"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
-msgstr "დაშიფრული _მუდმივი მეხსიერება"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
 msgid "Show Passphrase"
 msgstr "პაროლის ჩვენება"
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
-msgstr "შეიყვანეთ თქვენი პაროლი მუდმივი მეხიერების გასახსნელად"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "პაროლი:"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+#, fuzzy
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 "თქვენი მუდმივი მეხსიერება გახსნილია. მის ჩასაკეტად, ხელახლა გაუშვით Tails."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr "_დამატებითი პარამეტრები"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr "დამატებითი პარამეტრების დამატება"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
@@ -2442,11 +2456,11 @@ msgstr ""
 "ნაგულისხმევი პარამეტრები უსაფრთხოა უმეტეს შემთხვევაში. სასურველი პარამეტრის "
 "დასამატებლად, დააჭირეთ „+“ ღილაკს ქვემოთ."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 msgid "Shutdown"
 msgstr "დახურვა"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr "_გაეშვას Tails"
 
@@ -2553,11 +2567,21 @@ msgstr "მუდმივი საცავის შექმნა"
 msgid "System Settings"
 msgstr "ნაგულისხმევი პარამეტრები"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+#, fuzzy
+msgid "Welcome Screen"
+msgstr "მისალმების ეკრანი"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 #, fuzzy
 msgid "Activate Welcome Screen"
 msgstr "მისალმების ეკრანი"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+#, fuzzy
+msgid "Printers"
+msgstr "პრინტერები"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 #, fuzzy
 msgid "Activate Printers"
@@ -2593,6 +2617,11 @@ msgstr "Tor-ხიდი"
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "ბრაუზერის სანიშნები"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 #, fuzzy
 msgid "Activate Tor Browser Bookmarks"
@@ -2829,11 +2858,11 @@ msgstr "_გაღება"
 msgid "Detach this volume"
 msgstr "დანაყოფის მოხსნა"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr "სასურველი USB-მეხსიერება:"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr "ხელახლა დაყენება (ყველა მონაცემის წაშლა)"
 
@@ -3407,6 +3436,12 @@ msgstr "დეკემბერი"
 msgid "Clock"
 msgstr "საათი"
 
+#~ msgid "Encrypted _Persistent Storage"
+#~ msgstr "დაშიფრული _მუდმივი მეხსიერება"
+
+#~ msgid "Enter your passphrase to unlock the persistent storage"
+#~ msgstr "შეიყვანეთ თქვენი პაროლი მუდმივი მეხიერების გასახსნელად"
+
 #, python-format
 #~ msgid ""
 #~ "<h1>Help us fix your bug!</h1>\n"
diff --git a/po/kab.po b/po/kab.po
index 0252aa428ce..ce46c7a1f31 100644
--- a/po/kab.po
+++ b/po/kab.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
 "PO-Revision-Date: 2023-01-25 11:39+0000\n"
 "Last-Translator: emma peel <emma.peel@riseup.net>\n"
 "Language-Team: Kabyle <https://hosted.weblate.org/projects/tor/tails-gui/kab/"
@@ -438,9 +438,9 @@ msgid "Additional Settings"
 msgstr ""
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr ""
@@ -511,11 +511,11 @@ msgstr ""
 msgid "Off (default)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
-msgid "Persistent Storage Not Unlocked"
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+msgid "Persistent Storage Still Locked"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 #, fuzzy
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
@@ -523,15 +523,15 @@ msgstr ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
-msgid "Continue Without Persistent Storage"
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
+msgid "Start Without Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 msgid "Don't _Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 msgid "_Create Persistent Storage"
 msgstr ""
@@ -551,7 +551,6 @@ msgstr ""
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr ""
 
@@ -768,69 +767,69 @@ msgstr ""
 msgid "Synchronizing data on disk..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -838,14 +837,14 @@ msgid ""
 "a different model."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
 "%(size)s GB is required)."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -853,76 +852,76 @@ msgid ""
 "%(dl_url)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
 "The persistent storage on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
 "All data on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr ""
@@ -1005,7 +1004,7 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1065,143 +1064,143 @@ msgstr ""
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
 "log to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr ""
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "Tasemlit"
 
@@ -1332,19 +1331,19 @@ msgid ""
 msgstr ""
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1352,11 +1351,11 @@ msgid ""
 "software."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr ""
 
@@ -1685,32 +1684,32 @@ msgstr ""
 msgid "Choose File Container"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 #, fuzzy
 msgid "_Cancel"
 msgstr "_Cancel"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 #, fuzzy
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
@@ -1719,60 +1718,60 @@ msgstr ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
 "network."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr ""
 
@@ -1932,6 +1931,7 @@ msgid "Tails documentation"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 msgid "Persistent Storage"
 msgstr ""
@@ -1958,6 +1958,15 @@ msgstr ""
 msgid "Learn more about Tails"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+msgid "Back Up Persistent Storage"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr ""
@@ -2024,7 +2033,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr ""
 
@@ -2048,7 +2057,7 @@ msgid "Disable"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr ""
 
@@ -2069,7 +2078,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr ""
 
@@ -2128,67 +2137,68 @@ msgstr ""
 msgid "Welcome to Tails!"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 msgid "_Persistent Storage"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 #, fuzzy
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr "Tails is configuring your Persistent Storage. Please wait..."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
+msgid "Show Passphrase"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
-msgid "Show Passphrase"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+msgid "_Passphrase"
 msgstr ""
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 msgid "Shutdown"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr ""
 
@@ -2282,10 +2292,18 @@ msgstr ""
 msgid "System Settings"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+msgid "Welcome Screen"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 msgid "Activate Welcome Screen"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+msgid "Printers"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 msgid "Activate Printers"
 msgstr ""
@@ -2318,6 +2336,10 @@ msgstr ""
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+msgid "Tor Browser Bookmarks"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 msgid "Activate Tor Browser Bookmarks"
 msgstr ""
@@ -2527,11 +2549,11 @@ msgstr ""
 msgid "Detach this volume"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr ""
 
diff --git a/po/kk.po b/po/kk.po
index d83753ae6ea..632726a46f3 100644
--- a/po/kk.po
+++ b/po/kk.po
@@ -10,8 +10,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
-"PO-Revision-Date: 2023-02-11 14:38+0000\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
+"PO-Revision-Date: 2023-03-05 10:37+0000\n"
 "Last-Translator: emma peel <emma.peel@riseup.net>\n"
 "Language-Team: Kazakh <https://hosted.weblate.org/projects/tor/tails-gui/kk/"
 ">\n"
@@ -20,7 +20,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.16-dev\n"
+"X-Generator: Weblate 4.16.2-dev\n"
 
 #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1
@@ -502,9 +502,9 @@ msgid "Additional Settings"
 msgstr "Қосымша параметрлер"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "Болдырмау"
@@ -577,27 +577,27 @@ msgstr "Өшіру"
 msgid "Off (default)"
 msgstr "Өшіру (әдепкі)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
 #, fuzzy
-msgid "Persistent Storage Not Unlocked"
+msgid "Persistent Storage Still Locked"
 msgstr "Тұрақты сақтауды жасаңыз"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
 #, fuzzy
-msgid "Continue Without Persistent Storage"
+msgid "Start Without Persistent Storage"
 msgstr "Тұрақты сақтауды жасаңыз"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 #, fuzzy
 msgid "Don't _Create Persistent Storage"
 msgstr "Тұрақты сақтауды жасаңыз"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 #, fuzzy
 msgid "_Create Persistent Storage"
@@ -620,7 +620,6 @@ msgstr "Құлып ашылуда…"
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr "Ашу"
 
@@ -842,69 +841,69 @@ msgstr ""
 msgid "Synchronizing data on disk..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -912,14 +911,14 @@ msgid ""
 "a different model."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
 "%(size)s GB is required)."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -927,76 +926,76 @@ msgid ""
 "%(dl_url)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
 "The persistent storage on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
 "All data on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr ""
@@ -1071,7 +1070,7 @@ msgstr "su өшірілген. Оның орнына sudo пайдаланыңы
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1137,7 +1136,7 @@ msgstr "қол жетімсіз"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -1146,7 +1145,7 @@ msgstr ""
 "{details} Мәселені түсіну үшін қосымша бағдарламалық жасақтама тізімін "
 "тексеріңіз немесе жүйелік журналды оқыңыз."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
@@ -1154,56 +1153,56 @@ msgstr ""
 "Мәселені түсіну үшін қосымша бағдарламалық жасақтама тізімін тексеріңіз "
 "немесе жүйе журналын оқып шығыңыз."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr "Журналды көрсету"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "Теңшеу"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} және {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
-msgstr ","
+msgstr ", "
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "Қосымша бағдарламалық жасақтамаға {packages} қосу керек пе?"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 "Қалдықтарды іске қосу кезінде оны тұрақты сақтау орнынан автоматты түрде "
 "орнату."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr "Әр қашан орнатыңыз"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr "Тек бір рет орнатыңыз"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr "Қосымша бағдарламалық жасақтаманың конфигурациясы сәтсіз аяқталды."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -1212,69 +1211,69 @@ msgstr ""
 "сақтауды жасай аласыз және<b> Қосымша Бағдарламалық</b> жасақтаманы іске "
 "қосуға болады."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr "Тұрақты сақтауды жасаңыз"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr "Тұрақты сақтауды жасау сәтсіз аяқталды."
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 "Қалдықтарды іске қосу кезінде автоматты түрде {packages} орнатуға болады"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "Қосымша бағдарламадан {packages} жою керек пе?"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr "Бұл автоматты түрде {packages} орнатуды тоқтатады."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "Жою"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr "Қосымша бағдарламалық жасақтаманы тұрақты сақтаудан орнату ..."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr "Бұған бірнеше минут кетуі мүмкін."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr "Қосымша бағдарламаны орнату сәтсіз аяқталды"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr "Қосымша бағдарламалық қамтамасыз ету сәтті орнатылды"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 "Қосымша бағдарламалық жасақтаманың жаңартуларын тексеру сәтсіз аяқталды"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -1282,11 +1281,11 @@ msgstr ""
 "Мәселені түсіну үшін желілік қосылымыңызды тексеріп, Tails қайта іске "
 "қосыңыз немесе жүйе журналын оқыңыз."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr "Қосымша бағдарламалық жасақтаманы жаңарту сәтсіз аяқталды"
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "Құжаттама"
 
@@ -1430,19 +1429,19 @@ msgid ""
 msgstr ""
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr "Қате:"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr "Ескерту: виртуалды машина анықталды!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr "Ескерту: тегін емес виртуалды машина анықталды!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1454,11 +1453,11 @@ msgstr ""
 "жасақтаманы хост операциялық жүйесі мен виртуалдандыру бағдарламалық "
 "жасақтамасы үшін сенімді деп санауға болады."
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr ""
 
@@ -1790,57 +1789,57 @@ msgstr ""
 msgid "Choose File Container"
 msgstr "Файл контейнерін таңдаңыз"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 msgid "_Cancel"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr "Unsafe браузері қосылуда..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr "Бұл біраз уақыт алуы мүмкін, сондықтан шыдамды болыңыз."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr "Unsafe браузерді өшіру ..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
@@ -1848,13 +1847,13 @@ msgstr ""
 "Бұл біраз уақыт кетуі мүмкін, сондықтан ол дұрыс жабылмайынша, Unsafe "
 "браузерді қайта іске қоса алмайсыз."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr "Unsafe браузер,яғни Қауіпсіз браузер"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
@@ -1862,22 +1861,22 @@ msgstr ""
 "Қазіргі уақытта тағы бір Unsafe браузер жұмыс істейді немесе тазартылады. "
 "Біраздан кейін қайталап көріңіз."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr "Chroot параметрін орнату сәтсіз аяқталды."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr "Браузерді баптау сәтсіз аяқталды."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
 "network."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr "Браузерді іске қосу сәтсіз аяқталды."
 
@@ -2035,6 +2034,7 @@ msgid "Tails documentation"
 msgstr "Tails құжаттамасы"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 #, fuzzy
 msgid "Persistent Storage"
@@ -2062,6 +2062,16 @@ msgstr "Tails қалай пайдалану керектігін үйренің
 msgid "Learn more about Tails"
 msgstr "Tails жайлы көбірек біліңіз"
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "Тұрақты сақтауды жасаңыз"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr ""
@@ -2132,7 +2142,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr ""
 
@@ -2156,7 +2166,7 @@ msgid "Disable"
 msgstr "Өшіру"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr ""
 
@@ -2177,7 +2187,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr ""
 
@@ -2238,19 +2248,19 @@ msgstr ""
 msgid "Welcome to Tails!"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 #, fuzzy
 msgid "_Persistent Storage"
 msgstr "Тұрақты сақтауды жасаңыз"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 #, fuzzy
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
@@ -2258,50 +2268,51 @@ msgstr ""
 "Қалдықтарды іске қосу кезінде оны тұрақты сақтау орнынан автоматты түрде "
 "орнату."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
+msgid "Show Passphrase"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
-msgid "Show Passphrase"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+msgid "_Passphrase"
 msgstr ""
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 msgid "Shutdown"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr ""
 
@@ -2398,10 +2409,19 @@ msgstr "Тұрақты сақтауды жасаңыз"
 msgid "System Settings"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+#, fuzzy
+msgid "Welcome Screen"
+msgstr "Құлыптау экраны"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 msgid "Activate Welcome Screen"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+msgid "Printers"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 msgid "Activate Printers"
 msgstr ""
@@ -2436,6 +2456,11 @@ msgstr "Tor браузерін бастау"
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "Tor браузерін бастау"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 #, fuzzy
 msgid "Activate Tor Browser Bookmarks"
@@ -2601,9 +2626,8 @@ msgid "Co_ntinue"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:29
-#, fuzzy
 msgid "_Delete..."
-msgstr "Жою"
+msgstr "_Жою"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:36
 #, fuzzy
@@ -2657,11 +2681,11 @@ msgstr ""
 msgid "Detach this volume"
 msgstr "Бұл көлемді ажыратыңыз"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr ""
 
diff --git a/po/km.po b/po/km.po
index 4d44d20e3f5..8373dc779b6 100644
--- a/po/km.po
+++ b/po/km.po
@@ -9,8 +9,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
-"PO-Revision-Date: 2023-01-26 19:00+0000\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
+"PO-Revision-Date: 2023-03-05 10:37+0000\n"
 "Last-Translator: emma peel <emma.peel@riseup.net>\n"
 "Language-Team: Khmer (Central) <https://hosted.weblate.org/projects/tor/"
 "tails-gui/km/>\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Weblate 4.16-dev\n"
+"X-Generator: Weblate 4.16.2-dev\n"
 
 #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1
@@ -68,14 +68,12 @@ msgid "Do you want to start Electrum anyway?"
 msgstr ""
 
 #: config/chroot_local-includes/usr/local/bin/electrum:78
-#, fuzzy
 msgid "_Launch"
-msgstr "ចាប់ផ្ដើម"
+msgstr "_ចាប់ផ្ដើម"
 
 #: config/chroot_local-includes/usr/local/bin/electrum:79
-#, fuzzy
 msgid "_Exit"
-msgstr "ចេញ"
+msgstr "_ចេញ"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/DownloadProgress.pm:59
 msgid "Unknown time"
@@ -212,7 +210,7 @@ msgstr "Tails ត្រូវ​បាន​ចាប់ផ្ដើម​ពី
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:374
 msgid "there is not enough free space on the Tails system partition"
-msgstr "មិន​មាន​ទំហំ​ទំនេរ​គ្រប់គ្រាន់​លើ​ភាគ​ថាស​ប្រព័ន្ធ Tails "
+msgstr "មិន​មាន​ទំហំ​ទំនេរ​គ្រប់គ្រាន់​លើ​ភាគ​ថាស​ប្រព័ន្ធ Tails"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:379
 msgid "not enough memory is available on this system"
@@ -449,9 +447,9 @@ msgid "Additional Settings"
 msgstr ""
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "បោះបង់"
@@ -523,27 +521,27 @@ msgstr "បិទ"
 msgid "Off (default)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
 #, fuzzy
-msgid "Persistent Storage Not Unlocked"
+msgid "Persistent Storage Still Locked"
 msgstr "កម្រិត​សំឡេង​ថេរ​មិន​ត្រូវ​បាន​ដោះ​សោ។"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
 #, fuzzy
-msgid "Continue Without Persistent Storage"
+msgid "Start Without Persistent Storage"
 msgstr "ការ​បង្កើត​កម្រិត​សំឡេង​ថេរ​ជាន់​គ្នា %sMB"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 #, fuzzy
 msgid "Don't _Create Persistent Storage"
 msgstr "ការ​បង្កើត​កម្រិត​សំឡេង​ថេរ​ជាន់​គ្នា %sMB"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 #, fuzzy
 msgid "_Create Persistent Storage"
@@ -564,7 +562,6 @@ msgstr ""
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr ""
 
@@ -783,69 +780,69 @@ msgstr "ដ្រាយ​គឺជា​រង្វិល​ជុំ​ត្
 msgid "Synchronizing data on disk..."
 msgstr "កំពុង​ធ្វើ​សមកាលកម្ម​ទិន្នន័យ​នៅ​លើ​ថាស..."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
 msgstr "កំហុស៖ មិន​អាច​កំណត់​ស្លាក ឬ​យក UUID នៃ​ឧបករណ៍​របស់​អ្នក។ មិន​អាច​បន្ត។"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr "ការ​ដំឡើង​បាន​បញ្ចប់! (%s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -853,14 +850,14 @@ msgid ""
 "a different model."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
 "%(size)s GB is required)."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -868,70 +865,70 @@ msgid ""
 "%(dl_url)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr "ការ​ដំឡើង​បាន​បញ្ចប់!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr "មិន​អាច​ម៉ោន​ឧបករណ៍"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
 "The persistent storage on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
 "All data on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
 msgstr "ឯកសារ​ដែល​បាន​ជ្រើស​ជា​ឯកសារ​ដែល​មិន​អាច​អាន​បាន។ សូម​កែ​សិទ្ធិ ឬ​ជ្រើស​ឯកសារ​ផ្សេង។"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
@@ -939,7 +936,7 @@ msgstr ""
 "មិន​អាច​ប្រើ​ឯកសារ​ដែល​បាន​ជ្រើស។ អ្នក​អាច​មាន​សំណាង​ជាង បើ​អ្នក​ផ្លាស់ទី ISO ទៅ root នៃ​ដ្រាយ​របស់​"
 "អ្នក (ie: C:\\)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr "បាន​ជ្រើស %(filename)s"
@@ -1014,7 +1011,7 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1076,143 +1073,143 @@ msgstr "មិន​មាន"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
 "log to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr "បង្ហាញកំណត់ហេតុ"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "កំណត់រចនាសម្ព័ន្ធ"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "ដកចេញ"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "ឯកសារ"
 
@@ -1343,19 +1340,19 @@ msgid ""
 msgstr ""
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr "កំហុស៖"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr "ព្រមាន៖ បាន​រក​ឃើញ​ម៉ាស៊ីន​និម្មិត!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1363,11 +1360,11 @@ msgid ""
 "software."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr "ស្វែងយល់បន្ថែម"
 
@@ -1694,57 +1691,57 @@ msgstr ""
 msgid "Choose File Container"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 msgid "_Cancel"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr "កំពុង​ចាប់ផ្ដើម​កម្មវិធី​គ្មាន​សុវត្ថិភាព..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr "វា​អាច​ប្រើ​ពេល​មួយ​រយៈ ដូច្នេះ​សូម​មេត្តា​អត់ធ្មត់។"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr "កំពុង​បិទ​កម្មវិធី​អ៊ីនធឺណិត​គ្មាន​សុវត្ថិភាព..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
@@ -1752,13 +1749,13 @@ msgstr ""
 "វា​អាច​ប្រើ​ពេល​មួយ​រយៈ ដូច្នេះ​អ្នក​មិន​ត្រូវ​ចាប់ផ្ដើម​កម្មវិធី​អ៊ីនធឺណិត​គ្មាន​សុវត្ថិភាព​ឡើងវិញ​ឡើយ រហូតដល់​វា​បាន​"
 "បិទ​ដោយ​ត្រឹមត្រូវ។"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr "កម្មវិធី​អ៊ីនធឺណិត​គ្មាន​សុវត្ថិភាព"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
@@ -1766,22 +1763,22 @@ msgstr ""
 "កម្មវិធី​អ៊ីនធឺណិត​គ្មាន​សុវត្ថិភាព​ផ្សេង​បច្ចុប្បន្ន​កំពុង​​ដំណើរការ ឬ​កំពុង​ត្រូវ​បាន​សម្អាត។ សូម​ព្យាយាម​ម្ដងទៀត​នៅ​"
 "ពេល​បន្ទាប់។"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr "បាន​បរាជ័យ​ក្នុង​ការ​ដំឡើង chroot ។"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
 "network."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr ""
 
@@ -1952,6 +1949,7 @@ msgid "Tails documentation"
 msgstr "ឯកសារ Tails"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 msgid "Persistent Storage"
 msgstr ""
@@ -1978,6 +1976,16 @@ msgstr "សិក្សា​ពី​វិធី​ប្រើ Tails"
 msgid "Learn more about Tails"
 msgstr "ស្វែងយល់​បន្ថែម​អំពី Tails"
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "ការ​បង្កើត​កម្រិត​សំឡេង​ថេរ​ជាន់​គ្នា %sMB"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr ""
@@ -2044,7 +2052,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr ""
 
@@ -2068,7 +2076,7 @@ msgid "Disable"
 msgstr "បិទ"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr ""
 
@@ -2089,7 +2097,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr ""
 
@@ -2150,66 +2158,68 @@ msgstr ""
 msgid "Welcome to Tails!"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 msgid "_Persistent Storage"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr "កំណត់​ទៅលំនាំដើម"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
 msgid "Show Passphrase"
 msgstr ""
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "ឃ្លា​សម្ងាត់៖"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 msgid "Shutdown"
 msgstr "បិទ"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr ""
 
@@ -2312,10 +2322,19 @@ msgstr "កំពុង​បង្កើត​កម្រិត​សំឡេ
 msgid "System Settings"
 msgstr "កំណត់​ទៅលំនាំដើម"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+msgid "Welcome Screen"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 msgid "Activate Welcome Screen"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+#, fuzzy
+msgid "Printers"
+msgstr "ម៉ាស៊ីន​បោះពុម្ព"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 #, fuzzy
 msgid "Activate Printers"
@@ -2351,6 +2370,11 @@ msgstr "ចាប់ផ្ដើម​កម្មវិធី​អ៊ីនធ
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "ចាប់ផ្ដើម​កម្មវិធី​អ៊ីនធឺណិត Tor"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 #, fuzzy
 msgid "Activate Tor Browser Bookmarks"
@@ -2572,11 +2596,11 @@ msgstr ""
 msgid "Detach this volume"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr ""
 
diff --git a/po/kn.po b/po/kn.po
index fc2ec9f50be..b02285e1ce6 100644
--- a/po/kn.po
+++ b/po/kn.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
 "PO-Revision-Date: 2023-01-25 10:11+0000\n"
 "Last-Translator: emma peel <emma.peel@riseup.net>\n"
 "Language-Team: Kannada <https://hosted.weblate.org/projects/tor/tails-gui/kn/"
@@ -439,9 +439,9 @@ msgid "Additional Settings"
 msgstr ""
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #, fuzzy
 msgid "Cancel"
@@ -513,11 +513,11 @@ msgstr ""
 msgid "Off (default)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
-msgid "Persistent Storage Not Unlocked"
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+msgid "Persistent Storage Still Locked"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 #, fuzzy
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
@@ -525,15 +525,15 @@ msgstr ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
-msgid "Continue Without Persistent Storage"
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
+msgid "Start Without Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 msgid "Don't _Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 msgid "_Create Persistent Storage"
 msgstr ""
@@ -553,7 +553,6 @@ msgstr ""
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr ""
 
@@ -770,69 +769,69 @@ msgstr ""
 msgid "Synchronizing data on disk..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -840,14 +839,14 @@ msgid ""
 "a different model."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
 "%(size)s GB is required)."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -855,76 +854,76 @@ msgid ""
 "%(dl_url)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
 "The persistent storage on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
 "All data on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr ""
@@ -1007,7 +1006,7 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1067,143 +1066,143 @@ msgstr ""
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
 "log to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr ""
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "ತೆಗೆದುಹಾಕು"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "ದಾಖಲೆ"
 
@@ -1334,19 +1333,19 @@ msgid ""
 msgstr ""
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1354,11 +1353,11 @@ msgid ""
 "software."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr ""
 
@@ -1687,32 +1686,32 @@ msgstr ""
 msgid "Choose File Container"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 #, fuzzy
 msgid "_Cancel"
 msgstr "Cancel"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 #, fuzzy
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
@@ -1721,60 +1720,60 @@ msgstr ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
 "network."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr ""
 
@@ -1934,6 +1933,7 @@ msgid "Tails documentation"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 msgid "Persistent Storage"
 msgstr ""
@@ -1960,6 +1960,15 @@ msgstr ""
 msgid "Learn more about Tails"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+msgid "Back Up Persistent Storage"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr ""
@@ -2026,7 +2035,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr ""
 
@@ -2050,7 +2059,7 @@ msgid "Disable"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr ""
 
@@ -2071,7 +2080,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr ""
 
@@ -2130,68 +2139,70 @@ msgstr ""
 msgid "Welcome to Tails!"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 msgid "_Persistent Storage"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 #, fuzzy
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr "Tails is configuring your Persistent Storage. Please wait..."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
 msgid "Show Passphrase"
 msgstr ""
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "ಕೊಂಡಿಪದ"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 #, fuzzy
 msgid "Shutdown"
 msgstr "Shutdown"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr ""
 
@@ -2289,10 +2300,18 @@ msgstr ""
 msgid "System Settings"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+msgid "Welcome Screen"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 msgid "Activate Welcome Screen"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+msgid "Printers"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 msgid "Activate Printers"
 msgstr ""
@@ -2325,6 +2344,11 @@ msgstr ""
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "ಟಾರ್ ಬ್ರೌಸರ್"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 msgid "Activate Tor Browser Bookmarks"
 msgstr ""
@@ -2539,11 +2563,11 @@ msgstr ""
 msgid "Detach this volume"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr ""
 
diff --git a/po/ko.po b/po/ko.po
index 3f2647dafe1..a577a9d22be 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -20,8 +20,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
-"PO-Revision-Date: 2023-02-09 15:38+0000\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
+"PO-Revision-Date: 2023-03-14 02:15+0000\n"
 "Last-Translator: 이정희 <daemul72@gmail.com>\n"
 "Language-Team: Korean <https://hosted.weblate.org/projects/tor/tails-gui/ko/"
 ">\n"
@@ -30,7 +30,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Weblate 4.16-dev\n"
+"X-Generator: Weblate 4.16.2-dev\n"
 
 #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1
@@ -500,9 +500,9 @@ msgid "Additional Settings"
 msgstr "추가 설정"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "취소"
@@ -575,37 +575,33 @@ msgstr "끄기"
 msgid "Off (default)"
 msgstr "꺼짐 (기본값)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
 #, fuzzy
-msgid "Persistent Storage Not Unlocked"
+msgid "Persistent Storage Still Locked"
 msgstr "퍼시스턴트 저장소 생성"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
-#, fuzzy
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
-msgstr "영구 저장소의 잠금을 해제하려면 사용자의 비밀구절을 입력하십시오"
+msgstr "영구 저장소를 잠금 해제하지 않고 정말 Tails를 시작하고 싶으신가요?"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
 #, fuzzy
-msgid "Continue Without Persistent Storage"
+msgid "Start Without Persistent Storage"
 msgstr "퍼시스턴트 저장소 생성"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
-#, fuzzy
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 msgid "Don't _Create Persistent Storage"
-msgstr "퍼시스턴트 저장소 생성"
+msgstr "영구 저장소 만들지 않음(_C)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
-#, fuzzy
 msgid "_Create Persistent Storage"
-msgstr "퍼시스턴트 저장소 생성"
+msgstr "영구 저장소 만들기(_C)"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:83
-#, fuzzy
 msgid "Error unlocking Persistent Storage: {}"
-msgstr "암호화된 _영구 저장소: {}"
+msgstr "영구 저장소 잠금 해제 오류: {}"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:102
 #, fuzzy
@@ -619,7 +615,6 @@ msgstr "잠금 해제중..."
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr "잠금 해제"
 
@@ -842,7 +837,7 @@ msgstr "드라이브가 루프백입니다. MBR 재설정을 건너 뜁니다."
 msgid "Synchronizing data on disk..."
 msgstr "디스크의 데이터를 동기화 중..."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
@@ -850,63 +845,63 @@ msgstr ""
 "오류: 레이블을 설정할 수 없거나 장치의 UUID를 검색할 수 없습니다. 계속 진행"
 "할 수 없습니다."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr "설치 완료! (%s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr "Tails 설치가 실패했습니다!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr "Tails 설치 프로그램"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr "현재 Tails을 복제함"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr "다운로드했는 Tails ISO 이미지를 사용하기"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr "업그레이드"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr "수동으로 업그레이드를 위한 설명서"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr "설치"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr "설치를 위한 설명서"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(size)s %(vendor)s %(model)s 장치 (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr "ISO 이미지를 선택하지 않았습니다"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr "Tails ISO 이미지를 선택하십시오."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -916,7 +911,7 @@ msgstr ""
 "USB 스틱 \"%(pretty_name)s\"는 제조업체가 제거 할 수 없도록 구성하였기 때문"
 "에 Tails가 시작되지 않습니다. 다른 모델로 설치를 시도해 보십시오."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
@@ -925,7 +920,7 @@ msgstr ""
 "선택된 장치 \"%(pretty_name)s\" 의 용량이 모자라서 Tail를 설치할 수 없습니다 "
 "(최소 %(size)s GB 필요)."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -936,33 +931,33 @@ msgstr ""
 "ISO 이미지를 사용하십시오.\n"
 "%(dl_url)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr "Tails 설치에 적합한 장치를 찾을 수 없음"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr "최소 %0.1fGB의 USB 플래시 드라이브 또는 SD 카드를 연결하십시오."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr "Tails 설치 중 오류가 발생했습니다."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr "설치 완료!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr "장치를 구성할 수 없습니다."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(parent_size)s %(vendor)s %(model)s 장치 (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
@@ -972,11 +967,11 @@ msgstr ""
 "\n"
 "이 USB 스틱의 퍼시스턴트 저장소는 손실됩니다."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr "퍼시스턴트 저장소를 삭제하고 다시 설치"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
@@ -986,27 +981,27 @@ msgstr ""
 "\n"
 "이 USB 스틱의 모든 데이터가 손실됩니다."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr "모든 데이터 삭제 및 설치"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr "%(description)s%(delete_message)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr "대상 USB 메모리 스틱을 확인합니다"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
 msgstr ""
 "선택된 파일은 읽을 수 없습니다. 권한을 수정하거나 다른 파일을 선택하십시오."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
@@ -1014,7 +1009,7 @@ msgstr ""
 "지정된 파일을 사용할 수 없으니 루트 디렉토리에 ISO 파일을 이동시키십시오. "
 "(예 : C:\\)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr "%(filename)s이(가) 선택됨."
@@ -1094,7 +1089,7 @@ msgstr "su는 현재 사용이 중지되었습니다. 대신 sudo를 사용해 
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1159,7 +1154,7 @@ msgstr "불가능"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -1168,60 +1163,60 @@ msgstr ""
 "{details} 문제를 이해하려면 추가 소프트웨어의 사용자 목록을 확인하거나 시스"
 "템 로그를 읽어보세요."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
 msgstr "문제를 이해하실려면 추가 소프트웨어 리스트나 시스템 로그를 읽어보세요."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr "로그 보기"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "구성"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} ê³¼ {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ", "
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "사용자의 추가 소프트웨어에 {packages}을(를) 추가하시겠습니까?"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr "Tails를 시작할 때 영구 저장소에서 자동으로 설치합니다."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr "매번 설치하기"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr "한번 설치하기"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr "추가 소프트웨어 생성이 실패했습니다."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -1229,67 +1224,67 @@ msgstr ""
 "Tails를 시작할 때 자동으로 설치하려면 퍼시스턴트 저장소를 생성하고 <b>추가 소"
 "프트웨어</b> 기능을 활성화하면 됩니다."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr "퍼시스턴트 저장소 생성"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr "퍼시스턴트 저장소 생성이 실패하였습니다."
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr "자동으로 Tails를 시작할때 {packages} 설치하실수 있습니다."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr "그렇게 하려면 USB 스틱에서 Tails를 실행해야 합니다."
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "추가 소프트웨어에서 {packages} 제거하겠습니까?"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr "이건 {packages} 설치를 중단할겁니다."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "제거"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr "퍼시스턴트 저장소에서 추가 소프트웨어를 설치하는중..."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr "몇분이 소요될수도 있습니다."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr "추가 소프트웨어의 설치가 실패했습니다."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr "추가 소프트웨어가 성공적으로 설치되었습니다."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr "추가 소프트웨어 업그래이드 확인이 실패했습니다."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -1297,11 +1292,11 @@ msgstr ""
 "문제를 이해하실려면 네트워크 연결을 확인하시고, Tails을 제시작하시고, 시스템"
 "로그를 읽어보세요."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr "추가 소프트웨어의 업그래이드가 실패했습니다."
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "문서"
 
@@ -1352,14 +1347,14 @@ msgstr ""
 "gnome.Terminal.desktop\">APT를 사용하여 일부 소프트웨어를 설치합니다</a>."
 
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
-#, fuzzy
 msgid ""
 "To do so, create a persistent storage and install some software using <a "
 "href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a href=\"org."
 "gnome.Terminal.desktop\">APT on the command line</a>."
 msgstr ""
-"이렇게 하려면 퍼시스턴트 저장소를 생성하고 명령줄에 Synaptic 패키지 매니저 또"
-"는 APT를 사용하여 일부 소프트웨어를 설치합니다."
+"이렇게 하려면 영구 저장소를 생성하고 <a href=\"synaptic.desktop\">시냅틱 패키"
+"지 관리자</a> 또는 <a href=\"org.gnome.Terminal.desktop\">명령줄에서 APT</a>"
+"를 사용하여 일부 소프트웨어를 설치합니다."
 
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:214
 msgid "To do so, install Tails on a USB stick and create a persistent storage."
@@ -1462,19 +1457,19 @@ msgstr ""
 "{manual_upgrade_url} 참조"
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr "오류:"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr "경고 : 가상 머신을 발견!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr "경고: 상용 가상 머신 탐지됨!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1485,11 +1480,11 @@ msgstr ""
 "있습니다. 믿을 수 있는 것은 오픈소스 공짜 소프트웨어 뿐이며, 이는 호스트와 가"
 "상머신 모두에게 해당됩니다."
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr "다시 표시 안 함"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr "더 알아보기"
 
@@ -1840,58 +1835,58 @@ msgstr ""
 msgid "Choose File Container"
 msgstr "파일 컨테이너를 고르세요."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 #, fuzzy
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr "안전하지 않은 브라우저 사용 안 함 (기본값)"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr "_재시작"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 msgid "_Cancel"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr "지금 다시 시작"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr "시스템을 다시 시작하지 못했습니다."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr "안전하지 않은 브라우저를 실행 중 ..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr "잠시 시간이 걸릴 수 있으므로 기다려주세요."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr "안전하지 않은 브라우저를 종료 중 ..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
@@ -1899,13 +1894,13 @@ msgstr ""
 "시간이 좀 걸릴 우려가 있습니다. 적절하게 종료 될 때까지 안전하지 않은 브라우"
 "저를 다시 시작할 수 없습니다."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr "안전하지 않은 브라우저"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
@@ -1913,15 +1908,15 @@ msgstr ""
 "다른 안전하지 않은 웹 브라우저가 실행 중이거나 정리되어 있습니다. 잠시 후 다"
 "시 시도해주세요."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr "chroot 설치에 실패했습니다."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr "브라우저를 구성할 수 없습니다."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
@@ -1930,7 +1925,7 @@ msgstr ""
 "아직 로컬 네트워크에 연결되어 있지 않습니다.\\n\\n안전하지 않은 브라우저를 시"
 "작하려면 먼저 Wi-Fi, 유선 또는 모바일 네트워크에 연결해야 합니다."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr "브라우저를 실행시키지 못 했습니다."
 
@@ -2103,6 +2098,7 @@ msgid "Tails documentation"
 msgstr "Tails 문서"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 #, fuzzy
 msgid "Persistent Storage"
@@ -2131,6 +2127,16 @@ msgstr "Tails를 사용하는 방법을 알아보기"
 msgid "Learn more about Tails"
 msgstr "Tails에 대해서 더 알아보기"
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "퍼시스턴트 저장소 생성"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr "설치, 복제, Tails 업그레이드"
@@ -2199,7 +2205,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr "관리 비밀번호"
 
@@ -2225,7 +2231,7 @@ msgid "Disable"
 msgstr "비활성화"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr "MAC 주소 익명화"
 
@@ -2250,7 +2256,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr "MAC 주소 익명화 안 함"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr "네트워크 설정"
 
@@ -2330,57 +2336,59 @@ msgstr "퍼시스턴트 저장소에서 설정이 로드되었습니다."
 msgid "Welcome to Tails!"
 msgstr "Tails에 오신 걸 환영합니다!"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
-#, fuzzy
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 msgid "_Persistent Storage"
-msgstr "퍼시스턴트 저장소 생성"
+msgstr "영구 저장소(_P)"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr "Tails를 시작한 후 사용자의 영구 저장소를 만들고 구성합니다."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr "언어 및 지역"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr "기본 설정"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
-msgstr "암호화된 _영구 저장소"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
 msgid "Show Passphrase"
 msgstr "비밀구절 표시하기"
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
-msgstr "영구 저장소의 잠금을 해제하려면 사용자의 비밀구절을 입력하십시오"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "비밀구절:"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
+msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+#, fuzzy
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr "퍼시스턴트 저장소가 열렸습니다. 다시 잠그려면 Tails를 재시작하세요."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr "_추가 설정"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr "추가 설정 추가"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
@@ -2388,11 +2396,11 @@ msgstr ""
 "기본 설정은 대부분의 상황에서 안전합니다. 사용자 설정을 추가하려면 아래 \"+"
 "\" 버튼을 누르세요."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 msgid "Shutdown"
 msgstr "종료"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr "_Tails 시작"
 
@@ -2493,11 +2501,21 @@ msgstr "퍼시스턴트 저장소 생성"
 msgid "System Settings"
 msgstr "기본 설정"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+#, fuzzy
+msgid "Welcome Screen"
+msgstr "시작 화면"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 #, fuzzy
 msgid "Activate Welcome Screen"
 msgstr "시작 화면"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+#, fuzzy
+msgid "Printers"
+msgstr "프린터"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 #, fuzzy
 msgid "Activate Printers"
@@ -2533,6 +2551,11 @@ msgstr "Tor 브리지"
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "즐겨찾기"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 #, fuzzy
 msgid "Activate Tor Browser Bookmarks"
@@ -2677,9 +2700,8 @@ msgid "_Show Passphrase"
 msgstr "비밀구절 표시(_S)"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:265
-#, fuzzy
 msgid "_Back"
-msgstr "뒤로"
+msgstr "뒤로(_B)"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:56
 msgid ""
@@ -2710,9 +2732,8 @@ msgid "Co_ntinue"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:29
-#, fuzzy
 msgid "_Delete..."
-msgstr "삭제 중..."
+msgstr "삭제하기(_D)..."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:36
 #, fuzzy
@@ -2724,9 +2745,8 @@ msgid "_Change Passphrase..."
 msgstr "비밀구절 변경(_C)..."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:66
-#, fuzzy
 msgid "_Restart Tails"
-msgstr "Tails 다시 시작"
+msgstr "Tails 재시작(_R)"
 
 #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:61
 msgid "File Containers"
@@ -2766,11 +2786,11 @@ msgstr "_잠금 열기"
 msgid "Detach this volume"
 msgstr "이볼륨 때내기"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr "대상 USB 메모리 스틱:"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr "재설치하기 (모든 데이터를 삭제)"
 
@@ -2904,9 +2924,8 @@ msgid "None"
 msgstr "없음"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:240
-#, fuzzy
 msgid "_Ask for a Tor bridge by email"
-msgstr "• 이메일을 통한 브리지"
+msgstr "이메일로 Tor bridge에 대해 묻기(_A)"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:259
 msgid ""
@@ -2963,9 +2982,8 @@ msgid "Your clock and time zone need to be correct to connect to Tor."
 msgstr "Tor에 연결하려면 시계와 시간대가 정확해야 합니다."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:769
-#, fuzzy
 msgid "Fix _Clock"
-msgstr "시계 고치기"
+msgstr "시계 수정하기(_C)"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:807
 msgid "• Public network"
@@ -2978,9 +2996,8 @@ msgid ""
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:840
-#, fuzzy
 msgid "Try _Signing in to the Network"
-msgstr "네트워크에 가입하기 위한 시도"
+msgstr "네트워크에 로그인하기(_S)"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:879
 msgid "• Local proxy"
@@ -2995,9 +3012,8 @@ msgstr ""
 "니다."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:912
-#, fuzzy
 msgid "Configure a Local _Proxy"
-msgstr "로컬 프록시 설정"
+msgstr "로컬 프록시 구성하기(_P)"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:951
 #, fuzzy
@@ -3080,9 +3096,8 @@ msgstr ""
 "해낼 수 있습니다."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1343
-#, fuzzy
 msgid "Configure a Tor _bridge"
-msgstr "Tor 브리지 구성"
+msgstr "Tor bridge 구성하기(_B)"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1389
 msgid ""
@@ -3328,6 +3343,12 @@ msgstr "12ì›”"
 msgid "Clock"
 msgstr "시계"
 
+#~ msgid "Encrypted _Persistent Storage"
+#~ msgstr "암호화된 _영구 저장소"
+
+#~ msgid "Enter your passphrase to unlock the persistent storage"
+#~ msgstr "영구 저장소의 잠금을 해제하려면 사용자의 비밀구절을 입력하십시오"
+
 #, python-format
 #~ msgid ""
 #~ "<h1>Help us fix your bug!</h1>\n"
diff --git a/po/lt.po b/po/lt.po
index 2f8b32eeefc..21fd4956caf 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -11,8 +11,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
-"PO-Revision-Date: 2023-01-25 11:39+0000\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
+"PO-Revision-Date: 2023-03-05 10:37+0000\n"
 "Last-Translator: emma peel <emma.peel@riseup.net>\n"
 "Language-Team: Lithuanian <https://hosted.weblate.org/projects/tor/tails-gui/"
 "lt/>\n"
@@ -23,7 +23,7 @@ msgstr ""
 "Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < "
 "11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? "
 "1 : n % 1 != 0 ? 2: 3);\n"
-"X-Generator: Weblate 4.16-dev\n"
+"X-Generator: Weblate 4.16.2-dev\n"
 
 #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1
@@ -517,9 +517,9 @@ msgid "Additional Settings"
 msgstr "Papildomi nustatymai"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "Atsisakyti"
@@ -592,12 +592,12 @@ msgstr "IÅ¡jungta"
 msgid "Off (default)"
 msgstr "IÅ¡jungta (numatytasis)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
 #, fuzzy
-msgid "Persistent Storage Not Unlocked"
+msgid "Persistent Storage Still Locked"
 msgstr "Sukurti ilgalaikį kaupiklį"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 #, fuzzy
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
@@ -605,21 +605,20 @@ msgstr ""
 "Ar tikrai norite dabar paleisti Tails iš naujo?\\n\\nVisa jūsų esama veikla "
 "bus prarasta."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
 #, fuzzy
-msgid "Continue Without Persistent Storage"
+msgid "Start Without Persistent Storage"
 msgstr "Sukurti ilgalaikį kaupiklį"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 #, fuzzy
 msgid "Don't _Create Persistent Storage"
 msgstr "Sukurti ilgalaikį kaupiklį"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
-#, fuzzy
 msgid "_Create Persistent Storage"
-msgstr "Sukurti ilgalaikį kaupiklį"
+msgstr "_Sukurti ilgalaikį kaupiklį"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:83
 #, fuzzy
@@ -638,7 +637,6 @@ msgstr "Atrakinama…"
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr "Atrakinti"
 
@@ -865,7 +863,7 @@ msgstr ""
 msgid "Synchronizing data on disk..."
 msgstr "Sinchronizuojami duomenys diske..."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
@@ -873,63 +871,63 @@ msgstr ""
 "Klaida: Nepavyksta nustatyti etiketės ar gauti jūsų įrenginio UUID.  "
 "Nepavyko tęsti."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr "Diegimas baigtas! (%s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr "Tails diegimas patyrÄ— nesÄ—kmÄ™!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr "Tails diegimo programa"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr "Kopijuoti esamÄ… Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr "Naudoti atsisiųstą Tails ISO atvaizdį"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr "Naujinti"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr "Rankinio naujinimo instrukcijos"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr "Įdiegti"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr "Diegimo instrukcijos"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(size)s %(vendor)s %(model)s įrenginys (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr "Nepasirinktas joks ISO atvaizdis"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr "Pasirinkite Tails ISO atvaizdį."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -940,7 +938,7 @@ msgstr ""
 "nekeičiamąjį, todėl Tails iš jo nepasileis. Pabandykite įdiegti kitame "
 "modelyje."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
@@ -949,7 +947,7 @@ msgstr ""
 "Įrenginys \"%(pretty_name)s\" yra pernelyg mažas, kad būtų įdiegta Tails "
 "(reikalingas bent %(size)s GB įrenginys)."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -957,33 +955,33 @@ msgid ""
 "%(dl_url)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr "Nepavyko rasti jokio Tails diegimui tinkamo įrenginio"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr "Įkiškite bent %0.1f GB USB atmintuką ar SD kortelę."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr "Diegiant Tails, įvyko klaida"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr "Diegimas baigtas!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr "Nepavyko prijungti įrenginio"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(parent_size)s %(vendor)s %(model)s įrenginys (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
@@ -993,11 +991,11 @@ msgstr ""
 "\n"
 "Ilgalaikis kaupiklis Å¡iame USB atmintuke bus prarastas."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
@@ -1007,20 +1005,20 @@ msgstr ""
 "\n"
 "Visi Å¡iame USB atmintuke esantys duomenys bus prarasti."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr "Ištrinti visus duomenis ir įdiegti"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr "%(description)s%(delete_message)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr "Patvirtinkite paskirties USB atmintukÄ…"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
@@ -1028,7 +1026,7 @@ msgstr ""
 "Pasirinktas failas yra neperskaitomas. Pataisykite jo leidimus arba "
 "pasirinkite kitÄ… failÄ…."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
@@ -1036,7 +1034,7 @@ msgstr ""
 "Nepavyko naudoti pasirinkto failo.  Jums gali labiau pasisekti, jei "
 "perkelsite ISO atvaizdį į savo disko šaknies katalogą (t.y.: C:\\)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr "Pasirinktas %(filename)s"
@@ -1116,7 +1114,7 @@ msgstr "su yra išjungta. Vietoj to, naudokite sudo."
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1182,7 +1180,7 @@ msgstr "neprieinama"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -1191,7 +1189,7 @@ msgstr ""
 "{details} Norėdami išsiaiškinti problemą, patikrinkite savo papildomos "
 "programinės įrangos sąrašą arba skaitykite sistemos žurnalą."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
@@ -1199,56 +1197,56 @@ msgstr ""
 "Norėdami išsiaiškinti problemą, patikrinkite savo papildomos programinės "
 "įrangos sąrašą arba skaitykite sistemos žurnalą."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr "Rodyti žurnalą"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "Konfigūruoti"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} ir {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ", "
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "Pridėti {packages} į jūsų papildomą programinę įrangą?"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 "Kad, paleidžiant Tails, ji būtų automatiškai įdiegiama iš ilgalaikio "
 "kaupiklio."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr "Įdiegti kiekvieną kartą"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr "Įdiegti tik vieną kartą"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr "Jūsų papildomos programinės įrangos konfigūracija patyrė nesėkmę."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -1257,68 +1255,68 @@ msgstr ""
 "ilgalaikį kaupiklį ir aktyvuoti <b>Papildomos programinės įrangos</b> "
 "ypatybÄ™."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr "Sukurti ilgalaikį kaupiklį"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr "Jūsų ilgalaikio kaupiklio sukūrimas nepavyko."
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr "Paleisdami Tails, galėtumėte automatiškai įdiegti {packages}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr "Norėdami tai padaryti, turite paleisti Tails iš USB atmintuko."
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "Šalinti {packages} iš jūsų papildomos programinės įrangos?"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr "Tai sustabdys automatinį {packages} diegimą."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "Å alinti"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr "Įdiegiama papildoma programinė įranga iš jūsų ilgalaikio kaupiklio..."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr "Tai gali užimti kelias minutes."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr "Jūsų papildomos programinės įrangos diegimas patyrė nesėkmę."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr "Papildoma programinė įranga sėkmingai įdiegta"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 "Nepavyko patikrinti jūsų papildomai programinei įrangai skirtų naujinimų"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -1326,11 +1324,11 @@ msgstr ""
 "Norėdami išsiaiškinti problemą, patikrinkite savo tinklo ryšį, paleiskite "
 "Tails iš naujo arba skaitykite sistemos žurnalą."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr "Jūsų papildomos programinės įrangos naujinimas patyrė nesėkmę"
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "Dokumentacija"
 
@@ -1475,20 +1473,20 @@ msgid ""
 msgstr ""
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr "klaida:"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr "Įspėjimas: aptikta virtualioji mašina!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr ""
 "Įspėjimas: aptikta ne laisvosios programinės įrangos virtualioji mašina!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1501,11 +1499,11 @@ msgstr ""
 "sistemoje, tiek virtualizacijos programinėje įrangoje, gali būti laikoma "
 "patikima."
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr "Daugiau neberodyti"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr "Sužinokite daugiau"
 
@@ -1844,31 +1842,31 @@ msgstr ""
 msgid "Choose File Container"
 msgstr "Pasirinkti failų konteinerį"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr "_Paleisti iš naujo"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 msgid "_Cancel"
 msgstr "_Atsisakyti"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
@@ -1876,27 +1874,27 @@ msgstr ""
 "Ar tikrai norite dabar paleisti Tails iš naujo?\\n\\nVisa jūsų esama veikla "
 "bus prarasta."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr "Paleisti iš naujo dabar"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr "Nepavyko paleisti sistemos iš naujo."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr "Paleidžiama nesaugi naršyklė..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr "Tai gali šiek tiek užtrukti, prašome būti kantriais."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr "Nesaugi naršyklė išjungiama..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
@@ -1904,13 +1902,13 @@ msgstr ""
 "Tai gali šiek tiek užtrukti. Jūs neturite iš naujo paleisti nesaugios "
 "naršyklės tol, kol ji nebus tinkamai išjungta."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr "Nesaugi naršyklė"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
@@ -1918,22 +1916,22 @@ msgstr ""
 "Šiuo metu veikia ar yra išvaloma kita nesaugi naršyklė. Šiek tiek palaukite "
 "ir bandykite dar kartÄ…."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr "Nepavyko nustatyti chroot."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr "Nepavyko sukonfigūruoti naršyklės."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
 "network."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr "Nepavyko paleisti naršyklės."
 
@@ -2107,6 +2105,7 @@ msgid "Tails documentation"
 msgstr "Tails dokumentacija"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 #, fuzzy
 msgid "Persistent Storage"
@@ -2138,6 +2137,16 @@ msgstr "Sužinokite kaip naudotis Tails"
 msgid "Learn more about Tails"
 msgstr "Sužinoti daugiau apie Tails"
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "Sukurti ilgalaikį kaupiklį"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr "Įdiegti, kopijuoti, naujinti Tails"
@@ -2208,7 +2217,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr "Administravimo slaptažodis"
 
@@ -2235,7 +2244,7 @@ msgid "Disable"
 msgstr "IÅ¡jungti"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr ""
 
@@ -2256,7 +2265,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr "Tinklo konfigūravimas"
 
@@ -2317,19 +2326,19 @@ msgstr "Nustatymai buvo įkelti iš ilgalaikio kaupiklio."
 msgid "Welcome to Tails!"
 msgstr "Sveiki atvykę į Tails!"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 #, fuzzy
 msgid "_Persistent Storage"
 msgstr "Sukurti ilgalaikį kaupiklį"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 #, fuzzy
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
@@ -2337,42 +2346,45 @@ msgstr ""
 "Kad, paleidžiant Tails, ji būtų automatiškai įdiegiama iš ilgalaikio "
 "kaupiklio."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr "Kalba ir regionas"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr "Numatytieji nustatymai"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
-msgstr "Å ifruotas ilgalaikis kau_piklis"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
 msgid "Show Passphrase"
 msgstr "Rodyti slaptafrazÄ™"
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
-msgstr "Įveskite savo slaptafrazę, kad atrakintumėte ilgalaikį kaupiklį"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "SlaptafrazÄ—:"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
+msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+#, fuzzy
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 "Jūsų ilgalaikis kaupiklis yra atrakintas. Paleiskite Tails iš naujo, "
-"norėdami jį vėl užrakinti. "
+"norėdami jį vėl užrakinti."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr "P_apildomi nustatymai"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr "PridÄ—ti papildomÄ… nustatymÄ…"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
@@ -2380,11 +2392,11 @@ msgstr ""
 "Numatytieji nustatymai daugelyje situacijų yra saugūs. Norėdami pridėti "
 "pasirinktinį nustatymą, žemiau spustelėkite mygtuką \"+\"."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 msgid "Shutdown"
 msgstr "IÅ¡jungti"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr "Palei_sti Tails"
 
@@ -2494,10 +2506,20 @@ msgstr "Sukurti ilgalaikį kaupiklį"
 msgid "System Settings"
 msgstr "Numatytieji nustatymai"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+#, fuzzy
+msgid "Welcome Screen"
+msgstr "Užrakinti ekraną"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 msgid "Activate Welcome Screen"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+#, fuzzy
+msgid "Printers"
+msgstr "Spausdintuvai"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 #, fuzzy
 msgid "Activate Printers"
@@ -2533,6 +2555,11 @@ msgstr "Paleisti Tor Naršyklę"
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "Naršyklės adresyno įrašai"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 #, fuzzy
 msgid "Activate Tor Browser Bookmarks"
@@ -2762,11 +2789,11 @@ msgstr "At_rakinti"
 msgid "Detach this volume"
 msgstr "Atjungti šį tomą"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr "Paskirties USB atmintukas:"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr "Įdiegti iš naujo (ištrinti visus duomenis)"
 
@@ -3275,6 +3302,12 @@ msgstr "Gruodis"
 msgid "Clock"
 msgstr "Laikrodis"
 
+#~ msgid "Encrypted _Persistent Storage"
+#~ msgstr "Å ifruotas ilgalaikis kau_piklis"
+
+#~ msgid "Enter your passphrase to unlock the persistent storage"
+#~ msgstr "Įveskite savo slaptafrazę, kad atrakintumėte ilgalaikį kaupiklį"
+
 #, python-format
 #~ msgid ""
 #~ "<h1>Help us fix your bug!</h1>\n"
diff --git a/po/lv.po b/po/lv.po
index add806723e8..e60c5b9a8c1 100644
--- a/po/lv.po
+++ b/po/lv.po
@@ -9,8 +9,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
-"PO-Revision-Date: 2023-01-25 10:11+0000\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
+"PO-Revision-Date: 2023-03-05 10:37+0000\n"
 "Last-Translator: emma peel <emma.peel@riseup.net>\n"
 "Language-Team: Latvian <https://hosted.weblate.org/projects/tor/tails-gui/lv/"
 ">\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2;\n"
-"X-Generator: Weblate 4.16-dev\n"
+"X-Generator: Weblate 4.16.2-dev\n"
 
 #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1
@@ -473,9 +473,9 @@ msgid "Additional Settings"
 msgstr "Papildu iestatījumi"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "Atcelt"
@@ -548,12 +548,12 @@ msgstr "Izslēgt"
 msgid "Off (default)"
 msgstr "Izslēgts (noklusējuma vērtība)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
 #, fuzzy
-msgid "Persistent Storage Not Unlocked"
-msgstr "Šifrēta _Pastāvīgā uzglabāšana"
+msgid "Persistent Storage Still Locked"
+msgstr "Šifrēta Pastāvīgā uzglabāšana"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 #, fuzzy
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
@@ -561,17 +561,17 @@ msgstr ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
 #, fuzzy
-msgid "Continue Without Persistent Storage"
+msgid "Start Without Persistent Storage"
 msgstr "Šifrēta _Pastāvīgā uzglabāšana"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 #, fuzzy
 msgid "Don't _Create Persistent Storage"
 msgstr "Šifrēta _Pastāvīgā uzglabāšana"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 #, fuzzy
 msgid "_Create Persistent Storage"
@@ -594,7 +594,6 @@ msgstr "Atslēdz..."
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr "Atslēgt"
 
@@ -813,70 +812,70 @@ msgstr "Disks ir cilptestā, tiek izlaista MBR atiestatīšana"
 msgid "Synchronizing data on disk..."
 msgstr "Sinhronizē datus uz diska..."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
 msgstr ""
 "Kļūda: Nav iespējams iegūt ierīces UUID vai piešķirt iezīmi. Nespēj turpināt."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr "Instalēšana pabeigta! (%s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr "Tails instalācija neizdevās!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr "Tails instalētājs"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr "Klonēt strādājošo Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr "Lietot lejuplādēto Tails ISO attēlu"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr "Jaunināt"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr "Instalēt"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr "Instalācijas norādes"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(size)s %(vendor)s %(model)s ierīce (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr "Neviens ISO attēls nav izvēlēts"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr "Lūdzu izvēlieties ISO attēlu."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -886,7 +885,7 @@ msgstr ""
 "USB disku \"%(pretty_name)s\" tā ražotājs ir nokonfigurējis kā nenoņemamu, "
 "un Tails neizdosies no tā startēt. Lūdzu mēģiniet instalēt uz cita modeļa."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
@@ -895,7 +894,7 @@ msgstr ""
 "Ierīce \"%(pretty_name)s\" ir pārāk maza, lai instalētu Tails (ir "
 "nepieciešams vismaz %(size)s GB)."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -903,74 +902,74 @@ msgid ""
 "%(dl_url)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr "Neizdevās atrast nevienu ierīci, kas spēj instalēt Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr ""
 "Lūdzu pievienojiet USB zibatmiņu vai SD karti, kuru ietilpība ir vismaz "
 "%0.1f GB."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr "Instalējot Tails radās kļūda"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr "Instalēšana ir pabeigta!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr "Nespēj uzmontēt ierīci"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(parent_size)s %(vendor)s %(model)s ierīce (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
 "The persistent storage on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
 "All data on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr "Apstipriniet mērķa USB zibi."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
 msgstr ""
 "Atlasīto datni nav iespējams lasīt. Lūdzu sakārtojiet atļaujas vai "
-"izvēlieties citu datni. "
+"izvēlieties citu datni."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
@@ -978,7 +977,7 @@ msgstr ""
 "Nespēj lietot atlasīto datni.  Iespējams, veiktos labāk, ja ISO tiktu "
 "pārvietots uz diska sakni (proti, C:\\)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr "%(filename)s izvēlēts"
@@ -1061,7 +1060,7 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1123,143 +1122,143 @@ msgstr "nav pieejams"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
 "log to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr "Rādīt žurnālu"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "Konfigurēt"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "Noņemt"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "Dokumentācija"
 
@@ -1390,19 +1389,19 @@ msgid ""
 msgstr ""
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr "kļūda:"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr "Brīdinājums: konstatēta virtuāla mašīna!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr "Brīdinājums: konstatēta virtuāla mašīna, kas nav brīva!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1414,11 +1413,11 @@ msgstr ""
 "bezmaksas programmatūru - gan viesotāja operētājsistēmai, gan "
 "virtualizācijas programmatūrai."
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr ""
 
@@ -1747,32 +1746,32 @@ msgstr ""
 msgid "Choose File Container"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 #, fuzzy
 msgid "_Cancel"
 msgstr "Atcelt"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 #, fuzzy
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
@@ -1781,27 +1780,27 @@ msgstr ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr "Startē Nedrošu pārlūku..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr "Tas var ilgt kādu laiku, tāpēc, lūdzu, esiet pacietīgs."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr "Izslēdz Nedrošu pārlūku..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
@@ -1809,13 +1808,13 @@ msgstr ""
 "Darbības pabeigšanai vēl ir nepieciešams kāds laiks. Nedrīkst pārstartēt "
 "Nedrošo pārlūku, kamēr tas tiek pareizi izslēgts."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr "Nedrošs pārlūks"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
@@ -1823,22 +1822,22 @@ msgstr ""
 "Šobrīd darbojas vai tiek attīrīts cits nedrošs pārlūks. Lūdzu mēģiniet vēlāk "
 "vēlreiz."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr "Neizdevās iestatīt chroot."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr "Neizdevās nokonfigurēt pārlūku."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
 "network."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr "Neizdevās startēt pārlūku."
 
@@ -2015,6 +2014,7 @@ msgid "Tails documentation"
 msgstr "Tails dokumentācija"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 #, fuzzy
 msgid "Persistent Storage"
@@ -2042,6 +2042,16 @@ msgstr "Uzziniet kā lietot Tails"
 msgid "Learn more about Tails"
 msgstr "Uzzināt vairāk par Tails"
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "Šifrēta _Pastāvīgā uzglabāšana"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr ""
@@ -2108,7 +2118,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr "Administrēšanas parole"
 
@@ -2135,7 +2145,7 @@ msgid "Disable"
 msgstr "Atspējot"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr ""
 
@@ -2156,7 +2166,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr "Tīkla konfigurēšana"
 
@@ -2217,60 +2227,63 @@ msgstr ""
 msgid "Welcome to Tails!"
 msgstr "Sveicināti Tails!"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 #, fuzzy
 msgid "_Persistent Storage"
 msgstr "Šifrēta _Pastāvīgā uzglabāšana"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 #, fuzzy
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr "Tails is configuring your Persistent Storage. Please wait..."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr "Valoda un reģions"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr "Noklusējuma iestatījumi"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
-msgstr "Šifrēta _Pastāvīgā uzglabāšana"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
 msgid "Show Passphrase"
 msgstr "Parādīt paroles frāzi"
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
-msgstr "Ievadiet savu paroles frāzi, lai atslēgtu pastāvīgo krātuvi"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "Ieejas frāze:"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
+msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+#, fuzzy
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 "Jūsu pastāvīgā krātuve ir atbloķēta. Restartējiet Tails, lai to atkal "
 "bloÄ·Ä“tu."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr "_Papildu iestatījumi"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr "Pievienot papildu iestatījumu"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
@@ -2278,11 +2291,11 @@ msgstr ""
 "Vairumā gadījumu noklusējuma vērtības ir drošas. Lai pievienotu pielāgotus "
 "iestatījumus, nospiediet tālāk esošo \"+\" pogu."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 msgid "Shutdown"
 msgstr "Izslēgšana"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr "_Palaist Tails"
 
@@ -2387,10 +2400,19 @@ msgstr "Šifrēta _Pastāvīgā uzglabāšana"
 msgid "System Settings"
 msgstr "Noklusējuma iestatījumi"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+msgid "Welcome Screen"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 msgid "Activate Welcome Screen"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+#, fuzzy
+msgid "Printers"
+msgstr "Printeri"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 #, fuzzy
 msgid "Activate Printers"
@@ -2426,6 +2448,11 @@ msgstr "Startēt Pārlūku Tor"
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "Startēt Pārlūku Tor"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 #, fuzzy
 msgid "Activate Tor Browser Bookmarks"
@@ -2649,11 +2676,11 @@ msgstr ""
 msgid "Detach this volume"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr "MÄ“rÄ·a USB zibis:"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr "Pārinstalēt (dzēst visus datus)"
 
@@ -3146,6 +3173,12 @@ msgstr ""
 msgid "Clock"
 msgstr ""
 
+#~ msgid "Encrypted _Persistent Storage"
+#~ msgstr "Šifrēta _Pastāvīgā uzglabāšana"
+
+#~ msgid "Enter your passphrase to unlock the persistent storage"
+#~ msgstr "Ievadiet savu paroles frāzi, lai atslēgtu pastāvīgo krātuvi"
+
 #, python-format
 #~ msgid ""
 #~ "<h1>Help us fix your bug!</h1>\n"
diff --git a/po/mk.po b/po/mk.po
index 3cb14a57147..ba79c484c3e 100644
--- a/po/mk.po
+++ b/po/mk.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
 "PO-Revision-Date: 2023-02-09 11:36+0000\n"
 "Last-Translator: emma peel <emma.peel@riseup.net>\n"
 "Language-Team: Macedonian <https://hosted.weblate.org/projects/tor/tails-gui/"
@@ -516,9 +516,9 @@ msgid "Additional Settings"
 msgstr "Дополнителни поставки"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "Откажи"
@@ -591,12 +591,12 @@ msgstr "Исклучено"
 msgid "Off (default)"
 msgstr "Исклучено (стандардно)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
 #, fuzzy
-msgid "Persistent Storage Not Unlocked"
+msgid "Persistent Storage Still Locked"
 msgstr "Создај Постојан склад"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 #, fuzzy
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
@@ -604,17 +604,17 @@ msgstr ""
 "Дали навистина сакате повторно да го стартувате Tails сега?\\n\\nЦелата ваша "
 "моментална работа ќе биде загубена."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
 #, fuzzy
-msgid "Continue Without Persistent Storage"
+msgid "Start Without Persistent Storage"
 msgstr "Создај Постојан склад"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 #, fuzzy
 msgid "Don't _Create Persistent Storage"
 msgstr "Создај Постојан склад"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 #, fuzzy
 msgid "_Create Persistent Storage"
@@ -636,7 +636,6 @@ msgstr "Отклучување…"
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr "Отклучи"
 
@@ -868,7 +867,7 @@ msgstr "Уредот е повратна врска, прескокнување
 msgid "Synchronizing data on disk..."
 msgstr "Синхронизирање на податоците на дискот..."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
@@ -876,64 +875,64 @@ msgstr ""
 "Грешка: Не можеше да се постави ознака или да се добие UUID за твојот уред. "
 "Не може да продолжи."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr "Инсталацијата заврши! (%s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr "Инсталацијата на Tails не успеа!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 #, fuzzy
 msgid "Tails Installer"
 msgstr "Tails Installer"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr "Клонирај го моменталниот Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr "Користи преземена Tails ISO слика"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr "Надградба"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr "Инструкции за рачна надградба"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr "Инсталирај"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr "Инструкции за инсталација"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(size)s %(vendor)s %(model)s уред (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr "Нема селектирано ISO слика"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr "Ве молиме изберете Tails ISO слика."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -944,7 +943,7 @@ msgstr ""
 "неговиот производител и Tails нема да може да се стартува од него, Ве молиме "
 "обидете се со инсталирање на друг модел."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
@@ -953,7 +952,7 @@ msgstr ""
 "Уредот \"%(pretty_name)s\" е премногу мал за да се инсталира Tails (потребно "
 "е најмалку %(size)s ГБ)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -964,33 +963,33 @@ msgstr ""
 "користите преземена Tails ISO слика:\n"
 "%(dl_url)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr "Не можеше да биде пронајден соодветен уред за да биде инсталиран Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr "Ве молиме вклучете USB флеш уред или SD картичка од најмалку %0.1f ГБ."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr "Се случи грешка за време на инсталацијата на Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr "Инсталацијата заврши!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr "Уредот не можеше да биде монтиран"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(parent_size)s %(vendor)s %(model)s уред (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
@@ -1000,11 +999,11 @@ msgstr ""
 "\n"
 "Постојаниот склад на овој USB стик ќе биде изгубен."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr "Избриши Постојан склад и Пре-инсталирај"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
@@ -1014,20 +1013,20 @@ msgstr ""
 "\n"
 "Сите податоци на овој USB стик ќе бидат изгубени."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr "Избриши ги сите податоци и Инсталирај"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr "%(description)s%(delete_message)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr "Потврди го избраниот USB стик"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
@@ -1035,7 +1034,7 @@ msgstr ""
 "Избраната датотека не може да биде прочитана. Ве молиме поправете ги "
 "нејзините дозволи или изберете друга датотека."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
@@ -1043,7 +1042,7 @@ msgstr ""
 "Избраната датотека не можеше да се користи. Може ќе имаш подобра среќа ако "
 "го преместиш твоето ISO во root на твојот диск (на пр: C:\\)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr "%(filename)s одбран/о/и"
@@ -1133,7 +1132,7 @@ msgstr "su е оневозможен. Ве молиме користете sudo"
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1199,7 +1198,7 @@ msgstr "не е достапно"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -1208,7 +1207,7 @@ msgstr ""
 "{details} Ве молиме проверете ја вашата листа на дополнителен софтвер или "
 "прочитајте го системскиот лог за да го разберете проблемот."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
@@ -1216,56 +1215,56 @@ msgstr ""
 "Ве молиме проверете ја вашата листа на дополнителен софтвер или прочитајте "
 "го системскиот лог за да ја разберете грешката."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr "Приказ на лог"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "Конфигурирај"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} и {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ", "
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "Да се додадат {packages} на вашиот дополнителен софтвер?"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 "За да се инсталираат автоматски од вашиот постојан склад кога се стартува "
 "Tails."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr "Инсталирај секогаш"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr "Инсталирај само еднаш"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr "Конфигурацијата на вашиот дополнителен софтвер не успеа."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -1274,67 +1273,67 @@ msgstr ""
 "постојан склад и да ја активирате <b>Дополнителен софтвер</b> "
 "карактеристиката."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr "Создај Постојан склад"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr "Создавањето на вашиот постојан склад не успеа."
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr "Можеш да ги инсталираш {packages} автоматски кога се стартува Tails"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr "За да го направите тоа, потребно е да го стартувате Tails од USB стик."
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "Да се отстрани {packages} од вашиот дополнителен софтвер?"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr "Ова ќе го запре автоматското инсталирање на {packages}."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "Отстрани"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr "Инсталирање на вашиот дополнителен софтвер од постојаниот склад...."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr "Ова може да потрае неколку минути."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr "Инсталацијата на вашиот дополнителен софтвер не успеа"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr "Дополнителниот софтвер беше успешно инсталиран"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr "Проверката за надградби на вашиот дополнителен софтвер на успеа"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -1342,11 +1341,11 @@ msgstr ""
 "Ве молиме проверете го вашето мрежно поврзување, повторно стартувајте го "
 "Tails, или прочитајте го системскиот лог за да го разберете проблемот."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr "Надградбата на вашиот дополнителен софтвер не успеа"
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "Документација"
 
@@ -1512,19 +1511,19 @@ msgstr ""
 "Видете {manual_upgrade_url}"
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr "грешка:"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr "Предупредување: беше детектирана виртуелна машина!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr "Предупредување: беше детектирана виртуелна машина која не е бесплатна!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1535,11 +1534,11 @@ msgstr ""
 "следат што правите во Tails. Само слободниот софтвер може да се смета за "
 "доверлив, и за хост оперативниот систем и за софтверот за виртуелизација."
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr "Не појавувај повторно."
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr "Научи повеќе"
 
@@ -1895,32 +1894,32 @@ msgstr ""
 msgid "Choose File Container"
 msgstr "Избери контејнер датотека"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 #, fuzzy
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr "Оневозможи го Небезбедниот Прелистувач (стандардно)"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr "_Повторно стартувај"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 msgid "_Cancel"
 msgstr "_Исклучи"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
@@ -1928,27 +1927,27 @@ msgstr ""
 "Дали навистина сакате повторно да го стартувате Tails сега?\\n\\nЦелата ваша "
 "моментална работа ќе биде загубена."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr "Повторно стартувај сега"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr "Не успеа повторното стартување на системот."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr "Стартување на Небезбеден прелистувач..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr "Ова може да потрае, ве молиме бидете трпеливи."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr "Исклучување на Небезбедниот прелистувач..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
@@ -1956,13 +1955,13 @@ msgstr ""
 "Ова може да потрае, и не треба повторно да го стартувате Небезбедниот "
 "прелистувач се додека не е правилно исклучен."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr "Небезбеден прелистувач"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
@@ -1970,15 +1969,15 @@ msgstr ""
 "Друг Небезбеден прелистувач работи во мометов, или е исчистен. Ве молиме "
 "обидете се подоцна."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr "Не беше поставен chroot."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr "Прелистувачот не се конфигурираше."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
@@ -1988,7 +1987,7 @@ msgstr ""
 "стартувате Небезбедниот Прелистувач, најпрво треба да се поврзете на Wi-Fi, "
 "кабел или мобилна мрежа."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr "Прелистувачот не се стартуваше."
 
@@ -2168,6 +2167,7 @@ msgid "Tails documentation"
 msgstr "Tails документација"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 #, fuzzy
 msgid "Persistent Storage"
@@ -2199,6 +2199,16 @@ msgstr "Научи како да го користиш Tails"
 msgid "Learn more about Tails"
 msgstr "Научи повеќе за Tails"
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "Создај Постојан склад"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr "Инсталирај го, клонирај го, ажурирај го Tails"
@@ -2270,7 +2280,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr "Администраторска лозинка"
 
@@ -2297,7 +2307,7 @@ msgid "Disable"
 msgstr "Оневозможи"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr "Анонимизација на MAC адреса"
 
@@ -2323,7 +2333,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr "Не ги анонимизирај MAC адресите"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr "Конфигурирање на мрежа"
 
@@ -2403,19 +2413,19 @@ msgstr "Поставките беа вчитани од постојаниот 
 msgid "Welcome to Tails!"
 msgstr "Добредојдовте во Tails!"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 #, fuzzy
 msgid "_Persistent Storage"
 msgstr "Создај Постојан склад"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 #, fuzzy
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
@@ -2423,40 +2433,43 @@ msgstr ""
 "За да се инсталираат автоматски од вашиот постојан склад кога се стартува "
 "Tails."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr "Јазик и Регион"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr "Основни поставки"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
-msgstr "Енкриптиран_Постојан склад"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
 msgid "Show Passphrase"
 msgstr "Покажи лозинка"
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
-msgstr "Внесете ја вашата лозинка за да го отклучите постојаниот склад"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "Лозинка:"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
+msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+#, fuzzy
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr "Вашиот постојан скалд е отклучен. Повторно стартувајте го Tails."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr "_Дополнителни поставки"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr "Додади дополнителна поставка"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
@@ -2464,11 +2477,11 @@ msgstr ""
 "Стандардните поставки се безбедни во повеќето ситуации. За да додадете "
 "прилагодено поставување, притиснете го \"+\" копчето подолу."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 msgid "Shutdown"
 msgstr "Исклучување"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr "_Стартување на Tails"
 
@@ -2575,11 +2588,21 @@ msgstr "Создај Постојан склад"
 msgid "System Settings"
 msgstr "Основни поставки"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+#, fuzzy
+msgid "Welcome Screen"
+msgstr "Екран за Добредојде"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 #, fuzzy
 msgid "Activate Welcome Screen"
 msgstr "Екран за Добредојде"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+#, fuzzy
+msgid "Printers"
+msgstr "Печатачи"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 #, fuzzy
 msgid "Activate Printers"
@@ -2615,6 +2638,11 @@ msgstr "Tor Мост"
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "Облежувачи на прелистувачот"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 #, fuzzy
 msgid "Activate Tor Browser Bookmarks"
@@ -2849,11 +2877,11 @@ msgstr "_Отклучи"
 msgid "Detach this volume"
 msgstr "Откачи го овој простор"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr "Избери USB стик:"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr "Преинсталирај (избриши ги сите податоци)"
 
@@ -3429,6 +3457,12 @@ msgstr "Декември"
 msgid "Clock"
 msgstr "Часовник"
 
+#~ msgid "Encrypted _Persistent Storage"
+#~ msgstr "Енкриптиран_Постојан склад"
+
+#~ msgid "Enter your passphrase to unlock the persistent storage"
+#~ msgstr "Внесете ја вашата лозинка за да го отклучите постојаниот склад"
+
 #, python-format
 #~ msgid ""
 #~ "<h1>Help us fix your bug!</h1>\n"
diff --git a/po/mr.po b/po/mr.po
index a71af8fcab5..58603284962 100644
--- a/po/mr.po
+++ b/po/mr.po
@@ -9,8 +9,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
-"PO-Revision-Date: 2023-01-26 19:00+0000\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
+"PO-Revision-Date: 2023-03-05 10:37+0000\n"
 "Last-Translator: emma peel <emma.peel@riseup.net>\n"
 "Language-Team: Marathi <https://hosted.weblate.org/projects/tor/tails-gui/mr/"
 ">\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.16-dev\n"
+"X-Generator: Weblate 4.16.2-dev\n"
 
 #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1
@@ -450,9 +450,9 @@ msgid "Additional Settings"
 msgstr ""
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #, fuzzy
 msgid "Cancel"
@@ -525,12 +525,12 @@ msgstr ""
 msgid "Off (default)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
 #, fuzzy
-msgid "Persistent Storage Not Unlocked"
+msgid "Persistent Storage Still Locked"
 msgstr "सक्तीचे संचय तयार करा"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 #, fuzzy
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
@@ -538,17 +538,17 @@ msgstr ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
 #, fuzzy
-msgid "Continue Without Persistent Storage"
+msgid "Start Without Persistent Storage"
 msgstr "सक्तीचे संचय तयार करा"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 #, fuzzy
 msgid "Don't _Create Persistent Storage"
 msgstr "सक्तीचे संचय तयार करा"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 #, fuzzy
 msgid "_Create Persistent Storage"
@@ -570,7 +570,6 @@ msgstr ""
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr ""
 
@@ -787,69 +786,69 @@ msgstr ""
 msgid "Synchronizing data on disk..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -857,14 +856,14 @@ msgid ""
 "a different model."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
 "%(size)s GB is required)."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -872,76 +871,76 @@ msgid ""
 "%(dl_url)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
 "The persistent storage on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
 "All data on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr ""
@@ -1024,7 +1023,7 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1084,143 +1083,143 @@ msgstr "उपलब्ध नाही"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
 "log to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr "नोंदी दाखवा"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr ""
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "हटवा"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "वापरण्याचे माहिती"
 
@@ -1351,19 +1350,19 @@ msgid ""
 msgstr ""
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1371,11 +1370,11 @@ msgid ""
 "software."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr ""
 
@@ -1704,32 +1703,32 @@ msgstr ""
 msgid "Choose File Container"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 #, fuzzy
 msgid "_Cancel"
 msgstr "Cancel"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 #, fuzzy
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
@@ -1738,60 +1737,60 @@ msgstr ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
 "network."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr ""
 
@@ -1951,6 +1950,7 @@ msgid "Tails documentation"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 #, fuzzy
 msgid "Persistent Storage"
@@ -1978,6 +1978,16 @@ msgstr ""
 msgid "Learn more about Tails"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "सक्तीचे संचय तयार करा"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr ""
@@ -2044,7 +2054,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr ""
 
@@ -2068,7 +2078,7 @@ msgid "Disable"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr ""
 
@@ -2089,7 +2099,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr ""
 
@@ -2148,69 +2158,70 @@ msgstr ""
 msgid "Welcome to Tails!"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 #, fuzzy
 msgid "_Persistent Storage"
 msgstr "सक्तीचे संचय तयार करा"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 #, fuzzy
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr "Tails is configuring your Persistent Storage. Please wait..."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
+msgid "Show Passphrase"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
-msgid "Show Passphrase"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+msgid "_Passphrase"
 msgstr ""
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 #, fuzzy
 msgid "Shutdown"
 msgstr "Shutdown"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr ""
 
@@ -2306,10 +2317,18 @@ msgstr "सक्तीचे संचय तयार करा"
 msgid "System Settings"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+msgid "Welcome Screen"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 msgid "Activate Welcome Screen"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+msgid "Printers"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 msgid "Activate Printers"
 msgstr ""
@@ -2342,6 +2361,11 @@ msgstr ""
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "टॉर ब्राउझर"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 msgid "Activate Tor Browser Bookmarks"
 msgstr ""
@@ -2554,11 +2578,11 @@ msgstr ""
 msgid "Detach this volume"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr "लक्ष्यित यूएसबी स्टिकः"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr "पुन्हा इन्स्टॉल करा (सर्व डेटा डीलीट करा )"
 
@@ -2805,9 +2829,8 @@ msgid ""
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1241
-#, fuzzy
 msgid "<b>Connect to Tor _automatically</b>"
-msgstr "<b>Connect to Tor _automatically</b>"
+msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1291
 msgid ""
@@ -2956,7 +2979,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2175
 msgid "Username"
-msgstr "वापरकर्ता नाव "
+msgstr "वापरकर्ता नाव"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2192
 msgid "IP address or hostname"
diff --git a/po/ms_MY.po b/po/ms_MY.po
index 5757133498d..17c7fa41de7 100644
--- a/po/ms_MY.po
+++ b/po/ms_MY.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
 "PO-Revision-Date: 2023-01-25 11:39+0000\n"
 "Last-Translator: emma peel <emma.peel@riseup.net>\n"
 "Language-Team: Malay <https://hosted.weblate.org/projects/tor/tails-gui/ms/"
@@ -473,9 +473,9 @@ msgid "Additional Settings"
 msgstr "Tetapan Tambahan"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "Batal"
@@ -548,28 +548,28 @@ msgstr "Mati"
 msgid "Off (default)"
 msgstr "Mati (lalai)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
 #, fuzzy
-msgid "Persistent Storage Not Unlocked"
+msgid "Persistent Storage Still Locked"
 msgstr "Cipta Storan Berterusan"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 #, fuzzy
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
 msgstr "Masukkan frasa laluan anda untuk membuka storan berterusan"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
 #, fuzzy
-msgid "Continue Without Persistent Storage"
+msgid "Start Without Persistent Storage"
 msgstr "Cipta Storan Berterusan"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 #, fuzzy
 msgid "Don't _Create Persistent Storage"
 msgstr "Cipta Storan Berterusan"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 #, fuzzy
 msgid "_Create Persistent Storage"
@@ -592,7 +592,6 @@ msgstr "Membuka..."
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr "Buka"
 
@@ -813,7 +812,7 @@ msgstr "Peranti ialah gelung balik, melangkau tetap semula MBR"
 msgid "Synchronizing data on disk..."
 msgstr "Menyegerakkan data di dalam cakera..."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
@@ -821,63 +820,63 @@ msgstr ""
 "Ralat: Tidak dapat tetapkan label atau memperoleh UUID peranti anda. Gagal "
 "diteruskan."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr "Pemasangan selesai! (%s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr "Pemasangan Tails gagal!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr "Pemasang Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr "Klonkan Tails semasa"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr "Guna imej ISO Tail yang telah dimuat turun"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr "Tatar"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr "Arahan Penataran Manual"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr "Pasang"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr "Arahan Pemasangan"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "Peranti %(model)s %(vendor)s %(size)s (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr "Tiada imej ISO dipilih"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr "Sila pilih satu imej ISO Tails."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -888,7 +887,7 @@ msgstr ""
 "tanggal oleh pengilangnya dan Tails akan gagal dimulakan melaluinya. Sila "
 "pasang pada model pemacu pena yang lain."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
@@ -897,7 +896,7 @@ msgstr ""
 "Peranti \"%(pretty_name)s\" berkapasiti terlalu kecil untuk memasang Tails "
 "(sekurang-kurangnya %(size)s GB diperlukan)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -905,66 +904,66 @@ msgid ""
 "%(dl_url)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr "Tiada peranti yang sesuai ditemui untuk memasang Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr ""
 "Sila palamkan pemacu pena USB atau kad SD yang berkapasiti sekurang-"
 "kurangnya %0.1f GB."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr "Satu ralat berlaku ketika memasang Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr "Pemasangan selesai!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr "Tidak dapat lekap peranti"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "Peranti %(model)s %(vendor)s %(parent_size)s (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
 "The persistent storage on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
 "All data on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr "Sahkan pena USB sasaran"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
@@ -972,7 +971,7 @@ msgstr ""
 "Fail terpilih tidak boleh dibaca. Sila betulkan keizinannya atau pilih fail "
 "yang lain."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
@@ -980,7 +979,7 @@ msgstr ""
 "Tidak boleh guna fail terpilih. Anda mungkin bernasib lebih baik jika anda "
 "alihkan ISO ke dalam direktori cakera keras anda (iaitu: C:\\)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr "%(filename)s dipilih"
@@ -1055,7 +1054,7 @@ msgstr "su dilumpuhkan. Sila guna sudo sebagai ganti."
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1121,7 +1120,7 @@ msgstr "tidak tersedia"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -1130,7 +1129,7 @@ msgstr ""
 "{details} Sila periksa senarai perisian tambahan atau baca log sistem untuk "
 "mengetahui masalah yang berlaku."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
@@ -1138,56 +1137,56 @@ msgstr ""
 "Sila periksa senarai perisian tambahan atau baca log sistem untuk mengetahui "
 "masalah yang berlaku."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr "Tunjuk Log"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "Konfigur"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} dan {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ", "
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "Tambah {packages} ke dalam perisian tambahan anda?"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 "Untuk memasangnya secara automatik melalui storan berterusan anda ketika "
 "memulakan Tails."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr "Pasang Selalu"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr "Pasang Sekali Sahaja"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr "Konfigurasi perisian tambahan anda mengalami kegagalan."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -1195,67 +1194,67 @@ msgstr ""
 "Untuk memasangnya secara automatik ketika memulakan Tails, anda perlu cipta "
 "satu storan berterusan dan aktifkan fitur <b>Perisian Tambahan</b>."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr "Cipta Storan Berterusan"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr "Gagal mencipta storan berterusan anda."
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr "Anda patut memasang {packages} secara automatik ketika memulakan Tails"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "Buang {packages} daripada perisian tambahan anda?"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr "Tindakan ini akan menghentikan pemasangan {packages} secara automatik."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "Buang"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr "Memasang perisian tambahan anda melalui storan berterusan..."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr "Ia mengambil masa beberapa minit."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr "Pemasangan perisian tambahan anda mengalami kegagalan"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr "Perisian tambahan berjaya dipasang"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr "Pemeriksaan untuk menatar perisian tambahan anda mengalami kegagalan"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -1263,11 +1262,11 @@ msgstr ""
 "Sila periksa sambungan rangkaian anda, mulakan semula Tails, atau baca log "
 "sistem untuk mengetahui masalah yang berlaku."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr "Penataran perisian tambahan anda mengalami kegagalan"
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "Dokumentasi"
 
@@ -1410,19 +1409,19 @@ msgid ""
 msgstr ""
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr "ralat:"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr "Amaran: komputer maya dikesan!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr "Amaran: komputer maya bukan-bebas dikesan!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1433,11 +1432,11 @@ msgstr ""
 "yang anda buat di dalam Tails. Hanya perisian bebas boleh dipercayai, bagi "
 "kedua-dua jenis sistem pengoperasian hos dan perisian pemayaan."
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr "Ketahui Lebih Lanjut"
 
@@ -1772,57 +1771,57 @@ msgstr ""
 msgid "Choose File Container"
 msgstr "Pilih Bekas Fail"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 msgid "_Cancel"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr "Memulakan Pelayar Tidak Selamat..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr "Ia mengambil sedikit masa, harap bersabar."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr "Mematikan Pelayar Tidak Selamat..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
@@ -1830,13 +1829,13 @@ msgstr ""
 "Ia mengambil sedikit masa, dan anda tidak perlu mulakan semula Pelayar Tidak "
 "Selamat sehinggalah ia dimatikan dengan betul."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr "Pelayar Tidak Selamat"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
@@ -1844,22 +1843,22 @@ msgstr ""
 "Pelayar Tidak Selamat yang lain masih berjalan, atau baru ditutup. Cuba lagi "
 "kemudian."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr "Gagal menyediakan chroot."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr "Gagal mengkonfigur pelayar."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
 "network."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr "Gagal menjalankan pelayar."
 
@@ -2034,6 +2033,7 @@ msgid "Tails documentation"
 msgstr "Dokumentasi Tails"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 #, fuzzy
 msgid "Persistent Storage"
@@ -2061,6 +2061,16 @@ msgstr "Ketahui lebih lanjut bagaimana hendak menggunakan Tails"
 msgid "Learn more about Tails"
 msgstr "Ketahui lebih lanjut berkenaan Tails"
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "Cipta Storan Berterusan"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr ""
@@ -2131,7 +2141,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr "Kata Laluan Pentadbiran"
 
@@ -2158,7 +2168,7 @@ msgid "Disable"
 msgstr "Lumpuhkan"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr ""
 
@@ -2179,7 +2189,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr "Konfigurasi Rangkaian"
 
@@ -2240,19 +2250,19 @@ msgstr ""
 msgid "Welcome to Tails!"
 msgstr "Selamat datang ke Tails!"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 #, fuzzy
 msgid "_Persistent Storage"
 msgstr "Cipta Storan Berterusan"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 #, fuzzy
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
@@ -2260,42 +2270,45 @@ msgstr ""
 "Untuk memasangnya secara automatik melalui storan berterusan anda ketika "
 "memulakan Tails."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr "Bahasa & Wilayah"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr "Tetapan Lalai"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
-msgstr "Storan _Berterusan Tersulit"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
 msgid "Show Passphrase"
 msgstr "Tunjuk Frasa Laluan"
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
-msgstr "Masukkan frasa laluan anda untuk membuka storan berterusan"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "Frasa Laluan:"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+#, fuzzy
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 "Storan berterusan anda tidak berkunci. Mulakan semula Tails untuk "
 "menguncinya semula."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr "Tetapan _Tambahan"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr "Tambah satu tetapan tambahan"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
@@ -2303,11 +2316,11 @@ msgstr ""
 "Tetapan lalai adalah selamat dalam semua keadaan. Untuk menambah satu "
 "tetapan suai, tekan butang \"+\" di bawah."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 msgid "Shutdown"
 msgstr "Matikan"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr "_Mula Tails"
 
@@ -2414,10 +2427,20 @@ msgstr "Cipta Storan Berterusan"
 msgid "System Settings"
 msgstr "Tetapan Lalai"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+#, fuzzy
+msgid "Welcome Screen"
+msgstr "Kunci Skrin"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 msgid "Activate Welcome Screen"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+#, fuzzy
+msgid "Printers"
+msgstr "Pencetak"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 #, fuzzy
 msgid "Activate Printers"
@@ -2453,6 +2476,11 @@ msgstr "Mula Pelayar Tor"
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "Tanda Buku Pelayar"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 #, fuzzy
 msgid "Activate Tor Browser Bookmarks"
@@ -2684,11 +2712,11 @@ msgstr "_Buka"
 msgid "Detach this volume"
 msgstr "Tanggal volum ini"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr "Pena USB sasaran:"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr "Pasang semula (padam semua data)"
 
@@ -3196,6 +3224,12 @@ msgstr ""
 msgid "Clock"
 msgstr ""
 
+#~ msgid "Encrypted _Persistent Storage"
+#~ msgstr "Storan _Berterusan Tersulit"
+
+#~ msgid "Enter your passphrase to unlock the persistent storage"
+#~ msgstr "Masukkan frasa laluan anda untuk membuka storan berterusan"
+
 #, python-format
 #~ msgid ""
 #~ "<h1>Help us fix your bug!</h1>\n"
diff --git a/po/my.po b/po/my.po
index 662114d43e4..ce870bf3475 100644
--- a/po/my.po
+++ b/po/my.po
@@ -10,7 +10,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
 "PO-Revision-Date: 2023-02-11 10:42+0000\n"
 "Last-Translator: emma peel <emma.peel@riseup.net>\n"
 "Language-Team: Burmese <https://hosted.weblate.org/projects/tor/tails-gui/my/"
@@ -454,9 +454,9 @@ msgid "Additional Settings"
 msgstr ""
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "ဖျက်သိမ်းရန်"
@@ -528,12 +528,12 @@ msgstr "ပိတ်"
 msgid "Off (default)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
 #, fuzzy
-msgid "Persistent Storage Not Unlocked"
+msgid "Persistent Storage Still Locked"
 msgstr "_ကြာရှည်ခံ သိုလှောင်ခန်း ဖန်တီးရန်"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 #, fuzzy
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
@@ -541,17 +541,17 @@ msgstr ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
 #, fuzzy
-msgid "Continue Without Persistent Storage"
+msgid "Start Without Persistent Storage"
 msgstr "_ကြာရှည်ခံ သိုလှောင်ခန်း ဖန်တီးရန်"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 #, fuzzy
 msgid "Don't _Create Persistent Storage"
 msgstr "_ကြာရှည်ခံ သိုလှောင်ခန်း ဖန်တီးရန်"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 #, fuzzy
 msgid "_Create Persistent Storage"
@@ -573,7 +573,6 @@ msgstr ""
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr ""
 
@@ -790,69 +789,69 @@ msgstr ""
 msgid "Synchronizing data on disk..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr "အဆင်မြှင့်ရန်"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr "စက်ထဲ ထည့်သွင်းရန်"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -860,14 +859,14 @@ msgid ""
 "a different model."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
 "%(size)s GB is required)."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -875,76 +874,76 @@ msgid ""
 "%(dl_url)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
 "The persistent storage on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
 "All data on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr ""
@@ -1027,7 +1026,7 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1087,143 +1086,143 @@ msgstr ""
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
 "log to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr "မှတ်တမ်း ပြရန်"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "စီစဥ်မယ်"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "ဖယ်ရှားရန်"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "အသုံးပြုနည်းလက်စွဲ"
 
@@ -1354,19 +1353,19 @@ msgid ""
 msgstr ""
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1374,11 +1373,11 @@ msgid ""
 "software."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr "ထပ်မံလေ့လာမယ်"
 
@@ -1707,32 +1706,32 @@ msgstr ""
 msgid "Choose File Container"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 #, fuzzy
 msgid "_Cancel"
 msgstr "ဖျက်သိမ်းရန်"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 #, fuzzy
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
@@ -1741,60 +1740,60 @@ msgstr ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
 "network."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr ""
 
@@ -1954,6 +1953,7 @@ msgid "Tails documentation"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 #, fuzzy
 msgid "Persistent Storage"
@@ -1981,6 +1981,16 @@ msgstr ""
 msgid "Learn more about Tails"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "_ကြာရှည်ခံ သိုလှောင်ခန်း ဖန်တီးရန်"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr ""
@@ -2047,7 +2057,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr ""
 
@@ -2071,7 +2081,7 @@ msgid "Disable"
 msgstr "ပိတ်မယ်"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr ""
 
@@ -2092,7 +2102,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr ""
 
@@ -2151,69 +2161,70 @@ msgstr ""
 msgid "Welcome to Tails!"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 #, fuzzy
 msgid "_Persistent Storage"
 msgstr "_ကြာရှည်ခံ သိုလှောင်ခန်း ဖန်တီးရန်"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 #, fuzzy
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr ""
 "သင်သည် Tails စတင်ချိန်တွင် သင့်စက်၏ ကြာရှည်ခံ သိုလှောင်ခန်းမှ အပိုဆောင်း ဆော့ဝဲကို အလိုအလျောက် ထည့်သွင်းနိုင်သည်။"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr "ပုံသေမူလ ဆက်တင်"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
+msgid "Show Passphrase"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
-msgid "Show Passphrase"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+msgid "_Passphrase"
 msgstr ""
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 msgid "Shutdown"
 msgstr "စက်ပိတ်ရန်"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr ""
 
@@ -2309,10 +2320,18 @@ msgstr "_ကြာရှည်ခံ သိုလှောင်ခန်း ဖ
 msgid "System Settings"
 msgstr "ပုံသေမူလ ဆက်တင်"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+msgid "Welcome Screen"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 msgid "Activate Welcome Screen"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+msgid "Printers"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 msgid "Activate Printers"
 msgstr ""
@@ -2345,6 +2364,11 @@ msgstr ""
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "Tor ဘရောက်ဇာ"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 msgid "Activate Tor Browser Bookmarks"
 msgstr ""
@@ -2564,11 +2588,11 @@ msgstr ""
 msgid "Detach this volume"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr ""
 
diff --git a/po/nb.po b/po/nb.po
new file mode 100644
index 00000000000..2a65ad9cca4
--- /dev/null
+++ b/po/nb.po
@@ -0,0 +1,3469 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+# Allan Nordhøy <epost@anotheragency.no>, 2014-2015
+# Allan Nordhøy <epost@anotheragency.no>, 2015-2017
+# David Gutierrez <david.gutierrez.abreu@gmail.com>, 2014
+# Erik Matson <erik@norwenglish.net>, 2015
+# Harald H. <haarektrans@gmail.com>, 2015
+# Jan-Erik Ek <jan.erik.ek@gmail.com>, 2013
+# 490cdfb601cecc09e36402222ad5913c, 2019
+# Jørgen Moen Isaksen <klokkefriken2@protonmail.com>, 2019-2020
+# LarsMagnusHerland <lars.magnus@herland.priv.no>, 2020
+# 81149148127a5edca7d06dcbfba79969, 2014
+# Per Thorsheim, 2015
+# pr0xity, 2014
+# eab1793e5400043c122a2435c33fe68d, 2019
+# 1b09ca809bd1d57b09c4d19f89cfcafa_19f763a <9a173cebe69c399e2bc3c9d455cdd880_367693>, 2015
+# 9d7045af8ca83a89b1b4bf48a2c67786, 2018
+msgid ""
+msgstr ""
+"Project-Id-Version: Tor Project\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
+"PO-Revision-Date: 2023-03-05 10:37+0000\n"
+"Last-Translator: emma peel <emma.peel@riseup.net>\n"
+"Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/tor/"
+"tails-gui/nb_NO/>\n"
+"Language: nb\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 4.16.2-dev\n"
+
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8
+#: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:557
+msgid "Additional Software"
+msgstr "Tilleggsprogramvare"
+
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:51
+msgid ""
+"You can install additional software automatically from your persistent "
+"storage when starting Tails."
+msgstr ""
+"Du kan installere tilleggsprogramvare automatisk fra vedvarende lagring når "
+"du starter Tails."
+
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:77
+msgid ""
+"The following software is installed automatically from your persistent "
+"storage when starting Tails."
+msgstr ""
+"Følgende programvare installeres automatisk fra vedvarende lagring når du "
+"starter Tails."
+
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
+msgid ""
+"To add more, install some software using <a href=\"synaptic."
+"desktop\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal."
+"desktop\">APT on the command line</a>."
+msgstr ""
+"For å legge til flere, installer noen programvare ved bruk av <a "
+"href=\"synaptic.desktop\">Synaptic Package Manager</a> eller <a href=\"org."
+"gnome.Terminal.desktop\">APT fra kommandolinjen </a>."
+
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
+msgid "_Create persistent storage"
+msgstr "_Lag vedvarende lagring"
+
+#: config/chroot_local-includes/usr/local/bin/electrum:72
+msgid "Persistence is disabled for Electrum"
+msgstr "Vedvarende lagring avskrudd for Electrum"
+
+#: config/chroot_local-includes/usr/local/bin/electrum:74
+msgid ""
+"When you reboot Tails, all of Electrum's data will be lost, including your "
+"Bitcoin wallet.\n"
+"It is strongly recommended to only run Electrum when its persistence feature "
+"is activated."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/bin/electrum:75
+msgid "Do you want to start Electrum anyway?"
+msgstr "Vil du starte Electrum uansett?"
+
+#: config/chroot_local-includes/usr/local/bin/electrum:78
+msgid "_Launch"
+msgstr "_Start"
+
+#: config/chroot_local-includes/usr/local/bin/electrum:79
+msgid "_Exit"
+msgstr "_Avslutt"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/DownloadProgress.pm:59
+msgid "Unknown time"
+msgstr ""
+
+#. Translators: Don't translate {count}, it's a place holder and
+#. will be replaced.
+#. y is the short form for years.
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/DownloadProgress.pm:78
+#, perl-brace-format
+msgid "1y"
+msgid_plural "{count}y"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {count}, it's a place holder and
+#. will be replaced.
+#. d is the short form for days.
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/DownloadProgress.pm:82
+#, perl-brace-format
+msgid "1d"
+msgid_plural "{count}d"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {count}, it's a place holder and
+#. will be replaced.
+#. h is the short form for hours;
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/DownloadProgress.pm:86
+#, perl-brace-format
+msgid "1h"
+msgid_plural "{count}h"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {count}, it's a place holder and
+#. will be replaced.
+#. m is the short form for minutes;
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/DownloadProgress.pm:90
+#, perl-brace-format
+msgid "1m"
+msgid_plural "{count}m"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: Don't translate {count}, it's a place holder and
+#. will be replaced.
+#. s is the short form for seconds;
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/DownloadProgress.pm:94
+#, perl-brace-format
+msgid "1s"
+msgid_plural "{count}s"
+msgstr[0] ""
+msgstr[1] ""
+
+#. Translators: don't translate {time}, {downloaded}, {size}
+#. and {speed}, they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/DownloadProgress.pm:139
+#, perl-brace-format
+msgid "#{time} left — {downloaded} of {size} ({speed}/sec)\n"
+msgstr ""
+
+#. Translators: KB is the short form for kilobyte
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Role/FormatByte.pm:33
+msgid "KB"
+msgstr "KB"
+
+#. Translators: MB is the short form for megabyte
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Role/FormatByte.pm:35
+msgid "MB"
+msgstr "MB"
+
+#. Translators: GB is the short form for gigabyte
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Role/FormatByte.pm:37
+msgid "GB"
+msgstr "GB"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Role/FormatByte.pm:43
+msgid "bytes"
+msgstr "bytes"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:197
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:859
+msgid ""
+"For debugging information, execute the following command: sudo tails-"
+"debugging-info"
+msgstr ""
+"For feilsøkingsinformasjon, kjør følgende kommando: \"sudo tails-debugging-"
+"info\""
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:289
+msgid ""
+"<b>An error occured while updating the signing key.</b>\\n\\n<b>This "
+"prevents determining whether an upgrade is available from our website.</"
+"b>\\n\\nCheck your network connection, and restart Tails to try upgrading "
+"again.\\n\\nIf the problem persists, go to file:///usr/share/doc/tails/"
+"website/doc/upgrade/error/check.en.html"
+msgstr ""
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:303
+msgid "Error while downloading the signing key"
+msgstr ""
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:314
+msgid "Error while updating the signing key"
+msgstr "Feil under oppdatering av signeringsnøkkelen"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:341
+msgid "Error while checking for upgrades"
+msgstr "Feil under søk etter tilgjengelige oppgraderinger"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:343
+msgid ""
+"<b>Could not determine whether an upgrade is available from our website.</"
+"b>\n"
+"\n"
+"Check your network connection, and restart Tails to try upgrading again.\n"
+"\n"
+"If the problem persists, go to file:///usr/share/doc/tails/website/doc/"
+"upgrade/error/check.en.html"
+msgstr ""
+"<b>Kunne ikke avgjøre hvorvidt en oppgradering er tilgjengelig fra vår "
+"nettside.</b>\n"
+"\n"
+"Sjekk nettverksforbindelsen din, start Tails på nytt og forsøk å oppgradere "
+"igjen. \n"
+"\n"
+"Hvis problemet vedvarer, se file:///usr/share/doc/tails/website/doc/upgrade/"
+"error/check.en.html"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:358
+msgid "no automatic upgrade is available from our website for this version"
+msgstr ""
+"ingen automatisk oppgradering er tilgjengelig fra nettsiden vår til denne "
+"versjonen"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364
+msgid "your device was not created using a USB image or Tails Installer"
+msgstr ""
+"din enhet ble ikke laget ved bruk av et USB bilde eller Tails Installer"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:369
+msgid "Tails was started from a DVD or a read-only device"
+msgstr "Tails ble startet fra en DVD eller en skrivebeskyttet enhet"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:374
+msgid "there is not enough free space on the Tails system partition"
+msgstr "det er ikke nok ledig plass på systempartisjonen til Tails"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:379
+msgid "not enough memory is available on this system"
+msgstr "ikke nok minne tilgjengelig på systemet"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:384
+#, perl-brace-format
+msgid "No explanation available for reason '{reason}'."
+msgstr "Ingen svar for tiljengelig  for grunn  '{reason}'."
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:407
+msgid "The system is up-to-date"
+msgstr "Systemet er allerede oppdatert"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:412
+msgid "This version of Tails is outdated, and may have security issues."
+msgstr ""
+"Denne versjonen av Tails er utdatert, og kan ha kjente sikkerhetsproblem."
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:442
+#, perl-brace-format
+msgid ""
+"The available incremental upgrade requires {space_needed} of free space on "
+"Tails system partition,  but only {free_space} is available."
+msgstr ""
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:454
+#, perl-brace-format
+msgid ""
+"The available incremental upgrade requires {memory_needed} of free memory, "
+"but only {free_memory} is available."
+msgstr ""
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:465
+msgid ""
+"An error ocurred while detecting available upgrades.\n"
+"This should not happen. Please report a bug."
+msgstr ""
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:468
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:487
+msgid "Error while detecting available upgrades"
+msgstr "Feil under søk av tilgjengelige oppgraderinger"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:483
+msgid ""
+"An incremental upgrade is available, but no full upgrade is.\n"
+"This should not happen. Please report a bug."
+msgstr ""
+"En trinnvis oppgradering er tilgjengelig, men ingen full oppgradering. \n"
+"Dette skal ikke skje. Rapporter feilen."
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:496
+#, perl-brace-format
+msgid ""
+"<b>You should upgrade to {name} {version}.</b>\n"
+"\n"
+"For more information about this new version, go to {details_url}\n"
+"\n"
+"We recommend you close all other applications during the upgrade.\n"
+"Downloading the upgrade might take a long time, from several minutes to a "
+"few hours.\n"
+"\n"
+"Download size: {size}\n"
+"\n"
+"Do you want to upgrade now?"
+msgstr ""
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:509
+msgid "Upgrade available"
+msgstr "Oppgradering tilgjengelig"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:510
+msgid "Upgrade now"
+msgstr "Oppgrader nå"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:511
+msgid "Upgrade later"
+msgstr "Oppgrader senere"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:518
+#, fuzzy, perl-brace-format
+msgid ""
+"<b>You should do a manual upgrade to the latest version of {name}.</b>\n"
+"\n"
+"For more information about this new version, go to {details_url}\n"
+"\n"
+"It is impossible to do an automatic upgrade of your Tails to this new "
+"version: {explanation}.\n"
+"\n"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
+msgstr ""
+"<b>You should do a manual upgrade to the latest version of {name}.</b>\n"
+"\n"
+"For more information about this new version, go to {details_url}\n"
+"\n"
+"It is impossible to do an automatic upgrade of your Tails to this new "
+"version.\n"
+"\n"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:528
+msgid "New version available"
+msgstr "Ny versjon tilgjengelig"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:609
+msgid "Downloading upgrade"
+msgstr "Laster ned oppgradering"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:611
+#, perl-brace-format
+msgid "Downloading the upgrade to {name} {version}..."
+msgstr ""
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700
+msgid ""
+"<b>The upgrade could not be downloaded.</b>\\n\\nCheck your network "
+"connection, and restart Tails to try upgrading again.\\n\\nIf the problem "
+"persists, go to file:///usr/share/doc/tails/website/doc/upgrade/error/"
+"download.en.html"
+msgstr ""
+"<b>Oppgraderingen kunne ikke lastes ned.</b>\\n\\nSjekk "
+"nettverksforbindelsen din, start Tails på nytt og prøv å oppgradere igjen."
+"\\n\\nHvis problemet vedvarer, se file:///usr/share/doc/tails/website/doc/"
+"upgrade/error/download.en.html"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:711
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:726
+msgid "Error while downloading the upgrade"
+msgstr "Feil under nedlasting av oppgraderingen"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:721
+#, perl-brace-format
+msgid ""
+"Output file '{output_file}' does not exist, but tails-iuk-get-target-file "
+"did not complain. Please report a bug."
+msgstr ""
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:737
+msgid "Error while creating temporary downloading directory"
+msgstr "Feil under oppretting av midlertidig nedlastingsmappe."
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:740
+msgid "Failed to create temporary download directory"
+msgstr "Oppretting av midlertidig nedlastingsmappe mislyktes"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:752
+msgid ""
+"The upgrade was successfully downloaded.\n"
+"\n"
+"The network connection will be disabled when applying the upgrade.\n"
+"\n"
+"Please save your work and close all other applications."
+msgstr ""
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:757
+msgid "Upgrade successfully downloaded"
+msgstr "Oppgradering ble lastet ned"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:758
+msgid "Apply upgrade"
+msgstr "Bruk oppgradering"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:765
+msgid ""
+"<b>Your Tails device was successfully upgraded.</b>\n"
+"\n"
+"Some security features were temporarily disabled.\n"
+"You should restart Tails on the new version as soon as possible.\n"
+"\n"
+"Do you want to restart now?"
+msgstr ""
+"<b>Din Tails enhet ble oppgradert uten problemer.</b>\n"
+"\n"
+"Noen sikkerhetsfunksjoner ble midlertidig avskrudd. \n"
+"Du bør starte Tails på nytt med den nye versjonen snarest mulig. \n"
+"\n"
+"Vil du starte på nytt nå?"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:770
+msgid "Restart Tails"
+msgstr "Omstart av Tails"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:771
+msgid "Restart now"
+msgstr "Omstart nå"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:772
+msgid "Restart later"
+msgstr "Omstart senere"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:782
+msgid "Error while restarting the system"
+msgstr "Feil under omstart av systemet"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:783
+msgid "Failed to restart the system"
+msgstr "Omstart av systemet feilet"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:796
+msgid "Error while shutting down the network"
+msgstr "Feil under avstenging av nettverket"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:797
+msgid "Failed to shutdown network"
+msgstr "Avstenging av nettverket feilet"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:807
+msgid "Error while cancelling the upgrade download"
+msgstr ""
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:808
+msgid "Failed to cancel the upgrade download"
+msgstr ""
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:814
+msgid "Upgrading the system"
+msgstr "Oppgraderer systemet"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:816
+msgid ""
+"<b>Your Tails device is being upgraded...</b>\n"
+"\n"
+"For security reasons, the network connection is now disabled."
+msgstr ""
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:853
+msgid ""
+"<b>An error occured while installing the upgrade.</b>\\n\\nYour Tails device "
+"needs to be repaired and might be unable to restart.\\n\\nPlease follow the "
+"instructions at file:///usr/share/doc/tails/website/doc/upgrade/error/"
+"install.en.html"
+msgstr ""
+"<b>En feil oppstod under installering av oppgraderingen</b>\\n\\nDin Tails-"
+"enhet må repareres og kan kanskje ikke startes igjen.\\n\\nFølg "
+"instruksjonene på file:///usr/share/doc/tails/website/doc/upgrade/error/"
+"install.en.html"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:863
+msgid "Error while installing the upgrade"
+msgstr "Feil under installasjon av oppgraderingen"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:32
+msgid "Additional Settings"
+msgstr "Ytterligere innstillinger"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+msgid "Cancel"
+msgstr "Avbryt"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:46
+msgid "Add"
+msgstr "Legg til"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:54
+msgid "Back"
+msgstr "Tilbake"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:63
+msgid "_Administration Password"
+msgstr "_Administrasjonspassord"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:186
+msgid "_MAC Address Anonymization"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:249
+msgid "_Offline Mode"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:258
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:413
+msgid "Enable networking (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:260
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:459
+msgid "Disable all networking"
+msgstr "Skru av alle nettverk"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:315
+msgid "_Network Connection"
+msgstr "_Nettverkstilkobling"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:323
+msgid "Obsolete"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:338
+msgid "_Unsafe Browser"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:347
+#, fuzzy
+msgid "Enabled (default)"
+msgstr "PÃ¥ (forvalg)"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:349
+#, fuzzy
+msgid "Disabled"
+msgstr "Skru av"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:400
+msgid "On (default)"
+msgstr "PÃ¥ (forvalg)"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:402
+msgid "On"
+msgstr "Av"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:404
+msgid "Off"
+msgstr "PÃ¥"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:406
+msgid "Off (default)"
+msgstr "Av (forvalg)"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#, fuzzy
+msgid "Persistent Storage Still Locked"
+msgstr "Opprett vedvarende lagring"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
+#, fuzzy
+msgid ""
+"Do you really want to start Tails without unlocking your Persistent Storage?"
+msgstr "Skriv inn din passordsekvens for å låse opp det vedvarende lageret"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
+#, fuzzy
+msgid "Start Without Persistent Storage"
+msgstr "Opprett vedvarende lagring"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
+#, fuzzy
+msgid "Don't _Create Persistent Storage"
+msgstr "Opprett vedvarende lagring"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
+#, fuzzy
+msgid "_Create Persistent Storage"
+msgstr "Opprett vedvarende lagring"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:83
+#, fuzzy
+msgid "Error unlocking Persistent Storage: {}"
+msgstr "Kryptert _vedvarende lagring"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:102
+#, fuzzy
+msgid "Error activating Persistent Storage: {}"
+msgstr "Opprett vedvarende lagring"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:68
+msgid "Unlocking…"
+msgstr "Låser opp…"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
+msgid "Unlock"
+msgstr "LÃ¥s opp"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:99
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:40
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr "Kan ikke låse opp kryptert lagring med denne passordsekvensen."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:112
+msgid ""
+"Failed to unlock the Persistent Storage. Please start Tails and send an "
+"error report."
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:122
+msgid ""
+"Failed to activate the Persistent Storage. Please start Tails and send an "
+"error report."
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/region_settings.py:164
+msgid "_Language"
+msgstr "_Språk"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/region_settings.py:207
+msgid "_Formats"
+msgstr "_Formater"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/region_settings.py:244
+msgid "_Keyboard Layout"
+msgstr "_Tastaturoppsett"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:288
+#, python-format
+msgid "Unable to write on %(device)s, skipping."
+msgstr "Klarer ikke å skrive til %(device)s, hopper over."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:332
+#, python-format
+msgid ""
+"Some partitions of the target device %(device)s are mounted. They will be "
+"unmounted before starting the installation process."
+msgstr ""
+"Noen partisjoner på målenheten %(device)s er montert. De vil avmontert før "
+"installasjonsprosessen starter."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:341
+msgid "Extracting live image to the target device..."
+msgstr "Pakker ut det levende bildeavtrykket til målenheten…"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:348
+#, python-format
+msgid "Wrote to device at %(speed)d MB/sec"
+msgstr "Skrev til enheten ved %(speed)d MB/sekund"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:446
+#, python-format
+msgid ""
+"There was a problem executing the following command: `%(command)s`.\n"
+"A more detailed error log has been written to \"%(filename)s\"."
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:462
+#, python-format
+msgid ""
+"Not enough free space on device.\n"
+"%(iso_size)dMB ISO + %(overlay_size)dMB overlay > %(free_space)dMB free space"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:471
+#, python-format
+msgid "Creating %sMB persistent overlay"
+msgstr "Lager %sMB vedvarende overlegg"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:521
+#, python-format
+msgid "Unable to copy %(infile)s to %(outfile)s: %(message)s"
+msgstr "Klarer ikke kopiere %(infile)s til %(outfile)s: %(message)s"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:535
+msgid "Removing existing Tails system"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:545
+#, python-format
+msgid "Unable to remove file from previous Tails system: %(message)s"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:552
+#, python-format
+msgid "Unable to chmod %(file)s: %(message)s"
+msgstr "Klarer ikke chmod %(file)s: %(message)s"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:559
+#, python-format
+msgid "Unable to remove directory from previous Tails system: %(message)s"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:607
+#, python-format
+msgid "Cannot find device %s"
+msgstr "Kan ikke finne enhet %s"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:657
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:904
+msgid "Unknown filesystem.  Your device may need to be reformatted."
+msgstr "Ukjent filsystem. Din enhet må kanskje omformateres."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:660
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:907
+#, python-format
+msgid "Unsupported filesystem: %s"
+msgstr "Ikke støttet filsystem: %s"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:678
+#, python-format
+msgid "Unknown GLib exception while trying to mount device: %(message)s"
+msgstr "Ukjent GLib-unntak under montering av enhet: %(message)s"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:683
+#, python-format
+msgid "Unable to mount device: %(message)s"
+msgstr "Klarer ikke å laste enhet: %(message)s"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:688
+msgid "No mount points found"
+msgstr "Ingen lastepunkter funnet"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:699
+#, python-format
+msgid "Entering unmount_device for \"%(device)s\""
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:708
+#, python-format
+msgid "Unmounting mounted filesystems on \"%(device)s\""
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:712
+#, python-format
+msgid "Unmounting \"%(udi)s\" on \"%(device)s\""
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:723
+#, python-format
+msgid "Mount %s exists after unmounting"
+msgstr "%s eksisterer fortsatt etter frakoblingsforsøk"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:760
+#, python-format
+msgid "Partitioning device %(device)s"
+msgstr "Partisjonerer enheten %(device)s"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:889
+#, python-format
+msgid "Unsupported device '%(device)s', please report a bug."
+msgstr "Enheten '%(device)s' støttes ikke, rapporter som feil."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:892
+msgid "Trying to continue anyway."
+msgstr "Prøver å fortsette uansett."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:901
+msgid "Verifying filesystem..."
+msgstr "Verifiserer filsystem…"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:925
+#, python-format
+msgid "Unable to change volume label: %(message)s"
+msgstr "Kan ikke endre volum etikett: %(message)s"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:930
+msgid "Installing bootloader..."
+msgstr "Installerer oppstartslaster…"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:937
+#, python-format
+msgid "Removing %(file)s"
+msgstr "Fjerner %(file)s"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:1019
+#, python-format
+msgid "%s already bootable"
+msgstr "%s kan brukes ved oppstart"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:1039
+msgid "Unable to find partition"
+msgstr "Klarer ikke å finne partisjon"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:1058
+#, python-format
+msgid "Formatting %(device)s as FAT32"
+msgstr "Formaterer %(device)s til FAT32"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:1121
+#, python-format
+msgid "Reading extracted MBR from %s"
+msgstr "Leser utpakket MBR fra %s"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:1125
+#, python-format
+msgid "Could not read the extracted MBR from %(path)s"
+msgstr "Kunne ikke lese utpakket MBR fra %(path)s"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:1138
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:1139
+#, python-format
+msgid "Resetting Master Boot Record of %s"
+msgstr "Tilbakestiller Master Boot Record av %s"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:1144
+msgid "Drive is a loopback, skipping MBR reset"
+msgstr "Stasjonen er en loopback, hopper over tilbakestilling av MBR"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:1148
+msgid "Synchronizing data on disk..."
+msgstr "Synkroniserer data på stasjonen…"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
+msgid ""
+"Error: Cannot set the label or obtain the UUID of your device.  Unable to "
+"continue."
+msgstr ""
+"Feil: Kan ikke sette etikett eller få UUID fra enheten. Kan ikke fortsette."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
+#, python-format
+msgid "Installation complete! (%s)"
+msgstr "Installasjonen er fullført! (%s)"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
+msgid "Tails installation failed!"
+msgstr "Tails-installasjon mislyktes"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
+#: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
+msgid "Tails Installer"
+msgstr "Tails-installasjonskandidat"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
+msgid "Clone the current Tails"
+msgstr "Klon kjørende Tails"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
+msgid "Use a downloaded Tails ISO image"
+msgstr "Bruk en nedlastet Tails ISO-avbildning"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
+msgid "Upgrade"
+msgstr "Oppgrader"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
+msgid "Manual Upgrade Instructions"
+msgstr "Manuell oppgraderingsveiledning"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
+msgid "Install"
+msgstr "Innstaller"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
+msgid "Installation Instructions"
+msgstr "Installasjonsveildening"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
+#, python-format
+msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
+msgstr "%(size)s %(vendor)s %(model)s enhet (%(device)s)"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
+msgid "No ISO image selected"
+msgstr "Ingen ISO-avbildning valgt"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
+msgid "Please select a Tails ISO image."
+msgstr "Velg Tails ISO-avbildningen."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
+#, python-format
+msgid ""
+"The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
+"manufacturer and Tails will fail to start from it. Please try installing on "
+"a different model."
+msgstr ""
+"USB-minnepinnen \"%(pretty_name)s\" er satt opp som ikke-fjernbar av "
+"fabrikken og Tails klarer ikke å starte fra den. Prøv å installere på en "
+"annen modell."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
+#, python-format
+msgid ""
+"The device \"%(pretty_name)s\" is too small to install Tails (at least "
+"%(size)s GB is required)."
+msgstr ""
+"Enheten \"%(pretty_name)s\" har for liten lagringsplass for å installere "
+"Tails (minst %(size)s Gb er påkrevet)"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
+#, python-format
+msgid ""
+"To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
+"downloaded Tails ISO image:\n"
+"%(dl_url)s"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
+msgid "No device suitable to install Tails could be found"
+msgstr "Fant ingen egnet enhet for installasjon av Tails"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
+#, python-format
+msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
+msgstr "Plugg inn en USB-minnepinne eller SD-kort på minst %0.1f GB."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
+msgid "An error happened while installing Tails"
+msgstr "Feil under installasjon av Tails"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
+msgid "Installation complete!"
+msgstr "Installasjonen er fullført!"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
+msgid "Unable to mount device"
+msgstr "Klarer ikke å laste enhet"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
+#, python-format
+msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
+msgstr "%(parent_size)s %(vendor)s %(model)s enhet (%(device)s)"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
+msgid ""
+"\n"
+"\n"
+"The persistent storage on this USB stick will be lost."
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
+msgid "Delete Persistent Storage and Reinstall"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
+msgid ""
+"\n"
+"\n"
+"All data on this USB stick will be lost."
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
+msgid "Delete All Data and Install"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
+#, python-format
+msgid "%(description)s%(delete_message)s"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
+msgid "Confirm the target USB stick"
+msgstr "Bekreft hvilket USB-minne du vil installere på"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
+msgid ""
+"The selected file is unreadable. Please fix its permissions or select "
+"another file."
+msgstr ""
+"Den valgte filen er uleselig. Sørg for at du har de nødvendige rettighetene "
+"eller velg en annen fil."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
+msgid ""
+"Unable to use the selected file.  You may have better luck if you move your "
+"ISO to the root of your drive (ie: C:\\)"
+msgstr ""
+"Kunne ikke bruke den angitte filen. Du kan være heldigere hvis du flytter "
+"ISOen din til root (f.eks: C:\\)"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
+#, python-format
+msgid "%(filename)s selected"
+msgstr "%(filename)s valgt"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/source.py:31
+msgid "Unable to find Tails on ISO"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/source.py:37
+#, python-format
+msgid "Could not guess underlying block device: %s"
+msgstr "Kan ikke gjette seg til underliggende blokk-enhet: %s"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/source.py:52
+#, python-format
+msgid ""
+"There was a problem executing `%(cmd)s`.\n"
+"%(out)s\n"
+"%(err)s"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/source.py:64
+#, python-format
+msgid "\"%s\" does not exist"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/source.py:66
+#, python-format
+msgid "\"%s\" is not a directory"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/source.py:77
+#, python-format
+msgid "Skipping \"%(filename)s\""
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/utils.py:54
+#, python-format
+msgid ""
+"There was a problem executing `%(cmd)s`.%(out)s\n"
+"%(err)s"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/utils.py:126
+msgid "Could not open device for writing."
+msgstr "Kunne ikke åpne enhet for skriving."
+
+#: config/chroot_local-includes/usr/local/bin/keepassxc:19
+#, sh-format
+msgid ""
+"<b><big>Do you want to rename your <i>KeePassXC</i> database?</big></b>\n"
+"\n"
+"You have a <i>KeePassXC</i> database in your <i>Persistent</i> folder:\n"
+"\n"
+"<i>${filename}</i>\n"
+"\n"
+"Renaming your database to <i>${default_filename}</i> would allow "
+"<i>KeePassXC</i> to open it automatically in the future."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/bin/keepassxc:28
+msgid "Rename"
+msgstr "Endre navn"
+
+#: config/chroot_local-includes/usr/local/bin/keepassxc:30
+msgid "Keep current name"
+msgstr "Behold nåværende navn"
+
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
+msgid "su is disabled. Please use sudo instead."
+msgstr "su er avslått. vær vennelig og bruk sudo istedet."
+
+#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1096
+msgid "Error"
+msgstr "Feil"
+
+#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
+msgid ""
+"The device Tails is running from cannot be found. Maybe you used the 'toram' "
+"option?"
+msgstr ""
+"Finner ikke enheten Tails kjører fra. Kanskje du brukte \"toram\"-valget?"
+
+#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:251
+msgid ""
+"The drive Tails is running from cannot be found. Maybe you used the 'toram' "
+"option?"
+msgstr ""
+"Finner ikke CD-rom-stasjonen Tails kjører fra. Kanskje du brukte \"toram\"-"
+"valget?"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:78
+msgid "Lock screen"
+msgstr "LÃ¥seskjerm"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:82
+msgid "Suspend"
+msgstr "dvalemodus"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:86
+msgid "Restart"
+msgstr "Start på nytt"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:90
+msgid "Power Off"
+msgstr "Slå av"
+
+#: config/chroot_local-includes/usr/local/bin/tails-about:22
+#: config/chroot_local-includes/usr/local/bin/tails-about:35
+#: ../config/chroot_local-includes/usr/share/desktop-directories/Tails.directory.in.h:1
+msgid "Tails"
+msgstr "Tails"
+
+#: config/chroot_local-includes/usr/local/bin/tails-about:25
+#: ../config/chroot_local-includes/usr/share/applications/tails-about.desktop.in.h:1
+msgid "About Tails"
+msgstr "Om Tails"
+
+#: config/chroot_local-includes/usr/local/bin/tails-about:36
+#, python-format
+msgid ""
+"Build information:\n"
+"%s"
+msgstr ""
+"Versjon informasjon:\n"
+"%s"
+
+#: config/chroot_local-includes/usr/local/bin/tails-about:54
+msgid "not available"
+msgstr "Ikke tilgjengelig"
+
+#. Translators: Don't translate {details}, it's a placeholder and will
+#. be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
+#, python-brace-format
+msgid ""
+"{details} Please check your list of additional software or read the system "
+"log to understand the problem."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
+msgid ""
+"Please check your list of additional software or read the system log to "
+"understand the problem."
+msgstr ""
+"Vennligst sjekk listen over tilleggsprogramvare, eller les systemloggen for "
+"å forstå problemet."
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
+msgid "Show Log"
+msgstr "Vis Logg"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
+msgid "Configure"
+msgstr "Sett opp"
+
+#. Translators: Don't translate {beginning} or {last}, they are
+#. placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
+#, python-brace-format
+msgid "{beginning} and {last}"
+msgstr "{beginning} og {last}"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
+msgid ", "
+msgstr ", "
+
+#. Translators: Don't translate {packages}, it's a placeholder and will
+#. be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
+#, python-brace-format
+msgid "Add {packages} to your additional software?"
+msgstr "Vil du legge til {packages} i tilleggsprogramvaren din?"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
+msgid ""
+"To install it automatically from your persistent storage when starting Tails."
+msgstr ""
+"Å installere det automatisk fra vedvarende lagring når du starter Tails."
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
+msgid "Install Every Time"
+msgstr "Installer hver gang"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+msgid "Install Only Once"
+msgstr "Installer bare en gang"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
+msgid "The configuration of your additional software failed."
+msgstr "Konfigurasjonen av tilleggsprogramvaren din mislyktes."
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
+msgid ""
+"To install it automatically when starting Tails, you can create a persistent "
+"storage and activate the <b>Additional Software</b> feature."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+msgid "Create Persistent Storage"
+msgstr "Opprett vedvarende lagring"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
+msgid "Creating your persistent storage failed."
+msgstr "Opprettelse av din vedvarende lagring feilet"
+
+#. Translators: Don't translate {packages}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#, python-brace-format
+msgid "You could install {packages} automatically when starting Tails"
+msgstr "Du kan installere {packages} automatisk når du starter Tails"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
+msgid "To do so, you need to run Tails from a USB stick."
+msgstr "For å gjøre det, må du kjøre Tails fra en USB-pinne."
+
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#, python-brace-format
+msgid "Remove {packages} from your additional software?"
+msgstr "Fjerne {packages} fra dine tilleggsprogramvarer?"
+
+#. Translators: Don't translate {packages}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
+#, python-brace-format
+msgid "This will stop installing {packages} automatically."
+msgstr "Dette vil slutte å installere {packages} automatisk."
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
+msgid "Remove"
+msgstr "Fjern"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
+msgid "Installing your additional software from persistent storage..."
+msgstr "Installerer tilleggsprogramvaren din fra vedvarende lagring..."
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
+msgid "This can take several minutes."
+msgstr "Dette kan ta flere minutter."
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
+msgid "The installation of your additional software failed"
+msgstr "Installasjonen av tilleggsprogramvaren din mislyktes"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
+msgid "Additional software installed successfully"
+msgstr "Tilleggsprogramvare er installert"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
+msgid "The check for upgrades of your additional software failed"
+msgstr "Kontrollen for oppgraderinger av tilleggsprogramvaren din mislyktes"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
+msgid ""
+"Please check your network connection, restart Tails, or read the system log "
+"to understand the problem."
+msgstr ""
+"Kontroller nettverkstilkoblingen, start Tails på nytt, eller les "
+"systemloggen for å forstå problemet."
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
+msgid "The upgrade of your additional software failed"
+msgstr "Oppgraderingen av dine tilleggsprogramvarer mislyktes"
+
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
+msgid "Documentation"
+msgstr "Dokumentasjon"
+
+#. Translators: Don't translate {package}, it's a placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#, python-brace-format
+msgid ""
+"Remove {package} from your additional software? This will stop installing "
+"the package automatically."
+msgstr ""
+
+#. Translators: Don't translate {pkg}, it's a placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:106
+#, python-brace-format
+msgid "Failed to remove {pkg}"
+msgstr "Kunne ikke fjerne {pkg}"
+
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:131
+msgid "Failed to read additional software configuration"
+msgstr "Kunne ikke lese tilleggsprogramvare-konfigurasjon"
+
+#. Translators: Don't translate {package}, it's a placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:161
+#, python-brace-format
+msgid "Stop installing {package} automatically"
+msgstr "Stopp installasjon av {package} automatisk"
+
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:187
+msgid ""
+"To do so, install some software using <a href=\"synaptic.desktop\">Synaptic "
+"Package Manager</a> or <a href=\"org.gnome.Terminal.desktop\">APT on the "
+"command line</a>."
+msgstr ""
+"For å gjøre det, installer noen programvare ved bruk av <a href=\"synaptic."
+"desktop\">Synaptic Package Manager</a> eller <a href=\"org.gnome.Terminal."
+"desktop\">APT fra kommandolinjen</a>."
+
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:196
+msgid ""
+"To do so, unlock your persistent storage when starting Tails and install "
+"some software using <a href=\"synaptic.desktop\">Synaptic Package Manager</"
+"a> or <a href=\"org.gnome.Terminal.desktop\">APT on the command line</a>."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
+msgid ""
+"To do so, create a persistent storage and install some software using <a "
+"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a href=\"org."
+"gnome.Terminal.desktop\">APT on the command line</a>."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:214
+msgid "To do so, install Tails on a USB stick and create a persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:258
+msgid "[package not available]"
+msgstr "[pakke ikke tilgjengelig]"
+
+#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:68
+msgid "Failed to synchronize the clock!"
+msgstr "Synkronisering av klokken mislyktes!"
+
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:110
+msgid "Lock Screen"
+msgstr "LÃ¥seskjerm"
+
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:125
+msgid "Screen Locker"
+msgstr "Skjermlåser"
+
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:131
+msgid "Set up a password to unlock the screen."
+msgstr "Sett opp et passord for å låse opp skjermen."
+
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:149
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2227
+msgid "Password"
+msgstr "Passord"
+
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:93
+msgid "Confirm"
+msgstr "Bekreft"
+
+#: config/chroot_local-includes/usr/local/bin/tails-security-check:121
+msgid "This version of Tails has known security issues:"
+msgstr "Denne versjonen av Tails har kjente sikkerhetsproblem:"
+
+#: config/chroot_local-includes/usr/local/bin/tails-security-check:132
+msgid "Known security issues"
+msgstr "Kjente sikkerhetsproblemer"
+
+#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:56
+#, sh-format
+msgid "Network card ${nic} disabled"
+msgstr "Nettverkskort ${nic} skrudd av"
+
+#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:57
+#, sh-format
+msgid ""
+"MAC address anonymization failed for network card ${nic_name} (${nic}) so it "
+"is temporarily disabled.\n"
+"You might prefer to restart Tails and disable MAC address anonymization."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:66
+msgid "All networking disabled"
+msgstr "All nettverkstilknytning avskrudd"
+
+#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:67
+#, sh-format
+msgid ""
+"MAC address anonymization failed for network card ${nic_name} (${nic}). The "
+"error recovery also failed so all networking is disabled.\n"
+"You might prefer to restart Tails and disable MAC address anonymization."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
+msgid ""
+"<b>Not enough memory available to check for upgrades.</b>\n"
+"\n"
+"Make sure this system satisfies the requirements for running Tails.\n"
+"See file:///usr/share/doc/tails/website/doc/about/requirements.en.html\n"
+"\n"
+"Try to restart Tails to check for upgrades again.\n"
+"\n"
+"Or do a manual upgrade.\n"
+"See {manual_upgrade_url}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
+msgid "error:"
+msgstr "feil:"
+
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
+msgid "Warning: virtual machine detected!"
+msgstr "Advarsel: Virtuell maskin oppdaget!"
+
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+msgid "Warning: non-free virtual machine detected!"
+msgstr "Advarsel: ufri virtuell maskin oppdaget!"
+
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+msgid ""
+"Both the host operating system and the virtualization software are able to "
+"monitor what you are doing in Tails. Only free software can be considered "
+"trustworthy, for both the host operating system and the virtualization "
+"software."
+msgstr ""
+"Både vertssystemet og virtualiseringsprogramvaren er i stand til å overvåke "
+"alt du gjør i Tails. Kun fri programvare kan anses som pålitelig, både hva "
+"gjelder vertssystemet og virtualiseringsprogramvaren."
+
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
+msgid "Don't Show Again"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+msgid "Learn More"
+msgstr "Lær mer"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/config.py:9
+#: ../config/chroot_local-includes/usr/share/applications/tca.desktop.in.h:1
+msgid "Tor Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:200
+msgid "_Use a bridge that you already know"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:242
+msgid ""
+"To save your bridge, <a href=\"doc/persistent_storage\">unlock your "
+"Persistent Storage</a>."
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:249
+msgid ""
+"To save your bridge, <a href=\"doc/persistent_storage\">create a Persistent "
+"Storage</a> on your Tails USB stick."
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:269
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:773
+#, python-brace-format
+msgid "Invalid: {exception}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:281
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:786
+msgid "You need to configure an obfs4 bridge to hide that you are using Tor"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:334
+msgid "Failed to configure your Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:385
+msgid "Failed to detect a webcam. Maybe your webcam is too old."
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:394
+msgid "Failed to scan QR code. Try with more light or closer to the camera."
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:401
+msgid "Invalid QR code. Try sending another email and scanning again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:451
+msgid "Synchronizing the system's clock…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:500
+msgid "Connecting to Tor without bridges…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:507
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:531
+msgid "Connecting to Tor with default bridges…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:514
+msgid "Connecting to Tor with a custom bridge…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:622
+msgid "Connected to Tor successfully with bridges"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:624
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1960
+msgid "Connected to Tor successfully"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:628
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1985
+msgid "You can now browse the Internet anonymously and uncensored."
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:703
+msgid "This local network seems to be blocking access to Tor."
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:776
+msgid "Bridge address malformed"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:794
+msgid "Setting a bridge is needed if you want to hide that you are using Tor"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1011
+#, python-brace-format
+msgid "Scanned {bridge_type} bridge: <b>{bridge_info}</b>."
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1102
+msgid "Are you sure you want to lose progress?"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1106
+msgid ""
+"Tails will continue connecting to Tor after you close the Tor Connection "
+"assistant.\n"
+"\n"
+"If connecting to Tor fails, you will have to wait again until the end of the "
+"progress bar to be able to troubleshoot your connection."
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1112
+msgid "Close and Lose Progress"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1113
+msgid "Wait"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/bin/thunderbird:41
+msgid "You need to migrate your OpenPGP keys"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/bin/thunderbird:43
+msgid ""
+"<i>Thunderbird</i> 78 now replaces the <i>Enigmail</i> extension with built-"
+"in support for OpenPGP encryption. To continue using your OpenPGP keys in "
+"<i>Thunderbird</i>, follow our migration instructions."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/bin/thunderbird:45
+msgid "_Open Migration Instructions"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/bin/thunderbird:46
+msgid "_Migrate Later"
+msgstr ""
+
+#: config/chroot_local-includes/usr/bin/tor-browser:49
+msgid "Tor is not ready"
+msgstr "Tor er ikke klar"
+
+#: config/chroot_local-includes/usr/bin/tor-browser:50
+msgid "Tor is not ready. Start Tor Browser anyway?"
+msgstr "Tor er ikke klar. Start Tor-nettleseren uansett?"
+
+#: config/chroot_local-includes/usr/bin/tor-browser:51
+msgid "Start Tor Browser Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/bin/tor-browser:52
+msgid "Open Tor Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/torstatus@tails.boum.org/extension.js:37
+msgid "Tor Status"
+msgstr "Tor-status"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/torstatus@tails.boum.org/extension.js:46
+msgid "Open Onion Circuits"
+msgstr "Åpne løk-kretser"
+
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced. They need
+#. to be present in the translated string.
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:65
+#, python-brace-format
+msgid "{volume_label} ({volume_size})"
+msgstr "{volume_label} ({volume_size})"
+
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced. They need
+#. to be present in the translated string.
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:71
+#, python-brace-format
+msgid "{partition_name} ({partition_size})"
+msgstr "{partition_name} ({partition_size})"
+
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced. It needs to be present in the translated
+#. string.
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:77
+#, python-brace-format
+msgid "{volume_size} Volume"
+msgstr "{volume_size} Lagring"
+
+#. Translators: Don't translate {volume_name}, it's a placeholder and
+#. will be replaced. It needs to be present in the translated string.
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#, python-brace-format
+msgid "{volume_name} (Read-Only)"
+msgstr "{volume_name} (Skrivebeskyttet)"
+
+#. Translators: Don't translate {partition_name} and {container_path}, they
+#. are placeholders and will be replaced. They need to be present
+#. in the translated string.
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:125
+#, python-brace-format
+msgid "{partition_name} in {container_path}"
+msgstr "{partition_name} i {container_path}"
+
+#. Translators: Don't translate {volume_name} and {path_to_file_container},
+#. they are placeholders and will be replaced. You should only have to translate
+#. this string if it makes sense to reverse the order of the placeholders.
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:132
+#, python-brace-format
+msgid "{volume_name} – {path_to_file_container}"
+msgstr "{volume_name} – {path_to_file_container}"
+
+#. Translators: Don't translate {partition_name} and {drive_name}, they
+#. are placeholders and will be replaced. They need to be present
+#. in the translated string.
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:139
+#, python-brace-format
+msgid "{partition_name} on {drive_name}"
+msgstr "{partition_name} på {drive_name}"
+
+#. Translators: Don't translate {volume_name} and {drive_name},
+#. they are placeholders and will be replaced. You should only have to translate
+#. this string if it makes sense to reverse the order of the placeholders.
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:146
+#, python-brace-format
+msgid "{volume_name} – {drive_name}"
+msgstr "{volume_name} – {drive_name}"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+msgid "Wrong passphrase or parameters"
+msgstr "Feil passordfrase eller parametre"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:236
+msgid "Error unlocking volume"
+msgstr "Feil ved opplåsing av volum"
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.  They need
+#. to be present in the translated string.
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:241
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+"Kunne ikke låse opp lagringen {volume_name}:\n"
+"{error_message}"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
+msgid "One or more applications are keeping the volume busy."
+msgstr "En eller flere applikasjoner holder lagringen opptatt."
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced. They need
+#. to be present in the translated string.
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:350
+#, python-brace-format
+msgid ""
+"Couldn't lock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+"Kunne ikke låse lagringen {volume_name}:\n"
+"{error_message}"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:352
+msgid "Locking the volume failed"
+msgstr "LÃ¥singen av lagringen feilet"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
+msgid "No file containers added"
+msgstr "Ingen filbeholdere lagt til"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:98
+msgid "No VeraCrypt devices detected"
+msgstr "Ingen VeraCrypt enheter oppdaget"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:40
+#: ../config/chroot_local-includes/usr/share/applications/unlock-veracrypt-volumes.desktop.in.h:1
+msgid "Unlock VeraCrypt Volumes"
+msgstr "LÃ¥s opp VeraCrypt Volumer"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:114
+msgid "Container already added"
+msgstr "Beholder har allerede blitt lagt til"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:115
+#, python-format
+msgid "The file container %s should already be listed."
+msgstr "Filbeholderen %s bør allerede være listet."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:131
+msgid "Container opened read-only"
+msgstr "Beholderen er åpnet som skrivebeskyttet"
+
+#. Translators: Don't translate {path}, it's a placeholder  and will be replaced.
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
+#, python-brace-format
+msgid ""
+"The file container {path} could not be opened with write access. It was "
+"opened read-only instead. You will not be able to modify the content of the "
+"container.\n"
+"{error_message}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
+msgid "Error opening file"
+msgstr "Feil ved åpning av fil"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+msgid "Not a VeraCrypt container"
+msgstr "Ikke en VeraCrypt beholder"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
+#, python-format
+msgid "The file %s does not seem to be a VeraCrypt container."
+msgstr "Filen %s ser ikke ut til å være en VeraCrypt beholder."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+msgid "Failed to add container"
+msgstr "Klarte ikke å legge til beholder"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
+#, python-format
+msgid ""
+"Could not add file container %s: Timeout while waiting for loop setup.\n"
+"Please try using the <i>Disks</i> application instead."
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
+msgid "Choose File Container"
+msgstr "Velg filbeholder"
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
+msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
+msgid ""
+"To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
+"Browser is enabled in the additional settings of the Welcome Screen."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
+msgid "To use the Unsafe Browser, restart Tails."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+msgid "_Restart"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
+msgid "_Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
+msgid ""
+"Do you really want to restart Tails now?\\n\\nAll your current work will be "
+"lost."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+msgid "Restart Now"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+msgid "Failed to restart the system."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+msgid "Starting the Unsafe Browser..."
+msgstr "Starter den usikre nettleseren…"
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
+msgid "This may take a while, so please be patient."
+msgstr "Dette kan ta litt tid, så vær tålmodig."
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
+msgid "Shutting down the Unsafe Browser..."
+msgstr "Avslutter den usikre nettleseren…"
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+msgid ""
+"This may take a while, and you may not restart the Unsafe Browser until it "
+"is properly shut down."
+msgstr ""
+"Dette kan ta en stund, og den usikre nettleseren kan ikke startes på nytt "
+"før den forrige er helt avsluttet."
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
+#: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
+msgid "Unsafe Browser"
+msgstr "Usikker nettleser"
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
+msgid ""
+"Another Unsafe Browser is currently running, or being cleaned up. Please "
+"retry in a while."
+msgstr ""
+"En annen usikker nettleser kjører for øyeblikket, eller blir renset. Prøv på "
+"nytt om en stund."
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
+msgid "Failed to setup chroot."
+msgstr "Mislyktes i å opprette et chroot-miljø."
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
+msgid "Failed to configure browser."
+msgstr "Kunne ikke sette opp nettleser."
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+msgid ""
+"You are not connected to a local network yet.\\n\\nTo be able to start the "
+"Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
+"network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
+msgid "Failed to run browser."
+msgstr "Kunne ikke starte nettleser."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/exceptions.py:40
+#, python-format
+msgid ""
+"The %s variable was not found in the configuration file: /etc/whisperback/"
+"config.py"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:113
+msgid "Name of the affected software"
+msgstr "Navnet på programvaren som ble brukt"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:115
+msgid "Exact steps to reproduce the error"
+msgstr "Stegvis instruksjon for å reprodusere problemet"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:117
+msgid "Actual result and description of the error"
+msgstr "Resultat og beskrivelse av feilen"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:119
+msgid "Desired result"
+msgstr "Ønsket resultat"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:132
+msgid "Unable to load a valid configuration."
+msgstr "Klarte ikke å laste inn et gyldig oppsett."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:169
+msgid "Sending mail..."
+msgstr "Sender e-post…"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:170
+msgid "Sending mail"
+msgstr "Sender e-post"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:172
+msgid "This could take a while..."
+msgstr "Dette kan kan ta en stund…"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:188
+msgid "The contact email address doesn't seem valid."
+msgstr "Kontaktadressens e-postadresse virker ikke gyldig."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:205
+msgid "Unable to send the mail: SMTP error."
+msgstr "Kunne ikke sende e-posten: SMTP-feil."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:207
+msgid "Unable to connect to the server."
+msgstr "Kunne ikke koble til tjeneren."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:209
+msgid "Unable to create or to send the mail."
+msgstr "Kunne ikke opprette eller sende e-posten."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:212
+msgid ""
+"\n"
+"\n"
+"The bug report could not be sent, likely due to network problems. Please try "
+"to reconnect to the network and click send again.\n"
+"\n"
+"If it does not work, you will be offered to save the bug report."
+msgstr ""
+"\n"
+"\n"
+"Feilmeldingen kunne ikke sendes, trolig grunnet nettverksproblemer. Prøv å "
+"koble til nettverket på nytt og trykk send en gang til.\n"
+"\n"
+"Hvis det ikke virker, vil du bli spurt om å lagre feilmeldingen."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:225
+msgid "Your message has been sent."
+msgstr "Meldingen din ble sendt."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:232
+msgid "An error occured during encryption."
+msgstr "En feil oppstod under kryptering."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:252
+#, python-format
+msgid "Unable to save %s."
+msgstr "Kunne ikke lagre %s."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:275
+#, python-format
+msgid ""
+"The bug report could not be sent, likely due to network problems.\n"
+"\n"
+"As a work-around you can save the bug report as a file on a USB drive and "
+"try to send it to us at %s from your email account using another system. "
+"Note that your bug report will not be anonymous when doing so unless you "
+"take further steps yourself (e.g. using Tor with a throw-away email "
+"account).\n"
+"\n"
+"Do you want to save the bug report to a file?"
+msgstr ""
+"Feilmeldingen kunne ikke sendes, trolig grunnet nettverksproblemer.\n"
+"\n"
+"Som en løsning på problemet kan du lagre feilmeldingen på en USB-enhet og "
+"prøve å sende den til oss på %s med en e-postkonto på et annet system. Vær "
+"klar over at feilmeldingen ikke vil være anonym når du gjør dette, hvis du "
+"ikke tar ytterligere grep selv (f.eks ved å bruke Tor med en midlertidig e-"
+"postkonto).\n"
+"\n"
+"Ønsker du å lagre feilmeldingen i en lokal fil?"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:337
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:280
+msgid "WhisperBack"
+msgstr "WhisperBack"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:338
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:12
+msgid "Send feedback in an encrypted mail."
+msgstr "Send tilbakemelding i en kryptert e-post."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:341
+msgid "Copyright © 2009-2018 Tails developers (tails@boum.org)"
+msgstr "Opphavsrett © 2009-2018 Tails developers (tails@boum.org)"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:342
+msgid "Tails developers <tails@boum.org>"
+msgstr "Tails-utviklere <tails@boum.org>"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:343
+msgid "translator-credits"
+msgstr "Oversettere"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:376
+msgid "This doesn't seem to be a valid URL or OpenPGP key."
+msgstr "Dette ser ikke ut til å være en gydlig URL eller OpenPGP-nøkkel."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/whisperback.py:62
+#, python-format
+msgid "Invalid contact email: %s"
+msgstr "Ugyldig e-postadresse: %s"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/whisperback.py:82
+#, python-format
+msgid "Invalid contact OpenPGP key: %s"
+msgstr "Ugyldig OpenPGP-nøkkel: %s"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/whisperback.py:84
+msgid "Invalid contact OpenPGP public key block"
+msgstr "Kunne ikke lese (offentlig nøkkel) innhold fra nøkkelblokk-del"
+
+#: config/chroot_local-includes/usr/local/bin/tca:154
+msgid "You turned on Offline Mode in the Welcome Screen."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/bin/tca:155
+msgid "It is impossible to connect to Tor in Offline Mode."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/bin/tca:156
+msgid "To connect to Tor and the Internet, restart Tails without Offline Mode."
+msgstr ""
+
+#: ../config/chroot_local-includes/etc/skel/Desktop/Report_an_error.desktop.in.h:1
+msgid "Report an error"
+msgstr "Rapporter en feil"
+
+#: ../config/chroot_local-includes/etc/skel/Desktop/tails-documentation.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/applications/tails-documentation.desktop.in.h:1
+msgid "Tails documentation"
+msgstr "Tails dokumentasjon"
+
+#: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
+#, fuzzy
+msgid "Persistent Storage"
+msgstr "Opprett vedvarende lagring"
+
+#: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:2
+msgid ""
+"Configure which files and application configuration are saved between "
+"working sessions"
+msgstr ""
+"Konfigurer hvilke filer og applikasjonsinnstillinger som blir lagret mellom "
+"hver arbeidsøkt"
+
+#: ../config/chroot_local-includes/usr/share/applications/root-terminal.desktop.in.h:1
+msgid "Root Terminal"
+msgstr "Root terminal"
+
+#: ../config/chroot_local-includes/usr/share/applications/root-terminal.desktop.in.h:2
+msgid "Opens a terminal as the root user, using gksu to ask for the password"
+msgstr ""
+"Åpner en terminal som root-bruker og bruker gksu for å spørre om passordet"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-documentation.desktop.in.h:2
+msgid "Learn how to use Tails"
+msgstr "Lær hvordan du bruker Tails"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-about.desktop.in.h:2
+msgid "Learn more about Tails"
+msgstr "Lær mer om Tails"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "Opprett vedvarende lagring"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
+msgid "Install, clone, upgrade Tails"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/applications/tca.desktop.in.h:2
+msgid "Connect Tails to the Tor network"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:1
+msgid "Tor Browser"
+msgstr "Tor-nettleseren"
+
+#: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:2
+msgid "Anonymous Web Browser"
+msgstr "Anonym nettleser"
+
+#: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:2
+msgid "Browse the World Wide Web without anonymity"
+msgstr "Surf på Internett uten anonymitet"
+
+#: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:3
+msgid "Unsafe Web Browser"
+msgstr "Usikker nettleser"
+
+#: ../config/chroot_local-includes/usr/share/applications/unlock-veracrypt-volumes.desktop.in.h:2
+msgid "Mount VeraCrypt encrypted file containers and devices"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:2
+msgid ""
+"Configure the additional software installed from your persistent storage "
+"when starting Tails"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/applications/whisperback.desktop.in.h:1
+msgid "WhisperBack Error Reporting"
+msgstr "WhisperBack feilrapportering"
+
+#: ../config/chroot_local-includes/usr/share/applications/whisperback.desktop.in.h:2
+msgid "Send feedback via encrypted e-mail"
+msgstr "Send tilbakemelding via kryptert e-post."
+
+#: ../config/chroot_local-includes/usr/share/applications/whisperback.desktop.in.h:3
+msgid "feedback;bug;report;tails;error;"
+msgstr "tilbakemelding;programfeil;rapport;tails;feil;"
+
+#: ../config/chroot_local-includes/usr/share/desktop-directories/Tails.directory.in.h:2
+msgid "Tails specific tools"
+msgstr "Tails-spesifikke verktøy"
+
+#: ../config/chroot_local-includes/usr/share/polkit-1/actions/org.boum.tails.root-terminal.policy.in.h:1
+msgid "To start a Root Terminal, you need to authenticate."
+msgstr "For å starte en root-terminal, må du identitetsbekrefte deg."
+
+#: ../config/chroot_local-includes/usr/share/polkit-1/actions/org.boum.tails.additional-software.policy.in.h:1
+msgid "Remove an additional software package"
+msgstr "Fjern en tilleggsprogramvare"
+
+#: ../config/chroot_local-includes/usr/share/polkit-1/actions/org.boum.tails.additional-software.policy.in.h:2
+msgid ""
+"Authentication is required to remove a package from your additional software "
+"($(command_line))"
+msgstr ""
+"Autentisering er påkrevd for å fjerne en pakke fra dine tilleggsprogrammer "
+"($(command_line))"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
+msgid "Administration Password"
+msgstr "Administrasjonspassord"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+"Sett opp et administrasjonspassord hvis du trenger å utføre administrative "
+"oppgaver. Ellers er administrasjonspassordet avslått for bedret sikkerhet."
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:69
+msgid "Enter an administration password"
+msgstr "Skriv inn et administrasjonspassord"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:107
+msgid "Confirm your administration password"
+msgstr "Bekreft ditt administrasjonspassord"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:124
+msgid "Disable"
+msgstr "Skru av"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
+msgid "MAC Address Anonymization"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:170
+msgid ""
+"MAC address anonymization hides the serial number of your network interface "
+"(Wi-Fi or wired) from the local network. Anonymizing MAC addresses is "
+"generally safer as it helps you hide your geographical location. But it "
+"might also create connectivity problems or look suspicious."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:212
+msgid "Anonymize all MAC addresses (default)"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:258
+msgid "Don't anonymize MAC addresses"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
+msgid "Network Configuration"
+msgstr "Nettverksoppsett"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:327
+msgid ""
+"We replaced this additional setting in Tails 4.19 (June 2021) with a Tor "
+"Connection assistant integrated in the desktop.\n"
+"\n"
+"You will be asked whether you want to use Tor bridges when connecting to Tor "
+"after starting Tails.\n"
+"\n"
+"If you want to work offline, enable the Offline Mode in the additional "
+"settings."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:357
+msgid "Offline Mode"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:373
+msgid ""
+"If you want to work completely offline, you can disable all networking for "
+"increased security."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:528
+msgid ""
+"The Unsafe Browser allows you to sign in to a network using a captive "
+"portal.\n"
+"\n"
+"A captive portal is a web page that is displayed before you can access the "
+"Internet. Captive portals usually require you to log in to the network or "
+"enter information such as an email address.\n"
+"\n"
+"The Unsafe Browser is not anonymous and can deanonymize you. Use it only to "
+"sign in to networks.\n"
+"\n"
+"The Unsafe Browser is enabled by default again since Tails 5.8 (December "
+"2022), after we fixed the security vulnerabilities that made us disable it "
+"by default in Tails 4.8 (June 2020)."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:576
+#, fuzzy
+msgid "Enable the Unsafe Browser (default)"
+msgstr "Starter den usikre nettleseren…"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:622
+#, fuzzy
+msgid "Disable the Unsafe Browser"
+msgstr "Starter den usikre nettleseren…"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:100
+msgid "Settings were loaded from the persistent storage."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:152
+msgid "Welcome to Tails!"
+msgstr "Velkommen til Tails!"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
+#, fuzzy
+msgid "_Persistent Storage"
+msgstr "Opprett vedvarende lagring"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
+msgid ""
+"You can save some of your files and configuration in an encrypted Persistent "
+"Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
+"passwords, and so on."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
+#, fuzzy
+msgid ""
+"You will create and configure your Persistent Storage after starting Tails."
+msgstr ""
+"Å installere det automatisk fra vedvarende lagring når du starter Tails."
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
+msgid "Language & Region"
+msgstr "Språk og region"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
+msgid "Default Settings"
+msgstr "Forvalgte innstillinger"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
+msgid "Show Passphrase"
+msgstr "Vis passordsekvens"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "Passordsekvens:"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+#, fuzzy
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
+msgstr ""
+"Ditt vedvarende lager er låst opp. En omstart av Tails vil låse det igjen."
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
+msgid "_Additional Settings"
+msgstr "_Ytterligere innstillinger"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
+msgid "Add an additional setting"
+msgstr "Legg til ytterligere innstilling"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+"De forvalgte innstillingene er trygg i de fleste fall. For å legge til en "
+"egendefinert innstilling, trykk \"+\"-knappen nedenfor."
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
+msgid "Shutdown"
+msgstr "Skru av"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
+msgid "_Start Tails"
+msgstr "_Start Tails"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:8
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:56
+#, fuzzy
+msgid "Change Passphrase"
+msgstr "Vis passordsekvens"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:95
+#, fuzzy
+msgid "Current _Passphrase"
+msgstr "Passordsekvens:"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:131
+#, fuzzy
+msgid "_New Passphrase"
+msgstr "Vis passordsekvens"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:179
+#, fuzzy
+msgid "_Confirm New Passphrase"
+msgstr "Vis passordsekvens"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:215
+#, fuzzy
+msgid "_Show Passphrases"
+msgstr "Vis passordsekvens"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:253
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:213
+#, fuzzy
+msgid "The passphrases do not match"
+msgstr "Passordsekvensene samsvarer ikke"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:317
+msgid "Ch_ange"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/deleted_view.ui.in:21
+#, fuzzy
+msgid "The Persistent Storage was successfully deleted."
+msgstr "All data med vedvarende lagring vil fjernes."
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/deleted_view.ui.in:32
+msgid "_Close"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/fail_view.ui.in:30
+msgid "Oh no! Something has gone wrong."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/fail_view.ui.in:45
+msgid ""
+"The Persistent Storage service exited unexpectedly.\n"
+"\n"
+"You can send an error report or check the output of the following commands "
+"to investigate:"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/fail_view.ui.in:74
+#, fuzzy
+msgid "Send Error Report"
+msgstr "WhisperBack feilrapportering"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:61
+msgid ""
+"Your Persistent Storage is unlocked.\n"
+"\n"
+"Its content is available until you shut down Tails.\n"
+"\n"
+"<a href=\"doc/persistent_storage/backup\">Learn how to make a backup of your "
+"Persistent Storage.</a>"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:89
+msgid ""
+"Turn on the features of the Persistent Storage for the data that you want to "
+"save to your Tails USB stick."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:106
+#, fuzzy
+msgid "Personal Documents"
+msgstr "Personlig data"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:134
+#, fuzzy
+msgid "Persistent Folder"
+msgstr "Slett vedvarende lagring"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:153
+#, fuzzy
+msgid "Open Persistent Folder"
+msgstr "Slett vedvarende lagring"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:166
+#, fuzzy
+msgid "Activate Persistent Folder"
+msgstr "Opprett vedvarende lagring"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:191
+#, fuzzy
+msgid "System Settings"
+msgstr "Forvalgte innstillinger"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+#, fuzzy
+msgid "Welcome Screen"
+msgstr "LÃ¥seskjerm"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
+msgid "Activate Welcome Screen"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+#, fuzzy
+msgid "Printers"
+msgstr "Skrivere"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
+#, fuzzy
+msgid "Activate Printers"
+msgstr "Skrivere"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:275
+msgid "Network"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:303
+msgid "Network Connections"
+msgstr "Nettverkstilkoblinger"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:304
+msgid "Save Wi-Fi passwords and mobile broadband configuration."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:314
+#, fuzzy
+msgid "Activate Network Connections"
+msgstr "Nettverkstilkoblinger"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:325
+msgid "Tor Bridge"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:335
+#, fuzzy
+msgid "Activate Tor Bridge"
+msgstr "Start Tor-nettleseren"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:360
+msgid "Applications"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "Nettleser Bokmerker"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
+#, fuzzy
+msgid "Activate Tor Browser Bookmarks"
+msgstr "Nettleser Bokmerker"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:409
+#, fuzzy
+msgid "Electrum Bitcoin Wallet"
+msgstr "Electrum sin bitcoin-klient og oppsett av den"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:419
+#, fuzzy
+msgid "Activate Electrum Bitcoin Wallet"
+msgstr "Electrum sin bitcoin-klient og oppsett av den"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:430
+#, fuzzy
+msgid "Thunderbird Email Client"
+msgstr "Thunderbird"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:440
+msgid "Activate Thunderbird Email Client"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:451
+msgid "GnuPG"
+msgstr "GnuPG"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:452
+msgid "OpenPGP keys outside of Thunderbird."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:462
+msgid "Activate GnuPG"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:473
+msgid "Pidgin Internet Messenger"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:483
+msgid "Activate Pidgin Internet Messenger"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:494
+msgid "SSH Client"
+msgstr "SSH-klient"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:504
+#, fuzzy
+msgid "Activate SSH Client"
+msgstr "SSH-klient"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:529
+#, fuzzy
+msgid "Advanced Settings"
+msgstr "Ytterligere innstillinger"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:558
+#, fuzzy
+msgid "Install additional software automatically when starting Tails."
+msgstr ""
+"Du kan installere tilleggsprogramvare automatisk fra vedvarende lagring når "
+"du starter Tails."
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:577
+#, fuzzy
+msgid "Configure Additional Software"
+msgstr "Tilleggsprogramvare"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:590
+#, fuzzy
+msgid "Activate Additional Software"
+msgstr "Tilleggsprogramvare"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:601
+msgid "Dotfiles"
+msgstr "Dotfiler"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:602
+msgid "Symlink every file in the Dotfiles folder into the Home folder."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:629
+#, fuzzy
+msgid "Activate Dotfiles"
+msgstr "Dotfiler"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:659
+msgid "Custom"
+msgstr "Egendefinert"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:678
+msgid ""
+"To add or remove custom features, modify /live/persistence/"
+"TailsData_unlocked/persistence.conf."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:720
+msgid ""
+"<a href=\"doc/persistent_storage\">Learn more about the Persistent Storage.</"
+"a>"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/locked_view.ui.in:52
+msgid ""
+"<b>Your Persistent Storage is locked.</b>\n"
+"\n"
+"To use or configure your Persistent Storage, unlock it in the Welcome Screen "
+"when starting Tails.\n"
+"\n"
+"To delete your Persistent Storage, click <b>Delete</b> on the right of the "
+"title bar."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:52
+msgid ""
+"Choose the passphrase that you will use to unlock the encryption of your "
+"Persistent Storage and all its data.\n"
+"\n"
+"We recommend a long passphrase of 5 to 7 random words."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:82
+msgid "Passphrase:"
+msgstr "Passordsekvens:"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:101
+#, fuzzy
+msgid "Confirm:"
+msgstr "Bekreft"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:178
+#, fuzzy
+msgid "_Show Passphrase"
+msgstr "Vis passordsekvens"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:265
+#, fuzzy
+msgid "_Back"
+msgstr "Tilbake"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:56
+msgid ""
+"Everything you do disappears automatically when you shut down Tails.\n"
+"\n"
+"But you can save some of your files and configuration in an encrypted "
+"Persistent Storage on your Tails USB stick, for example:\n"
+"\n"
+"• Your documents\n"
+"• Your Wi-Fi passwords\n"
+"• Your browser bookmarks\n"
+"• ...\n"
+"\n"
+"<a href=\"doc/persistent_storage\">Learn more about the Persistent Storage.</"
+"a>"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:92
+msgid ""
+"Sorry, it is impossible to create a Persistent Storage on this device.\n"
+"\n"
+"To be able to use Tails with a Persistent Storage, please follow our "
+"instructions on <a href=\"install\">installing Tails on a USB stick</a>."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:137
+msgid "Co_ntinue"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:29
+#, fuzzy
+msgid "_Delete..."
+msgstr "Sletter…"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:36
+#, fuzzy
+msgid "Delete Persistent Storage"
+msgstr "Opprett vedvarende lagring"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:49
+#, fuzzy
+msgid "_Change Passphrase..."
+msgstr "Vis passordsekvens"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:66
+#, fuzzy
+msgid "_Restart Tails"
+msgstr "Omstart av Tails"
+
+#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:61
+msgid "File Containers"
+msgstr "Filbeholdere"
+
+#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:80
+msgid "_Add"
+msgstr "_Legg til"
+
+#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:86
+msgid "Add a file container"
+msgstr "Legg til en filbeholder"
+
+#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:103
+msgid "Partitions and Drives"
+msgstr "Partisjoner og Stasjoner"
+
+#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:121
+msgid ""
+"This application is not affiliated with or endorsed by the VeraCrypt project "
+"or IDRIX."
+msgstr ""
+"Denne applikasjonen er ikke tilknyttet eller godkjent av VeraCrypt-"
+"prosjektet eller IDRIX."
+
+#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:29
+msgid "_Open"
+msgstr "_Ã…pne"
+
+#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:38
+msgid "Lock this volume"
+msgstr "LÃ¥s dette volumet"
+
+#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:52
+msgid "_Unlock"
+msgstr "_LÃ¥s opp"
+
+#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:61
+msgid "Detach this volume"
+msgstr "Løsne dette volumet"
+
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
+msgid "Target USB stick:"
+msgstr "USB minne å installere på:"
+
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
+msgid "Reinstall (delete all data)"
+msgstr "Reinstaller (slett all data)"
+
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:11
+msgid "Copyright © 2009-2018 tails@boum.org"
+msgstr "Opphavsrett © 2009-2018 tails@boum.org"
+
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
+msgid ""
+"WhisperBack - Send feedback in an encrypted mail\n"
+"Copyright (C) 2009-2018 Tails developers <tails@boum.org>\n"
+"\n"
+"This program is  free software; you can redistribute  it and/or modify\n"
+"it under the  terms of the GNU General Public  License as published by\n"
+"the Free Software Foundation; either  version 3 of the License, or (at\n"
+"your option) any later version.\n"
+"\n"
+"This program  is distributed in the  hope that it will  be useful, but\n"
+"WITHOUT   ANY  WARRANTY;   without  even   the  implied   warranty  of\n"
+"MERCHANTABILITY  or FITNESS  FOR A  PARTICULAR PURPOSE.   See  the GNU\n"
+"General Public License for more details.\n"
+"\n"
+"You should have received a copy of the GNU General Public License\n"
+"along with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+msgstr ""
+"WhisperBack - Send tilbakemelding i en kryptert post\n"
+"Opphavsrett (C) 2009-2018 Tails utviklere <tails@boum.org>\n"
+"\n"
+"Dette programmet er gratis programvare; Du kan omfordele den og/eller endre\n"
+"det i henhold til GNU General Public License som publisert av\n"
+"Free Software Foundation; enten versjon 3 av lisensen eller (på\n"
+"ditt valg) senere versjon.\n"
+"\n"
+"Dette programmet distribueres i håp om at det vil være nyttig, men\n"
+"UTEN NOEN GARANTI; uten selv den underforståtte garantien for\n"
+"SALGBARHET ELLER EGNETHET TIL ET BESTEMT FORMÃ…L. Se GNU\n"
+"Generell offentlig lisens for flere detaljer.\n"
+"\n"
+"Du burde ha mottatt en kopi av GNU General Public License\n"
+"sammen med dette programmet. Hvis ikke, se <http://www.gnu.org/licenses/>.\n"
+
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:122
+msgid ""
+"If you want us to encrypt messages when we respond to you, add your key ID, "
+"a link to your key, or the key as a public key block:"
+msgstr ""
+"Hvis du vil at vi krypterer meldingene når vi svarer deg, legg til nøkkel-ID-"
+"en din, en lenke til nøkkelen din, eller nøkkelen som en offentlig nøkkel-"
+"blokk:"
+
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:308
+msgid "Summary"
+msgstr "Sammendrag"
+
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:337
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:485
+msgid "Bug description"
+msgstr "Beskrivelse av feil"
+
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:378
+msgid "Help:"
+msgstr "Hjelp:"
+
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:388
+msgid "Read our bug reporting guidelines."
+msgstr "Les våre retningslinjer for feilrapportering."
+
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:416
+msgid "Email address (if you want an answer from us)"
+msgstr "E-postadresse (hvis du vil ha et svar fra oss)"
+
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:445
+msgid "optional PGP key"
+msgstr "valgfri PGP-nøkkel"
+
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:470
+msgid "Please know that we are not able to reply to every bug report."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:502
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:613
+msgid "Technical details to include"
+msgstr "Tekniske detaljer å legge til"
+
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:540
+msgid "headers"
+msgstr "topptekst"
+
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:588
+msgid "debugging info"
+msgstr "Feilsøkingsinformasjon"
+
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:680
+msgid "Send"
+msgstr "Send"
+
+#: ../config/chroot_local-includes/usr/local/share/mime/packages/unlock-veracrypt-volumes.xml.in.h:1
+msgid "TrueCrypt/VeraCrypt container"
+msgstr "TrueCrypt/VeraCrypt beholder"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:82
+msgid "Configure a Tor bridge"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:106
+msgid ""
+"Bridges are secret Tor relays. Use a bridge as your first Tor relay if "
+"accessing Tor is blocked from where you are."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:122
+msgid "<a href=\"doc/anonymous_internet/tor\">Learn more about Tor bridges</a>"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:157
+msgid "Use a _default bridge"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:180
+msgid "obfs4 (recommended)"
+msgstr "obfs4 (anbefalt)"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:181
+msgid "meek"
+msgstr "meek"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:204
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1518
+msgid "None"
+msgstr "Ingen"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:240
+msgid "_Ask for a Tor bridge by email"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:259
+msgid ""
+"Send an empty email to <tt>bridges@torproject.org</tt> from a Gmail or "
+"Riseup email address with your phone and scan the QR code that is attached "
+"to the automatic reply."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:272
+msgid "Scan _QR code"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:373
+msgid "_Enter a bridge that you already know"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:399
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1040
+msgid "Bridge"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:412
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1053
+msgid "obfs4 ..."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:485
+msgid "Save bridge to _Persistent Storage"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:510
+msgid "Save bridge to Persistent Storage"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:650
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1158
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1556
+msgid "_Connect to Tor"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:692
+msgid "Error connecting to Tor"
+msgstr "Feil ved tilkobling til Tor"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:736
+msgid "• Wrong clock"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:756
+msgid "Your clock and time zone need to be correct to connect to Tor."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:769
+msgid "Fix _Clock"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:807
+msgid "• Public network"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:827
+#, fuzzy
+msgid ""
+"If you are in a shop, hotel, or airport, you might need to sign in to the "
+"local network using the Unsafe Browser."
+msgstr ""
+"If you are in a shop, hotel, or airport, you might need to sign in to the "
+"local network using the Unsafe Browser."
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:840
+msgid "Try _Signing in to the Network"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:879
+msgid "• Local proxy"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:899
+msgid ""
+"If you are on a corporate or university network, you might need to configure "
+"a local proxy."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:912
+msgid "Configure a Local _Proxy"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:951
+msgid "• Tor bridge by email"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:971
+msgid ""
+"Tor bridges are secret Tor relays. Use a bridge as your first Tor relay if "
+"connections to Tor are blocked, for example in some countries, by some "
+"public networks, or by some parental controls."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:991
+msgid ""
+"To get a bridge, send an empty email to <tt>bridges@torproject.org</tt> from "
+"a Gmail or Riseup email address with your phone and scan the QR code that is "
+"attached to the automatic reply."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1014
+msgid "Scan QR Code"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1145
+msgid ""
+"<a href=\"doc/anonymous_internet/tor/troubleshoot\">Troubleshooting "
+"connecting to Tor</a>"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1191
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1599
+msgid ""
+"Everything you do on the Internet from Tails goes through the Tor network."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1205
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1614
+msgid ""
+"Tor encrypts and anonymizes your connection by passing it through 3 relays.\n"
+"Tor relays are servers operated by different organizations and volunteers "
+"around the world."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1241
+#, fuzzy
+msgid "<b>Connect to Tor _automatically</b>"
+msgstr "<b>Connect to Tor _automatically</b>"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1291
+msgid ""
+"We recommend connecting to Tor automatically if you are on a public Wi-Fi "
+"network or if many people in your country use Tor to circumvent censorship."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1309
+msgid ""
+"Tails will try different ways of connecting to Tor until it succeeds.\n"
+"\n"
+"Someone monitoring your Internet connection could identify these attempts as "
+"coming from a Tails user."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1343
+msgid "Configure a Tor _bridge"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1389
+msgid ""
+"Tor bridges are secret Tor relays. Use a bridge as your first Tor relay if "
+"connections to Tor are blocked, for example in some countries, by some "
+"public networks, or by some parental controls.\n"
+"\n"
+"Choose this option if you already know that you need a bridge. Otherwise, "
+"Tails will autodetect whether you need a bridge to connect to Tor from your "
+"local network."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1431
+#, fuzzy
+msgid "<b>_Hide to my local network that I'm connecting to Tor</b>"
+msgstr "<b>_Hide to my local network that I'm connecting to Tor</b>"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1481
+msgid ""
+"You might need to go unnoticed if using Tor could look suspicious to someone "
+"who monitors your Internet connection."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1499
+msgid ""
+"Tails will only connect to Tor after you configured a Tor bridge. Bridges "
+"are secret Tor relays that hide that you are connecting to Tor.\n"
+"\n"
+"Our team is doing its best to help you connect to Tor using the most "
+"discrete types of Tor bridges.\n"
+"\n"
+"You will have to do extra configuration if you don't know any Tor bridges "
+"yet, if you connect from a public Wi-Fi network, or if you are in the "
+"Eastern Hemisphere."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1544
+msgid ""
+"<a href=\"doc/anonymous_internet/tor\">Learn more about how Tails connects "
+"to Tor</a>"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1629
+msgid "Connect to a local network"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1646
+msgid ""
+"You are not connected to a local network yet. To be able to connect to the "
+"Tor network, you first need to connect to a Wi-Fi, wire, or mobile network."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1658
+msgid "Open Wi-Fi settings"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1707
+msgid "Testing Internet access…"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1747
+msgid "You have access to the Internet"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1781
+msgid "Testing access to Tor…"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1824
+msgid "You can connect to Tor"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1854
+msgid "Failed to connect to Tor without bridges."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1870
+msgid "This local network is blocking access to Tor."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1902
+msgid "Connecting to Tor…"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2007
+msgid "Start Tor Browser"
+msgstr "Start Tor-nettleseren"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2026
+msgid "Open Network Monitor"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2039
+msgid "View Tor Circuits"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2053
+msgid "Reset Tor Connection"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2093
+msgid "Configure a Local Proxy"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2119
+msgid "Proxy Type"
+msgstr "Mellomtjener-type"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2136
+msgid "No proxy"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2137
+msgid "SOCKS 4"
+msgstr "SOCKS 4"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2138
+msgid "SOCKS 5"
+msgstr "SOCKS 5"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2139
+msgid "HTTP / HTTPS"
+msgstr "HTTP / HTTPS"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2158
+msgid "Address"
+msgstr "Adresse"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2175
+msgid "Username"
+msgstr "Brukernavn"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2192
+msgid "IP address or hostname"
+msgstr "IP-adresse, eller vertsnavn"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2210
+msgid "Port"
+msgstr "Port"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2334
+msgid "_Save Proxy Settings"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:7
+msgid "Tor Connection - Fix Clock"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:76
+msgid ""
+"Your time zone cannot be used to identify or locate you. Your time zone will "
+"never be sent over the network and will only be used to fix your clock and "
+"connect to Tor."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:142
+msgid "Time zone"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:186
+msgid "Time"
+msgstr "Tid"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:223
+msgid ":"
+msgstr ":"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:277
+msgid "Date"
+msgstr "Dato"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:311
+msgid "January"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:312
+msgid "February"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:313
+msgid "March"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:314
+msgid "April"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:315
+msgid "May"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:316
+msgid "June"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:317
+msgid "July"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:318
+msgid "August"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:319
+msgid "September"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:320
+msgid "October"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:321
+msgid "November"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:322
+msgid "December"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:368
+msgid "Clock"
+msgstr ""
+
+#~ msgid "Encrypted _Persistent Storage"
+#~ msgstr "Kryptert _vedvarende lagring"
+
+#~ msgid "Enter your passphrase to unlock the persistent storage"
+#~ msgstr "Skriv inn din passordsekvens for å låse opp det vedvarende lageret"
+
+#, python-format
+#~ msgid ""
+#~ "<h1>Help us fix your bug!</h1>\n"
+#~ "<p>Read <a href=\"%s\">our bug reporting instructions</a>.</p>\n"
+#~ "<p><strong>Do not include more personal information than\n"
+#~ "needed!</strong></p>\n"
+#~ "<h2>About giving us an email address</h2>\n"
+#~ "<p>\n"
+#~ "Giving us an email address allows us to contact you to clarify the "
+#~ "problem. This\n"
+#~ "is needed for the vast majority of the reports we receive as most "
+#~ "reports\n"
+#~ "without any contact information are useless. On the other hand it also "
+#~ "provides\n"
+#~ "an opportunity for eavesdroppers, like your email or Internet provider, "
+#~ "to\n"
+#~ "confirm that you are using Tails.\n"
+#~ "</p>\n"
+#~ msgstr ""
+#~ "<h1>Hjelp oss med å ordne feilen du har funnet!</h1>\n"
+#~ "<p>Les <a href=\"%s\">vår instruks om rapportering av feil</a>.</p>\n"
+#~ "<p><strong>Ikke inkluder flere personvernsdetaljer enn nødvendig!</"
+#~ "strong></p>\n"
+#~ "<h2>Om det å gi oss en e-post -adresse</h2>\n"
+#~ "<p>\n"
+#~ "Det å gi oss en e-post -adresse tillater oss å kontakte deg for å få "
+#~ "klarhet i problemet.\n"
+#~ "Dette er som oftest nødvendig siden de fleste feilrettingsrapportene \n"
+#~ "trenger ytterligere detaljer for å være brukbare.\n"
+#~ "Dog gir det også en mulighet for \n"
+#~ "overvåkningsinstanser, som din e-post eller Internettilbyder, til å "
+#~ "bekrefte at du bruker Tails\n"
+#~ "</p>\n"
+
+#~ msgid ""
+#~ "<b>Could not choose a download server.</b>\n"
+#~ "\n"
+#~ "This should not happen. Please report a bug."
+#~ msgstr ""
+#~ "<b>Kunne ikke finne en nedlastingstjener.</b>\n"
+#~ "\n"
+#~ "Dette skal ikke skje, rapporter som feil."
+
+#~ msgid "Error while choosing a download server"
+#~ msgstr "Feil ved valg av nedlastingstjener"
+
+#~ msgid "The Amnesic Incognito Live System"
+#~ msgstr "The (Det) Amnesiske Inkognito Levende System"
+
+#, fuzzy
+#~ msgid ""
+#~ "The Unsafe Browser is not anonymous and the websites that you visit can "
+#~ "see your real IP address.\\n\\nOnly use the Unsafe Browser to sign in to "
+#~ "a network, then close it."
+#~ msgstr ""
+#~ "The Unsafe Browser is not anonymous and the websites that you visit can "
+#~ "see your real IP address.\\n\\nOnly use the Unsafe Browser to sign in to "
+#~ "a network, then close it."
+
+#~ msgid "Enabled"
+#~ msgstr "PÃ¥"
+
+#, python-brace-format
+#~ msgid ""
+#~ "live-persist failed with return code {returncode}:\n"
+#~ "{stderr}"
+#~ msgstr ""
+#~ "live-persist mislyktes med returkode {returncode}:\n"
+#~ "{stderr}"
+
+#, python-brace-format
+#~ msgid ""
+#~ "cryptsetup failed with return code {returncode}:\n"
+#~ "{stdout}\n"
+#~ "{stderr}"
+#~ msgstr ""
+#~ "cryptsetup mislyktes med returkode {returncode}:\n"
+#~ "{stdout}\n"
+#~ "{stderr}"
+
+#, python-brace-format
+#~ msgid ""
+#~ "live-persist failed with return code {returncode}:\n"
+#~ "{stdout}\n"
+#~ "{stderr}"
+#~ msgstr ""
+#~ "live-persist mislyktes med returkode {returncode}:\n"
+#~ "{stdout}\n"
+#~ "{stderr}"
+
+#, python-brace-format
+#~ msgid ""
+#~ "umount failed with return code {returncode}:\n"
+#~ "{stdout}\n"
+#~ "{stderr}"
+#~ msgstr ""
+#~ "umount mislyktes med returkode {returncode}:\n"
+#~ "{stdout}\n"
+#~ "{stderr}"
+
+#~ msgid "Persistence wizard - Persistent volume creation"
+#~ msgstr "Bestandighet veiviseren - Opprettelse av vedvarende lagring"
+
+#~ msgid "Choose a passphrase to protect the persistent volume"
+#~ msgstr "Angi en passordsekvens for å beskytte den vedvarende lagringen"
+
+#~ msgid "Create"
+#~ msgstr "Opprett"
+
+#~ msgid ""
+#~ "<b>Beware!</b> Using persistence has consequences that must be well "
+#~ "understood. Tails can't help you if you use it wrong! See the "
+#~ "<i>Encrypted persistence</i> page of the Tails documentation to learn "
+#~ "more."
+#~ msgstr ""
+#~ "<b>Advarsel!</b> Å bruke vedvarende enhet har konsekvenser som må være "
+#~ "forstått. Tails kan ikke hjelpe deg hvis du ikke bruker det på riktig "
+#~ "måte! Se <i>Kryptert vedvarende enhet</i> siden av Tails dokumentasjonen "
+#~ "for å lære mer."
+
+#~ msgid "Verify Passphrase:"
+#~ msgstr "Bekreft passordsekvens:"
+
+#~ msgid "Passphrase can't be empty"
+#~ msgstr "Passordsekvensfeltet kan ikke stå tomt"
+
+#~ msgid "Failed"
+#~ msgstr "Mislyktes"
+
+#~ msgid "Mounting Tails persistence partition."
+#~ msgstr "Monterer Tails med vedvarende lagring."
+
+#~ msgid "The Tails persistence partition will be mounted."
+#~ msgstr "Tails med vedvarende lagring vil bli montert."
+
+#~ msgid "Correcting permissions of the persistent volume."
+#~ msgstr "Korrigerer tillatelsene til den vedvarende lagringen."
+
+#~ msgid "The permissions of the persistent volume will be corrected."
+#~ msgstr "Tillatelsene for den vedvarende lagringen vil bli korrigert."
+
+#~ msgid "Creating default persistence configuration."
+#~ msgstr "Oppretter standard vedvarende konfigurasjon."
+
+#~ msgid "The default persistence configuration will be created."
+#~ msgstr "Standard vedvarende konfigurasjon vil bli opprettet."
+
+#~ msgid "Creating..."
+#~ msgstr "Oppretter…"
+
+#~ msgid "Creating the persistent volume..."
+#~ msgstr "Oppretter vedvarende lagring…"
+
+#~ msgid "Persistence wizard - Persistent volume configuration"
+#~ msgstr "Veiviser for oppsett av vedvarende lagring"
+
+#~ msgid "Specify the files that will be saved in the persistent volume"
+#~ msgstr "Angi hvilke filer som skal brukes med vedvarende lagring "
+
+#~ msgid "Save"
+#~ msgstr "Lagre"
+
+#~ msgid "Saving..."
+#~ msgstr "Lagrer…"
+
+#~ msgid "Saving persistence configuration..."
+#~ msgstr "Lagrer oppsett av vedvarende lagring…"
+
+#~ msgid "Persistence wizard - Persistent volume deletion"
+#~ msgstr "Veiviser for fjerning av vedvarende lagring"
+
+#~ msgid "Delete"
+#~ msgstr "Slett"
+
+#~ msgid "Deleting the persistent volume..."
+#~ msgstr "Fjerner vedvarende lagring…"
+
+#~ msgid "Keep files stored in the `Persistent' directory"
+#~ msgstr "Behold filer lagret i mappen `vedvarende'"
+
+#~ msgid "Bookmarks saved in the Tor Browser"
+#~ msgstr "Bokmerker lagret i Tor-nettleseren"
+
+#~ msgid "Configuration of network devices and connections"
+#~ msgstr "Oppsett av nettverksenheter og tilkoblinger"
+
+#~ msgid "Software installed when starting Tails"
+#~ msgstr "Programvare installert ved start av Tails"
+
+#~ msgid "Printers configuration"
+#~ msgstr "Skriveroppsett"
+
+#~ msgid "Bitcoin Client"
+#~ msgstr "Bitcoin Klient"
+
+#~ msgid "Pidgin"
+#~ msgstr "Pidgin"
+
+#~ msgid "Pidgin profiles and OTR keyring"
+#~ msgstr "Pidgin-profiler, og OTR-nøkkelring"
+
+#~ msgid "SSH keys, configuration and known hosts"
+#~ msgstr "SSH-nøkler, oppsett, og kjente verter"
+
+#~ msgid "Setup Tails persistent volume"
+#~ msgstr "Sett opp Tails med vedvarende lagring"
+
+#~ msgid ""
+#~ "Cannot delete the persistent volume while in use. You should restart "
+#~ "Tails without persistence."
+#~ msgstr ""
+#~ "Den vedvarende enheten kan ikke fjernes mens den er i bruk. Du bør starte "
+#~ "Tails på nytt uten vedvarende enhet."
+
+#~ msgid "Persistence volume is not unlocked."
+#~ msgstr "Vedvarende enhet er ikke låst opp."
+
+#~ msgid "Persistence volume is not mounted."
+#~ msgstr "Vedvarende enhet er ikke montert."
+
+#~ msgid ""
+#~ "Persistence volume is not readable. Permissions or ownership problems?"
+#~ msgstr ""
+#~ "Vedvarende enhet er ikke leselig. Mangler du de nødvendige rettighetene?"
+
+#~ msgid "Persistence wizard - Finished"
+#~ msgstr "Veiviser for vedvarende lagring - Ferdig"
+
+#~ msgid ""
+#~ "Only use the Unsafe Browser to sign in to a network, then close it."
+#~ "\\n\\nThe Unsafe Browser is disabled by default for security.\\n\\nTo <a "
+#~ "href='file:///usr/share/doc/tails/website/doc/anonymous_internet/"
+#~ "unsafe_browser.en.html#use'>use the Unsafe Browser</a>, restart Tails and "
+#~ "enable the Unsafe Browser in the additional settings of the Welcome "
+#~ "Screen."
+#~ msgstr ""
+#~ "Only use the Unsafe Browser to sign in to a network, then close it."
+#~ "\\n\\nThe Unsafe Browser is disabled by default for security.\\n\\nTo <a "
+#~ "href='file:///usr/share/doc/tails/website/doc/anonymous_internet/"
+#~ "unsafe_browser.en.html#use'>use the Unsafe Browser</a>, restart Tails and "
+#~ "enable the Unsafe Browser in the additional settings of the Welcome "
+#~ "Screen."
+
+#~ msgid "Delete the persistent volume and its content"
+#~ msgstr "Slett den vedvarende lagringen og dens innhold"
+
+#~ msgid "Configure persistent volume"
+#~ msgstr "Konfigurer vedvarende lagring"
diff --git a/po/ne.po b/po/ne.po
index 02024b47549..18a130d5f6d 100644
--- a/po/ne.po
+++ b/po/ne.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
 "PO-Revision-Date: 2023-01-25 11:39+0000\n"
 "Last-Translator: emma peel <emma.peel@riseup.net>\n"
 "Language-Team: Nepali <https://hosted.weblate.org/projects/tor/tails-gui/ne/"
@@ -438,9 +438,9 @@ msgid "Additional Settings"
 msgstr ""
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #, fuzzy
 msgid "Cancel"
@@ -512,11 +512,11 @@ msgstr ""
 msgid "Off (default)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
-msgid "Persistent Storage Not Unlocked"
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+msgid "Persistent Storage Still Locked"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 #, fuzzy
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
@@ -524,15 +524,15 @@ msgstr ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
-msgid "Continue Without Persistent Storage"
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
+msgid "Start Without Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 msgid "Don't _Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 msgid "_Create Persistent Storage"
 msgstr ""
@@ -552,7 +552,6 @@ msgstr ""
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr ""
 
@@ -769,69 +768,69 @@ msgstr ""
 msgid "Synchronizing data on disk..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -839,14 +838,14 @@ msgid ""
 "a different model."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
 "%(size)s GB is required)."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -854,76 +853,76 @@ msgid ""
 "%(dl_url)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
 "The persistent storage on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
 "All data on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr ""
@@ -1006,7 +1005,7 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1066,143 +1065,143 @@ msgstr ""
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
 "log to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr ""
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr ""
 
@@ -1333,19 +1332,19 @@ msgid ""
 msgstr ""
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1353,11 +1352,11 @@ msgid ""
 "software."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr ""
 
@@ -1686,32 +1685,32 @@ msgstr ""
 msgid "Choose File Container"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 #, fuzzy
 msgid "_Cancel"
 msgstr "Cancel"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 #, fuzzy
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
@@ -1720,60 +1719,60 @@ msgstr ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
 "network."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr ""
 
@@ -1933,6 +1932,7 @@ msgid "Tails documentation"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 msgid "Persistent Storage"
 msgstr ""
@@ -1959,6 +1959,15 @@ msgstr ""
 msgid "Learn more about Tails"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+msgid "Back Up Persistent Storage"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr ""
@@ -2025,7 +2034,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr ""
 
@@ -2049,7 +2058,7 @@ msgid "Disable"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr ""
 
@@ -2070,7 +2079,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr ""
 
@@ -2129,68 +2138,69 @@ msgstr ""
 msgid "Welcome to Tails!"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 msgid "_Persistent Storage"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 #, fuzzy
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr "Tails is configuring your Persistent Storage. Please wait..."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
+msgid "Show Passphrase"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
-msgid "Show Passphrase"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+msgid "_Passphrase"
 msgstr ""
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 #, fuzzy
 msgid "Shutdown"
 msgstr "Shutdown"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr ""
 
@@ -2284,10 +2294,18 @@ msgstr ""
 msgid "System Settings"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+msgid "Welcome Screen"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 msgid "Activate Welcome Screen"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+msgid "Printers"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 msgid "Activate Printers"
 msgstr ""
@@ -2320,6 +2338,10 @@ msgstr ""
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+msgid "Tor Browser Bookmarks"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 msgid "Activate Tor Browser Bookmarks"
 msgstr ""
@@ -2529,11 +2551,11 @@ msgstr ""
 msgid "Detach this volume"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr ""
 
diff --git a/po/nl.po b/po/nl.po
index 89cabdfd8e9..4452f87dfef 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -41,8 +41,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
-"PO-Revision-Date: 2023-01-26 19:00+0000\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
+"PO-Revision-Date: 2023-03-05 10:37+0000\n"
 "Last-Translator: emma peel <emma.peel@riseup.net>\n"
 "Language-Team: Dutch <https://hosted.weblate.org/projects/tor/tails-gui/nl/"
 ">\n"
@@ -51,7 +51,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.16-dev\n"
+"X-Generator: Weblate 4.16.2-dev\n"
 
 #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1
@@ -538,9 +538,9 @@ msgid "Additional Settings"
 msgstr "Extra instellingen"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "Annuleren"
@@ -613,28 +613,28 @@ msgstr "Uit"
 msgid "Off (default)"
 msgstr "Uit (standaard)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
 #, fuzzy
-msgid "Persistent Storage Not Unlocked"
+msgid "Persistent Storage Still Locked"
 msgstr "Permanente opslag aanmaken"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 #, fuzzy
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
 msgstr "Voer uw wachtwoordzin in om de permanente opslag te ontgrendelen"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
 #, fuzzy
-msgid "Continue Without Persistent Storage"
+msgid "Start Without Persistent Storage"
 msgstr "Permanente opslag aanmaken"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 #, fuzzy
 msgid "Don't _Create Persistent Storage"
 msgstr "Permanente opslag aanmaken"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 #, fuzzy
 msgid "_Create Persistent Storage"
@@ -657,7 +657,6 @@ msgstr "Ontgrendelen…"
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr "Ontgrendelen"
 
@@ -884,7 +883,7 @@ msgstr "Station is een loopback, MBR-herinitialisatie wordt overgeslagen"
 msgid "Synchronizing data on disk..."
 msgstr "Gegevens op schijf synchroniseren..."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
@@ -892,63 +891,63 @@ msgstr ""
 "Fout: kan het label niet instellen of de UUID van uw apparaat niet "
 "verkrijgen. Kan niet doorgaan."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr "Installatie voltooid! (%s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr "Tails-installatie is mislukt!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr "Tails-installatieprogramma"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr "De huidige Tails klonen"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr "Een gedownloade Tails-ISO-image gebruiken"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr "Bijwerken"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr "Instructies voor handmatige upgrade"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr "Installeren"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr "Installatie-instructies"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(size)s %(vendor)s %(model)s apparaat (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr "Geen ISO-image geselecteerd"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr "Selecteer een Tails-ISO-image"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -959,7 +958,7 @@ msgstr ""
 "verwisselbaar geconfigureerd, waardoor Tails er niet vanaf kan worden "
 "gestart. Probeer op een andere model te installeren."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
@@ -968,7 +967,7 @@ msgstr ""
 "Het apparaat '%(pretty_name)s' is te klein om Tails op te installeren "
 "(hiervoor is minstens %(size)s GB vereist)."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -979,33 +978,33 @@ msgstr ""
 "gedownloade Tails-ISO-image te gebruiken:\n"
 "%(dl_url)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr "Geen geschikt apparaat voor een Tails-installatie gevonden"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr "Plaats een USB-flashstation of SD-kaart van ten minste %0.1fGB."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr "Er is een fout opgetreden tijdens het installeren van Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr "Installatie voltooid!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr "Kan apparaat niet koppelen"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(parent_size)s%(vendor)s%(model)s apparaat (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
@@ -1015,11 +1014,11 @@ msgstr ""
 "\n"
 "De permanente opslag op deze USB-stick gaat verloren."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr "Permanente opslag verwijderen en herinstalleren"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
@@ -1029,20 +1028,20 @@ msgstr ""
 "\n"
 "Alle gegevens op deze USB-stick gaan verloren."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr "%(description)s%(delete_message)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr "Bevestig de doel-USB-stick"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
@@ -1050,7 +1049,7 @@ msgstr ""
 "Het geselecteerde bestand is onleesbaar. Herstel de rechten of selecteer een "
 "ander bestand."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
@@ -1058,7 +1057,7 @@ msgstr ""
 "Kan het geselecteerde bestand niet gebruiken. Mogelijk lukt het wel als u uw "
 "ISO in de hoofdmap van uw station plaatst (bv. C:\\)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr "%(filename)s geselecteerd"
@@ -1138,7 +1137,7 @@ msgstr "su is uitgeschakeld. Gebruik in plaats daarvan sudo."
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1204,7 +1203,7 @@ msgstr "niet beschikbaar"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -1213,7 +1212,7 @@ msgstr ""
 "{details} Controleer uw lijst van extra software of lees het systeemlogboek "
 "om het probleem te begrijpen."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
@@ -1221,56 +1220,56 @@ msgstr ""
 "Controleer uw lijst van extra software of lees het systeemlogboek om het "
 "probleem te begrijpen."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr "Logboek tonen"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "Configureren"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} en {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ", "
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "{packages} aan uw extra software toevoegen?"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 "Voor automatisch installatie vanaf uw permanente opslag bij het starten van "
 "Tails."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr "Elke keer installeren"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr "Eenmalig installeren"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr "De configuratie van uw extra software is mislukt."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -1279,68 +1278,68 @@ msgstr ""
 "permanente opslaglocatie aanmaken en de functie <b>Extra software</b> "
 "activeren."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr "Permanente opslag aanmaken"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr "Permanente opslag aanmaken is mislukt."
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 "U zou {packages} automatisch kunnen installeren bij het starten van Tails"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr "Voer hiervoor Tails uit vanaf een USB-stick."
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "{packages} uit uw extra software verwijderen?"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr "Dit stopt de automatische installatie van {packages}."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "Verwijderen"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr "Uw extra software vanaf permanente opslag installeren..."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr "Dit kan een paar minuten duren."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr "De installatie van uw extra software is mislukt"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr "De extra software is geïnstalleerd"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr "Het controleren op upgrades voor uw extra software is mislukt"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -1348,11 +1347,11 @@ msgstr ""
 "Controleer uw netwerkverbinding, herstart Tails, of lees het systeemlogboek "
 "om het probleem te begrijpen."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr "De upgrade van uw extra software is mislukt"
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "Documentatie"
 
@@ -1510,25 +1509,25 @@ msgstr ""
 "voldoet.\n"
 "Zie file:///usr/share/doc/tails/website/doc/about/requirements.en.html\n"
 "\n"
-"Probeer Tails te restarten om opnieuw  te controleren of er upgrades zijn.\n"
+"Probeer Tails te restarten om opnieuw te controleren of er upgrades zijn.\n"
 "\n"
 "Of doe een handmatige upgrade.\n"
 "Zie {manual_upgrade_url}"
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr "fout:"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr "Waarschuwing: virtuele machine gedetecteerd!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr "Waarschuwing: niet-gratis virtuele machine gedetecteerd!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1540,11 +1539,11 @@ msgstr ""
 "beschouwd, zowel voor het host-besturingssysteem als de "
 "virtualisatiesoftware."
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr "Niet opnieuw tonen"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr "Meer info"
 
@@ -1637,7 +1636,7 @@ msgstr "Je lokale netwerk blokkeert toegang tot Tor."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:776
 msgid "Bridge address malformed"
-msgstr "Foutief bridge-adres "
+msgstr "Foutief bridge-adres"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:794
 msgid "Setting a bridge is needed if you want to hide that you are using Tor"
@@ -1895,58 +1894,58 @@ msgstr ""
 msgid "Choose File Container"
 msgstr "Bestandscontainer kiezen"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 #, fuzzy
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr "De Onveilige Browser uitschakelen (standaard)"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr "_Herstarten"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 msgid "_Cancel"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr "Nu herstarten"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr "De Onveilige Browser starten..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr "Dit kan even duren, dus een ogenblik geduld."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr "De Onveilige Browser afsluiten..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
@@ -1954,13 +1953,13 @@ msgstr ""
 "Dit kan enige tijd duren, en u mag de Onveilige Browser niet herstarten "
 "voordat deze juist is afgesloten."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr "Onveilige Browser"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
@@ -1968,15 +1967,15 @@ msgstr ""
 "Een andere Onveilige Browser is momenteel actief of wordt opgeruimd. Probeer "
 "het later opnieuw."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr "Kon geen chroot maken."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr "Kon de browser niet configureren."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
@@ -1986,7 +1985,7 @@ msgstr ""
 "Browser te starten, moet je eerst verbinden met een Wi-Fi, bedraad, of "
 "mobiel netwerk."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr "Kon de browser niet starten."
 
@@ -2163,6 +2162,7 @@ msgid "Tails documentation"
 msgstr "Tails-documentatie"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 #, fuzzy
 msgid "Persistent Storage"
@@ -2194,6 +2194,16 @@ msgstr "Hoe Tails te gebruiken"
 msgid "Learn more about Tails"
 msgstr "Meer info over Tails"
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "Permanente opslag aanmaken"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr "Installeer, kloon, upgrade Tails"
@@ -2265,7 +2275,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr "Beheerderswachtwoord"
 
@@ -2292,7 +2302,7 @@ msgid "Disable"
 msgstr "Uitschakelen"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr "MAC Adres Anonimisering"
 
@@ -2318,7 +2328,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr "MAC-adressen niet anonimiseren"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr "Netwerkconfiguratie"
 
@@ -2399,19 +2409,19 @@ msgstr "Instellingen zijn geladen vanuit de permanente opslag."
 msgid "Welcome to Tails!"
 msgstr "Welkom bij Tails!"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 #, fuzzy
 msgid "_Persistent Storage"
 msgstr "Permanente opslag aanmaken"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 #, fuzzy
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
@@ -2419,42 +2429,45 @@ msgstr ""
 "Voor automatisch installatie vanaf uw permanente opslag bij het starten van "
 "Tails."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr "Taal & regio"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr "Standaardinstellingen"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
-msgstr "Versleutelde _permanente opslag"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
 msgid "Show Passphrase"
 msgstr "Wachtwoordzin tonen"
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
-msgstr "Voer uw wachtwoordzin in om de permanente opslag te ontgrendelen"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "Wachtwoordzin:"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+#, fuzzy
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 "Uw permanente opslag is ontgrendeld. Herstart Tails om de opslag opnieuw te "
 "vergrendelen."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr "Extr_a instellingen"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr "Extra instelling toevoegen"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
@@ -2462,11 +2475,11 @@ msgstr ""
 "De standaardinstellingen zijn veilig in de meeste situaties. Klik op de ‘+’-"
 "knop hieronder om een aangepaste instelling toe te voegen."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 msgid "Shutdown"
 msgstr "Uitschakelen"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr "Tails _starten"
 
@@ -2573,11 +2586,21 @@ msgstr "Permanente opslag aanmaken"
 msgid "System Settings"
 msgstr "Standaardinstellingen"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+#, fuzzy
+msgid "Welcome Screen"
+msgstr "Welkomstscherm"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 #, fuzzy
 msgid "Activate Welcome Screen"
 msgstr "Welkomstscherm"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+#, fuzzy
+msgid "Printers"
+msgstr "Printers"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 #, fuzzy
 msgid "Activate Printers"
@@ -2613,6 +2636,11 @@ msgstr "Tor Browser starten"
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "Browserbladwijzers"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 #, fuzzy
 msgid "Activate Tor Browser Bookmarks"
@@ -2848,11 +2876,11 @@ msgstr "O_ntgrendelen"
 msgid "Detach this volume"
 msgstr "Dit volume ontkoppelen"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr "Doel-USB-stick:"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr "Herinstalleren (alle gegevens verwijderen)"
 
@@ -3425,6 +3453,12 @@ msgstr "december"
 msgid "Clock"
 msgstr "Klok"
 
+#~ msgid "Encrypted _Persistent Storage"
+#~ msgstr "Versleutelde _permanente opslag"
+
+#~ msgid "Enter your passphrase to unlock the persistent storage"
+#~ msgstr "Voer uw wachtwoordzin in om de permanente opslag te ontgrendelen"
+
 #, python-format
 #~ msgid ""
 #~ "<h1>Help us fix your bug!</h1>\n"
diff --git a/po/nl_BE.po b/po/nl_BE.po
index 37e763b08c3..5817e50efe9 100644
--- a/po/nl_BE.po
+++ b/po/nl_BE.po
@@ -9,8 +9,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
-"PO-Revision-Date: 2023-01-27 10:38+0000\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
+"PO-Revision-Date: 2023-03-05 10:37+0000\n"
 "Last-Translator: emma peel <emma.peel@riseup.net>\n"
 "Language-Team: Dutch (Belgium) <https://hosted.weblate.org/projects/tor/"
 "tails-gui/nl_BE/>\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.16-dev\n"
+"X-Generator: Weblate 4.16.2-dev\n"
 
 #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1
@@ -468,9 +468,9 @@ msgid "Additional Settings"
 msgstr ""
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "Annuleer"
@@ -542,12 +542,12 @@ msgstr "Uit"
 msgid "Off (default)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
 #, fuzzy
-msgid "Persistent Storage Not Unlocked"
+msgid "Persistent Storage Still Locked"
 msgstr "%sMb persistente geheugenruimte aanmaken..."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 #, fuzzy
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
@@ -555,17 +555,17 @@ msgstr ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
 #, fuzzy
-msgid "Continue Without Persistent Storage"
+msgid "Start Without Persistent Storage"
 msgstr "%sMb persistente geheugenruimte aanmaken..."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 #, fuzzy
 msgid "Don't _Create Persistent Storage"
 msgstr "%sMb persistente geheugenruimte aanmaken..."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 #, fuzzy
 msgid "_Create Persistent Storage"
@@ -586,7 +586,6 @@ msgstr "Bezig met ontgrendelen…"
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr "Ontgrendelen"
 
@@ -693,7 +692,7 @@ msgstr "Kan apparaat %s niet vinden"
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:657
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:904
 msgid "Unknown filesystem.  Your device may need to be reformatted."
-msgstr "Onbekend bestandssysteel. Uw apparaat dient geformatteerd te worden. "
+msgstr "Onbekend bestandssysteel. Uw apparaat dient geformatteerd te worden."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:660
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:907
@@ -805,7 +804,7 @@ msgstr "Station is een loopback, MBR-reset wordt overgeslagen"
 msgid "Synchronizing data on disk..."
 msgstr "Data op de schijf aan het syncroniseren..."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
@@ -813,64 +812,64 @@ msgstr ""
 "Fout: Kan het label niet zetten of de UUID van uw apparaat niet verkrijgen. "
 "Kan niet verder gaan."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr "Installatie voltooid! (%s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr "Tails installatie is mislukt!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr "Tails Installatieprogramma"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr "Clone de huidige Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr "Gebruik een gedownloade Tails ISO image"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 #, fuzzy
 msgid "Upgrade"
 msgstr "Upgrade"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr "Installeren"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr "Installatie instructies"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(size)s%(vendor)s%(model)s toestel(%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr "Geen ISO image geselecteerd"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr "Selecteer een Tails ISO image"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -878,7 +877,7 @@ msgid ""
 "a different model."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
@@ -887,7 +886,7 @@ msgstr ""
 "Het apparaat \"%(pretty_name)s\" is te klein om Tails op te installeren "
 "(minstens %(size)s GB is vereist)."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -895,66 +894,66 @@ msgid ""
 "%(dl_url)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr ""
 "Er kon geen geschikt apparaat voor een Tails installatie worden gevonden"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr ""
 "Steek alstublieft een USB flash drive of SD kaart van tenminste %0.1fGB in."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr "Er is een fout opgetreden tijdens het installeren van Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr "Installatie voltooid!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr "Kan apparaat niet aankoppelen"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(parent_size)s%(vendor)s%(model)s toestel(%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
 "The persistent storage on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
 "All data on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr "Bevestig de doel USB stick"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
@@ -962,7 +961,7 @@ msgstr ""
 "Het geselecteerde bestand is onleesbaar. Gelieve de permissies te wijzigen "
 "of een ander bestand te selecteren."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
@@ -970,7 +969,7 @@ msgstr ""
 "Kan geselecteerd bestand niet gebruiken. U kunt meer geluk hebben als u uw "
 "ISO verplaatst naar het hoogste niveau van jouw schijf (bijv.: C:\\)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr "%(filename)s geselecteerd"
@@ -1053,7 +1052,7 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1113,143 +1112,143 @@ msgstr "niet beschikbaar"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
 "log to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "Configureer"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "Verwijderen"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr ""
 
@@ -1380,19 +1379,19 @@ msgid ""
 msgstr ""
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr "foutmelding:"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1400,11 +1399,11 @@ msgid ""
 "software."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr ""
 
@@ -1733,32 +1732,32 @@ msgstr ""
 msgid "Choose File Container"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 #, fuzzy
 msgid "_Cancel"
 msgstr "Annuleer"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 #, fuzzy
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
@@ -1767,60 +1766,60 @@ msgstr ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr "De Unsafe Browser opstarten"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr "Dit kan even duren, geduld aub."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr "Onveilige Browser"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
 "network."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr ""
 
@@ -1997,6 +1996,7 @@ msgid "Tails documentation"
 msgstr "Tails documentatie"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 msgid "Persistent Storage"
 msgstr ""
@@ -2023,6 +2023,16 @@ msgstr "Leer hoe Tails te gebruiken"
 msgid "Learn more about Tails"
 msgstr "Leer meer over Tails"
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "%sMb persistente geheugenruimte aanmaken..."
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr ""
@@ -2089,7 +2099,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr ""
 
@@ -2113,7 +2123,7 @@ msgid "Disable"
 msgstr "Uitschakelen"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr ""
 
@@ -2134,7 +2144,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr ""
 
@@ -2195,67 +2205,69 @@ msgstr ""
 msgid "Welcome to Tails!"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 msgid "_Persistent Storage"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 #, fuzzy
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr "Tails is configuring your Persistent Storage. Please wait..."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
 msgid "Show Passphrase"
 msgstr ""
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "Passphrase:"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 msgid "Shutdown"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr ""
 
@@ -2355,10 +2367,19 @@ msgstr ""
 msgid "System Settings"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+msgid "Welcome Screen"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 msgid "Activate Welcome Screen"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+#, fuzzy
+msgid "Printers"
+msgstr "Printers"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 #, fuzzy
 msgid "Activate Printers"
@@ -2394,6 +2415,11 @@ msgstr "Start Tor Browser"
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "Start Tor Browser"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 #, fuzzy
 msgid "Activate Tor Browser Bookmarks"
@@ -2614,11 +2640,11 @@ msgstr ""
 msgid "Detach this volume"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr "Doel USB stick:"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr "Herinstalleren (Verwijder alle data)"
 
diff --git a/po/nn.po b/po/nn.po
index 511965d8b5e..56bf5bfdc7b 100644
--- a/po/nn.po
+++ b/po/nn.po
@@ -10,7 +10,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
 "PO-Revision-Date: 2023-01-25 11:39+0000\n"
 "Last-Translator: emma peel <emma.peel@riseup.net>\n"
 "Language-Team: Norwegian Nynorsk <https://hosted.weblate.org/projects/tor/"
@@ -461,9 +461,9 @@ msgid "Additional Settings"
 msgstr "Tillegsinnstillingar"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "Avbrjot"
@@ -536,27 +536,27 @@ msgstr "Av"
 msgid "Off (default)"
 msgstr "Av (standard)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
 #, fuzzy
-msgid "Persistent Storage Not Unlocked"
+msgid "Persistent Storage Still Locked"
 msgstr "Skapar %sMB vedvarande yverlegg"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
 #, fuzzy
-msgid "Continue Without Persistent Storage"
+msgid "Start Without Persistent Storage"
 msgstr "Skapar %sMB vedvarande yverlegg"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 #, fuzzy
 msgid "Don't _Create Persistent Storage"
 msgstr "Skapar %sMB vedvarande yverlegg"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 #, fuzzy
 msgid "_Create Persistent Storage"
@@ -577,7 +577,6 @@ msgstr "Fjernar blokkering"
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr "Fjern blokkering"
 
@@ -797,7 +796,7 @@ msgstr "Drevet er ei attendekopling, hoppar yver MBR-nullstilling"
 msgid "Synchronizing data on disk..."
 msgstr "Skapar samsvar med upplysingar på skivi..."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
@@ -805,63 +804,63 @@ msgstr ""
 "Feil: Kan ikkje setja etiketten eller fenge UUID'en åt einheita di. Kan "
 "ikkje halda fram."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr "Installasjonen er fullført! (%s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr "Mislykka installering av Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr "Tails-installerar"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr "Klon gjeldande Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr "Bruk eit nedlasta Tails ISO-bilde"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr "Oppgrader"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr "Installer"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr "Installeringsrettleiing"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(size)s %(vendor)s %(model)s eining (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr "ISO bilde ikkje valt"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr "Vel eit Tails ISO-bilde."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -869,7 +868,7 @@ msgid ""
 "a different model."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
@@ -878,7 +877,7 @@ msgstr ""
 "Einheiti \"%(pretty_name)s\" er for lita til å installere Tails på (minst "
 "%(size)s GB er påkravt)."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -886,64 +885,64 @@ msgid ""
 "%(dl_url)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr "Installering fullførd"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr "Kan ikkje montera einheiti"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
 "The persistent storage on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
 "All data on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
@@ -951,7 +950,7 @@ msgstr ""
 "Den valde fili er ulesbar. Ver venleg og fiks løyvi hennar eller vel ei "
 "onnor fil."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
@@ -959,7 +958,7 @@ msgstr ""
 "Kan ikkje nytta den valde fili. Du hev kanskje betre hell um du flyttar "
 "ISO'en din åt roti av drevet ditt (t.d. C:\\)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr "%(filename)s vald(e)"
@@ -1034,7 +1033,7 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1096,143 +1095,143 @@ msgstr "ikkje tilgjengeleg"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
 "log to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr "Vis logg"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "Konfigurer"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} og {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ", "
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr "Installer kvar gong"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr "Installer berre ein gong"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "Fjern"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "Dokumentasjon"
 
@@ -1363,19 +1362,19 @@ msgid ""
 msgstr ""
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr "feil:"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr "Ã…tvaring: dataskapt maskin uppdaga!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr "Ã…tvaring: ikkje-gratis dataskapt maskin uppdaga!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1386,11 +1385,11 @@ msgstr ""
 "du gjerer i Halar. Berre gratis programvara kann verta rekna for påliteleg, "
 "for både vertsoperativsystemet og virtualiseringsprogramvara."
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr "Les meir"
 
@@ -1717,57 +1716,57 @@ msgstr ""
 msgid "Choose File Container"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 msgid "_Cancel"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr "Startar den Utrygge Nettlesaren..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr "Dette kan taka eit bel, so ver venleg og ver tolmodig."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr "Slær av den Utrygge Nettlesaren..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
@@ -1775,13 +1774,13 @@ msgstr ""
 "Dette kan taka eit bel, og du kann ikkje starta um den Utrygge Nettlesaren "
 "fyre han er heilt slegen av."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr "Utrygg nettlesar"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
@@ -1789,22 +1788,22 @@ msgstr ""
 "Ein annan Utrygg Nettlesar køyrer allereie, eller vert rydda burt. Ver "
 "venelg og freist på nytt um eit bel."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr "Kunde ikkje setja upp chroot."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr "Kunde ikkje setja upp nettlesaren."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
 "network."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr "Kunde ikkje køyre nettlesaren."
 
@@ -1964,6 +1963,7 @@ msgid "Tails documentation"
 msgstr "Halar-skriv"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 msgid "Persistent Storage"
 msgstr ""
@@ -1990,6 +1990,16 @@ msgstr "Lær korleis ein nyttar Halar"
 msgid "Learn more about Tails"
 msgstr "Lær meir um Halar"
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "Skapar %sMB vedvarande yverlegg"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr ""
@@ -2056,7 +2066,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr "Adminiistrasjonspassord"
 
@@ -2080,7 +2090,7 @@ msgid "Disable"
 msgstr "Slå av"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr ""
 
@@ -2101,7 +2111,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr "Nettverksoppsett"
 
@@ -2162,67 +2172,69 @@ msgstr ""
 msgid "Welcome to Tails!"
 msgstr "Velkomen til Tails!"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 msgid "_Persistent Storage"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr "Språk og region"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr "Standard-innstillingar"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
 msgid "Show Passphrase"
 msgstr "Vis passord"
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "Passord:"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 #, fuzzy
 msgid "Shutdown"
 msgstr "Shutdown"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr ""
 
@@ -2324,11 +2336,21 @@ msgstr ""
 msgid "System Settings"
 msgstr "Standard-innstillingar"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+#, fuzzy
+msgid "Welcome Screen"
+msgstr "Velkomstskjerm"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 #, fuzzy
 msgid "Activate Welcome Screen"
 msgstr "Velkomstskjerm"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+#, fuzzy
+msgid "Printers"
+msgstr "Skrivarar"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 #, fuzzy
 msgid "Activate Printers"
@@ -2364,6 +2386,11 @@ msgstr "Start Tor-nettlesaren"
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "Nettlesarbokmerke"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 #, fuzzy
 msgid "Activate Tor Browser Bookmarks"
@@ -2585,11 +2612,11 @@ msgstr ""
 msgid "Detach this volume"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr "Installer på nytt (slett alle dataa)"
 
diff --git a/po/oc.po b/po/oc.po
index 22153907910..88bc156b370 100644
--- a/po/oc.po
+++ b/po/oc.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
 "PO-Revision-Date: 2023-01-25 11:39+0000\n"
 "Last-Translator: emma peel <emma.peel@riseup.net>\n"
 "Language-Team: Occitan <https://hosted.weblate.org/projects/tor/tails-gui/oc/"
@@ -438,9 +438,9 @@ msgid "Additional Settings"
 msgstr ""
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #, fuzzy
 msgid "Cancel"
@@ -512,11 +512,11 @@ msgstr "O"
 msgid "Off (default)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
-msgid "Persistent Storage Not Unlocked"
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+msgid "Persistent Storage Still Locked"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 #, fuzzy
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
@@ -524,15 +524,15 @@ msgstr ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
-msgid "Continue Without Persistent Storage"
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
+msgid "Start Without Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 msgid "Don't _Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 msgid "_Create Persistent Storage"
 msgstr ""
@@ -552,7 +552,6 @@ msgstr ""
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr ""
 
@@ -769,69 +768,69 @@ msgstr ""
 msgid "Synchronizing data on disk..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -839,14 +838,14 @@ msgid ""
 "a different model."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
 "%(size)s GB is required)."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -854,76 +853,76 @@ msgid ""
 "%(dl_url)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
 "The persistent storage on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
 "All data on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr ""
@@ -1006,7 +1005,7 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1066,143 +1065,143 @@ msgstr ""
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
 "log to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr ""
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "Suprimir"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr ""
 
@@ -1333,19 +1332,19 @@ msgid ""
 msgstr ""
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1353,11 +1352,11 @@ msgid ""
 "software."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr ""
 
@@ -1686,32 +1685,32 @@ msgstr ""
 msgid "Choose File Container"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 #, fuzzy
 msgid "_Cancel"
 msgstr "Cancel"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 #, fuzzy
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
@@ -1720,60 +1719,60 @@ msgstr ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
 "network."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr ""
 
@@ -1933,6 +1932,7 @@ msgid "Tails documentation"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 msgid "Persistent Storage"
 msgstr ""
@@ -1959,6 +1959,15 @@ msgstr ""
 msgid "Learn more about Tails"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+msgid "Back Up Persistent Storage"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr ""
@@ -2025,7 +2034,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr ""
 
@@ -2049,7 +2058,7 @@ msgid "Disable"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr ""
 
@@ -2070,7 +2079,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr ""
 
@@ -2129,68 +2138,69 @@ msgstr ""
 msgid "Welcome to Tails!"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 msgid "_Persistent Storage"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 #, fuzzy
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr "Tails is configuring your Persistent Storage. Please wait..."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
+msgid "Show Passphrase"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
-msgid "Show Passphrase"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+msgid "_Passphrase"
 msgstr ""
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 #, fuzzy
 msgid "Shutdown"
 msgstr "Shutdown"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr ""
 
@@ -2284,10 +2294,19 @@ msgstr ""
 msgid "System Settings"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+#, fuzzy
+msgid "Welcome Screen"
+msgstr "Verrolhar l’ecran"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 msgid "Activate Welcome Screen"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+msgid "Printers"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 msgid "Activate Printers"
 msgstr ""
@@ -2320,6 +2339,10 @@ msgstr ""
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+msgid "Tor Browser Bookmarks"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 msgid "Activate Tor Browser Bookmarks"
 msgstr ""
@@ -2531,11 +2554,11 @@ msgstr ""
 msgid "Detach this volume"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr ""
 
diff --git a/po/or.po b/po/or.po
index 35b9a41dfeb..be7ea5fcb24 100644
--- a/po/or.po
+++ b/po/or.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
 "PO-Revision-Date: 2023-01-25 11:39+0000\n"
 "Last-Translator: emma peel <emma.peel@riseup.net>\n"
 "Language-Team: Odia <https://hosted.weblate.org/projects/tor/tails-gui/or/>\n"
@@ -437,9 +437,9 @@ msgid "Additional Settings"
 msgstr ""
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #, fuzzy
 msgid "Cancel"
@@ -512,11 +512,11 @@ msgstr ""
 msgid "Off (default)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
-msgid "Persistent Storage Not Unlocked"
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+msgid "Persistent Storage Still Locked"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 #, fuzzy
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
@@ -524,15 +524,15 @@ msgstr ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
-msgid "Continue Without Persistent Storage"
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
+msgid "Start Without Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 msgid "Don't _Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 msgid "_Create Persistent Storage"
 msgstr ""
@@ -552,7 +552,6 @@ msgstr ""
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr ""
 
@@ -769,69 +768,69 @@ msgstr ""
 msgid "Synchronizing data on disk..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -839,14 +838,14 @@ msgid ""
 "a different model."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
 "%(size)s GB is required)."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -854,76 +853,76 @@ msgid ""
 "%(dl_url)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
 "The persistent storage on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
 "All data on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr ""
@@ -1006,7 +1005,7 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1066,143 +1065,143 @@ msgstr ""
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
 "log to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr ""
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr ""
 
@@ -1333,19 +1332,19 @@ msgid ""
 msgstr ""
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1353,11 +1352,11 @@ msgid ""
 "software."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr ""
 
@@ -1686,32 +1685,32 @@ msgstr ""
 msgid "Choose File Container"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 #, fuzzy
 msgid "_Cancel"
 msgstr "Cancel"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 #, fuzzy
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
@@ -1720,60 +1719,60 @@ msgstr ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
 "network."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr ""
 
@@ -1933,6 +1932,7 @@ msgid "Tails documentation"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 msgid "Persistent Storage"
 msgstr ""
@@ -1959,6 +1959,15 @@ msgstr ""
 msgid "Learn more about Tails"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+msgid "Back Up Persistent Storage"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr ""
@@ -2025,7 +2034,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr ""
 
@@ -2049,7 +2058,7 @@ msgid "Disable"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr ""
 
@@ -2070,7 +2079,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr ""
 
@@ -2129,68 +2138,69 @@ msgstr ""
 msgid "Welcome to Tails!"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 msgid "_Persistent Storage"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 #, fuzzy
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr "Tails is configuring your Persistent Storage. Please wait..."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
+msgid "Show Passphrase"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
-msgid "Show Passphrase"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+msgid "_Passphrase"
 msgstr ""
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 #, fuzzy
 msgid "Shutdown"
 msgstr "Shutdown"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr ""
 
@@ -2284,10 +2294,18 @@ msgstr ""
 msgid "System Settings"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+msgid "Welcome Screen"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 msgid "Activate Welcome Screen"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+msgid "Printers"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 msgid "Activate Printers"
 msgstr ""
@@ -2320,6 +2338,10 @@ msgstr ""
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+msgid "Tor Browser Bookmarks"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 msgid "Activate Tor Browser Bookmarks"
 msgstr ""
@@ -2529,11 +2551,11 @@ msgstr ""
 msgid "Detach this volume"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr ""
 
diff --git a/po/pa.po b/po/pa.po
index beacb72582c..385f3a3d701 100644
--- a/po/pa.po
+++ b/po/pa.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
 "PO-Revision-Date: 2023-01-25 11:39+0000\n"
 "Last-Translator: emma peel <emma.peel@riseup.net>\n"
 "Language-Team: Punjabi <https://hosted.weblate.org/projects/tor/tails-gui/pa/"
@@ -439,9 +439,9 @@ msgid "Additional Settings"
 msgstr ""
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "ਰੱਦ ਕਰੋ"
@@ -513,11 +513,11 @@ msgstr ""
 msgid "Off (default)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
-msgid "Persistent Storage Not Unlocked"
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+msgid "Persistent Storage Still Locked"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 #, fuzzy
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
@@ -525,15 +525,15 @@ msgstr ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
-msgid "Continue Without Persistent Storage"
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
+msgid "Start Without Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 msgid "Don't _Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 msgid "_Create Persistent Storage"
 msgstr ""
@@ -553,7 +553,6 @@ msgstr ""
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr "ਅਣ-ਲਾਕ ਕਰੋ"
 
@@ -770,7 +769,7 @@ msgstr ""
 msgid "Synchronizing data on disk..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
@@ -778,63 +777,63 @@ msgstr ""
 "ਗਲਤੀ: ਲੇਬਲ ਸੈੱਟ ਨਹੀਂ ਕਰ ਸਕਿਆ ਜਾਂ ਤੁਹਾਡੇ ਜੰਤਰ ਦਾ UUID ਪ੍ਰਾਪਤ ਨਹੀਂ ਕਰ ਸਕਦਾ।  ਜਾਰੀ ਕਰਨ ਤੋਂ "
 "ਅਸਫਲ।"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr "ਇੰਸਟਾਲੇਸ਼ਨ ਪੂਰੀ ਹੋਈ! (%s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -842,14 +841,14 @@ msgid ""
 "a different model."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
 "%(size)s GB is required)."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -857,76 +856,76 @@ msgid ""
 "%(dl_url)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr "ਇੰਸਟਾਲੇਸ਼ਨ ਪੂਰੀ ਹੋਈ!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr "ਯੰਤਰ ਮਾਊਂਟ ਕਰਨ ਲਈ ਅਸਮਰੱਥ"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
 "The persistent storage on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
 "All data on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr "%(filename)s ਚੁਣੀ"
@@ -1009,7 +1008,7 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1069,143 +1068,143 @@ msgstr ""
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
 "log to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "ਸੰਰਚਨਾ"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "ਦਸਤਾਵੇਜ਼"
 
@@ -1336,19 +1335,19 @@ msgid ""
 msgstr ""
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr "ਗਲਤੀ:"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1356,11 +1355,11 @@ msgid ""
 "software."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr ""
 
@@ -1689,32 +1688,32 @@ msgstr ""
 msgid "Choose File Container"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 #, fuzzy
 msgid "_Cancel"
 msgstr "ਰੱਦ ਕਰੋ"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 #, fuzzy
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
@@ -1723,60 +1722,60 @@ msgstr ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr "...ਅਸੁਰੱਖਿਅਤ ਬਰਾਊਜ਼ਰ ਸ਼ੁਰੂ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr "...ਅਸੁਰੱਖਿਅਤ ਬਰਾਊਜ਼ਰ ਬੰਦ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr "ਅਸੁਰੱਖਿਅਤ ਬਰਾਊਜ਼ਰ"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
 "network."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr ""
 
@@ -1936,6 +1935,7 @@ msgid "Tails documentation"
 msgstr "ਟੇਲਜ਼ ਦਸਤਾਵੇਜ਼"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 msgid "Persistent Storage"
 msgstr ""
@@ -1962,6 +1962,15 @@ msgstr "ਟੇਲਜ਼ ਦੀ ਵਰਤੋਂ ਕਰਨ ਬਾਰੇ ਸਿੱਖ
 msgid "Learn more about Tails"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+msgid "Back Up Persistent Storage"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr ""
@@ -2028,7 +2037,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr ""
 
@@ -2052,7 +2061,7 @@ msgid "Disable"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr ""
 
@@ -2073,7 +2082,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr ""
 
@@ -2134,67 +2143,69 @@ msgstr ""
 msgid "Welcome to Tails!"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 msgid "_Persistent Storage"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 #, fuzzy
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr "Tails is configuring your Persistent Storage. Please wait..."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
 msgid "Show Passphrase"
 msgstr ""
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "ਵਾਕ:"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 msgid "Shutdown"
 msgstr "ਬੰਦ ਕਰੋ"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr ""
 
@@ -2292,10 +2303,18 @@ msgstr ""
 msgid "System Settings"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+msgid "Welcome Screen"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 msgid "Activate Welcome Screen"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+msgid "Printers"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 msgid "Activate Printers"
 msgstr ""
@@ -2329,6 +2348,11 @@ msgstr "ਟੋਰ ਬਰਾਊਜ਼ਰ ਸ਼ੁਰੂ ਕਰੋ"
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "ਟੋਰ ਬਰਾਊਜ਼ਰ ਸ਼ੁਰੂ ਕਰੋ"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 #, fuzzy
 msgid "Activate Tor Browser Bookmarks"
@@ -2545,11 +2569,11 @@ msgstr ""
 msgid "Detach this volume"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr ""
 
diff --git a/po/pl.po b/po/pl.po
index ae9aad60c89..e68579d1791 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -30,8 +30,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
-"PO-Revision-Date: 2023-01-26 22:48+0000\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
+"PO-Revision-Date: 2023-02-22 21:37+0000\n"
 "Last-Translator: Matthaiks <kitynska@gmail.com>\n"
 "Language-Team: Polish <https://hosted.weblate.org/projects/tor/tails-gui/pl/"
 ">\n"
@@ -373,7 +373,7 @@ msgid "Upgrade later"
 msgstr "Aktualizuj później"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:518
-#, fuzzy, perl-brace-format
+#, perl-brace-format
 msgid ""
 "<b>You should do a manual upgrade to the latest version of {name}.</b>\n"
 "\n"
@@ -388,7 +388,8 @@ msgstr ""
 "\n"
 "Aby uzyskać więcej informacji o tej nowej wersji, przejdź do {details_url}\n"
 "\n"
-"Niemożliwe jest automatyczne uaktualnienie tego Tails do tej nowej wersji.\n"
+"Niemożliwe jest automatyczne uaktualnienie tego Tails do tej nowej wersji: "
+"{explanation}.\n"
 "\n"
 "Aby dowiedzieć się, jak przeprowadzić ręczną aktualizację, przejdź do "
 "{manual_upgrade_url}"
@@ -549,9 +550,9 @@ msgid "Additional Settings"
 msgstr "Dodatkowe ustawienia"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "Anuluj"
@@ -622,30 +623,27 @@ msgstr "Wył."
 msgid "Off (default)"
 msgstr "Wyłączony (domyślny)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
-#, fuzzy
-msgid "Persistent Storage Not Unlocked"
-msgstr "Pamięć trwała"
-
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
 #, fuzzy
+msgid "Persistent Storage Still Locked"
+msgstr "Pamięć trwała nie jest odblokowana"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
 msgstr ""
-"Czy na pewno chcesz teraz zrestartować Tails?\\n\\nCała Twoja bieżąca praca "
-"zostanie utracona."
+"Czy naprawdę chcesz uruchomić Tails bez odblokowywania pamięci trwałej?"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
 #, fuzzy
-msgid "Continue Without Persistent Storage"
-msgstr "Utwórz pamięć trwałą"
+msgid "Start Without Persistent Storage"
+msgstr "Kontynuuj bez pamięci trwałej"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
-#, fuzzy
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 msgid "Don't _Create Persistent Storage"
-msgstr "_Utwórz pamięć trwałą"
+msgstr "Nie _twórz pamięci trwałej"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 msgid "_Create Persistent Storage"
 msgstr "_Utwórz pamięć trwałą"
@@ -665,7 +663,6 @@ msgstr "Odblokowanie…"
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr "Odblokuj"
 
@@ -898,7 +895,7 @@ msgstr "Napęd jest urządzeniem loopback, pomijanie przywracania MBR"
 msgid "Synchronizing data on disk..."
 msgstr "Synchronizowanie danych na dysku..."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
@@ -906,63 +903,63 @@ msgstr ""
 "Błąd: Nie można ustawić etykiety lub uzyskać UUID urządzenia. Nie można "
 "kontynuować."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr "Zakończono instalację! (%s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr "Instalacja Tails nie powiodła się!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr "Instalator Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr "Klonuj obecny Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr "Użyj pobrany obraz ISO Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr "Aktualizuj"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr "Instrukcja ręcznej aktualizacji"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr "Instaluj"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr "Instrukcja Instalacji"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(size)s %(vendor)s %(model)s urzędzenie (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr "Nie wybrano obrazu ISO"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr "Proszę wybrać obraz ISO Tails."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -973,7 +970,7 @@ msgstr ""
 "usunięcia przez jej producenta, a Tails nie uruchomi się na niej. Spróbuj "
 "zainstalować na innym modelu."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
@@ -982,7 +979,7 @@ msgstr ""
 "Urządzenie \"%(pretty_name)s\" ma zbyt mało miejsca dla systemu Tails "
 "(wymagane jest przynajmniej %(size)s GB)."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -993,35 +990,35 @@ msgstr ""
 "pobranego obrazu ISO Tails:\n"
 "%(dl_url)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr "Nie znaleziono żadnego urządzenia, na którym można zainstalować Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr ""
 "Proszę podłączyć dysk USB Fash Drive lub kartę SD o pojemności co najmniej "
 "%0.1f GB."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr "Podczas instalacji Tails wystąpił błąd"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr "Zakończono instalację!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr "Nie można zamontować urządzenia"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(parent_size)s %(vendor)s %(model)s urzÄ…dzenie (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
@@ -1031,11 +1028,11 @@ msgstr ""
 "\n"
 "Pamięć trwała zostanie utracona na tej pamięci USB."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr "Usuń pamięć trwałą i zainstaluj ponownie"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
@@ -1045,20 +1042,20 @@ msgstr ""
 "\n"
 "Wszystkie dane na tej pamięci USB zostaną utracone."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr "Usuń wszystkie dane i zainstaluj"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr "%(description)s%(delete_message)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr "Potwierdź docelową pamięć USB"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
@@ -1066,7 +1063,7 @@ msgstr ""
 "Nie można odczytać wybranego pliku. Proszę poprawić prawa dostępu do niego "
 "lub wybrać inny plik."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
@@ -1074,7 +1071,7 @@ msgstr ""
 "Nie można użyć wybranego pliku.  Łatwiej będzie po przeniesieniu pliku ISO "
 "do głównego katalogu napędu (np. C:\\)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr "Wybrano %(filename)s"
@@ -1162,7 +1159,7 @@ msgstr "su jest wyłączony. Zamiast tego użyj sudo."
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1226,7 +1223,7 @@ msgstr "niedostępne"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -1235,7 +1232,7 @@ msgstr ""
 "{details} ProszÄ™ o sprawdzenie swojej listy dodatkowego oprogramowania lub "
 "przeczytaj systemowy log żeby zrozumieć problem."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
@@ -1243,56 +1240,56 @@ msgstr ""
 "ProszÄ™ o sprawdzenie swojej listy dodatkowego oprogramowania lub przeczytaj "
 "systemowy log, żeby zrozumieć problem."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr "Pokaż log"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "Konfiguruj"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} i {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ", "
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "Dodać {packages} do twojego dodatkowego oprogramowania?"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 "Aby zainstalować to automatycznie z twojej pamięci trwałej przy starcie "
 "Tails."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr "Instaluj za każdym razem"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr "Zainstaluj tylko raz"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr "Konfiguracja dodatkowego oprogramowania nie powiodła się."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -1300,68 +1297,68 @@ msgstr ""
 "Aby zainstalować to automatycznie przy starcie Tails, możesz utworzyć trwałą "
 "pamięć i aktywować funkcję <b>Dodatkowe Oprogramowanie</b>."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr "Utwórz pamięć trwałą"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr "Tworzenie twojej pamięci trwałej nie powidło się."
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr "Możesz instalować {packages} automatycznie przy starcie Tails"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr "Aby to zrobić, musisz uruchomić Tails z nośnika USB."
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "Usunąć {packages} z oprogramowania dodatkowego?"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr "Zatrzyma to automatyczne instalowanie {packages}."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "Usuń"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr "Instalowanie twojego dodatkowego oprogramowania z pamięci trwałej..."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr "Może to zająć kilka minut."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr "Instalacja twojego dodatkowego oprogramowania nie powiodła się"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr "Oprogramowanie dodatkowe zainstalowano z powodzeniem"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 "Sprawdzanie aktualizacji twojego dodatkowego oprogramowania nie powiodło się"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -1369,11 +1366,11 @@ msgstr ""
 "Proszę sprawdzić swoje połączenie sieciowe, zrestartowanie Tails lub "
 "przeczytanie logu systemowego aby zrozumieć problem."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr "Aktualizacja twojego dodatkowego oprogramowania nie powiodła się"
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "Dokumentacja"
 
@@ -1534,19 +1531,19 @@ msgstr ""
 "Zobacz {manual_upgrade_url}"
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr "błąd:"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr "Ostrzeżenie: wykryto maszynę wirtualną!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr "Ostrzeżenie: wykryto niewolne oprogramowanie maszyny wirtualnej!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1557,11 +1554,11 @@ msgstr ""
 "software'u są w stanie monitorować Twoją aktywność w systemie Tails. W "
 "odniesieniu do nich, wiarygodne jest wyłącznie oprogramowanie wolne."
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr "Nie pokazuj ponownie"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr "Dowiedz się więcej"
 
@@ -1575,22 +1572,20 @@ msgid "_Use a bridge that you already know"
 msgstr "_Użyj mostka, który już znasz"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:242
-#, fuzzy
 msgid ""
 "To save your bridge, <a href=\"doc/persistent_storage\">unlock your "
 "Persistent Storage</a>."
 msgstr ""
-"Aby zapisać mostek, <a href=\"doc/first_steps/persistence\">odblokuj pamięć "
+"Aby zapisać mostek, <a href=\"doc/persistent_storage\">odblokuj pamięć "
 "trwałą</a>."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:249
-#, fuzzy
 msgid ""
 "To save your bridge, <a href=\"doc/persistent_storage\">create a Persistent "
 "Storage</a> on your Tails USB stick."
 msgstr ""
-"Aby zapisać mostek, <a href=\"doc/first_steps/persistence\">utwórz pamięć "
-"trwałą</a> na pamięci USB Tails."
+"Aby zapisać mostek, <a href=\"doc/persistent_storage\">utwórz pamięć trwałą</"
+"a> na pamięci USB Tails."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:269
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:773
@@ -1655,9 +1650,8 @@ msgid "You can now browse the Internet anonymously and uncensored."
 msgstr "Możesz teraz przeglądać Internet anonimowo i bez cenzury."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:703
-#, fuzzy
 msgid "This local network seems to be blocking access to Tor."
-msgstr "Twoja sieć lokalna blokuje dostęp do sieci Tor."
+msgstr "Ta sieć lokalna wydaje się blokować dostęp do sieci Tor."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:776
 msgid "Bridge address malformed"
@@ -1693,11 +1687,11 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1112
 msgid "Close and Lose Progress"
-msgstr ""
+msgstr "Zamknij i utrać postęp"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1113
 msgid "Wait"
-msgstr ""
+msgstr "Czekaj"
 
 #: config/chroot_local-includes/usr/local/bin/thunderbird:41
 msgid "You need to migrate your OpenPGP keys"
@@ -1919,12 +1913,12 @@ msgstr ""
 msgid "Choose File Container"
 msgstr "Wybierz kontener plików"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 "Niebezpieczna przeglądarka została wyłączona w ekranie powitalnym.\\n\\n"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
@@ -1933,21 +1927,21 @@ msgstr ""
 "upewnić się, że niebezpieczna przeglądarka jest włączona w ustawieniach "
 "dodatkowych ekranu powitalnego."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr "Aby użyć niebezpiecznej przeglądarki, uruchom ponownie Tails."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr "_Uruchom ponownie"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 msgid "_Cancel"
 msgstr "_Anuluj"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
@@ -1955,27 +1949,27 @@ msgstr ""
 "Czy na pewno chcesz teraz zrestartować Tails?\\n\\nCała Twoja bieżąca praca "
 "zostanie utracona."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr "Uruchom ponownie teraz"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr "Nie udało się ponownie uruchomić systemu."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr "Uruchamianie nebezpiecznej przeglÄ…darki..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr "To może chwilę potrwać, prosimy o cierpliwość."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr "Wyłączanie niebezpiecznej przeglądarki..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
@@ -1983,13 +1977,13 @@ msgstr ""
 "To może chwilę potrwać. Nie restartuj niebezpiecznej przeglądarki, dopóki "
 "nie zostanie ona poprawnie wyłączona."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr "Niebezpieczna przeglÄ…darka"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
@@ -1997,15 +1991,15 @@ msgstr ""
 "Niebezpieczna przeglądarka jest już uruchomiona albo aktualnie czyszczona. "
 "Proszę spróbuj ponownie za chwilę."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr "Nie udało się skonfigurować chroot."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr "Nie udało skonfigurować się przeglądarki."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
@@ -2015,7 +2009,7 @@ msgstr ""
 "niebezpieczną przeglądarkę, musisz najpierw połączyć się z siecią Wi-Fi, "
 "przewodowÄ… lub mobilnÄ…."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr "Nie udało uruchomić się przeglądarki."
 
@@ -2194,6 +2188,7 @@ msgid "Tails documentation"
 msgstr "Dokumentacja Tails"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 msgid "Persistent Storage"
 msgstr "Pamięć trwała"
@@ -2223,6 +2218,19 @@ msgstr "Dowiedz się jak używać Tails"
 msgid "Learn more about Tails"
 msgstr "Dowiedz się więcej o Tails"
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "Pamięć trwała"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+#, fuzzy
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+"Włącz funkcje pamięci trwałej dla danych, które chcesz zapisać na pamięci "
+"USB Tails."
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr "Zainstaluj, sklonuj, uaktualnij Tails"
@@ -2293,7 +2301,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr "Hasło administracyjne"
 
@@ -2320,7 +2328,7 @@ msgid "Disable"
 msgstr "Wyłącz"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr "Anonimizacja adresu MAC"
 
@@ -2345,7 +2353,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr "Nie anonimizuj adresów MAC"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr "Konfiguracja sieci"
 
@@ -2428,11 +2436,11 @@ msgstr "Ustawienia zostały załadowane z pamięci trwałej."
 msgid "Welcome to Tails!"
 msgstr "Witaj w Tails!"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 msgid "_Persistent Storage"
 msgstr "_Pamięć trwała"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
@@ -2442,47 +2450,50 @@ msgstr ""
 "na pamięci USB Tails: dokumenty, zakładki przeglądarki, hasła Wi-Fi i tak "
 "dalej."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr "Po uruchomieniu Tails utworzysz i skonfigurujesz swoją pamięć trwałą."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr "Język i lokalizacja"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr "Ustawienia domyślne"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
-msgstr "Zaszyfrowana _pamięć trwała"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
 msgid "Show Passphrase"
 msgstr "Pokaż hasło"
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
-msgstr "Wpisz Twoje hasło do odblokowania przechowania danych"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "Hasło:"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+#, fuzzy
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 "Twoja pamięć trwała jest odblokowana. Zrestartuj Tails, aby zablokować ją "
 "ponownie."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr "_Dodatkowe ustawienia"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr "Dodaj dodatkowe ustawienie"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
@@ -2490,11 +2501,11 @@ msgstr ""
 "Ustawienia domyślne są bezpieczne w większości sytuacji. Aby dodać własne "
 "ustawienie , kliknij \"+\" poniżej."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 msgid "Shutdown"
 msgstr "Wyłączenie"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr "_Uruchom Tails"
 
@@ -2557,7 +2568,6 @@ msgid "Send Error Report"
 msgstr "Wyślij raport o błędzie"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:61
-#, fuzzy
 msgid ""
 "Your Persistent Storage is unlocked.\n"
 "\n"
@@ -2570,8 +2580,8 @@ msgstr ""
 "\n"
 "Jej zawartość będzie dostępna, dopóki nie zamkniesz Tails.\n"
 "\n"
-"<a href=\"doc/first_steps/persistence/backup\">Dowiedz się, jak wykonać "
-"kopię zapasową pamięci trwałej.</a>"
+"<a href=\"doc/persistent_storage/backup\">Dowiedz się, jak wykonać kopię "
+"zapasową pamięci trwałej.</a>"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:89
 msgid ""
@@ -2601,10 +2611,20 @@ msgstr "Aktywuj folder stały"
 msgid "System Settings"
 msgstr "Ustawienia systemowe"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+#, fuzzy
+msgid "Welcome Screen"
+msgstr "Aktywuj ekran powitalny"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 msgid "Activate Welcome Screen"
 msgstr "Aktywuj ekran powitalny"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+#, fuzzy
+msgid "Printers"
+msgstr "Aktywuj drukarki"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 msgid "Activate Printers"
 msgstr "Aktywuj drukarki"
@@ -2638,6 +2658,11 @@ msgstr "Aktywuj mostek Tor"
 msgid "Applications"
 msgstr "Aplikacje"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "Aktywuj zakładki Tor Browser"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 msgid "Activate Tor Browser Bookmarks"
 msgstr "Aktywuj zakładki Tor Browser"
@@ -2647,7 +2672,6 @@ msgid "Electrum Bitcoin Wallet"
 msgstr "Portfel Electrum Bitcoin"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:419
-#, fuzzy
 msgid "Activate Electrum Bitcoin Wallet"
 msgstr "Aktywuj portfel Electrum Bitcoin"
 
@@ -2730,16 +2754,13 @@ msgstr ""
 "persistence/TailsData_unlocked/persistence.conf."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:720
-#, fuzzy
 msgid ""
 "<a href=\"doc/persistent_storage\">Learn more about the Persistent Storage.</"
 "a>"
 msgstr ""
-"<a href=\"doc/first_steps/persistence\">Więcej informacji o pamięci trwałej</"
-"a>"
+"<a href=\"doc/persistent_storage\">Więcej informacji o pamięci trwałej.</a>"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/locked_view.ui.in:52
-#, fuzzy
 msgid ""
 "<b>Your Persistent Storage is locked.</b>\n"
 "\n"
@@ -2752,7 +2773,9 @@ msgstr ""
 "<b>Pamięć trwała jest zablokowana.</b>\n"
 "\n"
 "Aby użyć lub skonfigurować pamięć trwałą, odblokuj ją w ekranie powitalnym "
-"podczas uruchamiania Tails."
+"podczas uruchamiania Tails.\n"
+"\n"
+"Aby usunąć pamięć trwałą, kliknij <b>Usuń</b> po prawej stronie paska tytułu."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:52
 msgid ""
@@ -2783,7 +2806,6 @@ msgid "_Back"
 msgstr "_Wstecz"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:56
-#, fuzzy
 msgid ""
 "Everything you do disappears automatically when you shut down Tails.\n"
 "\n"
@@ -2801,18 +2823,16 @@ msgstr ""
 "Wszystko, co robisz, znika automatycznie po zamknięciu Tails.\n"
 "\n"
 "Możesz jednak zapisać niektóre pliki i konfigurację w zaszyfrowanej pamięci "
-"trwałej na pamięci USB Tails:\n"
+"trwałej na pamięci USB Tails, na przykład:\n"
 "\n"
 "• Twoje dokumenty\n"
 "• Twoje hasła Wi-Fi\n"
 "• Twoje zakładki z przeglądarki\n"
-"• i tak dalej\n"
+"• ...\n"
 "\n"
-"<a href=\"doc/first_steps/persistence\">Więcej informacji o pamięci trwałej</"
-"a>"
+"<a href=\"doc/persistent_storage\">Więcej informacji o pamięci trwałej.</a>"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:92
-#, fuzzy
 msgid ""
 "Sorry, it is impossible to create a Persistent Storage on this device.\n"
 "\n"
@@ -2821,10 +2841,9 @@ msgid ""
 msgstr ""
 "Niestety to urządzenie Tails nie obsługuje tworzenia pamięci trwałej.\n"
 "\n"
-"Aby móc używać Tails z pamięcią trwałą, postępuj zgodnie z dokumentacją, aby "
-"zainstalować Tails na pamięci USB:\n"
-"\n"
-"<a href=\"install\">Zainstaluj Tails</a>"
+"Aby móc używać Tails z pamięcią trwałą, postępuj zgodnie z naszymi "
+"instrukcjami dotyczącymi <a href=\"install\">instalowania Tails na pamięci "
+"USB</a>."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:137
 msgid "Co_ntinue"
@@ -2886,11 +2905,11 @@ msgstr "_Odblokowanie"
 msgid "Detach this volume"
 msgstr "Odłącz ten wolumin"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr "Docelowa pamięć USB:"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr "Przeinstaluj (kasuje wszystkie dane)"
 
@@ -3030,9 +3049,8 @@ msgid "None"
 msgstr "Brak"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:240
-#, fuzzy
 msgid "_Ask for a Tor bridge by email"
-msgstr "_Zapytaj o mostek przez e-mail"
+msgstr "_Zapytaj o mostek Tor przez e-mail"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:259
 msgid ""
@@ -3127,12 +3145,10 @@ msgid "Configure a Local _Proxy"
 msgstr "Skonfiguruj lokalne _proxy"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:951
-#, fuzzy
 msgid "• Tor bridge by email"
-msgstr "• Mostek przez e-mail"
+msgstr "• Mostek Tor przez e-mail"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:971
-#, fuzzy
 msgid ""
 "Tor bridges are secret Tor relays. Use a bridge as your first Tor relay if "
 "connections to Tor are blocked, for example in some countries, by some "
@@ -3141,22 +3157,17 @@ msgstr ""
 "Mostki Tor są sekretnymi przekaźnikami sieci Tor. Użyj mostka jako "
 "pierwszego przekaźnika Tor, jeśli połączenia z siecią Tor są blokowane, na "
 "przykład w niektórych krajach, przez niektóre sieci publiczne lub przez "
-"niektóre kontrole rodzicielskie.\n"
-"\n"
-"Wybierz tę opcję, jeśli już wiesz, że potrzebujesz mostka. W przeciwnym "
-"razie Tails automatycznie wykryje, czy potrzebujesz mostka, aby połączyć się "
-"z sieciÄ… Tor z Twojej sieci lokalnej."
+"niektóre kontrole rodzicielskie."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:991
-#, fuzzy
 msgid ""
 "To get a bridge, send an empty email to <tt>bridges@torproject.org</tt> from "
 "a Gmail or Riseup email address with your phone and scan the QR code that is "
 "attached to the automatic reply."
 msgstr ""
-"Wyślij pustą wiadomość e-mail na adres <tt>bridges@torproject.org</tt> z "
-"adresu e-mail Gmail lub Riseup za pomocÄ… telefonu i zeskanuj kod QR "
-"dołączony do automatycznej odpowiedzi."
+"Aby uzyskać mostek, wyślij pustą wiadomość e-mail na adres "
+"<tt>bridges@torproject.org</tt> z adresu e-mail Gmail lub Riseup za pomocÄ… "
+"telefonu i zeskanuj kod QR dołączony do automatycznej odpowiedzi."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1014
 msgid "Scan QR Code"
@@ -3317,9 +3328,8 @@ msgid "Failed to connect to Tor without bridges."
 msgstr "Nie udało się połączyć z siecią Tor bez mostków."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1870
-#, fuzzy
 msgid "This local network is blocking access to Tor."
-msgstr "Twoja sieć lokalna blokuje dostęp do sieci Tor."
+msgstr "Ta sieć lokalna blokuje dostęp do sieci Tor."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1902
 msgid "Connecting to Tor…"
@@ -3467,6 +3477,12 @@ msgstr "grudzień"
 msgid "Clock"
 msgstr "Zegar"
 
+#~ msgid "Encrypted _Persistent Storage"
+#~ msgstr "Zaszyfrowana _pamięć trwała"
+
+#~ msgid "Enter your passphrase to unlock the persistent storage"
+#~ msgstr "Wpisz Twoje hasło do odblokowania przechowania danych"
+
 #, python-format
 #~ msgid ""
 #~ "<h1>Help us fix your bug!</h1>\n"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 09737e9a4ee..65a59fede18 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -38,9 +38,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
-"PO-Revision-Date: 2023-01-26 19:00+0000\n"
-"Last-Translator: tous <tous@disroot.org>\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
+"PO-Revision-Date: 2023-03-10 04:37+0000\n"
+"Last-Translator: Eduardo Addad de Oliveira <duduaddad@gmail.com>\n"
 "Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/tor/"
 "tails-gui/pt_BR/>\n"
 "Language: pt_BR\n"
@@ -49,7 +49,7 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % "
 "1000000 == 0 ? 1 : 2;\n"
-"X-Generator: Weblate 4.16-dev\n"
+"X-Generator: Weblate 4.16.2-dev\n"
 
 #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1
@@ -551,9 +551,9 @@ msgid "Additional Settings"
 msgstr "Configurações Adicionais"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "Cancelar"
@@ -624,30 +624,29 @@ msgstr "Desativar"
 msgid "Off (default)"
 msgstr "Desativar (padrão)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
-#, fuzzy
-msgid "Persistent Storage Not Unlocked"
-msgstr "Armazenamento persistente"
-
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
 #, fuzzy
+msgid "Persistent Storage Still Locked"
+msgstr "Armazenamento persistente não desbloqueado"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
 msgstr ""
-"Você realmente deseja reiniciar o Tails agora?\\n\\nTodo o seu trabalho "
-"atual será perdido."
+"Você realmente deseja iniciar o Tails sem desbloquear seu armazenamento "
+"persistente?"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
 #, fuzzy
-msgid "Continue Without Persistent Storage"
-msgstr "Crie Armazenamento Persistente"
+msgid "Start Without Persistent Storage"
+msgstr "Continuar sem armazenamento persistente"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 #, fuzzy
 msgid "Don't _Create Persistent Storage"
 msgstr "Crie Armazenamento Persistente"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 #, fuzzy
 msgid "_Create Persistent Storage"
@@ -668,7 +667,6 @@ msgstr "Desbloqueando…"
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr "Desbloquear"
 
@@ -902,7 +900,7 @@ msgstr "O dispositivo é de 'loopback', ignorando a redefinição do MBR"
 msgid "Synchronizing data on disk..."
 msgstr "Sincronizando dados no disco..."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
@@ -910,63 +908,63 @@ msgstr ""
 "Erro: não foi possível definir o rótulo ou obter o UUID do seu dispositivo. "
 "Não é possível continuar."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr "Instalação concluída! (%s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr "A instalação do Tails falhou!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr "Instalador Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr "Clonar a versão do Tails em uso"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr "Utilizar uma imagem ISO do Tails já baixada"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr "Atualizar"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr "Instruções de Atualização Manual"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr "Instalar"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr "Instruções de Instalação"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "Dispositivo %(size)s %(vendor)s %(model)s (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr "Nenhuma imagem ISO selecionada"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr "Por favor, selecione uma imagem ISO do Tails."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -977,7 +975,7 @@ msgstr ""
 "fabricante e o Tais não funcionará nela. Por favor, tente instalar Tails em "
 "um outro modelo de memória USB."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
@@ -986,7 +984,7 @@ msgstr ""
 "O dispositivo \"%(pretty_name)s\" é muito pequeno para instalar Tails (no "
 "mínimo %(size)s GB são necessários)."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -997,35 +995,35 @@ msgstr ""
 "precisa usar uma imagem ISO baixada do Tails:\n"
 "%(dl_url)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr ""
 "Não foi encontrado nenhum dispositivo adequado para a instalação do Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr ""
 "Por favor, conecte um pendrive USB ou um cartão SD de ao menos %0.1f GB."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr "Um erro ocorreu durante a instalação do Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr "Instalação concluída!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr "Não foi possível montar o dispositivo"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "Dispositivo %(parent_size)s %(vendor)s %(model)s (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
@@ -1035,11 +1033,11 @@ msgstr ""
 "\n"
 "O Armazenamento Persistente deste dispositivo USB será perdido."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr "Apagar Armazenamento Persistente e Reinstalar"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
@@ -1049,20 +1047,20 @@ msgstr ""
 "\n"
 "Todos os dados neste pendrive USB serão perdidos."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr "Apagar Todos os Dados e Instalar"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr "%(description)s%(delete_message)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr "Confirmar o dispositivo USB a ser usado"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
@@ -1070,7 +1068,7 @@ msgstr ""
 "O arquivo selecionado não tem permissão de leitura.  Por favor, corrija suas "
 "permissões ou selecione outro arquivo."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
@@ -1079,7 +1077,7 @@ msgstr ""
 "sorte se mover a imagem ISO para a raiz do seu dispositivo (por exemplo, `C:"
 "\\')"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr "%(filename)s selecionado"
@@ -1159,7 +1157,7 @@ msgstr "su está desabilitado. Por favor use sudo ao invés."
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1225,7 +1223,7 @@ msgstr "não disponível"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -1234,7 +1232,7 @@ msgstr ""
 "{details} Por favor verifique sua lista de programas adicionais ou leia o "
 "log do sistema para entender o problema."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
@@ -1242,56 +1240,56 @@ msgstr ""
 "Por favor verifique sua lista de programas adicionais ou leia o log do "
 "sistema para entender o problema."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr "Exibir Log"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "Configurar"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} e {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ", "
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "Adcionar {packages} ao seus programas adicionais?"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 "Para instalar automaticamente a partir de seu Armazenamento Persistente ao "
 "iniciar o Tails."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr "Instalar Sempre"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr "Instalar Apenas Uma Vez"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr "A configuração dos seus programas adicionais falhou."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -1300,69 +1298,69 @@ msgstr ""
 "um Armazenamento Persistente e ativar a funcionalidade <b>Programas "
 "Adicionais</b>."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr "Crie Armazenamento Persistente"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr "A criação do seu Armazenamento Persistente falhou."
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr "Você pode instalar {packages} automaticamente ao iniciar o Tails."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr ""
 "Para fazer isso, você precisa executar o Tails a partir de um pendrive USB."
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "Remover {packages} de seus programas adicionais?"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr "Isso interromperá a instalação automática de {packages}."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "Remover"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 "Instalando seus programas adicionais a partir do armazenamento persistente..."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr "Isto pode levar vários minutos"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr "A instalação dos seus programas adicionais falhou"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr "Programas adicionais instalados com sucesso"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr "A busca por atualizações para seus programas adicionais falhou"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -1370,11 +1368,11 @@ msgstr ""
 "Por favor verifique sua conexão de rede, reinicie o Tails ou leia os logs do "
 "sistema para entender o problema."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr "A atualização dos seus programas adicionais falhou"
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "Documentação"
 
@@ -1537,19 +1535,19 @@ msgstr ""
 "Veja {manual_upgrade_url}"
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr "erro:"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr "Aviso: máquina virtual detectada!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr "Aviso: máquina virtual de software não-livre (proprietário) detectada!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1561,11 +1559,11 @@ msgstr ""
 "ser considerados confiáveis, em relação ao sistema operacional hospedeiro e "
 "ao programa de virtualização."
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr "Não Mostrar Novamente"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr "Saiba Mais"
 
@@ -1698,11 +1696,11 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1112
 msgid "Close and Lose Progress"
-msgstr ""
+msgstr "Fechar e perder o progresso"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1113
 msgid "Wait"
-msgstr ""
+msgstr "Espere"
 
 #: config/chroot_local-includes/usr/local/bin/thunderbird:41
 msgid "You need to migrate your OpenPGP keys"
@@ -1924,11 +1922,11 @@ msgstr ""
 msgid "Choose File Container"
 msgstr "Escolha o Recipiente de Arquivos"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr "O navegador não seguro foi desativado na tela de boas-vindas.\\n\\n"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
@@ -1937,21 +1935,21 @@ msgstr ""
 "navegador não seguro está ativado nas configurações adicionais da tela de "
 "boas-vindas."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr "Para usar o navegador Inseguro, reinicie o Tails."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr "_Reiniciar"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 msgid "_Cancel"
 msgstr "_Cancelar"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
@@ -1959,27 +1957,27 @@ msgstr ""
 "Você realmente deseja reiniciar o Tails agora?\\n\\nTodo o seu trabalho "
 "atual será perdido."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr "Reiniciar Agora"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr "Falha ao reiniciar o sistema."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr "Iniciando o Navegador Inseguro..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr "Isto pode demorar um pouco; por favor, seja paciente."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr "Encerrando o Navegador Inseguro..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
@@ -1987,13 +1985,13 @@ msgstr ""
 "Isso pode demorar um pouco e você não poderá iniciar o Navegador Inseguro "
 "novamente até que ele tenha sido adequadamente  encerrado."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr "Navegador Inseguro"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
@@ -2001,15 +1999,15 @@ msgstr ""
 "Um outro Navegador Inseguro está atualmente em execução ou sendo encerrado. "
 "Por favor, tente novamente daqui a pouco."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr "Falha ao configurar chroot."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr "Falha ao configurar o navegador."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
@@ -2019,7 +2017,7 @@ msgstr ""
 "Navegador Inseguro, primeiro você precisa se conectar a uma rede Wi-Fi, com "
 "fio ou móvel."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr "Falha ao executar o navegador."
 
@@ -2198,6 +2196,7 @@ msgid "Tails documentation"
 msgstr "Documentação do Tails"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 msgid "Persistent Storage"
 msgstr "Armazenamento persistente"
@@ -2227,6 +2226,19 @@ msgstr "Saiba como usar o Tails"
 msgid "Learn more about Tails"
 msgstr "Saiba mais sobre o Tails"
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "Armazenamento persistente"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+#, fuzzy
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+"Ative os recursos do Armazenamento Persistente para os dados que você deseja "
+"salvar no pendrive do Tails."
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr "Instalar, clonar, atualizar o Tails"
@@ -2297,7 +2309,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr "Senha de Administração"
 
@@ -2325,7 +2337,7 @@ msgid "Disable"
 msgstr "Desabilitar"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr "Anonimização de Endereço MAC"
 
@@ -2350,7 +2362,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr "Não anonimizar endereços MAC"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr "Configuração de Rede"
 
@@ -2433,11 +2445,11 @@ msgstr ""
 msgid "Welcome to Tails!"
 msgstr "Boas-vindas ao Tails!"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 msgid "_Persistent Storage"
 msgstr "_Armazenamento persistente"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
@@ -2447,47 +2459,50 @@ msgstr ""
 "persistente criptografado em seu stick USB Tails: seus documentos, favoritos "
 "do navegador, senhas de Wi-Fi e assim por diante."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr "Você criará e configurará seu Persistent Storage após iniciar o Tails."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr "Idioma & Região"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr "Configurações-Padrão"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
-msgstr "Criptografado_ Armazenamento Persistente"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
 msgid "Show Passphrase"
 msgstr "Mostrar Senha"
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
-msgstr "Insira sua senha para desbloquear o armazenamento persistente"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "Senha:"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+#, fuzzy
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 "O seu volume de armazenamento persistente está desbloqueado. Reinicie o "
 "Tails para bloqueá-lo novamente."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr "_Configurações Adicionais"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr "Adicionar uma configuração adicional"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
@@ -2495,11 +2510,11 @@ msgstr ""
 "As configurações padrão são seguras na maioria dos casos. Para outras "
 "configurações personalizadas, clique na tecla \"+\" abaixo."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 msgid "Shutdown"
 msgstr "Encerrar"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr "_Iniciar o Tails"
 
@@ -2608,10 +2623,20 @@ msgstr "Ativar pasta permanente"
 msgid "System Settings"
 msgstr "Configurações do sistema"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+#, fuzzy
+msgid "Welcome Screen"
+msgstr "Ativar tela de boas-vindas"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 msgid "Activate Welcome Screen"
 msgstr "Ativar tela de boas-vindas"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+#, fuzzy
+msgid "Printers"
+msgstr "Ativar impressoras"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 msgid "Activate Printers"
 msgstr "Ativar impressoras"
@@ -2644,6 +2669,11 @@ msgstr "Ativar Ponte Tor"
 msgid "Applications"
 msgstr "Aplicações"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "Ativar Favoritos do Navegador Tor"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 msgid "Activate Tor Browser Bookmarks"
 msgstr "Ativar Favoritos do Navegador Tor"
@@ -2897,11 +2927,11 @@ msgstr "_Desbloquear"
 msgid "Detach this volume"
 msgstr "Desmontar este volume"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr "Pendrive USB a ser utilizado:"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr "Reinstalar (apagar todos os dados)"
 
@@ -3476,6 +3506,12 @@ msgstr "Dezembro"
 msgid "Clock"
 msgstr "Relógio"
 
+#~ msgid "Encrypted _Persistent Storage"
+#~ msgstr "Criptografado_ Armazenamento Persistente"
+
+#~ msgid "Enter your passphrase to unlock the persistent storage"
+#~ msgstr "Insira sua senha para desbloquear o armazenamento persistente"
+
 #, python-format
 #~ msgid ""
 #~ "<h1>Help us fix your bug!</h1>\n"
diff --git a/po/pt_PT.po b/po/pt_PT.po
index 0f6c15b4626..7dd8f158c8e 100644
--- a/po/pt_PT.po
+++ b/po/pt_PT.po
@@ -15,7 +15,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
 "PO-Revision-Date: 2023-01-26 19:00+0000\n"
 "Last-Translator: emma peel <emma.peel@riseup.net>\n"
 "Language-Team: Portuguese (Portugal) <https://hosted.weblate.org/projects/"
@@ -520,9 +520,9 @@ msgid "Additional Settings"
 msgstr "Definições Adicionais"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "Cancelar"
@@ -595,28 +595,28 @@ msgstr "Desativado"
 msgid "Off (default)"
 msgstr "Desativado (predefinição)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
 #, fuzzy
-msgid "Persistent Storage Not Unlocked"
+msgid "Persistent Storage Still Locked"
 msgstr "Criar armazenamento permanente"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 #, fuzzy
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
 msgstr "Insira a sua frase-senha para desbloquear o armazenamento permanente"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
 #, fuzzy
-msgid "Continue Without Persistent Storage"
+msgid "Start Without Persistent Storage"
 msgstr "Criar armazenamento permanente"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 #, fuzzy
 msgid "Don't _Create Persistent Storage"
 msgstr "Criar armazenamento permanente"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 #, fuzzy
 msgid "_Create Persistent Storage"
@@ -639,7 +639,6 @@ msgstr "A desbloquear…"
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr "Desbloquear"
 
@@ -869,7 +868,7 @@ msgstr "A unidade é um 'loopback', a ignorar o reinício do MBR"
 msgid "Synchronizing data on disk..."
 msgstr "A sincronizar os dados no disco..."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
@@ -877,63 +876,63 @@ msgstr ""
 "Erro: não é possível definir o nome ou obter o UUID do seu dispositivo. Não "
 "é possível continuar."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr "Instalação completa! (%s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr "A instalação do Tails falhou!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr "Tails - Instalador"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr "Clonar o Tails atual"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr "Utilizar a imagem Tails ISO descarregada"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr "Atualizar"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr "Manual de Instruções de Atualização"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr "Instalar"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr "Instruções de Instalação"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(size)s %(vendor)s %(model)s dispositivo (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr "Nenhuma imagem ISO selecionada"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr "Por favor, selecione uma imagem ISO Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -944,7 +943,7 @@ msgstr ""
 "fabricante e o Tails não poderá ser iniciado. Por favor, tente instalar num "
 "modelo diferente."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
@@ -953,7 +952,7 @@ msgstr ""
 "O dispositivo \"%(pretty_name)s\" é muito pequeno para instalar o Tails (é "
 "necessário pelo menos %(size)s GB)."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -964,65 +963,65 @@ msgstr ""
 "seguinte imagem ISO do Tails:\n"
 "%(dl_url)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr ""
 "Não foi encontrado nenhum dispositivo adequado para a instalação do Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr "Por favor, insira uma pen USB ou cartão SD com pelo menos %0.1f GB."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr "Surgiu um erro durante a instalação do Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr "Instalação completa!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr "Não é possível montar o dispositivo"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(parent_size)s %(vendor)s %(model)s dispositivo (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
 "The persistent storage on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
 "All data on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr "Confirme o dispositivo USB alvo"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
@@ -1030,7 +1029,7 @@ msgstr ""
 "O ficheiro selecionado não é legível. Por favor, corrija as permissões ou "
 "selecione outro ficheiro."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
@@ -1038,7 +1037,7 @@ msgstr ""
 "Não é possível utilizar o ficheiro selecionado. É capaz de ter mais sorte se "
 "mover o seu ficheiro ISO para a raiz da sua unidade (ex.: C:\\)."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr "%(filename)s selecionado"
@@ -1118,7 +1117,7 @@ msgstr "O su está desativado. Em vez disso utilize o sudo."
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1184,7 +1183,7 @@ msgstr "não disponível"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -1193,7 +1192,7 @@ msgstr ""
 "{details} Por favor verifique a sua lista de programas adicionais ou leia o "
 "registo do sistema para entender o problema."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
@@ -1201,56 +1200,56 @@ msgstr ""
 "Por favor verifique sua lista de programas adicionais ou leia o registo do "
 "sistema para entender o problema."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr "Mostrar Registo"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "Configurar"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} e {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ", "
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "Adicionar {packages} aos seus programas adicionais?"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 "Para instalá-lo automaticamente a partir de seu armazenamento permanente ao "
 "iniciar o Tails."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr "Instalar Sempre"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr "Instalar Uma Vez"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr "A configuração do seu software adicional falhou."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -1258,68 +1257,68 @@ msgstr ""
 "Para instalá-lo automaticamente ao iniciar o Tails, pode criar um "
 "armazenamento permanente e ativar o recurso <b>Programa Adicional</b>."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr "Criar armazenamento permanente"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr "A criação do seu armazenamento permanente falhou."
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr "Pode instalar {packages} automaticamente ao iniciar o Tails."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr "Para fazer isso, precisa de excutar o Tails numa \"pen\" USB."
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "Remover {packages} dos seus programas adicionais?"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr "Isto interromperá a instalação automática de {packages}."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "Remover"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 "A instalar o seu programa adicional a partir do armazenamento permanente..."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr "Isto pode demorar vários minutos."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr "A instalação do seu programa adicional falhou"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr "Programa adicional instalado com sucesso"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr "A verificação de atualizações do seu programa adicional falhou"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -1327,11 +1326,11 @@ msgstr ""
 "Por favor verifique a sua ligação de rede, reinicie o Tails ou leia os "
 "registos do sistema para entender o problema."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr "Falha na atualização do seu software adicional."
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "Documentação"
 
@@ -1486,19 +1485,19 @@ msgstr ""
 "Consulte {manual_upgrade_url}"
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr "erro:"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr "Aviso: detetada máquina virtual!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr "Aviso: detetada máquina virtual não livre!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1509,11 +1508,11 @@ msgstr ""
 "monitorizar o que está a fazer no Tails. Apenas o software livre pode ser "
 "considerado como de confiança, para ambos."
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr "Não voltar a mostrar."
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr "Saber Mais"
 
@@ -1855,58 +1854,58 @@ msgstr ""
 msgid "Choose File Container"
 msgstr "Escolher Volume de Ficheiros"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 #, fuzzy
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr "Desativar o Navegador Não Seguro (por padrão)"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 msgid "_Cancel"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr "Reiniciar agora"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr "A iniciar o Navegador Inseguro..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr "Isto poderá demorar algum tempo, por favor, seja paciente."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr "A encerrar o Navegador Inseguro..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
@@ -1914,13 +1913,13 @@ msgstr ""
 "Isto pode demorar algum tempo e não deve reiniciar o Navegador Inseguro até "
 "que este tenha sido propriamente encerrado."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr "Navegador Inseguro"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
@@ -1928,22 +1927,22 @@ msgstr ""
 "Já está em execução outro Navegador Inseguro, ou a ser encerrado. Por favor, "
 "tente novamente daqui a pouco."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr "Não foi possível configurar o chroot."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr "Não foi possível configurar o navegador."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
 "network."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr "Não foi possível executar o navegador."
 
@@ -2127,6 +2126,7 @@ msgid "Tails documentation"
 msgstr "Documentação do Tails"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 #, fuzzy
 msgid "Persistent Storage"
@@ -2158,6 +2158,16 @@ msgstr "Saiba como utilizar o Tails"
 msgid "Learn more about Tails"
 msgstr "Saber mais sobre Tails"
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "Criar armazenamento permanente"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr "Instalar, clonar, atualizar o Tails"
@@ -2228,7 +2238,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr "Palavra-passe de Administração"
 
@@ -2255,7 +2265,7 @@ msgid "Disable"
 msgstr "Desativar"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr ""
 
@@ -2276,7 +2286,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr "Configuração de Rede"
 
@@ -2337,19 +2347,19 @@ msgstr "Definições foram carregadas do armazenamento permanente."
 msgid "Welcome to Tails!"
 msgstr "Bem-vindo ao Tails!"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 #, fuzzy
 msgid "_Persistent Storage"
 msgstr "Criar armazenamento permanente"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 #, fuzzy
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
@@ -2357,42 +2367,45 @@ msgstr ""
 "Para instalá-lo automaticamente a partir de seu armazenamento permanente ao "
 "iniciar o Tails."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr "Idioma e Região"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr "Definições Predefinidas"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
-msgstr "Armazenamento _Permanente Encriptado"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
 msgid "Show Passphrase"
 msgstr "Mostrar Frase-Senha"
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
-msgstr "Insira a sua frase-senha para desbloquear o armazenamento permanente"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "Frase senha:"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+#, fuzzy
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 "O seu armazenamento permanente encontra-se desbloqueado. Reinicie o Tails "
 "para bloqueá-lo novamente."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr "Definições _Adicionais"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr "Adicionar uma definição adicional"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
@@ -2400,11 +2413,11 @@ msgstr ""
 "As definições predefinidas são seguras na maioria das situações. Para "
 "adicionar uma definição personalizada, clique no botão abaixo \"+\"."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 msgid "Shutdown"
 msgstr "Encerrar"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr "_Iniciar o Tails"
 
@@ -2511,11 +2524,21 @@ msgstr "Criar armazenamento permanente"
 msgid "System Settings"
 msgstr "Definições Predefinidas"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+#, fuzzy
+msgid "Welcome Screen"
+msgstr "Ecrã de Boas-Vindas"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 #, fuzzy
 msgid "Activate Welcome Screen"
 msgstr "Ecrã de Boas-Vindas"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+#, fuzzy
+msgid "Printers"
+msgstr "Impressoras"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 #, fuzzy
 msgid "Activate Printers"
@@ -2551,6 +2574,11 @@ msgstr "Iniciar o Tor Browser"
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "Marcadores do Navegador"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 #, fuzzy
 msgid "Activate Tor Browser Bookmarks"
@@ -2783,11 +2811,11 @@ msgstr "_Desbloquear"
 msgid "Detach this volume"
 msgstr "Desanexar este volume"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr "Dispositivo USB de destino:"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr "Reinstalar (eliminar todos os dados)"
 
@@ -3305,6 +3333,13 @@ msgstr "Dezembro"
 msgid "Clock"
 msgstr "Relógio"
 
+#~ msgid "Encrypted _Persistent Storage"
+#~ msgstr "Armazenamento _Permanente Encriptado"
+
+#~ msgid "Enter your passphrase to unlock the persistent storage"
+#~ msgstr ""
+#~ "Insira a sua frase-senha para desbloquear o armazenamento permanente"
+
 #, python-format
 #~ msgid ""
 #~ "<h1>Help us fix your bug!</h1>\n"
diff --git a/po/ru.po b/po/ru.po
index 5f807f4b9a0..37f057c2418 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -46,19 +46,20 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-01-23 09:28+0100\n"
-"PO-Revision-Date: 2022-12-27 14:50+0000\n"
-"Last-Translator: WofWca <wofwca@protonmail.com>\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
+"PO-Revision-Date: 2023-02-24 14:35+0000\n"
+"Last-Translator: \"Bucket B. Bucketman\" <healtheries_deceptions@simplelogin."
+"com>\n"
 "Language-Team: Russian <https://hosted.weblate.org/projects/tor/tails-gui/ru/"
 ">\n"
 "Language: ru\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
-"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n"
-"%100>=11 && n%100<=14)? 2 : 3);\n"
-"X-Generator: Weblate 4.15.1-dev\n"
+"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
+"n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || "
+"(n%100>=11 && n%100<=14)? 2 : 3);\n"
+"X-Generator: Weblate 4.16-dev\n"
 
 #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1
@@ -72,7 +73,7 @@ msgid ""
 "storage when starting Tails."
 msgstr ""
 "Вы можете установить дополнительное программное обеспечение автоматически из "
-"своего постоянного хранилища при запуске Tails."
+"вашего Постоянного хранилища при запуске Tails."
 
 #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:77
 msgid ""
@@ -80,22 +81,22 @@ msgid ""
 "storage when starting Tails."
 msgstr ""
 "Следующее программное обеспечение автоматически устанавливается из вашего "
-"постоянного хранилища при запуске Tails."
+"Постоянного хранилища при запуске Tails."
 
 #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
 msgid ""
-"To add more, install some software using <a href=\"synaptic.desktop"
-"\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop"
-"\">APT on the command line</a>."
+"To add more, install some software using <a href=\"synaptic."
+"desktop\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal."
+"desktop\">APT on the command line</a>."
 msgstr ""
-"Чтобы добавить больше, установите программное обеспечение с помощью <a href="
-"\"synaptic.desktop\">диспетчера пакетов Synaptic</a> или <a href=\"org.gnome."
-"Terminal.desktop\">APT в командной строке</a>."
+"Чтобы добавить больше, установите программное обеспечение с помощью <a "
+"href=\"synaptic.desktop\">менеджера пакетов Synaptic</a> или <a href=\"org."
+"gnome.Terminal.desktop\">APT в командной строке</a>."
 
 #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
 msgid "_Create persistent storage"
-msgstr "Создать постоянное хранилище"
+msgstr "_Создать Постоянное хранилище"
 
 #: config/chroot_local-includes/usr/local/bin/electrum:72
 msgid "Persistence is disabled for Electrum"
@@ -136,10 +137,10 @@ msgstr "Неизвестное время"
 #, perl-brace-format
 msgid "1y"
 msgid_plural "{count}y"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+msgstr[0] "{count} год"
+msgstr[1] "{count} года"
+msgstr[2] "{count} лет"
+msgstr[3] "{count} лет"
 
 #. Translators: Don't translate {count}, it's a place holder and
 #. will be replaced.
@@ -148,10 +149,10 @@ msgstr[3] ""
 #, perl-brace-format
 msgid "1d"
 msgid_plural "{count}d"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+msgstr[0] "{count} день"
+msgstr[1] "{count} дня"
+msgstr[2] "{count} дней"
+msgstr[3] "{count} дней"
 
 #. Translators: Don't translate {count}, it's a place holder and
 #. will be replaced.
@@ -160,10 +161,10 @@ msgstr[3] ""
 #, perl-brace-format
 msgid "1h"
 msgid_plural "{count}h"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+msgstr[0] "{count} час"
+msgstr[1] "{count} часа"
+msgstr[2] "{count} часов"
+msgstr[3] "{count} часов"
 
 #. Translators: Don't translate {count}, it's a place holder and
 #. will be replaced.
@@ -172,10 +173,10 @@ msgstr[3] ""
 #, perl-brace-format
 msgid "1m"
 msgid_plural "{count}m"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+msgstr[0] "{count} минута"
+msgstr[1] "{count} минуты"
+msgstr[2] "{count} минут"
+msgstr[3] "{count} минут"
 
 #. Translators: Don't translate {count}, it's a place holder and
 #. will be replaced.
@@ -184,10 +185,10 @@ msgstr[3] ""
 #, perl-brace-format
 msgid "1s"
 msgid_plural "{count}s"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+msgstr[0] "{count} секунда"
+msgstr[1] "{count} секунды"
+msgstr[2] "{count} секунд"
+msgstr[3] "{count} секунд"
 
 #. Translators: don't translate {time}, {downloaded}, {size}
 #. and {speed}, they are placeholders and will be replaced.
@@ -228,16 +229,16 @@ msgstr ""
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:289
 msgid ""
 "<b>An error occured while updating the signing key.</b>\\n\\n<b>This "
-"prevents determining whether an upgrade is available from our website.</b>\\n"
-"\\nCheck your network connection, and restart Tails to try upgrading again."
-"\\n\\nIf the problem persists, go to file:///usr/share/doc/tails/website/doc/"
-"upgrade/error/check.en.html"
+"prevents determining whether an upgrade is available from our website.</"
+"b>\\n\\nCheck your network connection, and restart Tails to try upgrading "
+"again.\\n\\nIf the problem persists, go to file:///usr/share/doc/tails/"
+"website/doc/upgrade/error/check.en.html"
 msgstr ""
-"<b>Ошибка обновления ключа подписи.</b>\\n\\n\n"
-"<b>Это не позволяет определить, доступно ли обновление на нашем сайте.</b>\\n"
-"\\nПроверьте ваше интернет-соединение и перезапустите Tails, чтобы "
-"попробовать снова.\\n\\nЕсли проблема сохраняется, смотрите:///usr/share/doc/"
-"tails/website/doc/upgrade/error/check.en.html"
+"<b>Ошибка обновления ключа подписи.</b>\\n\\n<b>Это не позволяет определить, "
+"доступно ли обновление на нашем сайте.</b>\\n\\nПроверьте ваше интернет-"
+"соединение и перезапустите Tails, чтобы попробовать снова.\\n\\nЕсли "
+"проблема сохраняется, смотрите:///usr/share/doc/tails/website/doc/upgrade/"
+"error/check.en.html"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:303
 msgid "Error while downloading the signing key"
@@ -340,8 +341,8 @@ msgid ""
 "An incremental upgrade is available, but no full upgrade is.\n"
 "This should not happen. Please report a bug."
 msgstr ""
-"Доступно только дополнительное, а не полное обновление. Этого не должно было "
-"произойти. Сообщите об ошибке."
+"Доступно только дополнительное, а не полное обновление.\n"
+"Этого не должно было произойти. Сообщите об ошибке."
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:496
 #, perl-brace-format
@@ -359,6 +360,7 @@ msgid ""
 "Do you want to upgrade now?"
 msgstr ""
 "<b>Вам нужно установить обновление {name} {version}</b>\n"
+"\n"
 "Чтобы получить больше информации о новой версии, перейдите на страницу "
 "{details_url}\n"
 "\n"
@@ -383,7 +385,7 @@ msgid "Upgrade later"
 msgstr "Обновить позднее"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:518
-#, fuzzy, perl-brace-format
+#, perl-brace-format
 msgid ""
 "<b>You should do a manual upgrade to the latest version of {name}.</b>\n"
 "\n"
@@ -399,7 +401,7 @@ msgstr ""
 "\n"
 "Информация о новой версии: {details_url}\n"
 "\n"
-"Автоматическое обновление Tails до новой версии невозможно.\n"
+"Автоматическое обновление Tails до новой версии невозможно: {explanation}.\n"
 "\n"
 "Как обновить Tails вручную: {manual_upgrade_url}"
 
@@ -462,7 +464,7 @@ msgstr ""
 "\n"
 "Сетевое соединение будет отключено во время установки обновления.\n"
 "\n"
-"Пожалуйста, сохраните свою работу и закройте все другие приложения"
+"Пожалуйста, сохраните свою работу и закройте все другие приложения."
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:757
 msgid "Upgrade successfully downloaded"
@@ -522,7 +524,7 @@ msgstr "Ошибка отмены загрузки обновления"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:808
 msgid "Failed to cancel the upgrade download"
-msgstr "Не удалось отменить загрузку обновления "
+msgstr "Не удалось отменить загрузку обновления"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:814
 msgid "Upgrading the system"
@@ -559,8 +561,9 @@ msgid "Additional Settings"
 msgstr "Дополнительные настройки"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "Отмена"
@@ -597,7 +600,7 @@ msgstr "Отключить все сетевые подключения"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:315
 msgid "_Network Connection"
-msgstr "_Интернет-соединение "
+msgstr "_Интернет-соединение"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:323
 msgid "Obsolete"
@@ -608,14 +611,12 @@ msgid "_Unsafe Browser"
 msgstr "_Небезопасный браузер"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:347
-#, fuzzy
 msgid "Enabled (default)"
-msgstr "Отключено (по умолчанию)"
+msgstr "Включено (по умолчанию)"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:349
-#, fuzzy
 msgid "Disabled"
-msgstr "Отключить"
+msgstr "Выключено"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:400
 msgid "On (default)"
@@ -633,35 +634,47 @@ msgstr "Выключить"
 msgid "Off (default)"
 msgstr "Выключить (по умолчанию)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:401
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#, fuzzy
+msgid "Persistent Storage Still Locked"
+msgstr "Постоянное хранилище не разблокировано"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
+msgid ""
+"Do you really want to start Tails without unlocking your Persistent Storage?"
+msgstr ""
+"Вы действительно хотите запустить Tails без разблокировки Постоянного "
+"хранилища?"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
 #, fuzzy
+msgid "Start Without Persistent Storage"
+msgstr "Продолжить без Постоянного хранилища"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 msgid "Don't _Create Persistent Storage"
-msgstr "Создание постоянного хранилища"
+msgstr "_Не создавать Постоянное хранилище"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:403
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
-#, fuzzy
 msgid "_Create Persistent Storage"
-msgstr "Создание постоянного хранилища"
+msgstr "_Создать Постоянное хранилище"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:81
-#, fuzzy
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:83
 msgid "Error unlocking Persistent Storage: {}"
-msgstr "Зашифрованное _Постоянное хранилище"
+msgstr "Ошибка при разблокировании Постоянного хранилища: {}"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:100
-#, fuzzy
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:102
 msgid "Error activating Persistent Storage: {}"
-msgstr "Создание постоянного хранилища"
+msgstr "Ошибка при активации Постоянного хранилища: {}"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:68
 msgid "Unlocking…"
-msgstr "Разблокировка..."
+msgstr "Разблокировка…"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr "Разблокировать"
 
@@ -675,12 +688,16 @@ msgid ""
 "Failed to unlock the Persistent Storage. Please start Tails and send an "
 "error report."
 msgstr ""
+"Не удалось разблокировать Постоянное хранилище. Пожалуйста, запустите Tails "
+"и отправьте отчёт об ошибке."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:122
 msgid ""
 "Failed to activate the Persistent Storage. Please start Tails and send an "
 "error report."
 msgstr ""
+"Не удалось активировать Постоянное хранилище. Пожалуйста, запустите Tails и "
+"отправьте отчёт об ошибке."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/region_settings.py:164
 msgid "_Language"
@@ -724,7 +741,7 @@ msgid ""
 "A more detailed error log has been written to \"%(filename)s\"."
 msgstr ""
 "Возникла проблема с выполнением следующей команды: `%(command)s`.\n"
-"Более подробный журнал ошибок был сохранен в  '%(filename)s'."
+"Более подробный журнал ошибок был сохранен в \"%(filename)s\"."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:462
 #, python-format
@@ -799,7 +816,7 @@ msgstr "Нет точек монтирования"
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:699
 #, python-format
 msgid "Entering unmount_device for \"%(device)s\""
-msgstr "Открытие непримонтированного_устройства для  \"%(device)s\""
+msgstr "Открытие непримонтированного_устройства для \"%(device)s\""
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:708
 #, python-format
@@ -887,7 +904,7 @@ msgstr "Устройство, пропускает сброс главной з
 msgid "Synchronizing data on disk..."
 msgstr "Сихронизирую данные на диске..."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
@@ -895,63 +912,63 @@ msgstr ""
 "Ошибка: Не удалось установить метку или получить UUID вашего устройства.  "
 "Невозможно продолжить."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr "Установка завершена! (%s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr "Ошибка установки Tails!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr "Установщик Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr "Клонировать текущий Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
-msgstr "Используйте загруженный ISO-образ Tails"
+msgstr "Использовать загруженный ISO-образ Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr "Обновление"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr "Инструкции по обновлению вручную"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr "Установка"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr "Инструкции по установке"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(size)s%(vendor)s%(model)s устройство (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr "Ни один ISO-образ не выбран"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
-msgstr "Пожалуйста выберите ISO образ Tails"
+msgstr "Пожалуйста, выберите ISO-образ Tails."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -962,7 +979,7 @@ msgstr ""
 "несъемный, и Tails не сможет запуститься на нем. Пожалуйста, попробуйте "
 "установить на другую модель."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
@@ -971,7 +988,7 @@ msgstr ""
 "Устройство \"%(pretty_name)s\" слишком мало для установки Tails (нужно "
 "минимум %(size)s ГБ)."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -982,34 +999,34 @@ msgstr ""
 "скачать Tails ISO образ:\n"
 "%(dl_url)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr "Не обнаружено устройств для установки Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr ""
 "Пожалуйста, подключите USB-накопитель или SD-карту объемом не менее %0.1f ГБ."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr "При установке Tails произошла ошибка"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr "Установка завершена!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr "Невозможно смонтировать устройство"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(parent_size)s%(vendor)s%(model)s устройство (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
@@ -1019,11 +1036,11 @@ msgstr ""
 "\n"
 "Постоянное хранилище на этом USB-накопителе будет утрачено."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr "Удалить постоянное хранилище и переустановить"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
@@ -1033,26 +1050,26 @@ msgstr ""
 "\n"
 "Все данные на этом USB-накопителе будут утрачены."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr "Удалить все данные и установить"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr "%(description)s%(delete_message)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr "Подтвердите выбранное USB-устройство"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
 msgstr "Выбранный файл нечитабелен. Исправьте файл или выберите другой."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
@@ -1060,7 +1077,7 @@ msgstr ""
 "Невозможно использовать указанный файл. Попробуйте переместить ISO в корень "
 "диска (например, C:\\)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr "Выбрано %(filename)s"
@@ -1148,7 +1165,7 @@ msgstr "Использование su отключено. Используйте
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1213,7 +1230,7 @@ msgstr "не найдено"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -1222,7 +1239,7 @@ msgstr ""
 "{details} Пожалуйста, просмотрите список дополнительных программ или "
 "прочитайте системный журнал, чтобы понять проблему."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
@@ -1230,58 +1247,58 @@ msgstr ""
 "Пожалуйста, просмотрите список дополнительных программ или прочитайте "
 "системный журнал, чтобы понять проблему."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr "Показать журнал"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "Настроить"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} и {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ", "
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "Добавить {packages} в ваше дополнительное программное обеспечение?"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 "Чтобы автоматически установить его из постоянного хранилища при запуске "
 "Tails."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr "Устанавливать каждый раз"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr "Установить один раз"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr ""
 "Не удалось выполнить конфигурацию вашего дополнительного программного "
 "обеспечения."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -1290,70 +1307,70 @@ msgstr ""
 "постоянное хранилище и активировать <b>функцию дополнительного программного "
 "обеспечения</b>."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr "Создание постоянного хранилища"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr "Не удалось создать постоянное хранилище."
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr "Вы можете установить {packages} автоматически при запуске Tails"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr "Для этого вам нужно запустить Tails с USB-накопителя."
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "Удалить {packages} из вашего дополнительного программного обеспечения?"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr "Это автоматически прекратит установку {packages}."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "Убрать"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 "Установка дополнительного программного обеспечения из постоянного "
 "хранилища..."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr "Это может занять несколько минут."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr "Не удалось установить дополнительное программное обеспечение"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr "Дополнительное программное обеспечение установлено успешно"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 "Ошибка проверки обновлений вашего дополнительного программного обеспечения"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -1361,11 +1378,11 @@ msgstr ""
 "Пожалуйста, проверьте сетевое подключение, перезапустите Tails или "
 "прочитайте системный журнал, чтобы понять проблему."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr "Не удалось обновить дополнительное программное обеспечение"
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "Документация"
 
@@ -1402,8 +1419,8 @@ msgid ""
 "Package Manager</a> or <a href=\"org.gnome.Terminal.desktop\">APT on the "
 "command line</a>."
 msgstr ""
-"Для этого, установите программное обеспечение при помощи <a href=\"synaptic."
-"desktop\">Synaptic Package Manager</a> или <a href=\"org.gnome.Terminal."
+"Для этого установите программное обеспечение при помощи <a href=\"synaptic."
+"desktop\">менеджера пакетов Synaptic</a> или <a href=\"org.gnome.Terminal."
 "desktop\">APT в командной строке</a>."
 
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:196
@@ -1413,9 +1430,9 @@ msgid ""
 "a> or <a href=\"org.gnome.Terminal.desktop\">APT on the command line</a>."
 msgstr ""
 "Для этого разблокируйте ваше постоянное хранилище при запуске Tails и "
-"установите программное обеспечение при помощи <a href=\"synaptic.desktop"
-"\">Synaptic Package Manager</a> или <a href=\"org.gnome.Terminal.desktop"
-"\">APT в командной строке</a>."
+"установите программное обеспечение при помощи <a href=\"synaptic."
+"desktop\">менеджера пакетов Synaptic</a> или <a href=\"org.gnome.Terminal."
+"desktop\">APT в командной строке</a>."
 
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
 msgid ""
@@ -1423,9 +1440,9 @@ msgid ""
 "href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a href=\"org."
 "gnome.Terminal.desktop\">APT on the command line</a>."
 msgstr ""
-"Для этого создайте постоянное хранилище при запуске Tails и установите "
-"программное обеспечение при помощи Synaptic Package Manager или APT в "
-"командной строке."
+"Для этого создайте Постоянное хранилище и установите программное обеспечение "
+"при помощи <a href=\"synaptic.desktop\">менеджера пакетов Synaptic</a> или "
+"<a href=\"org.gnome.Terminal.desktop\">APT в командной строке</a>."
 
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:214
 msgid "To do so, install Tails on a USB stick and create a persistent storage."
@@ -1435,7 +1452,7 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:258
 msgid "[package not available]"
-msgstr "[package not available]"
+msgstr "[пакет недоступен]"
 
 #: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:68
 msgid "Failed to synchronize the clock!"
@@ -1530,19 +1547,19 @@ msgstr ""
 "Смотрите {manual_upgrade_url}"
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr "ошибка:"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr "Внимание: обнаружена виртуальная машина!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr "Внимание: обнаружена несвободная виртуальная машина!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1554,11 +1571,11 @@ msgstr ""
 "обеспечение можно считать надежным, как для принимающей операционной "
 "системы, тaк и программного обеспечения для виртуализации."
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
-msgstr "Не показывать это снова."
+msgstr "Не показывать это снова"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr "Подробнее"
 
@@ -1572,21 +1589,20 @@ msgid "_Use a bridge that you already know"
 msgstr "_Использовать мост, который уже знаком вам"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:242
-#, fuzzy
 msgid ""
-"To save your bridge, <a href=\"doc/first_steps/persistence\">unlock your "
+"To save your bridge, <a href=\"doc/persistent_storage\">unlock your "
 "Persistent Storage</a>."
 msgstr ""
-"Чтобы сохранить свой мост, <a href=\"doc/first_steps/persistence"
-"\">разблокируйте Постоянное хранилище</a>."
+"Чтобы сохранить свой мост, <a href=\"doc/persistent_storage\">разблокируйте "
+"Постоянное хранилище</a>."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:249
 msgid ""
-"To save your bridge, <a href=\"doc/first_steps/persistence\">create a "
-"Persistent Storage</a> on your Tails USB stick."
+"To save your bridge, <a href=\"doc/persistent_storage\">create a Persistent "
+"Storage</a> on your Tails USB stick."
 msgstr ""
-"Чтобы сохранить свой мост, <a href=\"doc/first_steps/persistence\">создайте "
-"постоянное хранилище</a> на вашей USB-флешке с Tails."
+"Чтобы сохранить свой мост, <a href=\"doc/persistent_storage\">создайте "
+"Постоянное хранилище</a> на вашем Tails."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:269
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:773
@@ -1617,6 +1633,8 @@ msgstr ""
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:401
 msgid "Invalid QR code. Try sending another email and scanning again."
 msgstr ""
+"Недействительный QR-код. Попробуйте отправить ещё одно электронное сообщение "
+"или попробуйте просканировать QR-код вновь."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:451
 msgid "Synchronizing the system's clock…"
@@ -1624,16 +1642,16 @@ msgstr "Синхронизация системных часов…"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:500
 msgid "Connecting to Tor without bridges…"
-msgstr "Подключение к Tor без мостов..."
+msgstr "Подключение к Tor без мостов…"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:507
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:531
 msgid "Connecting to Tor with default bridges…"
-msgstr "Подключение к Tor через мосты по умолчанию..."
+msgstr "Подключение к Tor через мосты по умолчанию…"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:514
 msgid "Connecting to Tor with a custom bridge…"
-msgstr "Подключение к Tor через пользовательский мост..."
+msgstr "Подключение к Tor через пользовательский мост…"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:622
 msgid "Connected to Tor successfully with bridges"
@@ -1650,9 +1668,8 @@ msgid "You can now browse the Internet anonymously and uncensored."
 msgstr "Теперь вы можете просматривать Интернет анонимно и без цензуры."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:703
-#, fuzzy
 msgid "This local network seems to be blocking access to Tor."
-msgstr "Ваша локальная сеть блокирует доступ к сети Tor."
+msgstr "Кажется, ваша локальная сеть блокирует доступ к сети Tor."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:776
 msgid "Bridge address malformed"
@@ -1665,13 +1682,13 @@ msgstr "Настройка моста необходима, если вы хот
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1011
 #, python-brace-format
 msgid "Scanned {bridge_type} bridge: <b>{bridge_info}</b>."
-msgstr ""
+msgstr "Просканирован {bridge_type} мост: <b>{bridge_info}</b>."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1096
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1102
 msgid "Are you sure you want to lose progress?"
 msgstr "Вы уверены, что хотите потерять прогресс?"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1100
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1106
 msgid ""
 "Tails will continue connecting to Tor after you close the Tor Connection "
 "assistant.\n"
@@ -1686,13 +1703,13 @@ msgstr ""
 "индикатора выполнения, чтобы появилась возможность устранить неполадки с "
 "подключением."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1106
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1112
 msgid "Close and Lose Progress"
-msgstr ""
+msgstr "Закрыть и потерять прогресс"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1107
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1113
 msgid "Wait"
-msgstr ""
+msgstr "Подождать"
 
 #: config/chroot_local-includes/usr/local/bin/thunderbird:41
 msgid "You need to migrate your OpenPGP keys"
@@ -1907,38 +1924,40 @@ msgid ""
 "Please try using the <i>Disks</i> application instead."
 msgstr ""
 "Не удалось добавить файловый контейнер %s: Превышено время ожидания "
-"установки цикла. Пожалуйста, попробуйте использовать приложение <i>Disks</i>."
+"установки цикла.\n"
+"Пожалуйста, попробуйте использовать приложение <i>Disks</i>."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
 msgid "Choose File Container"
 msgstr "Выберите файловый контейнер"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
-msgstr ""
+msgstr "Небезопасный браузер был отключён на экране приветствия.\\n\\n"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
+"Чтобы использовать Небезопасный браузер, перезапустите Tails и включите "
+"Небезопасный браузер в дополнительных настройках на экране приветствия."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
-#, fuzzy
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 msgid "To use the Unsafe Browser, restart Tails."
-msgstr "Выключить небезопасный браузер (по умолчанию)"
+msgstr "Чтобы использовать Небезопасный браузер, перезапустите Tails."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr "_Перезапустить"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
-#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:123
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 msgid "_Cancel"
 msgstr "_Отмена"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
@@ -1946,27 +1965,27 @@ msgstr ""
 "Вы действительно хотите перезапустить Tails сейчас?\\n\\nВся текущая работа "
 "будет потеряна."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr "Перезапустить"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr "Не удалось перезапустить систему."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr "Запускается небезопасный браузер…"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr "Это займет некоторое время. Пожалуйста, потерпите."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr "Отключение небезопасного браузера…"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
@@ -1974,13 +1993,13 @@ msgstr ""
 "Это займет некоторое время. Вы не сможете перезапустить небезопасный браузер "
 "прежде, чем будут корректно завершены процедуры его выгрузки из системы."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr "Небезопасный браузер"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
@@ -1988,15 +2007,15 @@ msgstr ""
 "В данный момент либо работает другой небезопасный браузер, либо не завершена "
 "процедура его выгрузки. Пожалуйста, повторите попытку спустя некоторое время."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr "Не удалось установить chroot."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr "Не удалось настроить браузер."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
@@ -2006,7 +2025,7 @@ msgstr ""
 "браузер, вам сначала нужно подключиться к Wi-Fi, проводной или мобильной "
 "сети."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr "Не удалось запустить браузер."
 
@@ -2016,6 +2035,8 @@ msgid ""
 "The %s variable was not found in the configuration file: /etc/whisperback/"
 "config.py"
 msgstr ""
+"Переменная %s не была найдена в файле конфигурации: /etc/whisperback/config."
+"py"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:113
 msgid "Name of the affected software"
@@ -2181,10 +2202,10 @@ msgid "Tails documentation"
 msgstr "Документация Tails"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
-#, fuzzy
 msgid "Persistent Storage"
-msgstr "Создание постоянного хранилища"
+msgstr "Постоянное хранилище"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:2
 msgid ""
@@ -2211,6 +2232,19 @@ msgstr "Научитесь пользоваться Tails"
 msgid "Learn more about Tails"
 msgstr "Узнать больше о Tails"
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "Постоянное хранилище"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+#, fuzzy
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+"Выберите функции Постоянного хранилища, данные для которого вы хотите "
+"сохранить на вашем Tails."
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr "Установить, дублировать, обновить Tails"
@@ -2244,8 +2278,8 @@ msgid ""
 "Configure the additional software installed from your persistent storage "
 "when starting Tails"
 msgstr ""
-"Настроить дополнительное программное обеспечение из вашего постоянного "
-"хранилище при запуске Tails."
+"Настроить дополнительное программное обеспечение из вашего Постоянного "
+"хранилища при запуске Tails"
 
 #: ../config/chroot_local-includes/usr/share/applications/whisperback.desktop.in.h:1
 msgid "WhisperBack Error Reporting"
@@ -2276,12 +2310,12 @@ msgid ""
 "Authentication is required to remove a package from your additional software "
 "($(command_line))"
 msgstr ""
-"Для удаления пакета из вашего дополнительного ПО требуется аутентификация ($ "
-"(command_line))"
+"Для удаления пакета из вашего дополнительного ПО требуется аутентификация "
+"($(command_line))"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr "Пароль администратора"
 
@@ -2308,7 +2342,7 @@ msgid "Disable"
 msgstr "Отключить"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr "Анонимизация MAC-адреса"
 
@@ -2334,7 +2368,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr "Не анонимизировать MAC-адреса"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr "Настройка сети"
 
@@ -2371,7 +2405,6 @@ msgstr ""
 "подключения для повышения безопасности."
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:528
-#, fuzzy
 msgid ""
 "The Unsafe Browser allows you to sign in to a network using a captive "
 "portal.\n"
@@ -2396,17 +2429,19 @@ msgstr ""
 "почты.\n"
 "\n"
 "Небезопасный браузер не анонимен и может деанонимизировать вас. Используйте "
-"его только для входа в сеть."
+"его только для авторизации в сети.\n"
+"\n"
+"Небозапасный браузер включён по умолчанию вновь с Tails 5.8 (Декабрь 2022) "
+"после того, как мы исправили уязвимости безопасности, которые стали причиной "
+"его отключения в Tails 4.8 (Июнь 2020)."
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:576
-#, fuzzy
 msgid "Enable the Unsafe Browser (default)"
-msgstr "Выключить небезопасный браузер (по умолчанию)"
+msgstr "Включить Небезопасный браузер (по умолчанию)"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:622
-#, fuzzy
 msgid "Disable the Unsafe Browser"
-msgstr "Включить небезопасный браузер"
+msgstr "Выключить Небезопасный браузер"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:100
 msgid "Settings were loaded from the persistent storage."
@@ -2416,62 +2451,66 @@ msgstr "Настройки были загружены из постоянног
 msgid "Welcome to Tails!"
 msgstr "Добро пожаловать в Tails!"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
-#, fuzzy
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 msgid "_Persistent Storage"
-msgstr "Создание постоянного хранилища"
+msgstr "_Постоянное хранилище"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
+"Вы можете сохранить свои файлы и настройки в зашифрованном Постоянном "
+"хранилище на вашем Tails: документы, закладки браузера, пароли от Wi-Fi, и "
+"так далее."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
-#, fuzzy
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr ""
-"Чтобы автоматически установить его из постоянного хранилища при запуске "
+"Вы создадите и настроите ваше Постоянное хранилище после того, как запустите "
 "Tails."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr "Язык и регион"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr "Настройки по умолчанию"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
-msgstr "Зашифрованное _Постоянное хранилище"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
 msgid "Show Passphrase"
-msgstr "Показать ключевую фразу:"
+msgstr "Показать пароль"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "Пароль:"
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
-msgstr "Введите вашу ключевую фразу для разблокировки постоянного хранилища"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
+msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+#, fuzzy
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 "Ваше постоянное хранилище разблокировано. Перезапустите Tails, чтобы снова "
 "заблокировать."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr "_Дополнительные настройки"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr "Добавить дополнительный параметр"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
@@ -2479,62 +2518,55 @@ msgstr ""
 "Настройки по умолчанию являются безопасными в большинстве ситуаций. Для "
 "добавления пользовательской настройки, нажмите кнопку \"+\" ниже."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 msgid "Shutdown"
-msgstr "Закрытие"
+msgstr "Выключение"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr "_Запуск Tails"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:8
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:56
-#, fuzzy
 msgid "Change Passphrase"
-msgstr "Показать ключевую фразу:"
+msgstr "Изменить пароль"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:95
-#, fuzzy
 msgid "Current _Passphrase"
-msgstr "Пароль:"
+msgstr "Текущий _пароль"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:131
-#, fuzzy
 msgid "_New Passphrase"
-msgstr "Показать ключевую фразу:"
+msgstr "_Новый пароль"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:179
-#, fuzzy
 msgid "_Confirm New Passphrase"
-msgstr "Показать ключевую фразу:"
+msgstr "По_дтвердите новый пароль"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:215
-#, fuzzy
 msgid "_Show Passphrases"
-msgstr "Показать ключевую фразу:"
+msgstr "По_казать пароль"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:253
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:213
-#, fuzzy
 msgid "The passphrases do not match"
 msgstr "Парольные фразы не совпадают"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:317
 msgid "Ch_ange"
-msgstr ""
+msgstr "_Изменить"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/deleted_view.ui.in:21
-#, fuzzy
 msgid "The Persistent Storage was successfully deleted."
-msgstr "Удалить постоянное хранилище и переустановить"
+msgstr "Постоянное хранилище было успешно удалено."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/deleted_view.ui.in:32
 msgid "_Close"
-msgstr ""
+msgstr "_Закрыть"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/fail_view.ui.in:30
 msgid "Oh no! Something has gone wrong."
-msgstr ""
+msgstr "О нет! Что-то пошло не так."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/fail_view.ui.in:45
 msgid ""
@@ -2543,65 +2575,77 @@ msgid ""
 "You can send an error report or check the output of the following commands "
 "to investigate:"
 msgstr ""
+"Служба Постоянного хранилища неожиданно завершилась.\n"
+"\n"
+"Вы можете отправить отчёт об ошибке или проверить вывод следующих команд:"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/fail_view.ui.in:74
-#, fuzzy
 msgid "Send Error Report"
-msgstr "Отчет об ошибке WhisperBack"
+msgstr "Отправить отчёт об ошибке"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:61
 msgid ""
 "Your Persistent Storage is unlocked.\n"
 "\n"
-"Its content will be available until you shut down Tails.\n"
+"Its content is available until you shut down Tails.\n"
 "\n"
-"<a href=\"doc/first_steps/persistence/backup\">Learn how to make a backup of "
-"your Persistent Storage.</a>"
+"<a href=\"doc/persistent_storage/backup\">Learn how to make a backup of your "
+"Persistent Storage.</a>"
 msgstr ""
+"Ваше Постоянное хранилище разблокировано.\n"
+"\n"
+"Его содержимое будет доступно до того момента, пока вы не выключите Tails.\n"
+"\n"
+"<a href=\"doc/persistent_storage/backup\">Узнайте больше о том, как сделать "
+"резервную копию вашего Постоянного хранилища.</a>"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:89
 msgid ""
 "Turn on the features of the Persistent Storage for the data that you want to "
 "save to your Tails USB stick."
 msgstr ""
+"Выберите функции Постоянного хранилища, данные для которого вы хотите "
+"сохранить на вашем Tails."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:106
-#, fuzzy
 msgid "Personal Documents"
 msgstr "Персональные данные"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:134
-#, fuzzy
 msgid "Persistent Folder"
-msgstr "Удалить постоянное хранилище"
+msgstr "Папка Постоянного хранилища"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:153
-#, fuzzy
 msgid "Open Persistent Folder"
-msgstr "Удалить постоянное хранилище"
+msgstr "Открыть папку Постоянное хранилище"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:166
-#, fuzzy
 msgid "Activate Persistent Folder"
-msgstr "Создание постоянного хранилища"
+msgstr "Активировать Постоянное хранилище"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:191
-#, fuzzy
 msgid "System Settings"
-msgstr "Настройки по умолчанию"
+msgstr "Настройки системы"
 
-#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
 #, fuzzy
+msgid "Welcome Screen"
+msgstr "Активировать экран приветствия"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 msgid "Activate Welcome Screen"
-msgstr "Экран приветствия"
+msgstr "Активировать экран приветствия"
 
-#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
 #, fuzzy
+msgid "Printers"
+msgstr "Активировать принтеры"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 msgid "Activate Printers"
-msgstr "Принтеры"
+msgstr "Активировать принтеры"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:275
-#, fuzzy
 msgid "Network"
 msgstr "Сеть"
 
@@ -2611,50 +2655,48 @@ msgstr "Сетевые подключения"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:304
 msgid "Save Wi-Fi passwords and mobile broadband configuration."
-msgstr ""
+msgstr "Сохраните пароли от Wi-Fi и настройки проводного интернет-соединения."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:314
-#, fuzzy
 msgid "Activate Network Connections"
-msgstr "Сетевые подключения"
+msgstr "Активировать сетевые подключения"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:325
 msgid "Tor Bridge"
 msgstr "Мост Tor"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:335
-#, fuzzy
 msgid "Activate Tor Bridge"
-msgstr "Мост Tor"
+msgstr "Активировать мост Tor"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:360
-#, fuzzy
 msgid "Applications"
 msgstr "Приложения"
 
-#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
 #, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "Активировать закладки Tor Browser"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 msgid "Activate Tor Browser Bookmarks"
-msgstr "Закладки браузера"
+msgstr "Активировать закладки Tor Browser"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:409
-#, fuzzy
 msgid "Electrum Bitcoin Wallet"
-msgstr "Bitcoin-кошелек Electrum и конфигурация"
+msgstr "Bitcoin-кошелек Electrum"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:419
-#, fuzzy
 msgid "Activate Electrum Bitcoin Wallet"
-msgstr "Bitcoin-кошелек Electrum и конфигурация"
+msgstr "Активировать Bitcoin-кошелёк Electrum"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:430
-#, fuzzy
 msgid "Thunderbird Email Client"
-msgstr "Thunderbird"
+msgstr "Почтовый клиент Thunderbird"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:440
 msgid "Activate Thunderbird Email Client"
-msgstr ""
+msgstr "Активировать почтовый клиент Thunderbird"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:451
 msgid "GnuPG"
@@ -2662,16 +2704,15 @@ msgstr "GnuPG"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:452
 msgid "OpenPGP keys outside of Thunderbird."
-msgstr ""
+msgstr "Ключи OpenPGP, не включённые в Thunderbird."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:462
 msgid "Activate GnuPG"
 msgstr "Активировать GnuPG"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:473
-#, fuzzy
 msgid "Pidgin Internet Messenger"
-msgstr "Pidgin мессенджер"
+msgstr "Интернет-мессенджер Pidgin"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:483
 msgid "Activate Pidgin Internet Messenger"
@@ -2682,72 +2723,77 @@ msgid "SSH Client"
 msgstr "Клиент SSH"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:504
-#, fuzzy
 msgid "Activate SSH Client"
-msgstr "Клиент SSH"
+msgstr "Активировать клиент SSH"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:529
-#, fuzzy
 msgid "Advanced Settings"
-msgstr "Дополнительные настройки"
+msgstr "Расширенные настройки"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:558
-#, fuzzy
 msgid "Install additional software automatically when starting Tails."
 msgstr ""
-"Вы можете установить дополнительное программное обеспечение автоматически из "
-"своего постоянного хранилища при запуске Tails."
+"Установить дополнительное программное обеспечение автоматически при запуске "
+"Tails."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:577
-#, fuzzy
 msgid "Configure Additional Software"
-msgstr "Дополнительное програмное обеспечение"
+msgstr "Настроить Дополнительное программное обеспечение"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:590
-#, fuzzy
 msgid "Activate Additional Software"
-msgstr "Дополнительное програмное обеспечение"
+msgstr "Активировать Дополнительное программное обеспечение"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:601
 msgid "Dotfiles"
 msgstr "Dotfiles"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:602
-#, fuzzy
 msgid "Symlink every file in the Dotfiles folder into the Home folder."
-msgstr "Симлинк каждого файла из папки Dotfiles в папку Home"
+msgstr ""
+"Создать символическую ссылку для каждого файла из папки Dotfiles в папку "
+"Home."
 
-#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:612
-#, fuzzy
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:629
 msgid "Activate Dotfiles"
-msgstr "Dotfiles"
+msgstr "Активировать Dotfiles"
 
-#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:642
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:659
 msgid "Custom"
 msgstr "Пользовательский"
 
-#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:661
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:678
 msgid ""
 "To add or remove custom features, modify /live/persistence/"
 "TailsData_unlocked/persistence.conf."
 msgstr ""
+"Чтобы добавить или убрать свои настройки функций, отредактируйте /live/"
+"persistence/TailsData_unlocked/persistence.conf."
 
-#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:703
-#, fuzzy
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:720
 msgid ""
-"<a href=\"doc/first_steps/persistence\">Learn more about the Persistent "
-"Storage</a>"
+"<a href=\"doc/persistent_storage\">Learn more about the Persistent Storage.</"
+"a>"
 msgstr ""
-"Чтобы сохранить свой мост, <a href=\"doc/first_steps/persistence"
-"\">разблокируйте Постоянное хранилище</a>."
+"<a href=\"doc/persistent_storage\">Узнайте больше о Постоянном хранилище</a>"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/locked_view.ui.in:52
 msgid ""
 "<b>Your Persistent Storage is locked.</b>\n"
 "\n"
 "To use or configure your Persistent Storage, unlock it in the Welcome Screen "
-"when starting Tails."
+"when starting Tails.\n"
+"\n"
+"To delete your Persistent Storage, click <b>Delete</b> on the right of the "
+"title bar."
 msgstr ""
+"<b>Ваше Постоянное хранилище заблокировано.</b>\n"
+"\n"
+"Чтобы использовать или настроить Постоянное хранилище, разблокируйте его на "
+"экране приветствия, когда начинаете работу в Tails.\n"
+"\n"
+"Чтобы удалить ваше Постоянное хранилище, нажмите кнопку <b>Удалить</b> в "
+"правом верхнем углу."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:52
 msgid ""
@@ -2756,77 +2802,86 @@ msgid ""
 "\n"
 "We recommend a long passphrase of 5 to 7 random words."
 msgstr ""
+"Выберите пароль, который вы будете использовать для разблокировки "
+"Постоянного хранилища.\n"
+"\n"
+"Мы рекомендуем длинный пароль, состоящий из 5-7 случайных слов."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:82
 msgid "Passphrase:"
 msgstr "Пароль:"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:101
-#, fuzzy
 msgid "Confirm:"
-msgstr "Подтвердить"
+msgstr "Подтвердить:"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:178
-#, fuzzy
 msgid "_Show Passphrase"
-msgstr "Показать ключевую фразу:"
+msgstr "_Показать пароль"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:265
-#, fuzzy
 msgid "_Back"
-msgstr "Назад"
+msgstr "_Назад"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:56
 msgid ""
 "Everything you do disappears automatically when you shut down Tails.\n"
 "\n"
 "But you can save some of your files and configuration in an encrypted "
-"Persistent Storage on your Tails USB stick:\n"
+"Persistent Storage on your Tails USB stick, for example:\n"
 "\n"
 "• Your documents\n"
 "• Your Wi-Fi passwords\n"
 "• Your browser bookmarks\n"
-"• and so on\n"
+"• ...\n"
 "\n"
-"<a href=\"doc/first_steps/persistence\">Learn more about the Persistent "
-"Storage</a>"
+"<a href=\"doc/persistent_storage\">Learn more about the Persistent Storage.</"
+"a>"
 msgstr ""
+"Всё, что вы делаете в Tails, исчезает автоматически, когда вы завершаете "
+"работу системы.\n"
+"\n"
+"Но вы можете сохранить некоторые файлы и конфигурации в зашифрованном "
+"Постоянном хранилище на вашем Tails, например:\n"
+"\n"
+"• Ваши документы\n"
+"• Ваши пароли от Wi-Fi\n"
+"• Ваши закладки в браузере\n"
+"• и тому подобное\n"
+"\n"
+"<a href=\"doc/persistent_storage\">Узнайте больше о Постоянном хранилище</a>"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:92
 msgid ""
-"Unfortunately, this Tails device does not support creating a Persistent "
-"Storage.\n"
-"\n"
-"To be able to use Tails with Persistent Storage, please follow the "
-"documentation to install Tails on a USB stick:\n"
+"Sorry, it is impossible to create a Persistent Storage on this device.\n"
 "\n"
-"<a href=\"install\">Install Tails</a>"
+"To be able to use Tails with a Persistent Storage, please follow our "
+"instructions on <a href=\"install\">installing Tails on a USB stick</a>."
 msgstr ""
+"К сожалению, невозможно создать Постоянное хранилище на этом устройстве.\n"
+"\n"
+"Чтобы использовать Tails с Постоянным хранилищем, следуйте документации по "
+"<a href=\"install\">установке Tails на USB-накопитель</a>."
 
-#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:139
-#, fuzzy
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:137
 msgid "Co_ntinue"
 msgstr "_Далее"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:29
-#, fuzzy
 msgid "_Delete..."
-msgstr "Удаление..."
+msgstr "_Удалить..."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:36
-#, fuzzy
 msgid "Delete Persistent Storage"
-msgstr "Создание постоянного хранилища"
+msgstr "Удалить Постоянное хранилище"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:49
-#, fuzzy
 msgid "_Change Passphrase..."
-msgstr "Показать ключевую фразу:"
+msgstr "_Изменить пароль..."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:66
-#, fuzzy
 msgid "_Restart Tails"
-msgstr "Перезапустить Tails"
+msgstr "_Перезапустить Tails"
 
 #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:61
 msgid "File Containers"
@@ -2867,11 +2922,11 @@ msgstr "_Разблокировать"
 msgid "Detach this volume"
 msgstr "Отвязать этот том"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr "Выберите USB-накопитель:"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr "Переустановить (стереть все данные)"
 
@@ -3011,25 +3066,20 @@ msgid "None"
 msgstr "Нет"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:240
-#, fuzzy
 msgid "_Ask for a Tor bridge by email"
-msgstr "_Запросить мост по электронной почте"
+msgstr "_Запросить мост Tor по электронной почте"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:259
-#, fuzzy
 msgid ""
 "Send an empty email to <tt>bridges@torproject.org</tt> from a Gmail or "
 "Riseup email address with your phone and scan the QR code that is attached "
 "to the automatic reply."
 msgstr ""
-"Чтобы запросить мост, вы можете отправить пустое электронное письмо на\n"
-"<tt>bridges@torproject.org</tt> с электронной почты Gmail или Riseup.\n"
-"\n"
-"Например, вы можете отправить электронное письмо со своего телефона и ввести "
-"мост в Tails.\n"
+"Отправьте пустое электронное письмо на <tt>bridges@torproject.org</tt> с "
+"электронной почты Gmail или Riseup на Вашем телефоне и просканируйте QR-код, "
+"который будет прикреплён к ответному сообщению."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:272
-#, fuzzy
 msgid "Scan _QR code"
 msgstr "_Сканировать QR-код"
 
@@ -3039,9 +3089,8 @@ msgstr "_Использовать мост, который уже знаком 
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:399
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1040
-#, fuzzy
 msgid "Bridge"
-msgstr "Мост Tor"
+msgstr "Мост"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:412
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1053
@@ -3084,13 +3133,12 @@ msgid "• Public network"
 msgstr "• Публичная сеть"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:827
-#, fuzzy
 msgid ""
 "If you are in a shop, hotel, or airport, you might need to sign in to the "
 "local network using the Unsafe Browser."
 msgstr ""
 "Если вы в кафе, аэропорту или метро, возможно, потребуется подключиться к "
-"местной сети с помощью Небезопасного Браузера."
+"местной сети с помощью Небезопасного браузера."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:840
 msgid "Try _Signing in to the Network"
@@ -3113,37 +3161,29 @@ msgid "Configure a Local _Proxy"
 msgstr "Настроить локальный _прокси"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:951
-#, fuzzy
 msgid "• Tor bridge by email"
-msgstr "• Мост через эл. почту"
+msgstr "• Мост Tor через эл. почту"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:971
-#, fuzzy
 msgid ""
 "Tor bridges are secret Tor relays. Use a bridge as your first Tor relay if "
 "connections to Tor are blocked, for example in some countries, by some "
 "public networks, or by some parental controls."
 msgstr ""
 "Мосты Tor — это секретные узлы Tor. Используйте мост как ваш первый узел "
-"Tor, если доступ к Tor заблокирован, например в некоторых странах, некоторых "
-"общественных сетях или некоторыми средствами родительского контроля.\n"
-"\n"
-"Выберите этот вариант, если вы уже знаете, что вам нужен мост. В противном "
-"случае Tails определит автоматически, нужен ли вам мост для подключения к "
-"Tor из вашей локальной сети."
+"Tor, если доступ к Tor заблокирован; например, некоторыми странами, "
+"общественными сетями или средствами родительского контроля."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:991
-#, fuzzy
 msgid ""
 "To get a bridge, send an empty email to <tt>bridges@torproject.org</tt> from "
 "a Gmail or Riseup email address with your phone and scan the QR code that is "
 "attached to the automatic reply."
 msgstr ""
-"Чтобы запросить мост, вы можете отправить пустое электронное письмо на\n"
-"<tt>bridges@torproject.org</tt> с электронной почты Gmail или Riseup.\n"
-"\n"
-"Например, вы можете отправить электронное письмо со своего телефона и ввести "
-"мост в Tails.\n"
+"Чтобы получить мост, отправьте пустое электронное письмо на "
+"<tt>bridges@torproject.org</tt> с электронной почты Gmail или Riseup на "
+"вашем телефоне и просканируйте QR-код, который будет прикреплён к ответному "
+"сообщению."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1014
 msgid "Scan QR Code"
@@ -3161,7 +3201,7 @@ msgstr ""
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1599
 msgid ""
 "Everything you do on the Internet from Tails goes through the Tor network."
-msgstr "Все, что вы делаете в интернете с Tails проходит через сеть Tor."
+msgstr "Все, что вы делаете в интернете с Tails, проходит через сеть Tor."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1205
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1614
@@ -3235,7 +3275,6 @@ msgstr ""
 "показаться подозрительным тому, кто следит за вашим интернет-соединением."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1499
-#, fuzzy
 msgid ""
 "Tails will only connect to Tor after you configured a Tor bridge. Bridges "
 "are secret Tor relays that hide that you are connecting to Tor.\n"
@@ -3253,7 +3292,7 @@ msgstr ""
 "Наша команда прилагает все усилия, чтобы помочь вам подключаться к Tor с "
 "использованием наиболее дискретных типов мостов Tor.\n"
 "\n"
-"Вам понадобится сделать дополнительные настройки, если вы еще не знаете ни "
+"Вам понадобится провести дополнительную настройку, если вы ещё не знаете ни "
 "одного моста Tor, если вы подключаетесь через общественную сеть Wi-Fi или "
 "если вы находитесь на Восточном полушарии."
 
@@ -3292,7 +3331,7 @@ msgstr "У вас есть доступ в интернет"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1781
 msgid "Testing access to Tor…"
-msgstr "Проверка доступа к сети Tor..."
+msgstr "Проверка доступа к сети Tor…"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1824
 msgid "You can connect to Tor"
@@ -3304,9 +3343,8 @@ msgstr ""
 "Не удалось подключиться к сети Tor напрямую (без использования мостов)."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1870
-#, fuzzy
 msgid "This local network is blocking access to Tor."
-msgstr "Ваша локальная сеть блокирует доступ к сети Tor."
+msgstr "Эта локальная сеть блокирует доступ к сети Tor."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1902
 msgid "Connecting to Tor…"
@@ -3455,6 +3493,12 @@ msgstr "Декабрь"
 msgid "Clock"
 msgstr "Часы"
 
+#~ msgid "Encrypted _Persistent Storage"
+#~ msgstr "Зашифрованное _Постоянное хранилище"
+
+#~ msgid "Enter your passphrase to unlock the persistent storage"
+#~ msgstr "Введите вашу ключевую фразу для разблокировки постоянного хранилища"
+
 #, python-format
 #~ msgid ""
 #~ "<h1>Help us fix your bug!</h1>\n"
@@ -3508,6 +3552,15 @@ msgstr "Часы"
 #~ msgid "Launch the Unsafe Browser?"
 #~ msgstr "Запустить небезопасный браузер?"
 
+#~ msgid ""
+#~ "The Unsafe Browser is not anonymous and the websites that you visit can "
+#~ "see your real IP address.\\n\\nOnly use the Unsafe Browser to sign in to "
+#~ "a network, then close it."
+#~ msgstr ""
+#~ "Небезопасный браузер не анонимен, и вебсайты, которые вы посещаете, могут "
+#~ "видеть ваш настоящий IP-адрес.\\n\\nИспользуйте Небезопасный браузер "
+#~ "только для авторизации в сети, а потом закройте его."
+
 #~ msgid "Enabled"
 #~ msgstr "Включено"
 
diff --git a/po/si.po b/po/si.po
index 03bfaf1505f..d83cc629928 100644
--- a/po/si.po
+++ b/po/si.po
@@ -7,16 +7,17 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
-"PO-Revision-Date: 2013-07-25 09:07+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Sinhala (http://www.transifex.com/otf/torproject/language/"
-"si/)\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
+"PO-Revision-Date: 2023-03-05 10:37+0000\n"
+"Last-Translator: emma peel <emma.peel@riseup.net>\n"
+"Language-Team: Sinhala <https://hosted.weblate.org/projects/tor/tails-gui/si/"
+">\n"
 "Language: si\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 4.16.2-dev\n"
 
 #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1
@@ -429,9 +430,9 @@ msgid "Additional Settings"
 msgstr ""
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "අවලංගු කරන්න"
@@ -503,24 +504,24 @@ msgstr ""
 msgid "Off (default)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
-msgid "Persistent Storage Not Unlocked"
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+msgid "Persistent Storage Still Locked"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
-msgid "Continue Without Persistent Storage"
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
+msgid "Start Without Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 msgid "Don't _Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 msgid "_Create Persistent Storage"
 msgstr ""
@@ -540,7 +541,6 @@ msgstr ""
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr ""
 
@@ -757,69 +757,69 @@ msgstr ""
 msgid "Synchronizing data on disk..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -827,14 +827,14 @@ msgid ""
 "a different model."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
 "%(size)s GB is required)."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -842,76 +842,76 @@ msgid ""
 "%(dl_url)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
 "The persistent storage on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
 "All data on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr ""
@@ -986,7 +986,7 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1046,145 +1046,145 @@ msgstr ""
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
 "log to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "වින්‍යාස කරන්න"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "ඉවත්කරන්න"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
-msgstr "ප්‍රකාශන "
+msgstr "ප්‍රකාශන"
 
 #. Translators: Don't translate {package}, it's a placeholder and will be replaced.
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
@@ -1313,19 +1313,19 @@ msgid ""
 msgstr ""
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1333,11 +1333,11 @@ msgid ""
 "software."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr ""
 
@@ -1664,90 +1664,90 @@ msgstr ""
 msgid "Choose File Container"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 msgid "_Cancel"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
 "network."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr ""
 
@@ -1905,6 +1905,7 @@ msgid "Tails documentation"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 msgid "Persistent Storage"
 msgstr ""
@@ -1931,6 +1932,15 @@ msgstr ""
 msgid "Learn more about Tails"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+msgid "Back Up Persistent Storage"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr ""
@@ -1997,7 +2007,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr ""
 
@@ -2021,7 +2031,7 @@ msgid "Disable"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr ""
 
@@ -2042,7 +2052,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr ""
 
@@ -2101,66 +2111,67 @@ msgstr ""
 msgid "Welcome to Tails!"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 msgid "_Persistent Storage"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
+msgid "Show Passphrase"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
-msgid "Show Passphrase"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+msgid "_Passphrase"
 msgstr ""
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 msgid "Shutdown"
 msgstr "වසන්න"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr ""
 
@@ -2254,10 +2265,18 @@ msgstr ""
 msgid "System Settings"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+msgid "Welcome Screen"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 msgid "Activate Welcome Screen"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+msgid "Printers"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 msgid "Activate Printers"
 msgstr ""
@@ -2290,6 +2309,10 @@ msgstr ""
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+msgid "Tor Browser Bookmarks"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 msgid "Activate Tor Browser Bookmarks"
 msgstr ""
@@ -2502,11 +2525,11 @@ msgstr ""
 msgid "Detach this volume"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr ""
 
@@ -2583,7 +2606,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:680
 msgid "Send"
-msgstr "යවන්න "
+msgstr "යවන්න"
 
 #: ../config/chroot_local-includes/usr/local/share/mime/packages/unlock-veracrypt-volumes.xml.in.h:1
 msgid "TrueCrypt/VeraCrypt container"
diff --git a/po/sk.po b/po/sk.po
index b950df2e38c..57beec0292b 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -17,7 +17,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
 "PO-Revision-Date: 2023-01-25 11:39+0000\n"
 "Last-Translator: emma peel <emma.peel@riseup.net>\n"
 "Language-Team: Slovak <https://hosted.weblate.org/projects/tor/tails-gui/sk/"
@@ -496,9 +496,9 @@ msgid "Additional Settings"
 msgstr "Dodatočné nastavenia"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "Zrušiť"
@@ -572,28 +572,28 @@ msgstr "Vypnúť"
 msgid "Off (default)"
 msgstr "Vypnuté (predvolené)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
 #, fuzzy
-msgid "Persistent Storage Not Unlocked"
+msgid "Persistent Storage Still Locked"
 msgstr "Vytvoriť Trvalé úložisko"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 #, fuzzy
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
 msgstr "Zvoľte prístupové heslo na odomknutie trvalého oddielu."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
 #, fuzzy
-msgid "Continue Without Persistent Storage"
+msgid "Start Without Persistent Storage"
 msgstr "Vytvoriť Trvalé úložisko"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 #, fuzzy
 msgid "Don't _Create Persistent Storage"
 msgstr "Vytvoriť Trvalé úložisko"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 #, fuzzy
 msgid "_Create Persistent Storage"
@@ -616,7 +616,6 @@ msgstr "Odomykám..."
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr "Odomknúť"
 
@@ -835,7 +834,7 @@ msgstr "Zariadenie je loopback, preskakujem MBR reset"
 msgid "Synchronizing data on disk..."
 msgstr "Synchronizujem dáta na disku..."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
@@ -843,63 +842,63 @@ msgstr ""
 "Chyba: nie je možné nastaviť menovku alebo získať UUID Vašeho zariadenia. "
 "Nie je možné pokračovať."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr "Inštalácia kompletná! (%s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr "Inštalácia Tails zlyhala!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr "Tails inštalátor"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr "Klonovať aktuálne bežiaci Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr "Použiť stiahnutý Tails ISO obraz"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr "Aktualizovať"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr "Pokyny pre manuálnu aktualizáciu"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr "Inštalovať"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr "Pokyny pre inštaláciu"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(size)s%(vendor)s%(model)s zariadenie (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr "Nebol vybraný žiaden ISO obraz"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr "Vyberte prosím Tails ISO obraz."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -910,7 +909,7 @@ msgstr ""
 "\"neodpojiteľný\" (non-removable) a Tails nebude môcť na ňom naštartovať. "
 "Prosím pokúste sa o inštaláciu na iný model."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
@@ -919,7 +918,7 @@ msgstr ""
 "Zariadenie \"%(pretty_name)s\" je príliš malé na inštaláciu Tails (je "
 "vyžadovaných minimálne %(size)s GB)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -927,64 +926,64 @@ msgid ""
 "%(dl_url)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr "Nebolo nájdené žiadne zariadenie vhodné na inštaláciu Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr "Prosím pripojte USB kľúč alebo SD kartu s veľkosťou aspoň %0.1f GB."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr "Pri inštalácii Tails nastala chyba"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr "Inštalácia kompletná!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr "Nemôžem pripojiť zariadenie"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(parent_size)s %(vendor)s %(model)s zariadenie (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
 "The persistent storage on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
 "All data on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr "Potvrďte cieľový USB kľúč"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
@@ -992,7 +991,7 @@ msgstr ""
 "Vybraný súbor je nečitaťeľný. Prosím upravte oprávnenia alebo vyberte iný "
 "súbor."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
@@ -1000,7 +999,7 @@ msgstr ""
 "Nie je možné použiť zvolený súbor. Možno pomôže, ak presuniete Váš ISO súbor "
 "do koreňového disku (napr. C:\\)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr "%(filename)s označených"
@@ -1077,7 +1076,7 @@ msgstr "su je vypnutý. Prosím použite namiesto toho sudo"
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1143,7 +1142,7 @@ msgstr "nie je dostupný"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -1152,7 +1151,7 @@ msgstr ""
 "{details} Prosím preverte zoznam doplnkového softvéru alebo prečítajte log "
 "systému na porozumenie problému."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
@@ -1160,56 +1159,56 @@ msgstr ""
 "Prosím preverte zoznam doplnkového softvéru alebo prečítajte log systému na "
 "porozumenie problému."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr "Zobraziť Log"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "Konfigurácia"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, fuzzy, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} and {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ","
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "Pridať {packages} medzi Váš dodatočný softvér?"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 "Nasledujúci softvér bude automaticky nainštalovaný z Vášho Trvalého úložiska "
 "keď Tails naštartuje."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr "Inštalovať vždy pri spustení"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr "Inštalovať iba raz"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr "Konfigurácia Vašeho dodatočnéhu softvéru zlyhala."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -1217,67 +1216,67 @@ msgstr ""
 "Na automatickú inštaláciu keď sa spúšťa Tails, musíte vytvoriť Trvalé "
 "úložisko a aktivovať funkciu <b>Doplnkový softvér</b>."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr "Vytvoriť Trvalé úložisko"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr "Vytvorenie Trvalého úložiska zlyhalo."
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr "Mohli by ste inštalovať {packages}  automaticky keď Tails naštartuje"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "Odstrániť {packages} z Vášho doplnkového softvéru?"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr "Týmto prestanú byť {packages} automaticky nainštalované."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "Odstrániť"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr "Inštaluje sa Váš doplnkový softvér z Trvalého úložiska..."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr "Môže to trvať niekoľko minút."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr "Inštalácia Vášho doplnkového softvéru zlyhala."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr "Doplnkový softvér bol úspešne nainštalovaný."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr "Overenie aktualizácií Vášho doplnkového softvéru zlyhalo."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -1285,11 +1284,11 @@ msgstr ""
 "Prosím preverte vaše sieťové pripojenie, reštartujete Tails alebo prečítajte "
 "systémový záznam pre porozumenie problému."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr "Aktualizácia Vášho doplnkového softvéru zlyhala."
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "Dokumentácia"
 
@@ -1432,19 +1431,19 @@ msgid ""
 msgstr ""
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr "chyba:"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr "Varovanie: bol detegovaný virtuálny stroj!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr "Upozornenie: bol objavený virtuány stroj!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1455,11 +1454,11 @@ msgstr ""
 "aktivitu v Tails. Len voľne šíriteľný softvér je možné považovať za "
 "dôveryhodný pre operačný systém aj virtualizačný softvér."
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr "Znovu neukazovať"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr "Zistite viac"
 
@@ -1796,58 +1795,58 @@ msgstr ""
 msgid "Choose File Container"
 msgstr "Zvoľ súborový kontajner"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 #, fuzzy
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr "Zakázať Unsafe Browser (predvolené)"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 msgid "_Cancel"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr "Reštartovať teraz"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr "Spúšťa sa Unsafe Browser..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr "Toto môže chvíľu trvať, buďte preto prosím trpezlivý."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr "Vypína sa Unsafe Browser..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
@@ -1855,14 +1854,14 @@ msgstr ""
 "Toto môže chvíľu trvať, a pokiaľ sa korektne nevypne, nebudete ho môcť "
 "reštartovať."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 #, fuzzy
 msgid "Unsafe Browser"
 msgstr "Unsafe Browser"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
@@ -1870,22 +1869,22 @@ msgstr ""
 "Aktuálne je spustený ďalší Unsafe Browser, prípadne prebieha jeho čistenie. "
 "Prosíme skúste to znovu neskôr."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr "Nepodarilo sa nastaviť chroot."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr "Zlyhalo pri nastavovaní prehliadača."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
 "network."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr "Zlyhalo pri spúšťaní prehliadača. "
 
@@ -2059,6 +2058,7 @@ msgid "Tails documentation"
 msgstr "Tails dokumentácia"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 #, fuzzy
 msgid "Persistent Storage"
@@ -2086,6 +2086,16 @@ msgstr "Naučte sa ako používať Tails"
 msgid "Learn more about Tails"
 msgstr "Dozvedieť sa viac o Tails"
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "Vytvoriť Trvalé úložisko"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr ""
@@ -2157,7 +2167,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr "Heslo správcu"
 
@@ -2183,7 +2193,7 @@ msgid "Disable"
 msgstr "Zakázať"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr ""
 
@@ -2204,7 +2214,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr "Nastavenia siete"
 
@@ -2265,19 +2275,19 @@ msgstr "Nastavenia boli načítané z trvalého úložiska."
 msgid "Welcome to Tails!"
 msgstr "Vitajte v Tails!"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 #, fuzzy
 msgid "_Persistent Storage"
 msgstr "Vytvoriť Trvalé úložisko"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 #, fuzzy
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
@@ -2285,40 +2295,43 @@ msgstr ""
 "Nasledujúci softvér bude automaticky nainštalovaný z Vášho Trvalého úložiska "
 "keď Tails naštartuje."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr "Jazyk a Región"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr "Predvolené nastavenia"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
-msgstr "Šifrované _Trvalé úložisko"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
 msgid "Show Passphrase"
 msgstr "Ukáž heslo"
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
-msgstr "Zvoľte prístupové heslo na odomknutie trvalého oddielu."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "Prístupové heslo:"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+#, fuzzy
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr "Vaše Trvalé úložisko je odomknuté. Reštartujte Tails pre zamknutie."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr "_Dodatočné nastavenia"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr "Pridať dodatočné nastavenie"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
@@ -2326,11 +2339,11 @@ msgstr ""
 "Predvolené nastavenia sú bezpečné vo väčšine prípadov. Ak chcete upraviť "
 "nastavenia stlačte \"+\" tlačidlo dolu."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 msgid "Shutdown"
 msgstr "Vypnutie"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr "_Zapnúť Tails"
 
@@ -2437,11 +2450,21 @@ msgstr "Vytvoriť Trvalé úložisko"
 msgid "System Settings"
 msgstr "Predvolené nastavenia"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+#, fuzzy
+msgid "Welcome Screen"
+msgstr "Úvodná obrazovka"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 #, fuzzy
 msgid "Activate Welcome Screen"
 msgstr "Úvodná obrazovka"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+#, fuzzy
+msgid "Printers"
+msgstr "Tlačiarne"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 #, fuzzy
 msgid "Activate Printers"
@@ -2477,6 +2500,11 @@ msgstr "Spustiť Tor Browser"
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "Záložky prehliadača"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 #, fuzzy
 msgid "Activate Tor Browser Bookmarks"
@@ -2708,11 +2736,11 @@ msgstr "_Odomknúť"
 msgid "Detach this volume"
 msgstr "Odpojiť túto oblasť"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr "Cieľový USB kľúč:"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr "Preinštalovať (zmazať všetky dáta)"
 
@@ -3216,6 +3244,12 @@ msgstr ""
 msgid "Clock"
 msgstr ""
 
+#~ msgid "Encrypted _Persistent Storage"
+#~ msgstr "Šifrované _Trvalé úložisko"
+
+#~ msgid "Enter your passphrase to unlock the persistent storage"
+#~ msgstr "Zvoľte prístupové heslo na odomknutie trvalého oddielu."
+
 #, python-format
 #~ msgid ""
 #~ "<h1>Help us fix your bug!</h1>\n"
diff --git a/po/sl.po b/po/sl.po
index e96a787e9e7..b28b12798e4 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
 "PO-Revision-Date: 2023-01-27 10:38+0000\n"
 "Last-Translator: emma peel <emma.peel@riseup.net>\n"
 "Language-Team: Slovenian <https://hosted.weblate.org/projects/tor/tails-gui/"
@@ -465,9 +465,9 @@ msgid "Additional Settings"
 msgstr ""
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "Prekliči"
@@ -539,27 +539,27 @@ msgstr "Izklop"
 msgid "Off (default)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
 #, fuzzy
-msgid "Persistent Storage Not Unlocked"
+msgid "Persistent Storage Still Locked"
 msgstr "Trajni nosilec ni odklenjen."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
 #, fuzzy
-msgid "Continue Without Persistent Storage"
+msgid "Start Without Persistent Storage"
 msgstr "Ustvarjanje %s nenehnega prikrivanja"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 #, fuzzy
 msgid "Don't _Create Persistent Storage"
 msgstr "Ustvarjanje %s nenehnega prikrivanja"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 #, fuzzy
 msgid "_Create Persistent Storage"
@@ -580,7 +580,6 @@ msgstr "Odklepanje..."
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr ""
 
@@ -799,7 +798,7 @@ msgstr "Pogon je v povratni zanki, preskoči reset MBR"
 msgid "Synchronizing data on disk..."
 msgstr "Sinhronizacija podatkov na disk"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
@@ -807,63 +806,63 @@ msgstr ""
 "Napaka: Ne morem nastaviti etiketo ali pridobiti UUID naprave. Nemogoče "
 "nadaljevanje."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr "Namestitev končana! (%s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -871,7 +870,7 @@ msgid ""
 "a different model."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
@@ -880,7 +879,7 @@ msgstr ""
 "Naprava \"%(pretty_name)s\" vsebuje premalo prostora za namestitev Tails "
 "(najmanj %(size)s GB je priporočeno)."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -888,64 +887,64 @@ msgid ""
 "%(dl_url)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr "Namestitev končana!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr "Nemogoče priklopiti napravo"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
 "The persistent storage on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
 "All data on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
@@ -953,7 +952,7 @@ msgstr ""
 "Izbrana datoteka je nečitljiva. Popravite dovoljenje ali izberite drugo "
 "datoteko."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
@@ -961,7 +960,7 @@ msgstr ""
 "Nemogoče uporabiti izbrano datoteko. Več sreče boste imeli s premikom vaše "
 "ISO v koren pogona (npr.: C:\\ )"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr "%(filename)s izbrana"
@@ -1036,7 +1035,7 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1098,143 +1097,143 @@ msgstr "ni primeren"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
 "log to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr "Prikaži dnevnik"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "Nastavi"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "Odstrani"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "Dokumentacija"
 
@@ -1365,19 +1364,19 @@ msgid ""
 msgstr ""
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr "napaka:"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr "Opozorilo: Zaznan virtualni stroj!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1385,11 +1384,11 @@ msgid ""
 "software."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr ""
 
@@ -1716,58 +1715,58 @@ msgstr ""
 msgid "Choose File Container"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 #, fuzzy
 msgid "_Cancel"
 msgstr "Prekliči"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr "Zagon nezanesljivega Brskalnika ..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr "To lahko traja, zato bodite potrpežjivi."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr "Ugašanje nezanesljivega Brskalnika .."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
@@ -1775,13 +1774,13 @@ msgstr ""
 "To lahko traja in ne smete ponoviti zagona nezanesljivega Brskalnika dokler "
 "ni pravilno ugasnjen."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr "Nezanesljiv Brskalnik"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
@@ -1789,22 +1788,22 @@ msgstr ""
 "Drugi nezanesljiv Brskalnik se trenutno izvaja ali se čisti. Poskusite malo "
 "kasneje. "
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr "Neuspešna nastavitev chroot."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr "Nastavljanje brskalnika neuspešno."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
 "network."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr "Zagon brskalnika neuspešen."
 
@@ -1977,6 +1976,7 @@ msgid "Tails documentation"
 msgstr "Dokumentacija Sledi"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 msgid "Persistent Storage"
 msgstr ""
@@ -2003,6 +2003,16 @@ msgstr "Učenje uporabe Sledi"
 msgid "Learn more about Tails"
 msgstr "Več o Sledi"
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "Ustvarjanje %s nenehnega prikrivanja"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr ""
@@ -2069,7 +2079,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr ""
 
@@ -2093,7 +2103,7 @@ msgid "Disable"
 msgstr "Onemogoči"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr ""
 
@@ -2114,7 +2124,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr ""
 
@@ -2175,67 +2185,69 @@ msgstr ""
 msgid "Welcome to Tails!"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 msgid "_Persistent Storage"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr "Privzete nastavitve"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
 #, fuzzy
 msgid "Show Passphrase"
 msgstr "Show Passphrase"
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "Geslo za ključe:"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 msgid "Shutdown"
 msgstr "Izklop"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr ""
 
@@ -2339,10 +2351,19 @@ msgstr "Ustvarjanje trajnega nosilca..."
 msgid "System Settings"
 msgstr "Privzete nastavitve"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+msgid "Welcome Screen"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 msgid "Activate Welcome Screen"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+#, fuzzy
+msgid "Printers"
+msgstr "Tiskalniki"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 #, fuzzy
 msgid "Activate Printers"
@@ -2378,6 +2399,11 @@ msgstr "Zagon Tor brskalnik"
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "Zagon Tor brskalnik"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 #, fuzzy
 msgid "Activate Tor Browser Bookmarks"
@@ -2600,11 +2626,11 @@ msgstr ""
 msgid "Detach this volume"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr ""
 
diff --git a/po/sq.po b/po/sq.po
index c14fac9e527..79d5b68a686 100644
--- a/po/sq.po
+++ b/po/sq.po
@@ -11,8 +11,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
-"PO-Revision-Date: 2023-02-01 20:02+0000\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
+"PO-Revision-Date: 2023-02-27 08:38+0000\n"
 "Last-Translator: emma peel <emma.peel@riseup.net>\n"
 "Language-Team: Albanian <https://hosted.weblate.org/projects/tor/tails-gui/"
 "sq/>\n"
@@ -512,9 +512,9 @@ msgid "Additional Settings"
 msgstr "Rregullime Shtesë"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "Anuloje"
@@ -586,29 +586,29 @@ msgstr "Off"
 msgid "Off (default)"
 msgstr "Off (parazgjedhje)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
 #, fuzzy
-msgid "Persistent Storage Not Unlocked"
+msgid "Persistent Storage Still Locked"
 msgstr "Depozitë e Qëndrueshme"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 #, fuzzy
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
 msgstr ""
 "Doni vërtet të rinisni Tails-in tani?\\n\\nKrejt puna e tanishme do të humbë."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
 #, fuzzy
-msgid "Continue Without Persistent Storage"
+msgid "Start Without Persistent Storage"
 msgstr "Krijo Depozitë të Qëndrueshme"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 #, fuzzy
 msgid "Don't _Create Persistent Storage"
 msgstr "_Krijo Depozitë të Qëndrueshme"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 msgid "_Create Persistent Storage"
 msgstr "_Krijo Depozitë të Qëndrueshme"
@@ -628,7 +628,6 @@ msgstr "Po shkyçet…"
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr "Shkyçe"
 
@@ -861,7 +860,7 @@ msgstr "Pajisja është loopback, po anashkalohet riujdisja e MBR-së"
 msgid "Synchronizing data on disk..."
 msgstr "Po njëkohësohen të dhëna në disk…"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
@@ -869,63 +868,63 @@ msgstr ""
 "Gabim: S’ujdiset dot ose s’merret dot UUID-ja e pajisjes tuaj. S’arrihet të "
 "vazhdohet."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr "Instalim i plotësuar! (%s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr "Instalimi i Tails dështoi!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr "Instalues Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr "Klono Tails-in e tanishëm"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr "Përdor një pamje ISO Tails të shkarkuar"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr "Përmirësoje"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr "Udhëzime Përmirësimi Dorazi"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr "Instaloje"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr "Udhëzime Instalimi"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "Pajisje %(size)s %(vendor)s %(model)s (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr "S’u përzgjodh pamje ISO"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr "Ju lutemi, përzgjidhni një pamje ISO Tails."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -936,7 +935,7 @@ msgstr ""
 "heqshëm dhe Tails do të dështojë të niset prej tij. Ju lutemi, provoni "
 "instalimin në një model tjetër."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
@@ -945,7 +944,7 @@ msgstr ""
 "Pajisja “%(pretty_name)s” është shumë e vogël për të instaluar Tails (duhen "
 "të paktën %(size)s GB)."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -956,33 +955,33 @@ msgstr ""
 "lypset të përdorni një pamje ISO Tails të shkarkuar:\n"
 "%(dl_url)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr "S’u gjet dot pajisje e përshtatshme për instalimin e Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr "Ju lutemi, vini një diskth USB ose kartë SD me të paktën %0.1f GB."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr "Ndodhi një gabim teksa instalohej Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr "Instalim i plotësuar!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr "S’arrihet të montohet pajisja"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "Pajisje %(parent_size)s %(vendor)s %(model)s (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
@@ -992,11 +991,11 @@ msgstr ""
 "\n"
 "Depozita e qëndrueshme në këtë diskth USB do të humbë."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr "Fshije Depozitën e Qëndrueshme dhe Riinstaloje"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
@@ -1006,20 +1005,20 @@ msgstr ""
 "\n"
 "Krejt të dhënat në këtë diskth USB do të humbin."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr "Fshiji Krejt të Dhënat dhe Instaloje"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr "%(description)s%(delete_message)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr "Ripohoni disk USB të synuar"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
@@ -1027,7 +1026,7 @@ msgstr ""
 "Kartela e përzgjedhur është e palexueshme. Ju lutemi, ndreqni lejet mbi të, "
 "ose përzgjidhni një kartelë tjetër."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
@@ -1035,7 +1034,7 @@ msgstr ""
 "S’arrihet të përdoret kartela e përzgjedhur. Mund të jeni më me fat, nëse e "
 "lëvizni ISO-n tuaj, tek rrënja e diskut tuaj (p.sh.: C:\\)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr "U përzgjodh %(filename)s"
@@ -1125,7 +1124,7 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1191,7 +1190,7 @@ msgstr "jo i passhëm"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -1200,7 +1199,7 @@ msgstr ""
 "{details} Ju lutemi, kontrolloni listën tuaj të software-it shtesë ose "
 "lexoni regjistrin e sistemit që të kuptoni problemin."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
@@ -1208,56 +1207,56 @@ msgstr ""
 "Ju lutemi, kontrolloni listën tuaj të software-it shtesë ose lexoni "
 "regjistrin e sistemit që të kuptoni problemin."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr "Shfaq Regjistrin"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "Formësoni"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} dhe {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ", "
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "Të shtohen {packages} te software-i juaj shtesë?"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 "Për instalim automatikisht që prej depozitës tuaj të qëndrueshme, kur niset "
 "Tails."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr "Instaloje Çdo Herë"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr "Instaloje Vetëm Një Herë"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr "Formësimi i software-it tuaj shtesë dështoi."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -1265,68 +1264,68 @@ msgstr ""
 "Për ta instaluar automatikisht, kur niset Tails, mund të krijoni një "
 "depozitë të qëndrueshme dhe të aktivizoni veçorinë <b>Software Shtesë</b>."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr "Krijo Depozitë të Qëndrueshme"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr "Krijimi i depozitës suaj të qëndrueshme dështoi."
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr "Mund të instaloni automatikisht {packages} kur niset Tails"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr "Që ta bëni këtë, ju duhet të xhironi Tails prej një diskthi USB."
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "Të hiqet {packages} prej software-it tuaj shtesë?"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr "Kjo do të sjellë reshtjen e instalimit të automatizuar të {packages}."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "Hiqe"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 "Po instalohet software i juaji shtesë që prej depozitës së qëndrueshme…"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr "Kjo mund zgjasë disa minuta."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr "Instalimi i software-it tuaj shtesë dështoi"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr "U instalua me sukses software shtesë"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr "Kontrolli për përmirësime të software-it tuaj shtesë dështoi"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -1334,11 +1333,11 @@ msgstr ""
 "Ju lutemi, kontrolloni lidhjen tuaj në rrjet, rinisni Tails, ose lexoni "
 "regjistrin e sistemit që të kuptoni problemin."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr "Përmirësimi i software-it tuaj shtesë dështoi"
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "Dokumentim"
 
@@ -1502,19 +1501,19 @@ msgstr ""
 "Shihni {manual_upgrade_url}"
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr "gabim:"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr "Kujdes: u pikas makinë virtuale!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr "Kujdes: u pikas makinë virtuale jo e lirë!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1526,11 +1525,11 @@ msgstr ""
 "konsiderohet i besueshëm, si për sistemin operativ strehë, ashtu edhe për "
 "software-in e virtualizimit."
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr "Mos e Shfaq Më"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr "Mësoni Më Tepër"
 
@@ -1892,11 +1891,11 @@ msgstr ""
 msgid "Choose File Container"
 msgstr "Zgjidhni Përmbajtës Kartelash"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr "Shfletuesi i Pasigurt qe çaktivizuar te Skena e Mirëseardhjes.\\n\\n"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
@@ -1905,48 +1904,48 @@ msgstr ""
 "Shfletuesi i Pasigurt është i aktivizuar, te rregullimet shtesë të Skenës së "
 "Mirëseardhjes."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr "Që të përdorni Shfletuesin e Pasigurt, rinisni Tails."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr "_Rinise"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 msgid "_Cancel"
 msgstr "_Anuloje"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 msgstr ""
 "Doni vërtet të rinisni Tails-in tani?\\n\\nKrejt puna e tanishme do të humbë."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr "Rinise Tani"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr "S’u arrit të riniset sistemi."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr "Po niset Shfletuesi i Pasigurt…"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr "Kjo mund zgjasë ca, ndaj, ju lutemi, bëni durim."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr "Po mbyllet Shfletuesi i Pasigurt…"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
@@ -1954,13 +1953,13 @@ msgstr ""
 "Kjo mund të zgjasë ca, dhe mund të mos mundni ta rinisni Shfletuesin e "
 "Pasigurt, para se të jetë mbyllur plotësisht."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr "Shfletues i Pasigurt"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
@@ -1968,15 +1967,15 @@ msgstr ""
 "Po xhiron ose është duke u pastruar një tjetër Shfletues i Pasigurt. Ju "
 "lutemi, riprovoni pas pak."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr "S’u arrit të formësohej chroot-i."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr "S’u arri të formësohej shfletuesi."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
@@ -1986,7 +1985,7 @@ msgstr ""
 "Shfletuesi i Pasigurt, së pari duhet të lidheni me një rrjet Wi-Fi, me fill, "
 "ose celular."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr "S’u arrit të xhirohej shfletues."
 
@@ -2164,6 +2163,7 @@ msgid "Tails documentation"
 msgstr "Dokumentim i Tails"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 msgid "Persistent Storage"
 msgstr "Depozitë e Qëndrueshme"
@@ -2194,6 +2194,19 @@ msgstr "Mësoni si ta përdorni Tails"
 msgid "Learn more about Tails"
 msgstr "Mësoni më tepër mbi Tails"
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "Depozitë e Qëndrueshme"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+#, fuzzy
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+"Aktivizoni veçoritë e Depozitës së Qëndrueshme për të dhënat që doni të "
+"ruani te diskthi juaj USB Tails."
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr "Instaloni, klononi, përmirësoni Tails"
@@ -2264,7 +2277,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr "Fjalëkalim Administrimi"
 
@@ -2291,7 +2304,7 @@ msgid "Disable"
 msgstr "Çaktivizoje"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr "Anonimizim Adresash MAC"
 
@@ -2317,7 +2330,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr "Mos anonimizo adresa MAC"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr "Formësim Rrjeti"
 
@@ -2399,11 +2412,11 @@ msgstr "Rregullimet u ngarkuan që prej depozitës së qëndrueshme."
 msgid "Welcome to Tails!"
 msgstr "Mirë se vini në Tails!"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 msgid "_Persistent Storage"
 msgstr "Depozitë e _Qëndrueshme"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
@@ -2413,48 +2426,51 @@ msgstr ""
 "Qëndrueshme të fshehtëzuar te diskthi juaj USB Tails: dokumentet, "
 "faqerojtësit e shfletuesit, fjalëkalimet për Wi-Fi, e me radhë."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr ""
 "Do të krijoni dhe formësoni Depozitën tuaj të Qëndrueshme, pas nisjes së "
 "Tails."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr "Gjuhë & Zonë"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr "Rregullime Parazgjedhje"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
-msgstr "Depozitë e _Qëndrueshme e Fshehtëzuar"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
 msgid "Show Passphrase"
 msgstr "Shfaq Frazëkalimin"
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
-msgstr "Që të shkyçet depozita e qëndrueshme, jepni frazëkalimin tuaj"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "Frazëkalim:"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+#, fuzzy
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 "Depozita juaj e qëndrueshme është e shkyçur. Që të rikyçet, rinisni Tails."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr "Rregullime _Shtesë"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr "Shtoni një rregullim shtesë"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
@@ -2462,11 +2478,11 @@ msgstr ""
 "Rregullimet parazgjedhje janë të parrezik në shumicën e rasteve. Që të "
 "shtoni një rregullim vetjak, shtypni butonin \"+\" më poshtë."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 msgid "Shutdown"
 msgstr "Fike"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr "_Nis Tails"
 
@@ -2573,10 +2589,20 @@ msgstr "Aktivizoni Dosje të Qëndrueshme"
 msgid "System Settings"
 msgstr "Rregullime Sistemi"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+#, fuzzy
+msgid "Welcome Screen"
+msgstr "Aktivizoni Skenë Mirëseardhjeje"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 msgid "Activate Welcome Screen"
 msgstr "Aktivizoni Skenë Mirëseardhjeje"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+#, fuzzy
+msgid "Printers"
+msgstr "Aktivizoni Shtypës"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 msgid "Activate Printers"
 msgstr "Aktivizoni Shtypës"
@@ -2609,6 +2635,11 @@ msgstr "Aktivizoni Urë Tor"
 msgid "Applications"
 msgstr "Aplikacione"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "Aktivizoni Faqerojtës Shfletuesi Tor"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 msgid "Activate Tor Browser Bookmarks"
 msgstr "Aktivizoni Faqerojtës Shfletuesi Tor"
@@ -2857,11 +2888,11 @@ msgstr "_Shkyçe"
 msgid "Detach this volume"
 msgstr "Shqite këtë vëllim"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr "Diskth USB i synuar:"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr "Riinstaloje (fshi krejt të dhënat)"
 
@@ -3434,6 +3465,12 @@ msgstr "Dhjetor"
 msgid "Clock"
 msgstr "Sahat"
 
+#~ msgid "Encrypted _Persistent Storage"
+#~ msgstr "Depozitë e _Qëndrueshme e Fshehtëzuar"
+
+#~ msgid "Enter your passphrase to unlock the persistent storage"
+#~ msgstr "Që të shkyçet depozita e qëndrueshme, jepni frazëkalimin tuaj"
+
 #, python-format
 #~ msgid ""
 #~ "<h1>Help us fix your bug!</h1>\n"
diff --git a/po/sr.po b/po/sr.po
index 95dac6c4384..4708357705a 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
 "PO-Revision-Date: 2023-02-11 12:38+0000\n"
 "Last-Translator: emma peel <emma.peel@riseup.net>\n"
 "Language-Team: Serbian <https://hosted.weblate.org/projects/tor/tails-gui/sr/"
@@ -476,9 +476,9 @@ msgid "Additional Settings"
 msgstr "Dodatna podešavanja"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "Otkaži"
@@ -551,27 +551,27 @@ msgstr "Isključeno"
 msgid "Off (default)"
 msgstr "Isključeno (podrazumevano)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
 #, fuzzy
-msgid "Persistent Storage Not Unlocked"
+msgid "Persistent Storage Still Locked"
 msgstr "Brisanje trajnog prostora..."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
 #, fuzzy
-msgid "Continue Without Persistent Storage"
+msgid "Start Without Persistent Storage"
 msgstr "Pravim %sMB trajni sloj"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 #, fuzzy
 msgid "Don't _Create Persistent Storage"
 msgstr "Pravim %sMB trajni sloj"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 #, fuzzy
 msgid "_Create Persistent Storage"
@@ -593,7 +593,6 @@ msgstr "Откључавам…"
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr "Откључај"
 
@@ -810,7 +809,7 @@ msgstr ""
 msgid "Synchronizing data on disk..."
 msgstr "Sinhronizacija podataka na disku..."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
@@ -818,63 +817,63 @@ msgstr ""
 "Gresška: postavljanje oznake ili čitanje UUID vašeg uređaja neuspelo. Nije "
 "moguće nastaviti."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr "Instalacija zavrsena! (%s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr "Instalacija Tails-a je neuspešna!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr "Tails instaler"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr "Nadogradi"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr "Uputstva za ručnu nadogradnju"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr "Инсталирај"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr "Uputstva za instaliranje"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(size)s %(vendor)s %(model)s uređaj (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr "Nije odabrana ni jedna ISO slika."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr "Molimo odaberite Tails ISO sliku."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -882,14 +881,14 @@ msgid ""
 "a different model."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
 "%(size)s GB is required)."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -897,65 +896,65 @@ msgid ""
 "%(dl_url)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr ""
 "Nije pronađen nijedan uređaj koji je odgovarajuć za instaliranje Tails-a."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr "Molimo ubacite USB fleš memoriju ili SD karticu od barem %0.1f GB."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr "Došlo je do greške prilikom instaliranja Tails-a"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr "Instalacija zavrsena!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr "Nije moguce pokrenuti uredjaj."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(parent_size)s %(vendor)s %(model)s uređaj (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
 "The persistent storage on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
 "All data on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr "Potvrdi odabrani USB fleš"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
@@ -963,7 +962,7 @@ msgstr ""
 "Odabranu datoteku nije moguće pročitati. Molimo promenite dozvole pristupa "
 "ili odaberite drugu datoteku."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
@@ -971,7 +970,7 @@ msgstr ""
 "Ne mozete koriti izabran fajl. Mozda cete imati vise srece ako premestite "
 "vas ISO u glavni direktorijum vaseg uredjaja (npr. c:\\)."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr "%(filename)s odabran."
@@ -1046,7 +1045,7 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1108,7 +1107,7 @@ msgstr "nije dostupno"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -1117,7 +1116,7 @@ msgstr ""
 "{details} Molimo proverite Vašu listu dodatnih softvera ili pročitajte "
 "sistemski dnevnik logova kako biste razumeli u čemu je problem."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
@@ -1125,120 +1124,120 @@ msgstr ""
 "Molimo proverite Vašu listu dodatnih softvera ili pročitajte sistemski "
 "dnevnik logova kako biste razumeli u čemu je problem."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr "Prikaži dnevnik"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "Konfiguriši"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} i {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ","
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "Dodajte {packages} na Vaše dodatne softvere?"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr "Instaliraj svaki put"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr "Instaliraj samo jednom"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr "Konfiguracija Vaših dodatnih softvera je neuspešna."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr "Možeš automatski instalirati {packages} pri pokretanju Tails-a"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "Uklonite {packages} iz Vašeg dodatnog softvera?"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr "Ovo će automatski zaustaviti instaliranje {packages}."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "Ukloni"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr "Ovo može potrajati nekoliko minuta."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr "Instalacija dodatnog softvera je neuspešna"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr "Instalacija dodatnog softvera je uspešna"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr "Neuspešna provera nadogradnji Vašeg dodatnog softvera"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -1246,11 +1245,11 @@ msgstr ""
 "Molimo proverite vezu sa mrežom, ponovo pokrenite Tails ili pročitajte "
 "sistemski dnevnik logova kako biste razumeli u čemu je greška."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr "Neuspešno nadograđivanje Vašeg dodatnog softvera"
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "Dokumentacija"
 
@@ -1386,19 +1385,19 @@ msgid ""
 msgstr ""
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr "greška:"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr "Upozorenje: primećena je virtualna mašina!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr "Upozorenje: primećena je non-free virtualna mašina!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1406,11 +1405,11 @@ msgid ""
 "software."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr ""
 
@@ -1745,57 +1744,57 @@ msgstr ""
 msgid "Choose File Container"
 msgstr "Odaberite spremište datoteka"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 msgid "_Cancel"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr "Pokretanje nesigurnog pregledača..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr "Ovo može potrajati, molimo budite strpljivi."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr "Isključivanje nesigurnog pregledača..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
@@ -1803,13 +1802,13 @@ msgstr ""
 "Ovo će možda potrajati, nemojte ponovo pokretati nesigurni pregledač pre "
 "njegovog pravilnog isključenja."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr "Nesigurni pregledač"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
@@ -1817,22 +1816,22 @@ msgstr ""
 "Drugi nesigurni pregledač je pokrenut ili se čisti. Molimo pokušajte malo "
 "kasnije."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr "Neuspešno izvršavanje chroot komande."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr "Neuspešno konfigurisanje pregledača."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
 "network."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr "Neuspešno pokretanje pregledača."
 
@@ -2005,6 +2004,7 @@ msgid "Tails documentation"
 msgstr "Tails dokumentacija"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 msgid "Persistent Storage"
 msgstr ""
@@ -2031,6 +2031,16 @@ msgstr "Naučite kako se koristi Tails "
 msgid "Learn more about Tails"
 msgstr "Saznajte više o Tails-u."
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "Pravim %sMB trajni sloj"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr ""
@@ -2099,7 +2109,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr "Administratorska lozinka"
 
@@ -2126,7 +2136,7 @@ msgid "Disable"
 msgstr "Искључи"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr ""
 
@@ -2147,7 +2157,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr "Konfigurisanje mreže"
 
@@ -2208,56 +2218,58 @@ msgstr ""
 msgid "Welcome to Tails!"
 msgstr "Dobrodošli u Tails!"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 msgid "_Persistent Storage"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr "Jezik i region"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr "Podrazumevana podešavanja"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
 msgid "Show Passphrase"
 msgstr "Прикажи лозинку"
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "Lozinka:"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr "_Dodatna Podešavanja"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr "Dodaj Dodatna podešavanja"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
@@ -2265,11 +2277,11 @@ msgstr ""
 "Podrazumevana podešavanja su najčešće sigurna. Za dodavanje prilagođenih "
 "podešavanja pritisni \"+\" dugme koje se nalazi ispod."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 msgid "Shutdown"
 msgstr "Гашење"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr "_Pokreni Tails"
 
@@ -2374,10 +2386,20 @@ msgstr "Pravljenje trajnog prostora..."
 msgid "System Settings"
 msgstr "Podrazumevana podešavanja"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+#, fuzzy
+msgid "Welcome Screen"
+msgstr "Zaključaj ekran"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 msgid "Activate Welcome Screen"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+#, fuzzy
+msgid "Printers"
+msgstr "Штампачи"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 #, fuzzy
 msgid "Activate Printers"
@@ -2413,6 +2435,11 @@ msgstr "Pokreni Tor Browser"
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "Obeleživači veb pregledača"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 #, fuzzy
 msgid "Activate Tor Browser Bookmarks"
@@ -2639,11 +2666,11 @@ msgstr "_Otključaj"
 msgid "Detach this volume"
 msgstr "Otkači ovaj prostorni medij"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr "Odaberi USB fleš:"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr "Reinstaliraj (svi podaci biće obrisani)"
 
diff --git a/po/sv.po b/po/sv.po
index 68119c48dc7..279d9f354bd 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -25,7 +25,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
 "PO-Revision-Date: 2023-01-25 11:40+0000\n"
 "Last-Translator: emma peel <emma.peel@riseup.net>\n"
 "Language-Team: Swedish <https://hosted.weblate.org/projects/tor/tails-gui/sv/"
@@ -530,9 +530,9 @@ msgid "Additional Settings"
 msgstr "Ytterligare inställningar"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "Avbryt"
@@ -605,12 +605,12 @@ msgstr "Av"
 msgid "Off (default)"
 msgstr "Av (standard)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
 #, fuzzy
-msgid "Persistent Storage Not Unlocked"
+msgid "Persistent Storage Still Locked"
 msgstr "Skapa bestående lagring"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 #, fuzzy
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
@@ -618,17 +618,17 @@ msgstr ""
 "Vill du verkligen starta om Tails nu?\\n\\nAllt ditt nuvarande arbete kommer "
 "att gå förlorat."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
 #, fuzzy
-msgid "Continue Without Persistent Storage"
+msgid "Start Without Persistent Storage"
 msgstr "Skapa bestående lagring"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 #, fuzzy
 msgid "Don't _Create Persistent Storage"
 msgstr "Skapa bestående lagring"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 #, fuzzy
 msgid "_Create Persistent Storage"
@@ -651,7 +651,6 @@ msgstr "Låser upp…"
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr "LÃ¥s upp"
 
@@ -877,7 +876,7 @@ msgstr "Enheten är en loopback, hoppar över att återställa MBR"
 msgid "Synchronizing data on disk..."
 msgstr "Synkroniserar data på disk..."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
@@ -885,64 +884,64 @@ msgstr ""
 "Fel: Det går inte att sätta etiketten eller hämta UUID-numret för din "
 "enhet.  Det går inte att fortsätta."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr "Installationen är slutförd! (%s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr "Tails installation misslyckades!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 #, fuzzy
 msgid "Tails Installer"
 msgstr "Tails Installer"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr "Klona nuvarande Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr "Använd en hämtad Tails-ISO-bild"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr "Uppgradera"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr "Manuell uppgraderingsinstruktioner"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr "Installera"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr "Installations instruktioner"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(size)s %(vendor)s %(model)s enhet (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr "Ingen ISO-bild vald"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr "Välj en Tails-ISO-bild."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -953,7 +952,7 @@ msgstr ""
 "tillverkare och Tails kommer misslyckas starta från det. Försök installera "
 "på ett annat märke."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
@@ -962,7 +961,7 @@ msgstr ""
 "Enheten \"%(pretty_name)s\" är för liten för att installera Tails (minst "
 "%(size)s GB krävs)."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -973,33 +972,33 @@ msgstr ""
 "använda en hämtad Tails ISO-bild:\n"
 "%(dl_url)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr "Ingen enhet som är lämplig för att installera Tails kunde hittas"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr "Anslut en USB-flash-enhet eller SD-kort med minst %0.1f GB."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr "Ett fel inträffade under installationen av Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr "Installationen slutförd!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr "Det går inte att montera enheten"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(parent_size)s %(vendor)s %(model)s enhet (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
@@ -1009,11 +1008,11 @@ msgstr ""
 "\n"
 "Den bestående lagringen på detta USB-minne kommer att gå förlorad."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr "Ta bort bestående lagring och installera om"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
@@ -1023,20 +1022,20 @@ msgstr ""
 "\n"
 "Alla data på detta USB-minne kommer att gå förlorade."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr "Radera alla data och installera"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr "%(description)s%(delete_message)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr "Bekräfta mål-USB-minne"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
@@ -1044,7 +1043,7 @@ msgstr ""
 "Den valda filen kan inte läsas. Rätta till dess behörigheter eller välj en "
 "annan fil."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
@@ -1052,7 +1051,7 @@ msgstr ""
 "Det går inte att använda den valda filen.  Det kanske fungerar bättre om du "
 "flyttar din ISO till roten av din enhet (t.ex: C:\\)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr "%(filename)s vald"
@@ -1140,7 +1139,7 @@ msgstr "su är inaktiverad. Använd sudo istället."
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1206,7 +1205,7 @@ msgstr "inte tillgängligt"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -1215,7 +1214,7 @@ msgstr ""
 "{details} Kontrollera din lista över ytterligare programvara eller läs "
 "systemloggen för att förstå problemet."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
@@ -1223,56 +1222,56 @@ msgstr ""
 "Kontrollera din lista över ytterligare programvara eller läs systemloggen "
 "för att förstå problemet."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr "Visa loggen"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "Konfigurera"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} och {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ", "
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "Lägg {packages} till dina extra program?"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 "För att installera det automatiskt från din bestående lagring när du Tails "
 "startas."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr "Installera varje gång"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr "Installera endast en gång"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr "Konfigurationen av extra programvara misslyckades."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -1280,67 +1279,67 @@ msgstr ""
 "För att installera det automatiskt när du startar Tails kan du skapa en "
 "bestående lagring och aktivera <b>Extra program</b>-funktionen."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr "Skapa bestående lagring"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr "Skapandet av din bestående lagring misslyckades."
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr "Du kan installera {packages} automatiskt när Tails startas"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr "För att göra det måste du köra Tails från ett USB-minne."
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "Ta bort {packages} från dina extra program?"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr "Detta kommer att sluta installera {packages} automatiskt."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "Ta bort"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr "Installera dina extra program från bestående lagring..."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr "Detta kan ta flera minuter."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr "Installationen av dina extra program misslyckades"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr "Installation av extraprogram lyckades"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr "Kontrollen för uppgraderingar av dina extra program misslyckades"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -1348,11 +1347,11 @@ msgstr ""
 "Kontrollera din nätverksanslutning, starta om Tails, eller läs systemloggen "
 "för att förstå problemet."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr "Uppgraderingen av dina extra program misslyckades"
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "Dokumentation"
 
@@ -1514,19 +1513,19 @@ msgstr ""
 "Se {manual_upgrade_url}"
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr "fel:"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr "Varning: Virtuell maskin upptäcktes!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr "Varning: virtuell maskin som inte är fri upptäcktes!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1537,11 +1536,11 @@ msgstr ""
 "Tails. Bara fri mjukvara kan räknas som pålitlig, för både värdsystemet och "
 "virtualiseringsmjukvaran."
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr "Visa inte igen"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr "Läs mer"
 
@@ -1894,32 +1893,32 @@ msgstr ""
 msgid "Choose File Container"
 msgstr "Välj filbehållare"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 #, fuzzy
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr "Inaktivera den osäkra webbläsaren (standard)"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr "_Starta om"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 msgid "_Cancel"
 msgstr "_Avbryt"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
@@ -1927,27 +1926,27 @@ msgstr ""
 "Vill du verkligen starta om Tails nu?\\n\\nAllt ditt nuvarande arbete kommer "
 "att gå förlorat."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr "Starta om nu"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr "Det gick inte att starta om systemet."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr "Startar den osäkra webbläsaren..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr "Detta kan ta en liten stund, ha tålamod."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr "Stänger av den osäkra webbläsaren..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
@@ -1955,13 +1954,13 @@ msgstr ""
 "Detta kan ta ett tag och du kanske inte kan startar om den osäkra "
 "webbläsaren förrän den är ordentligt avstängd."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr "Osäker webbläsare"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
@@ -1969,15 +1968,15 @@ msgstr ""
 "En annan osäker webbläsare körs eller rensas för närvarande. Försök igen om "
 "en stund."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr "Det gick inte att ställa in chroot."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr "Det gick inte att konfigurera webbläsare."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
@@ -1987,7 +1986,7 @@ msgstr ""
 "den osäkra webbläsaren måste du först ansluta till ett Wi-Fi-, trådbundet "
 "eller mobilt nätverk."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr "Det gick inte att starta webbläsare."
 
@@ -2164,6 +2163,7 @@ msgid "Tails documentation"
 msgstr "Tails-dokumentation"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 #, fuzzy
 msgid "Persistent Storage"
@@ -2194,6 +2194,16 @@ msgstr "Lär dig hur du använder Tails"
 msgid "Learn more about Tails"
 msgstr "Läs mer om Tails"
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "Skapa bestående lagring"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr "Installera, klona, uppgradera Tails"
@@ -2264,7 +2274,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr "Administrationslösenord"
 
@@ -2291,7 +2301,7 @@ msgid "Disable"
 msgstr "Inaktivera"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr "MAC-adressanonymisering"
 
@@ -2316,7 +2326,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr "Anonymisera inte MAC-adresser"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr "Nätverkskonfiguration"
 
@@ -2397,19 +2407,19 @@ msgstr "Inställningarna lästes in från den bestående lagringen."
 msgid "Welcome to Tails!"
 msgstr "Välkommen till Tails!"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 #, fuzzy
 msgid "_Persistent Storage"
 msgstr "Skapa bestående lagring"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 #, fuzzy
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
@@ -2417,41 +2427,44 @@ msgstr ""
 "För att installera det automatiskt från din bestående lagring när du Tails "
 "startas."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr "Språk & region"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr "Standardinställningar"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
-msgstr "Krypterad _bestående lagring"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
 msgid "Show Passphrase"
 msgstr "Visa lösenfras"
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
-msgstr "Mata in din lösenfras för att låsa upp den bestående lagringen"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "Lösenord:"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
+msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+#, fuzzy
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 "Din bestående lagring är upplåst. Starta om Tails för att låsa den igen."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr "_Ytterligare inställningar"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr "Lägg till ytterligare inställning"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
@@ -2459,11 +2472,11 @@ msgstr ""
 "Standardinställningarna är säkra i de flesta situationerna. För att lägga "
 "till en anpassad inställning, tryck på \"+\"-knappen nedan."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 msgid "Shutdown"
 msgstr "Stäng av"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr "_Starta Tails"
 
@@ -2570,11 +2583,21 @@ msgstr "Skapa bestående lagring"
 msgid "System Settings"
 msgstr "Standardinställningar"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+#, fuzzy
+msgid "Welcome Screen"
+msgstr "Välkomstskärm"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 #, fuzzy
 msgid "Activate Welcome Screen"
 msgstr "Välkomstskärm"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+#, fuzzy
+msgid "Printers"
+msgstr "Skrivare"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 #, fuzzy
 msgid "Activate Printers"
@@ -2610,6 +2633,11 @@ msgstr "Tor-bro"
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "Webbläsarens bokmärken"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 #, fuzzy
 msgid "Activate Tor Browser Bookmarks"
@@ -2844,11 +2872,11 @@ msgstr "_LÃ¥s upp"
 msgid "Detach this volume"
 msgstr "Lösgör denna volym"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr "MÃ¥l-USB-minne:"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr "Installera om (ta bort all data)"
 
@@ -3421,6 +3449,12 @@ msgstr "December"
 msgid "Clock"
 msgstr "Klocka"
 
+#~ msgid "Encrypted _Persistent Storage"
+#~ msgstr "Krypterad _bestående lagring"
+
+#~ msgid "Enter your passphrase to unlock the persistent storage"
+#~ msgstr "Mata in din lösenfras för att låsa upp den bestående lagringen"
+
 #, python-format
 #~ msgid ""
 #~ "<h1>Help us fix your bug!</h1>\n"
diff --git a/po/sw.po b/po/sw.po
index 1137dd26b66..0d7013339bc 100644
--- a/po/sw.po
+++ b/po/sw.po
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
 "PO-Revision-Date: 2023-01-26 19:00+0000\n"
 "Last-Translator: emma peel <emma.peel@riseup.net>\n"
 "Language-Team: Swahili <https://hosted.weblate.org/projects/tor/tails-gui/sw/"
@@ -434,9 +434,9 @@ msgid "Additional Settings"
 msgstr "Mpangilio wa ukaguzi"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "futa"
@@ -509,27 +509,27 @@ msgstr ""
 msgid "Off (default)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
 #, fuzzy
-msgid "Persistent Storage Not Unlocked"
+msgid "Persistent Storage Still Locked"
 msgstr "Sauti yenye kuendelea haijafungwa."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
 #, fuzzy
-msgid "Continue Without Persistent Storage"
+msgid "Start Without Persistent Storage"
 msgstr "Tengeneza %s MB inayounganisha"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 #, fuzzy
 msgid "Don't _Create Persistent Storage"
 msgstr "Tengeneza %s MB inayounganisha"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 #, fuzzy
 msgid "_Create Persistent Storage"
@@ -550,7 +550,6 @@ msgstr ""
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr ""
 
@@ -772,7 +771,7 @@ msgstr ""
 msgid "Synchronizing data on disk..."
 msgstr "inapangilia taarifa kwenye diski"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
@@ -780,63 +779,63 @@ msgstr ""
 "Hitilafu: haiwezi kupanga lebo au kuchukua UUID ya kifaa chako. haiwezi "
 "kuendelea."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr "imekamilisha kusikanisha (%s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr "Usakinisha wa muda mrefu umeshindwa."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr "Kisanikishi cha siri"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr "Tumia ISO ya picha iliyopakuliwa"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr "Kuboresha"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr "maelekezo ya kukuongoza wakati wa kuboresha"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr "sakinisha"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr "maelekezo ya kusakinisha"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(size)s %(vendor)s %(model)s kifaa (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr "Hakuna picha ya ISO iliyochaguliwa"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -844,7 +843,7 @@ msgid ""
 "a different model."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
@@ -853,7 +852,7 @@ msgstr ""
 "kifaa \"%(pretty_name)s\" ni kidogo sana kuweza kupakia ( angalau %(size)s "
 "GB inahitajika)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -861,77 +860,77 @@ msgid ""
 "%(dl_url)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr "Kosa limejitokeza wakati wa kupakia"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr "imekamilika usakinishaji"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr "Haiwezi kuunganisha kifaa"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 "%(parent_size)s %(vendor)s %(model)s kifaa cha kielekitroniki (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
 "The persistent storage on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
 "All data on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr "Hakikisha USB iliyokusudiwa "
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr "%(filename)s imechaguliwa"
@@ -1006,7 +1005,7 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1069,143 +1068,143 @@ msgstr ""
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
 "log to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr "Onyesha Ingia"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "Sanidi"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr "Sakinisha Kila Muda"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr "Sakinisha mara moja tu"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "Ondoa"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "kuhifadhi kumbukumbu"
 
@@ -1338,19 +1337,19 @@ msgid ""
 msgstr ""
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1358,11 +1357,11 @@ msgid ""
 "software."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr "Jifunze Zaidi"
 
@@ -1689,90 +1688,90 @@ msgstr ""
 msgid "Choose File Container"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 msgid "_Cancel"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr "Anzisha tena sasa"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
 "network."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr ""
 
@@ -1930,6 +1929,7 @@ msgid "Tails documentation"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 msgid "Persistent Storage"
 msgstr ""
@@ -1956,6 +1956,16 @@ msgstr ""
 msgid "Learn more about Tails"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "Tengeneza %s MB inayounganisha"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr ""
@@ -2022,7 +2032,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr ""
 
@@ -2046,7 +2056,7 @@ msgid "Disable"
 msgstr "Usiwezeshe"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr ""
 
@@ -2067,7 +2077,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr ""
 
@@ -2126,18 +2136,18 @@ msgstr ""
 msgid "Welcome to Tails!"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 msgid "_Persistent Storage"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 #, fuzzy
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
@@ -2145,51 +2155,52 @@ msgstr ""
 "Unaweza kusakinisha programu ya ziada kiotomatiki kutoka kwa hifadhi yako "
 "inayoendelea wakati wa kuanza Tails"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr "Mipangilio chaguomsingi"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
+msgid "Show Passphrase"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
-msgid "Show Passphrase"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+msgid "_Passphrase"
 msgstr ""
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 #, fuzzy
 msgid "Shutdown"
 msgstr "Shutdown"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr ""
 
@@ -2287,11 +2298,21 @@ msgstr "Futa sauti inayoendelea..."
 msgid "System Settings"
 msgstr "Mipangilio chaguomsingi"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+#, fuzzy
+msgid "Welcome Screen"
+msgstr "Karibu skrini"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 #, fuzzy
 msgid "Activate Welcome Screen"
 msgstr "Karibu skrini"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+#, fuzzy
+msgid "Printers"
+msgstr "Pinta"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 #, fuzzy
 msgid "Activate Printers"
@@ -2326,6 +2347,11 @@ msgstr ""
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "Alamisho la kivinjari"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 #, fuzzy
 msgid "Activate Tor Browser Bookmarks"
@@ -2548,11 +2574,11 @@ msgstr ""
 msgid "Detach this volume"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr ""
 
diff --git a/po/ta.po b/po/ta.po
index ed4600c66eb..48279797cff 100644
--- a/po/ta.po
+++ b/po/ta.po
@@ -10,7 +10,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
 "PO-Revision-Date: 2023-01-25 11:40+0000\n"
 "Last-Translator: emma peel <emma.peel@riseup.net>\n"
 "Language-Team: Tamil <https://hosted.weblate.org/projects/tor/tails-gui/ta/"
@@ -437,9 +437,9 @@ msgid "Additional Settings"
 msgstr ""
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "ரத்துசெய்"
@@ -511,27 +511,27 @@ msgstr "நிறுத்து"
 msgid "Off (default)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
 #, fuzzy
-msgid "Persistent Storage Not Unlocked"
+msgid "Persistent Storage Still Locked"
 msgstr "_ஒரேநிலை சேமிப்பகத்தை உருவாக்கு"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
 #, fuzzy
-msgid "Continue Without Persistent Storage"
+msgid "Start Without Persistent Storage"
 msgstr "_ஒரேநிலை சேமிப்பகத்தை உருவாக்கு"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 #, fuzzy
 msgid "Don't _Create Persistent Storage"
 msgstr "_ஒரேநிலை சேமிப்பகத்தை உருவாக்கு"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 #, fuzzy
 msgid "_Create Persistent Storage"
@@ -553,7 +553,6 @@ msgstr ""
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr ""
 
@@ -770,7 +769,7 @@ msgstr "இதுவொரு loopback கருவி, MBR மீட்டம
 msgid "Synchronizing data on disk..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
@@ -778,63 +777,63 @@ msgstr ""
 "பிழை: அடையாளச் சிட்டையை நிறுவ முடியவில்லை அல்லது உங்களுடைய கருவியின் UUID ஐப் பெற "
 "முடியவில்லை. மேற்கொண்டு தொடர முடியவில்லை."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr "நிறுவுதல் முடிந்தது! (%s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -842,14 +841,14 @@ msgid ""
 "a different model."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
 "%(size)s GB is required)."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -857,76 +856,76 @@ msgid ""
 "%(dl_url)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr "நிறுவுதல் முடிந்தது!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr "கருவியை ஏற்ற இயலவில்லை"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
 "The persistent storage on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
 "All data on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr "%(filename)s தேர்வுசெய்யபட்டது"
@@ -1001,7 +1000,7 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1064,143 +1063,143 @@ msgstr ""
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
 "log to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "கட்டமைக்க"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "நீக்கு"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "ஆவணப்படுத்தல்"
 
@@ -1331,19 +1330,19 @@ msgid ""
 msgstr ""
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1351,11 +1350,11 @@ msgid ""
 "software."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr "மேலும் அறிய"
 
@@ -1682,90 +1681,90 @@ msgstr ""
 msgid "Choose File Container"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 msgid "_Cancel"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
 "network."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr ""
 
@@ -1938,6 +1937,7 @@ msgid "Tails documentation"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 #, fuzzy
 msgid "Persistent Storage"
@@ -1965,6 +1965,16 @@ msgstr "Tails எப்படி "
 msgid "Learn more about Tails"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "_ஒரேநிலை சேமிப்பகத்தை உருவாக்கு"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr ""
@@ -2031,7 +2041,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr ""
 
@@ -2055,7 +2065,7 @@ msgid "Disable"
 msgstr "முடக்கு"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr ""
 
@@ -2076,7 +2086,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr ""
 
@@ -2135,19 +2145,19 @@ msgstr ""
 msgid "Welcome to Tails!"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 #, fuzzy
 msgid "_Persistent Storage"
 msgstr "_ஒரேநிலை சேமிப்பகத்தை உருவாக்கு"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 #, fuzzy
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
@@ -2155,51 +2165,53 @@ msgstr ""
 "Tails ஐ துவக்கும்போது உங்கள் ஒரேநிலை சேமிப்பகத்தில் இருந்து கூடுதல் மென்பொருளை "
 "தானியக்கமாக உங்களால் நிறுவ இயலும்."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
 msgid "Show Passphrase"
 msgstr ""
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "கடவுச்சொற்றொடர்:"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 #, fuzzy
 msgid "Shutdown"
 msgstr "Shutdown"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr ""
 
@@ -2300,10 +2312,18 @@ msgstr "_ஒரேநிலை சேமிப்பகத்தை உருவ
 msgid "System Settings"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+msgid "Welcome Screen"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 msgid "Activate Welcome Screen"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+msgid "Printers"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 msgid "Activate Printers"
 msgstr ""
@@ -2336,6 +2356,11 @@ msgstr ""
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "Tor உலாவி"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 msgid "Activate Tor Browser Bookmarks"
 msgstr ""
@@ -2557,11 +2582,11 @@ msgstr ""
 msgid "Detach this volume"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr ""
 
diff --git a/po/tails.pot b/po/tails.pot
index b3a1b9ac282..dbef64bb4b2 100644
--- a/po/tails.pot
+++ b/po/tails.pot
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -429,9 +429,9 @@ msgid "Additional Settings"
 msgstr ""
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr ""
@@ -502,24 +502,24 @@ msgstr ""
 msgid "Off (default)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
-msgid "Persistent Storage Not Unlocked"
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+msgid "Persistent Storage Still Locked"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
-msgid "Continue Without Persistent Storage"
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
+msgid "Start Without Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 msgid "Don't _Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 msgid "_Create Persistent Storage"
 msgstr ""
@@ -539,7 +539,6 @@ msgstr ""
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr ""
 
@@ -756,69 +755,69 @@ msgstr ""
 msgid "Synchronizing data on disk..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -826,14 +825,14 @@ msgid ""
 "a different model."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
 "%(size)s GB is required)."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -841,76 +840,76 @@ msgid ""
 "%(dl_url)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
 "The persistent storage on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
 "All data on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr ""
@@ -985,7 +984,7 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1045,143 +1044,143 @@ msgstr ""
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
 "log to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr ""
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr ""
 
@@ -1312,19 +1311,19 @@ msgid ""
 msgstr ""
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1332,11 +1331,11 @@ msgid ""
 "software."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr ""
 
@@ -1663,90 +1662,90 @@ msgstr ""
 msgid "Choose File Container"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 msgid "_Cancel"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
 "network."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr ""
 
@@ -1904,6 +1903,7 @@ msgid "Tails documentation"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 msgid "Persistent Storage"
 msgstr ""
@@ -1930,6 +1930,15 @@ msgstr ""
 msgid "Learn more about Tails"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+msgid "Back Up Persistent Storage"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr ""
@@ -1996,7 +2005,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr ""
 
@@ -2020,7 +2029,7 @@ msgid "Disable"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr ""
 
@@ -2041,7 +2050,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr ""
 
@@ -2100,66 +2109,67 @@ msgstr ""
 msgid "Welcome to Tails!"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 msgid "_Persistent Storage"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
+msgid "Show Passphrase"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
-msgid "Show Passphrase"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+msgid "_Passphrase"
 msgstr ""
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 msgid "Shutdown"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr ""
 
@@ -2253,10 +2263,18 @@ msgstr ""
 msgid "System Settings"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+msgid "Welcome Screen"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 msgid "Activate Welcome Screen"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+msgid "Printers"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 msgid "Activate Printers"
 msgstr ""
@@ -2289,6 +2307,10 @@ msgstr ""
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+msgid "Tor Browser Bookmarks"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 msgid "Activate Tor Browser Bookmarks"
 msgstr ""
@@ -2498,11 +2520,11 @@ msgstr ""
 msgid "Detach this volume"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr ""
 
diff --git a/po/te.po b/po/te.po
index e10557b281f..f29cdaa1378 100644
--- a/po/te.po
+++ b/po/te.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
 "PO-Revision-Date: 2023-02-11 10:42+0000\n"
 "Last-Translator: emma peel <emma.peel@riseup.net>\n"
 "Language-Team: Telugu <https://hosted.weblate.org/projects/tor/tails-gui/te/"
@@ -430,9 +430,9 @@ msgid "Additional Settings"
 msgstr ""
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #, fuzzy
 msgid "Cancel"
@@ -504,24 +504,24 @@ msgstr ""
 msgid "Off (default)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
-msgid "Persistent Storage Not Unlocked"
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+msgid "Persistent Storage Still Locked"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
-msgid "Continue Without Persistent Storage"
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
+msgid "Start Without Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 msgid "Don't _Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 msgid "_Create Persistent Storage"
 msgstr ""
@@ -541,7 +541,6 @@ msgstr ""
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr ""
 
@@ -758,69 +757,69 @@ msgstr ""
 msgid "Synchronizing data on disk..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
 msgstr "పొరపాటు: మీ పరికరం యొక్క లేబుల్ లేక UUID సెట్ చచెయ్యలేదు. కొనసాగించలేరు"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr "సంస్థాపన పూర్తి! (%s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -828,14 +827,14 @@ msgid ""
 "a different model."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
 "%(size)s GB is required)."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -843,76 +842,76 @@ msgid ""
 "%(dl_url)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
 "The persistent storage on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
 "All data on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr ""
@@ -987,7 +986,7 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1047,143 +1046,143 @@ msgstr ""
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
 "log to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr ""
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "పత్రాలు"
 
@@ -1314,19 +1313,19 @@ msgid ""
 msgstr ""
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1334,11 +1333,11 @@ msgid ""
 "software."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr ""
 
@@ -1665,91 +1664,91 @@ msgstr ""
 msgid "Choose File Container"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 #, fuzzy
 msgid "_Cancel"
 msgstr "Cancel"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
 "network."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr ""
 
@@ -1907,6 +1906,7 @@ msgid "Tails documentation"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 msgid "Persistent Storage"
 msgstr ""
@@ -1933,6 +1933,15 @@ msgstr ""
 msgid "Learn more about Tails"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+msgid "Back Up Persistent Storage"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr ""
@@ -1999,7 +2008,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr ""
 
@@ -2023,7 +2032,7 @@ msgid "Disable"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr ""
 
@@ -2044,7 +2053,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr ""
 
@@ -2103,67 +2112,68 @@ msgstr ""
 msgid "Welcome to Tails!"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 msgid "_Persistent Storage"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
+msgid "Show Passphrase"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
-msgid "Show Passphrase"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+msgid "_Passphrase"
 msgstr ""
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 #, fuzzy
 msgid "Shutdown"
 msgstr "Shutdown"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr ""
 
@@ -2257,10 +2267,18 @@ msgstr ""
 msgid "System Settings"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+msgid "Welcome Screen"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 msgid "Activate Welcome Screen"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+msgid "Printers"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 msgid "Activate Printers"
 msgstr ""
@@ -2293,6 +2311,10 @@ msgstr ""
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+msgid "Tor Browser Bookmarks"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 msgid "Activate Tor Browser Bookmarks"
 msgstr ""
@@ -2502,11 +2524,11 @@ msgstr ""
 msgid "Detach this volume"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr ""
 
diff --git a/po/th.po b/po/th.po
new file mode 100644
index 00000000000..b9bb5ae5f1d
--- /dev/null
+++ b/po/th.po
@@ -0,0 +1,3222 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+# Acclaro Thailand <bkk-project@acclaro.com>, 2018
+# Arthit Suriyawongkul, 2013
+# Arthit Suriyawongkul, 2020
+# kanesayan gwangsai <thailand.1.2009.00067.77.9@gmail.com>, 2016
+# Mishari Muqbil <mishari@mishari.net>, 2015
+# Tee de Jatt, 2021
+# lanichita <vainilla7@gmail.com>, 2013
+msgid ""
+msgstr ""
+"Project-Id-Version: Tor Project\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
+"PO-Revision-Date: 2023-03-05 10:37+0000\n"
+"Last-Translator: emma peel <emma.peel@riseup.net>\n"
+"Language-Team: Thai <https://hosted.weblate.org/projects/tor/tails-gui/th/>\n"
+"Language: th\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Generator: Weblate 4.16.2-dev\n"
+
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8
+#: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:557
+msgid "Additional Software"
+msgstr "ซอฟต์แวร์เพิ่มเติม"
+
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:51
+msgid ""
+"You can install additional software automatically from your persistent "
+"storage when starting Tails."
+msgstr ""
+"คุณสามารถติดตั้งซอฟต์แวร์เพิ่มเติมได้อย่างอัตโนมัติจากพื้นที่เก็บข้อมูล Persistent Storage "
+"ของคุณเมื่อเริ่มใช้งาน Tails"
+
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:77
+msgid ""
+"The following software is installed automatically from your persistent "
+"storage when starting Tails."
+msgstr ""
+"ได้ติดตั้งซอฟต์แวร์นี้แล้วอย่างอัตโนมัติจากพื้นที่เก็บข้อมูล Persistent Storage ของคุณเมื่อเริ่มใช้งาน "
+"Tails"
+
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
+msgid ""
+"To add more, install some software using <a href=\"synaptic."
+"desktop\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal."
+"desktop\">APT on the command line</a>."
+msgstr ""
+"หากต้องการเพิ่มซอฟต์แวร์ สามารถติดตั้งโดยการใช้โปรแกรม <a href=\"synaptic."
+"desktop\">Synaptic Package Manager</a> หรือ <a href=\"org.gnome.Terminal."
+"desktop\">APT ในคอมมานด์ไลน์</a>."
+
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
+msgid "_Create persistent storage"
+msgstr "_สร้างพื้นที่เก็บข้อมูล Persistent Storage"
+
+#: config/chroot_local-includes/usr/local/bin/electrum:72
+msgid "Persistence is disabled for Electrum"
+msgstr "ได้ปิดการใช้พื้นที่เก็บข้อมูล Persistent Storage ต่อกระเป๋าเงินบิตคอย​น์ Electrum"
+
+#: config/chroot_local-includes/usr/local/bin/electrum:74
+msgid ""
+"When you reboot Tails, all of Electrum's data will be lost, including your "
+"Bitcoin wallet.\n"
+"It is strongly recommended to only run Electrum when its persistence feature "
+"is activated."
+msgstr ""
+"เมื่อคุณได้เปิดใช้ Tails ใหม่อีกครั้ง คุณจะสูญเสียข้อมูลของ Electrum "
+"ทั้งหมดรวมไปถึงกระเป๋าเงินบิตคอย​น์\n"
+"เราแนะนำว่าคุณควรใช้ Electrum ได้ก็ต่อเมื่อได้เปิดใช้งานฟีเจอร์ persistence ของ Electrum "
+"แล้วเท่านั้น"
+
+#: config/chroot_local-includes/usr/local/bin/electrum:75
+msgid "Do you want to start Electrum anyway?"
+msgstr "คุณยังต้องการที่จะเริ่มใช้ Electrum อยู่ดี?"
+
+#: config/chroot_local-includes/usr/local/bin/electrum:78
+msgid "_Launch"
+msgstr "_เริ่มใช้งาน"
+
+#: config/chroot_local-includes/usr/local/bin/electrum:79
+msgid "_Exit"
+msgstr "_ออกจากระบบ"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/DownloadProgress.pm:59
+msgid "Unknown time"
+msgstr "ไม่ทราบเวลา"
+
+#. Translators: Don't translate {count}, it's a place holder and
+#. will be replaced.
+#. y is the short form for years.
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/DownloadProgress.pm:78
+#, perl-brace-format
+msgid "1y"
+msgid_plural "{count}y"
+msgstr[0] "{count}y"
+
+#. Translators: Don't translate {count}, it's a place holder and
+#. will be replaced.
+#. d is the short form for days.
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/DownloadProgress.pm:82
+#, perl-brace-format
+msgid "1d"
+msgid_plural "{count}d"
+msgstr[0] "{count}d"
+
+#. Translators: Don't translate {count}, it's a place holder and
+#. will be replaced.
+#. h is the short form for hours;
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/DownloadProgress.pm:86
+#, perl-brace-format
+msgid "1h"
+msgid_plural "{count}h"
+msgstr[0] "{count}h"
+
+#. Translators: Don't translate {count}, it's a place holder and
+#. will be replaced.
+#. m is the short form for minutes;
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/DownloadProgress.pm:90
+#, perl-brace-format
+msgid "1m"
+msgid_plural "{count}m"
+msgstr[0] "{count}m"
+
+#. Translators: Don't translate {count}, it's a place holder and
+#. will be replaced.
+#. s is the short form for seconds;
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/DownloadProgress.pm:94
+#, perl-brace-format
+msgid "1s"
+msgid_plural "{count}s"
+msgstr[0] "{count}s"
+
+#. Translators: don't translate {time}, {downloaded}, {size}
+#. and {speed}, they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/DownloadProgress.pm:139
+#, fuzzy, perl-brace-format
+msgid "#{time} left — {downloaded} of {size} ({speed}/sec)\n"
+msgstr "#{time} left — {downloaded} of {size} ({speed}/sec)\n"
+
+#. Translators: KB is the short form for kilobyte
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Role/FormatByte.pm:33
+msgid "KB"
+msgstr "กิโลไบต์"
+
+#. Translators: MB is the short form for megabyte
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Role/FormatByte.pm:35
+msgid "MB"
+msgstr "เมกะไบต์"
+
+#. Translators: GB is the short form for gigabyte
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Role/FormatByte.pm:37
+msgid "GB"
+msgstr "กิกะไบต์"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Role/FormatByte.pm:43
+msgid "bytes"
+msgstr "ไบต์"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:197
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:859
+msgid ""
+"For debugging information, execute the following command: sudo tails-"
+"debugging-info"
+msgstr "สำหรับข้อมูลเพื่อการดีบัก ใช้คำสั่ง: sudo tails-debugging-info"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:289
+msgid ""
+"<b>An error occured while updating the signing key.</b>\\n\\n<b>This "
+"prevents determining whether an upgrade is available from our website.</"
+"b>\\n\\nCheck your network connection, and restart Tails to try upgrading "
+"again.\\n\\nIf the problem persists, go to file:///usr/share/doc/tails/"
+"website/doc/upgrade/error/check.en.html"
+msgstr ""
+"<b>เกิดข้อผิดพลาดขณะกำลังเซ็นกุญแจ</"
+"b>\\n\\n<b>การดำเนินการนี้จะป้องกันการระบุได้ว่ามีการปรับปรุงรุ่นที่มีอยู่ในเว็บไซต์ของเราหรือไม่ "
+"</b>\\n\\nโปรดตรวจสอบการเชื่อมต่อของเครือข่ายคุณ และเปิดใช้งาน Tails "
+"ใหม่อีกครั้้งเพื่อลองปรับรุ่นอีก\\n\\nหากยังไม่สามารถแก้ปัญหาได้ โปรดไปที่ file:///usr/share/"
+"doc/tails/website/doc/upgrade/error/check.en.html"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:303
+msgid "Error while downloading the signing key"
+msgstr "เกิดข้อผิดพลาดขณะกำลังโหลดการเซ็นกุญแจ"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:314
+msgid "Error while updating the signing key"
+msgstr "เกิดข้อผิดพลาดขณะกำลังอัปเดตการเซ็นกุญแจ"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:341
+msgid "Error while checking for upgrades"
+msgstr "เกิดข้อผิดพลาดขณะตรวจหาการอัพเกรด"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:343
+msgid ""
+"<b>Could not determine whether an upgrade is available from our website.</"
+"b>\n"
+"\n"
+"Check your network connection, and restart Tails to try upgrading again.\n"
+"\n"
+"If the problem persists, go to file:///usr/share/doc/tails/website/doc/"
+"upgrade/error/check.en.html"
+msgstr ""
+"<b>ไม่สามารถตรวจสอบได้ว่ามีการอัพเกรดใหม่บนเว็บไซต์ของเราหรือไม่</b>\n"
+"\n"
+"ตรวจสอบการเชื่อมต่อเครือข่ายของคุณ แล้วเริ่ม Tails ใหม่อีกครั้งเพื่อลองอัพเกรด\n"
+"\n"
+"ถ้าหากยังพบปัญหาให้ไปยัง\n"
+"file:///usr/share/doc/tails/website/doc/upgrade/error/check.en.html"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:358
+msgid "no automatic upgrade is available from our website for this version"
+msgstr "ไม่พบการอัพเกรดอัตโนมัติจากเว็บไซต์ของเราสำหรับเวอร์ชั่นนี้"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364
+msgid "your device was not created using a USB image or Tails Installer"
+msgstr "อุปกรณ์คุณไม่ได้สร้างด้วยแท่ง USB หรือ ตัวติดตั้ง Tails"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:369
+msgid "Tails was started from a DVD or a read-only device"
+msgstr "Tails ถูกบูตขึ้นจากดีวีดี หรืออุปกรณ์ read-only"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:374
+msgid "there is not enough free space on the Tails system partition"
+msgstr "มีพื้นที่ว่างบน Tails system partition ไม่เพียงพอ"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:379
+msgid "not enough memory is available on this system"
+msgstr "หน่วยความจำบนระบบนี้ไม่เพียงพอ"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:384
+#, perl-brace-format
+msgid "No explanation available for reason '{reason}'."
+msgstr "ไม่มีคำอธิบายสำหรับเหตูผล '{reason}'"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:407
+msgid "The system is up-to-date"
+msgstr "ระบบเป็นรุ่นปัจจุบัน"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:412
+msgid "This version of Tails is outdated, and may have security issues."
+msgstr "Tails เวอร์ชั่นนี้เก่าเกินไป และอาจมีประเด็นปัญหาเกี่ยวกับความปลอดภัย"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:442
+#, perl-brace-format
+msgid ""
+"The available incremental upgrade requires {space_needed} of free space on "
+"Tails system partition,  but only {free_space} is available."
+msgstr ""
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:454
+#, perl-brace-format
+msgid ""
+"The available incremental upgrade requires {memory_needed} of free memory, "
+"but only {free_memory} is available."
+msgstr ""
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:465
+msgid ""
+"An error ocurred while detecting available upgrades.\n"
+"This should not happen. Please report a bug."
+msgstr ""
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:468
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:487
+msgid "Error while detecting available upgrades"
+msgstr "พบข้อผิดพลาดขณะตรวจหาการอัพเกรด"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:483
+msgid ""
+"An incremental upgrade is available, but no full upgrade is.\n"
+"This should not happen. Please report a bug."
+msgstr ""
+"พบการอัพเกรดแบบ incremental แต่ไม่พบการอัพเกรดแบบเต็ม\n"
+"กรณีนี้ไม่ควรเกิดขึ้น กรุณาทำการแจ้งบั๊ก"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:496
+#, perl-brace-format
+msgid ""
+"<b>You should upgrade to {name} {version}.</b>\n"
+"\n"
+"For more information about this new version, go to {details_url}\n"
+"\n"
+"We recommend you close all other applications during the upgrade.\n"
+"Downloading the upgrade might take a long time, from several minutes to a "
+"few hours.\n"
+"\n"
+"Download size: {size}\n"
+"\n"
+"Do you want to upgrade now?"
+msgstr ""
+"<b>คุณควรปรับรุ่นไปยัง {name} {version} </b>\n"
+"\n"
+"ไปที่ {details_url} เพื่่อเรียนรู้เพิ่มเติมเกี่ยวกับเวอร์ชันใหม่นี้\n"
+"\n"
+"เราแนะนำให้คุณปิดแอปพลิเคชันอื่นๆในระหว่างการปรับรุ่น\n"
+"การดาวน์โหลดเพื่อปรับรุ่นอาจใช้เวลาเพียงไม่กี่นาทีหรือจนถึง 2-3 ชั่วโมง\n"
+"\n"
+"ขนาดของการดาวน์โหลดข้อมูล: {size}\n"
+"\n"
+"คุณต้องการปรับรุ่นในตอนนี้เลยหรือไม่?"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:509
+msgid "Upgrade available"
+msgstr "มีอัพเกรดใหม่พร้อมติดตั้ง"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:510
+msgid "Upgrade now"
+msgstr "อัพเกรดเดี๋ยวนี้"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:511
+msgid "Upgrade later"
+msgstr "อัพเกรดภายหลัง"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:518
+#, perl-brace-format
+msgid ""
+"<b>You should do a manual upgrade to the latest version of {name}.</b>\n"
+"\n"
+"For more information about this new version, go to {details_url}\n"
+"\n"
+"It is impossible to do an automatic upgrade of your Tails to this new "
+"version: {explanation}.\n"
+"\n"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:528
+msgid "New version available"
+msgstr "พบเวอร์ชั่นใหม่"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:609
+msgid "Downloading upgrade"
+msgstr "กำลังดาวน์โหลดการอัพเกรด"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:611
+#, perl-brace-format
+msgid "Downloading the upgrade to {name} {version}..."
+msgstr "กำลังปรับรุ่นไปยัง {name} {version}..."
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700
+msgid ""
+"<b>The upgrade could not be downloaded.</b>\\n\\nCheck your network "
+"connection, and restart Tails to try upgrading again.\\n\\nIf the problem "
+"persists, go to file:///usr/share/doc/tails/website/doc/upgrade/error/"
+"download.en.html"
+msgstr ""
+"<b>ไม่สามารถดาวน์โหลดการอัพเกรดได้</b>\\n\\nตรวจสอบการเชื่อมต่อเครือข่ายของคุณ "
+"แล้วทำการรีสตาร์ท Tails แล้วลองอัพเกรดใหม่อีกครั้ง\\n\\nหากยังพบปัญหา ให้ไปยัง file:///"
+"usr/share/doc/tails/website/doc/upgrade/error/download.en.html"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:711
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:726
+msgid "Error while downloading the upgrade"
+msgstr "พบข้อผิดพลาดขณะกำลังดาวน์โหลดอัพเกรด"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:721
+#, perl-brace-format
+msgid ""
+"Output file '{output_file}' does not exist, but tails-iuk-get-target-file "
+"did not complain. Please report a bug."
+msgstr ""
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:737
+msgid "Error while creating temporary downloading directory"
+msgstr "พบข้อผิดพลาดขณะสร้างไดเรคทอรีเพื่อดาวน์โหลดชั่วคราว"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:740
+msgid "Failed to create temporary download directory"
+msgstr "การสร้างไดเรคทอรีชั่วคราวเพื่อดาวน์โหลดล้มเหลว"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:752
+msgid ""
+"The upgrade was successfully downloaded.\n"
+"\n"
+"The network connection will be disabled when applying the upgrade.\n"
+"\n"
+"Please save your work and close all other applications."
+msgstr ""
+"การดาวน์โหลดเพื่อการปรับรุ่นเสร็จสิ้นแล้ว\n"
+"\n"
+"จะหยุดการเชื่อมต่อกับเครือข่ายในระหว่างดำเนินการปรับรุ่น\n"
+"\n"
+"โปรดบันทึกงานของคุณและปิดแอปพลิเคชั่นตัวอื่น"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:757
+msgid "Upgrade successfully downloaded"
+msgstr "การดาวน์โหลดเพื่อการปรับรุ่นเสร็จสิ้นแล้ว"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:758
+msgid "Apply upgrade"
+msgstr "ใช้การปรับรุ่น"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:765
+msgid ""
+"<b>Your Tails device was successfully upgraded.</b>\n"
+"\n"
+"Some security features were temporarily disabled.\n"
+"You should restart Tails on the new version as soon as possible.\n"
+"\n"
+"Do you want to restart now?"
+msgstr ""
+"<b>อุปกรณ์ Tails ถูกอัพเกรดแล้วอย่างเสร็จสมบูรณ์</b>\n"
+"\n"
+"ฟีเจอร์ความปลอดภัยบางอย่างได้ถูกปิดใช้งานชั่วขณะ\n"
+"คุณควรทำการเริ่มต้น Tailsใหม่บนเวอร์ชั่นใหม่ทันที\n"
+"\n"
+"เริ่มต้นใหม่เลยหรือไม่?"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:770
+msgid "Restart Tails"
+msgstr "เริ่มต้น Tails ใหม่เดี๋ยวนี้"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:771
+msgid "Restart now"
+msgstr "เริ่มต้นใหม่เดี๋ยวนี้"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:772
+msgid "Restart later"
+msgstr "เริ่มต้นใหม่ในภายหลัง"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:782
+msgid "Error while restarting the system"
+msgstr "พบข้อผิดพลาดขณะกำลังเริ่มต้นใหม่"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:783
+msgid "Failed to restart the system"
+msgstr "การเริ่มต้นใหม่ล้มเหลว"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:796
+msgid "Error while shutting down the network"
+msgstr "พบข้อผิดพลาดขณะทำการปิดเครือข่าย"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:797
+msgid "Failed to shutdown network"
+msgstr "การปิดเครือข่ายล้มเหลว"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:807
+msgid "Error while cancelling the upgrade download"
+msgstr "เกิดข้อผิดพลาดในระหว่างการยกเลิกการโหลดเพื่อปรับรุ่น"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:808
+msgid "Failed to cancel the upgrade download"
+msgstr "การยกเลิกการโหลดเพื่อปรับรุ่นไม่สำเร็จ"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:814
+msgid "Upgrading the system"
+msgstr "กำลังอัพเกรดระบบ"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:816
+msgid ""
+"<b>Your Tails device is being upgraded...</b>\n"
+"\n"
+"For security reasons, the network connection is now disabled."
+msgstr ""
+"<b>กำลังปรับรุ่นอุปกรณ์ Tails ของคุณ... </b>\n"
+"\n"
+"การเชื่อมต่อเครือข่ายได้ถูกระงับไว้เพื่อความปลอดภัย"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:853
+msgid ""
+"<b>An error occured while installing the upgrade.</b>\\n\\nYour Tails device "
+"needs to be repaired and might be unable to restart.\\n\\nPlease follow the "
+"instructions at file:///usr/share/doc/tails/website/doc/upgrade/error/"
+"install.en.html"
+msgstr ""
+"<b>พบข้อผิดพลาดขณะติดตั้งการอัพเกรด</b>\\n\\nอุปกรณ์ Tails ของคุณควรถูกซ่อมแซม "
+"และอาจไม่สามารถเริ่มต้นใหม่ได้ กรุณาทำการขั้นตอนที่ file:///usr/share/doc/tails/website/"
+"doc/upgrade/error/install.en.html"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:863
+msgid "Error while installing the upgrade"
+msgstr "พบข้อผิดพลาดขณะทำการติดตั้งอัพเกรด"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:32
+msgid "Additional Settings"
+msgstr "ตั้งค่าเพิ่มเติม"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+msgid "Cancel"
+msgstr "ยกเลิก"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:46
+msgid "Add"
+msgstr "เพิ่ม"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:54
+msgid "Back"
+msgstr "ย้อนกลับ"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:63
+msgid "_Administration Password"
+msgstr "_รหัสผ่านผู้ดูแลระบบ"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:186
+msgid "_MAC Address Anonymization"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:249
+msgid "_Offline Mode"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:258
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:413
+msgid "Enable networking (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:260
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:459
+msgid "Disable all networking"
+msgstr "ปิดใช้งานการเชื่อมต่อเครือข่ายทั้งหมด"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:315
+msgid "_Network Connection"
+msgstr "_การเชื่อมต่อเครือข่าย"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:323
+msgid "Obsolete"
+msgstr "ล้าสมัยแล้ว"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:338
+msgid "_Unsafe Browser"
+msgstr "_เบราว์เซอร์ไม่ปลอดภัย"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:347
+#, fuzzy
+msgid "Enabled (default)"
+msgstr "ปิดใช้งานแล้ว (ตั้งค่าเดิม)"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:349
+#, fuzzy
+msgid "Disabled"
+msgstr "ระงับการใช้งาน"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:400
+msgid "On (default)"
+msgstr "เปิด (โดยปริยาย)"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:402
+msgid "On"
+msgstr "เปิด"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:404
+msgid "Off"
+msgstr "ปิด"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:406
+msgid "Off (default)"
+msgstr "ปิด (โดยปริยาย)"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#, fuzzy
+msgid "Persistent Storage Still Locked"
+msgstr "_สร้างพื้นที่เก็บข้อมูล Persistent Storage"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
+msgid ""
+"Do you really want to start Tails without unlocking your Persistent Storage?"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
+#, fuzzy
+msgid "Start Without Persistent Storage"
+msgstr "_สร้างพื้นที่เก็บข้อมูล Persistent Storage"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
+#, fuzzy
+msgid "Don't _Create Persistent Storage"
+msgstr "_สร้างพื้นที่เก็บข้อมูล Persistent Storage"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
+#, fuzzy
+msgid "_Create Persistent Storage"
+msgstr "_สร้างพื้นที่เก็บข้อมูล Persistent Storage"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:83
+msgid "Error unlocking Persistent Storage: {}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:102
+#, fuzzy
+msgid "Error activating Persistent Storage: {}"
+msgstr "_สร้างพื้นที่เก็บข้อมูล Persistent Storage"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:68
+msgid "Unlocking…"
+msgstr "กำลังปลดล็อค..."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
+msgid "Unlock"
+msgstr "ปลดล็อค"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:99
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:40
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:112
+msgid ""
+"Failed to unlock the Persistent Storage. Please start Tails and send an "
+"error report."
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:122
+msgid ""
+"Failed to activate the Persistent Storage. Please start Tails and send an "
+"error report."
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/region_settings.py:164
+msgid "_Language"
+msgstr "_ภาษา"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/region_settings.py:207
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/region_settings.py:244
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:288
+#, python-format
+msgid "Unable to write on %(device)s, skipping."
+msgstr "ไม่สามารถเขียนบน %(device)s, ข้ามไป"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:332
+#, python-format
+msgid ""
+"Some partitions of the target device %(device)s are mounted. They will be "
+"unmounted before starting the installation process."
+msgstr "Partition บน %(device)s ถูกเมานท์อยู่ จะยกเลิกการเม้านท์ก่อนเริ่มกระบวนการติดตั้ง"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:341
+msgid "Extracting live image to the target device..."
+msgstr "แตก live image ลงในอุปกรณ์ปลายทาง"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:348
+#, python-format
+msgid "Wrote to device at %(speed)d MB/sec"
+msgstr "เขียนไปยังอุปกรณ์ ณ %(speed)d MB/sec"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:446
+#, python-format
+msgid ""
+"There was a problem executing the following command: `%(command)s`.\n"
+"A more detailed error log has been written to \"%(filename)s\"."
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:462
+#, python-format
+msgid ""
+"Not enough free space on device.\n"
+"%(iso_size)dMB ISO + %(overlay_size)dMB overlay > %(free_space)dMB free space"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:471
+#, python-format
+msgid "Creating %sMB persistent overlay"
+msgstr "กำลังสร้างที่เก็บถาวร %sMB"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:521
+#, python-format
+msgid "Unable to copy %(infile)s to %(outfile)s: %(message)s"
+msgstr "ไม่สามารถคัดลอก %(infile)s ไปที่ %(outfile)s: %(message)s"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:535
+msgid "Removing existing Tails system"
+msgstr "กำลังลบระบบ Tails ที่ได้ติดตั้งอยู่ก่อนแล้วออก"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:545
+#, python-format
+msgid "Unable to remove file from previous Tails system: %(message)s"
+msgstr "ไม่สามารถลบไฟล์จากระบบ Tails ที่ได้ติดตั้งอยู่ก่อนหน้านี้: %(message)s"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:552
+#, python-format
+msgid "Unable to chmod %(file)s: %(message)s"
+msgstr "ไม่สามารถ chmod %(file)s: %(message)s"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:559
+#, python-format
+msgid "Unable to remove directory from previous Tails system: %(message)s"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:607
+#, python-format
+msgid "Cannot find device %s"
+msgstr "ไม่สามารถหาอุปกรณ์ %s"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:657
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:904
+msgid "Unknown filesystem.  Your device may need to be reformatted."
+msgstr "ไม่ทราบระบบแฟ้ม อุปกรณ์ของคุณอาจจะจำเป็นต้องถูกจัดระบบใหม่"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:660
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:907
+#, python-format
+msgid "Unsupported filesystem: %s"
+msgstr "ระบบแฟ้มที่ไม่รองรับ: %s"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:678
+#, python-format
+msgid "Unknown GLib exception while trying to mount device: %(message)s"
+msgstr "พบ GLib exception ที่ไม่รู้จัก ระหว่างพยายามใส่อุปกรณ์: %(message)s"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:683
+#, python-format
+msgid "Unable to mount device: %(message)s"
+msgstr "ไม่สามารถใส่อุปกรณ์ %(message)s"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:688
+msgid "No mount points found"
+msgstr "ไม่พบจุดเมาต์"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:699
+#, python-format
+msgid "Entering unmount_device for \"%(device)s\""
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:708
+#, python-format
+msgid "Unmounting mounted filesystems on \"%(device)s\""
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:712
+#, python-format
+msgid "Unmounting \"%(udi)s\" on \"%(device)s\""
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:723
+#, python-format
+msgid "Mount %s exists after unmounting"
+msgstr "ใส่ %s ที่มีอยู่หลังถอดออก"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:760
+#, python-format
+msgid "Partitioning device %(device)s"
+msgstr "แบ่งที่อุปกรณ์ %(device)s"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:889
+#, python-format
+msgid "Unsupported device '%(device)s', please report a bug."
+msgstr "อุปกรณ์ไม่รองรับ '%(device)s' กรุณารายงานบั้ก"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:892
+msgid "Trying to continue anyway."
+msgstr "ลองทำต่อไปไม่ว่าอย่างไรก็ตาม"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:901
+msgid "Verifying filesystem..."
+msgstr "กำลังตรวจสอบระบบแฟ้ม..."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:925
+#, python-format
+msgid "Unable to change volume label: %(message)s"
+msgstr "ไม่สามารถเปลี่ยนชื่อของแผ่น: %(message)s"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:930
+msgid "Installing bootloader..."
+msgstr "กำลังติดตั้งบูตโหลดเดอร์..."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:937
+#, python-format
+msgid "Removing %(file)s"
+msgstr "ถอดแฟ้มออก %(file)s"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:1019
+#, python-format
+msgid "%s already bootable"
+msgstr "%s บูตได้อยู่แล้ว"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:1039
+msgid "Unable to find partition"
+msgstr "ไม่พบพาร์ติชัน"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:1058
+#, python-format
+msgid "Formatting %(device)s as FAT32"
+msgstr "ฟอร์แมต %(device)s เป็น FAT32"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:1121
+#, python-format
+msgid "Reading extracted MBR from %s"
+msgstr "กำลังอ่าน MBR ที่ถูกสกัดจาก %s"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:1125
+#, python-format
+msgid "Could not read the extracted MBR from %(path)s"
+msgstr "ไม่สามารถอ่าน MBR ที่ถูกสกัดจาก %(path)s"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:1138
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:1139
+#, python-format
+msgid "Resetting Master Boot Record of %s"
+msgstr "เริ่ม Master Boot Record ใหม่ %s"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:1144
+msgid "Drive is a loopback, skipping MBR reset"
+msgstr "ไดรฟ์ loopback, ข้ามไปเริ่มใหม่ MBR"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:1148
+msgid "Synchronizing data on disk..."
+msgstr "กำลังประสานข้อมูลบนดิสก์"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
+msgid ""
+"Error: Cannot set the label or obtain the UUID of your device.  Unable to "
+"continue."
+msgstr "ผิดพลาด: ไม่สามารถกำหนดชื่อหรือหา UUID ของอุปกรณ์ของคุณ  ไม่สามารถดำเนินการต่อได้"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
+#, python-format
+msgid "Installation complete! (%s)"
+msgstr "การติดตั้งเสร็จสิ้น! (%s)"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
+msgid "Tails installation failed!"
+msgstr "การติดตั้ง Tails ล้มเหลว!"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
+#: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
+msgid "Tails Installer"
+msgstr "ตัวติดตั้ง Tails"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
+msgid "Clone the current Tails"
+msgstr "ทำสำเนา Tails ที่มีอยู่นี้"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
+msgid "Use a downloaded Tails ISO image"
+msgstr "ใช้อิมเมจ ISO ของ Tails ที่ดาวน์โหลดมา"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
+msgid "Upgrade"
+msgstr "ปรับรุ่น"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
+msgid "Manual Upgrade Instructions"
+msgstr "คู่มือแสดงวิธีการปรับรุ่น"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
+msgid "Install"
+msgstr "ติดตั้ง"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
+msgid "Installation Instructions"
+msgstr "ขั้นตอนการติดตั้ง"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
+#, python-format
+msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
+msgstr "%(size)s %(vendor)s %(model)s อุปกรณ์ (%(device)s)"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
+msgid "No ISO image selected"
+msgstr "ไม่ได้เลือกอิมเมจ ISO"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
+msgid "Please select a Tails ISO image."
+msgstr "กรุณาเลือกอิมเมจ ISO ของ Tails"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
+#, python-format
+msgid ""
+"The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
+"manufacturer and Tails will fail to start from it. Please try installing on "
+"a different model."
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
+#, python-format
+msgid ""
+"The device \"%(pretty_name)s\" is too small to install Tails (at least "
+"%(size)s GB is required)."
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
+#, python-format
+msgid ""
+"To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
+"downloaded Tails ISO image:\n"
+"%(dl_url)s"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
+msgid "No device suitable to install Tails could be found"
+msgstr "ไม่พบอุปกรณ์ที่เหมาะสมสำหรับติดตั้ง Tails"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
+#, python-format
+msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
+msgstr "โปรดเสียบแฟลชไดรฟ์ USB หรือการด์ SD ที่มีความจุอย่างน้อย %0.1fกิกะไบต์"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
+msgid "An error happened while installing Tails"
+msgstr "เกิดข้อผิดพลาดระหว่างติดตั้ง Tails"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
+msgid "Installation complete!"
+msgstr "การติดตั้งเสร็จสิ้น!"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
+msgid "Unable to mount device"
+msgstr "ไม่สามารถเมานต์อุปกรณ์"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
+#, python-format
+msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
+msgid ""
+"\n"
+"\n"
+"The persistent storage on this USB stick will be lost."
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
+msgid "Delete Persistent Storage and Reinstall"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
+msgid ""
+"\n"
+"\n"
+"All data on this USB stick will be lost."
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
+msgid "Delete All Data and Install"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
+#, python-format
+msgid "%(description)s%(delete_message)s"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
+msgid "Confirm the target USB stick"
+msgstr "ยืนยัน USB key เป้าหมาย"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
+msgid ""
+"The selected file is unreadable. Please fix its permissions or select "
+"another file."
+msgstr "แฟ้มที่ถูกเลือกไม่สามารถอ่านได้ กรุณาแก้ไขสิทธิอนุญาตหรือเลือกแฟ้มอื่น"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
+msgid ""
+"Unable to use the selected file.  You may have better luck if you move your "
+"ISO to the root of your drive (ie: C:\\)"
+msgstr "ไม่สามารถใช้แฟ้มที่เลือก อาจจะโชคดีกว่าถ้าย้าย ISO ไปไว้ที่รูตของไดรฟ์คุณ (ie: C:\\)"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
+#, python-format
+msgid "%(filename)s selected"
+msgstr "%(filename)s ถูกเลือก"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/source.py:31
+msgid "Unable to find Tails on ISO"
+msgstr "ไม่พบ Tails ในไฟล์ ISO"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/source.py:37
+#, python-format
+msgid "Could not guess underlying block device: %s"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/source.py:52
+#, python-format
+msgid ""
+"There was a problem executing `%(cmd)s`.\n"
+"%(out)s\n"
+"%(err)s"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/source.py:64
+#, python-format
+msgid "\"%s\" does not exist"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/source.py:66
+#, python-format
+msgid "\"%s\" is not a directory"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/source.py:77
+#, python-format
+msgid "Skipping \"%(filename)s\""
+msgstr "กำลังข้าม '%(filename)s'"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/utils.py:54
+#, python-format
+msgid ""
+"There was a problem executing `%(cmd)s`.%(out)s\n"
+"%(err)s"
+msgstr ""
+"เกิดปัญหาในการดำเนินการขึ้น ` %(cmd)s`%(out)s\n"
+"%(err)s"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/utils.py:126
+msgid "Could not open device for writing."
+msgstr "ไม่สามารเปิดอุปกรณ์เพื่อการเขียนข้อความ"
+
+#: config/chroot_local-includes/usr/local/bin/keepassxc:19
+#, sh-format
+msgid ""
+"<b><big>Do you want to rename your <i>KeePassXC</i> database?</big></b>\n"
+"\n"
+"You have a <i>KeePassXC</i> database in your <i>Persistent</i> folder:\n"
+"\n"
+"<i>${filename}</i>\n"
+"\n"
+"Renaming your database to <i>${default_filename}</i> would allow "
+"<i>KeePassXC</i> to open it automatically in the future."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/bin/keepassxc:28
+msgid "Rename"
+msgstr "เปลี่ยนชื่่อ"
+
+#: config/chroot_local-includes/usr/local/bin/keepassxc:30
+msgid "Keep current name"
+msgstr "ใช้ชื่อปัจจุบันนี้"
+
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
+msgid "su is disabled. Please use sudo instead."
+msgstr ""
+
+#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1096
+msgid "Error"
+msgstr "ผิดพลาด"
+
+#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
+msgid ""
+"The device Tails is running from cannot be found. Maybe you used the 'toram' "
+"option?"
+msgstr ""
+
+#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:251
+msgid ""
+"The drive Tails is running from cannot be found. Maybe you used the 'toram' "
+"option?"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:78
+msgid "Lock screen"
+msgstr "ล็อคหน้าจอ"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:82
+msgid "Suspend"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:86
+msgid "Restart"
+msgstr "เริ่มทำงานใหม่"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:90
+msgid "Power Off"
+msgstr "ปิดเครื่อง"
+
+#: config/chroot_local-includes/usr/local/bin/tails-about:22
+#: config/chroot_local-includes/usr/local/bin/tails-about:35
+#: ../config/chroot_local-includes/usr/share/desktop-directories/Tails.directory.in.h:1
+msgid "Tails"
+msgstr "Tails"
+
+#: config/chroot_local-includes/usr/local/bin/tails-about:25
+#: ../config/chroot_local-includes/usr/share/applications/tails-about.desktop.in.h:1
+msgid "About Tails"
+msgstr "เกี่ยวกับ Tails"
+
+#: config/chroot_local-includes/usr/local/bin/tails-about:36
+#, python-format
+msgid ""
+"Build information:\n"
+"%s"
+msgstr ""
+"สร้างข้อมูล:⏎\n"
+"%s"
+
+#: config/chroot_local-includes/usr/local/bin/tails-about:54
+msgid "not available"
+msgstr "ไม่พร้อมใช้งาน"
+
+#. Translators: Don't translate {details}, it's a placeholder and will
+#. be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
+#, python-brace-format
+msgid ""
+"{details} Please check your list of additional software or read the system "
+"log to understand the problem."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
+msgid ""
+"Please check your list of additional software or read the system log to "
+"understand the problem."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
+msgid "Show Log"
+msgstr "แสดง สิ่งที่ทำไป"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
+msgid "Configure"
+msgstr "กำหนดค่า"
+
+#. Translators: Don't translate {beginning} or {last}, they are
+#. placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
+#, python-brace-format
+msgid "{beginning} and {last}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
+msgid ", "
+msgstr ""
+
+#. Translators: Don't translate {packages}, it's a placeholder and will
+#. be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
+#, python-brace-format
+msgid "Add {packages} to your additional software?"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
+msgid ""
+"To install it automatically from your persistent storage when starting Tails."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
+msgid "Install Every Time"
+msgstr "ติดตั้งทุกครั้ง"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+msgid "Install Only Once"
+msgstr "ติดตั้งเพียงแค่ครั้งเดียว"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
+msgid "The configuration of your additional software failed."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
+msgid ""
+"To install it automatically when starting Tails, you can create a persistent "
+"storage and activate the <b>Additional Software</b> feature."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+msgid "Create Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
+msgid "Creating your persistent storage failed."
+msgstr ""
+
+#. Translators: Don't translate {packages}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#, python-brace-format
+msgid "You could install {packages} automatically when starting Tails"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
+msgid "To do so, you need to run Tails from a USB stick."
+msgstr ""
+
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#, python-brace-format
+msgid "Remove {packages} from your additional software?"
+msgstr ""
+
+#. Translators: Don't translate {packages}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
+#, python-brace-format
+msgid "This will stop installing {packages} automatically."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
+msgid "Remove"
+msgstr "ลบ"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
+msgid "Installing your additional software from persistent storage..."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
+msgid "This can take several minutes."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
+msgid "The installation of your additional software failed"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
+msgid "Additional software installed successfully"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
+msgid "The check for upgrades of your additional software failed"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
+msgid ""
+"Please check your network connection, restart Tails, or read the system log "
+"to understand the problem."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
+msgid "The upgrade of your additional software failed"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
+msgid "Documentation"
+msgstr "คู่มือการใช้"
+
+#. Translators: Don't translate {package}, it's a placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#, python-brace-format
+msgid ""
+"Remove {package} from your additional software? This will stop installing "
+"the package automatically."
+msgstr ""
+
+#. Translators: Don't translate {pkg}, it's a placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:106
+#, python-brace-format
+msgid "Failed to remove {pkg}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:131
+msgid "Failed to read additional software configuration"
+msgstr ""
+
+#. Translators: Don't translate {package}, it's a placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:161
+#, python-brace-format
+msgid "Stop installing {package} automatically"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:187
+msgid ""
+"To do so, install some software using <a href=\"synaptic.desktop\">Synaptic "
+"Package Manager</a> or <a href=\"org.gnome.Terminal.desktop\">APT on the "
+"command line</a>."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:196
+msgid ""
+"To do so, unlock your persistent storage when starting Tails and install "
+"some software using <a href=\"synaptic.desktop\">Synaptic Package Manager</"
+"a> or <a href=\"org.gnome.Terminal.desktop\">APT on the command line</a>."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
+msgid ""
+"To do so, create a persistent storage and install some software using <a "
+"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a href=\"org."
+"gnome.Terminal.desktop\">APT on the command line</a>."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:214
+msgid "To do so, install Tails on a USB stick and create a persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:258
+msgid "[package not available]"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:68
+msgid "Failed to synchronize the clock!"
+msgstr "การปรับนาฬิกาให้ตรงกันล้มเหลว"
+
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:110
+msgid "Lock Screen"
+msgstr "หน้าจอล็อก"
+
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:125
+msgid "Screen Locker"
+msgstr "ตัวล็อกหน้าจอ"
+
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:131
+msgid "Set up a password to unlock the screen."
+msgstr "ตั้งรหัสผ่านเพื่อปลดล็อกหน้าจอ"
+
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:149
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2227
+msgid "Password"
+msgstr "รหัสผ่าน"
+
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:93
+msgid "Confirm"
+msgstr "ยืนยัน"
+
+#: config/chroot_local-includes/usr/local/bin/tails-security-check:121
+msgid "This version of Tails has known security issues:"
+msgstr "รุ่นของ Tails เป็นที่รู้จักในประเด็นด้านความปลอดภัย:"
+
+#: config/chroot_local-includes/usr/local/bin/tails-security-check:132
+msgid "Known security issues"
+msgstr "ปัญหาความปลอดภัยที่ทราบแล้ว"
+
+#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:56
+#, sh-format
+msgid "Network card ${nic} disabled"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:57
+#, sh-format
+msgid ""
+"MAC address anonymization failed for network card ${nic_name} (${nic}) so it "
+"is temporarily disabled.\n"
+"You might prefer to restart Tails and disable MAC address anonymization."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:66
+msgid "All networking disabled"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:67
+#, sh-format
+msgid ""
+"MAC address anonymization failed for network card ${nic_name} (${nic}). The "
+"error recovery also failed so all networking is disabled.\n"
+"You might prefer to restart Tails and disable MAC address anonymization."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
+msgid ""
+"<b>Not enough memory available to check for upgrades.</b>\n"
+"\n"
+"Make sure this system satisfies the requirements for running Tails.\n"
+"See file:///usr/share/doc/tails/website/doc/about/requirements.en.html\n"
+"\n"
+"Try to restart Tails to check for upgrades again.\n"
+"\n"
+"Or do a manual upgrade.\n"
+"See {manual_upgrade_url}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
+msgid "error:"
+msgstr "ผิดพลาด"
+
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
+msgid "Warning: virtual machine detected!"
+msgstr "คำเตือน: virtual machine ถูกตรวจพบ!"
+
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+msgid "Warning: non-free virtual machine detected!"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+msgid ""
+"Both the host operating system and the virtualization software are able to "
+"monitor what you are doing in Tails. Only free software can be considered "
+"trustworthy, for both the host operating system and the virtualization "
+"software."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
+msgid "Don't Show Again"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+msgid "Learn More"
+msgstr "เรียนรู้เพิ่มเติม"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/config.py:9
+#: ../config/chroot_local-includes/usr/share/applications/tca.desktop.in.h:1
+msgid "Tor Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:200
+msgid "_Use a bridge that you already know"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:242
+msgid ""
+"To save your bridge, <a href=\"doc/persistent_storage\">unlock your "
+"Persistent Storage</a>."
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:249
+msgid ""
+"To save your bridge, <a href=\"doc/persistent_storage\">create a Persistent "
+"Storage</a> on your Tails USB stick."
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:269
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:773
+#, python-brace-format
+msgid "Invalid: {exception}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:281
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:786
+msgid "You need to configure an obfs4 bridge to hide that you are using Tor"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:334
+msgid "Failed to configure your Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:385
+msgid "Failed to detect a webcam. Maybe your webcam is too old."
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:394
+msgid "Failed to scan QR code. Try with more light or closer to the camera."
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:401
+msgid "Invalid QR code. Try sending another email and scanning again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:451
+msgid "Synchronizing the system's clock…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:500
+msgid "Connecting to Tor without bridges…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:507
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:531
+msgid "Connecting to Tor with default bridges…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:514
+msgid "Connecting to Tor with a custom bridge…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:622
+msgid "Connected to Tor successfully with bridges"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:624
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1960
+msgid "Connected to Tor successfully"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:628
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1985
+msgid "You can now browse the Internet anonymously and uncensored."
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:703
+msgid "This local network seems to be blocking access to Tor."
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:776
+msgid "Bridge address malformed"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:794
+msgid "Setting a bridge is needed if you want to hide that you are using Tor"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1011
+#, python-brace-format
+msgid "Scanned {bridge_type} bridge: <b>{bridge_info}</b>."
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1102
+msgid "Are you sure you want to lose progress?"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1106
+msgid ""
+"Tails will continue connecting to Tor after you close the Tor Connection "
+"assistant.\n"
+"\n"
+"If connecting to Tor fails, you will have to wait again until the end of the "
+"progress bar to be able to troubleshoot your connection."
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1112
+msgid "Close and Lose Progress"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1113
+msgid "Wait"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/bin/thunderbird:41
+msgid "You need to migrate your OpenPGP keys"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/bin/thunderbird:43
+msgid ""
+"<i>Thunderbird</i> 78 now replaces the <i>Enigmail</i> extension with built-"
+"in support for OpenPGP encryption. To continue using your OpenPGP keys in "
+"<i>Thunderbird</i>, follow our migration instructions."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/bin/thunderbird:45
+msgid "_Open Migration Instructions"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/bin/thunderbird:46
+msgid "_Migrate Later"
+msgstr "_ย้ายข้อมูลภายหลัง"
+
+#: config/chroot_local-includes/usr/bin/tor-browser:49
+msgid "Tor is not ready"
+msgstr "ทอร์ไม่พร้อม"
+
+#: config/chroot_local-includes/usr/bin/tor-browser:50
+msgid "Tor is not ready. Start Tor Browser anyway?"
+msgstr ""
+
+#: config/chroot_local-includes/usr/bin/tor-browser:51
+msgid "Start Tor Browser Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/bin/tor-browser:52
+msgid "Open Tor Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/torstatus@tails.boum.org/extension.js:37
+msgid "Tor Status"
+msgstr "สถานะ Tor"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/torstatus@tails.boum.org/extension.js:46
+msgid "Open Onion Circuits"
+msgstr ""
+
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced. They need
+#. to be present in the translated string.
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:65
+#, python-brace-format
+msgid "{volume_label} ({volume_size})"
+msgstr ""
+
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced. They need
+#. to be present in the translated string.
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:71
+#, python-brace-format
+msgid "{partition_name} ({partition_size})"
+msgstr ""
+
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced. It needs to be present in the translated
+#. string.
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:77
+#, python-brace-format
+msgid "{volume_size} Volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name}, it's a placeholder and
+#. will be replaced. It needs to be present in the translated string.
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#, python-brace-format
+msgid "{volume_name} (Read-Only)"
+msgstr "{volume_name} (อ่านอย่างเดียว)"
+
+#. Translators: Don't translate {partition_name} and {container_path}, they
+#. are placeholders and will be replaced. They need to be present
+#. in the translated string.
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:125
+#, python-brace-format
+msgid "{partition_name} in {container_path}"
+msgstr "{partition_name} ใน {container_path}"
+
+#. Translators: Don't translate {volume_name} and {path_to_file_container},
+#. they are placeholders and will be replaced. You should only have to translate
+#. this string if it makes sense to reverse the order of the placeholders.
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:132
+#, python-brace-format
+msgid "{volume_name} – {path_to_file_container}"
+msgstr "{volume_name} – {path_to_file_container}"
+
+#. Translators: Don't translate {partition_name} and {drive_name}, they
+#. are placeholders and will be replaced. They need to be present
+#. in the translated string.
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:139
+#, python-brace-format
+msgid "{partition_name} on {drive_name}"
+msgstr "{partition_name} บน {drive_name}"
+
+#. Translators: Don't translate {volume_name} and {drive_name},
+#. they are placeholders and will be replaced. You should only have to translate
+#. this string if it makes sense to reverse the order of the placeholders.
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:146
+#, python-brace-format
+msgid "{volume_name} – {drive_name}"
+msgstr "{volume_name} – {drive_name}"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+msgid "Wrong passphrase or parameters"
+msgstr "วลีรหัสผ่านหรือพารามิเตอร์ผิด"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:236
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.  They need
+#. to be present in the translated string.
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:241
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
+msgid "One or more applications are keeping the volume busy."
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced. They need
+#. to be present in the translated string.
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:350
+#, python-brace-format
+msgid ""
+"Couldn't lock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:352
+msgid "Locking the volume failed"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
+msgid "No file containers added"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:98
+msgid "No VeraCrypt devices detected"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:40
+#: ../config/chroot_local-includes/usr/share/applications/unlock-veracrypt-volumes.desktop.in.h:1
+msgid "Unlock VeraCrypt Volumes"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:114
+msgid "Container already added"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:115
+#, python-format
+msgid "The file container %s should already be listed."
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:131
+msgid "Container opened read-only"
+msgstr ""
+
+#. Translators: Don't translate {path}, it's a placeholder  and will be replaced.
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
+#, python-brace-format
+msgid ""
+"The file container {path} could not be opened with write access. It was "
+"opened read-only instead. You will not be able to modify the content of the "
+"container.\n"
+"{error_message}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
+msgid "Error opening file"
+msgstr "เกิดข้อผิดพลาดระหว่างการเปิดไฟล์"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+msgid "Not a VeraCrypt container"
+msgstr "ไม่ใช่คอนเทนเนอร์ VeraCrypt"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
+#, python-format
+msgid "The file %s does not seem to be a VeraCrypt container."
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+msgid "Failed to add container"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
+#, python-format
+msgid ""
+"Could not add file container %s: Timeout while waiting for loop setup.\n"
+"Please try using the <i>Disks</i> application instead."
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
+msgid "Choose File Container"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
+msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
+msgid ""
+"To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
+"Browser is enabled in the additional settings of the Welcome Screen."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
+msgid "To use the Unsafe Browser, restart Tails."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+msgid "_Restart"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
+msgid "_Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
+msgid ""
+"Do you really want to restart Tails now?\\n\\nAll your current work will be "
+"lost."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+msgid "Restart Now"
+msgstr "เริ่มการใช้ใหม่อีกครั้ง"
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+msgid "Failed to restart the system."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+msgid "Starting the Unsafe Browser..."
+msgstr "เริ่มการทำงานเบราว์เซอร์ที่ไม่ปลอดภัย"
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
+msgid "This may take a while, so please be patient."
+msgstr "การทำงานอาจใช้เวลาสักพัก โปรดรอสักครู่"
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
+msgid "Shutting down the Unsafe Browser..."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+msgid ""
+"This may take a while, and you may not restart the Unsafe Browser until it "
+"is properly shut down."
+msgstr ""
+"การทำงานอาจใช้เวลาสักพัก คุณไม่ควรเริ่มการทำงานของเบราว์เซอร์ที่ไม่ปลอดภัยใหม่ "
+"จนกว่าเครื่องจะปิดตัวเรียบร้อย"
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
+#: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
+msgid "Unsafe Browser"
+msgstr "เบราว์เซอร์นี้ไม่ปลอดภัย"
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
+msgid ""
+"Another Unsafe Browser is currently running, or being cleaned up. Please "
+"retry in a while."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
+msgid "Failed to setup chroot."
+msgstr "การตั้งค่า chroot ล้มเหลว"
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
+msgid "Failed to configure browser."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+msgid ""
+"You are not connected to a local network yet.\\n\\nTo be able to start the "
+"Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
+"network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
+msgid "Failed to run browser."
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/exceptions.py:40
+#, python-format
+msgid ""
+"The %s variable was not found in the configuration file: /etc/whisperback/"
+"config.py"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:113
+msgid "Name of the affected software"
+msgstr "ชื่อของซอฟต์แวร์ที่ได้รับผลกระทบ"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:115
+msgid "Exact steps to reproduce the error"
+msgstr "ขั้นตอนตามลำดับโดยเคร่งครัดเพื่อทำซ้ำข้อผิดพลาด"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:117
+msgid "Actual result and description of the error"
+msgstr "ผลลัพธ์ที่เกิดขึ้นจริงและคำอธิบายข้อผิดพลาด"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:119
+msgid "Desired result"
+msgstr "ผลลัพธ์ที่ต้องการ"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:132
+msgid "Unable to load a valid configuration."
+msgstr "ไม่สามารถเรียกแฟ้มตั้งค่าที่ถูกต้องได้"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:169
+msgid "Sending mail..."
+msgstr "กำลังส่งอีเมล..."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:170
+msgid "Sending mail"
+msgstr "กำลังส่งอีเมล"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:172
+msgid "This could take a while..."
+msgstr "นี่อาจใช้เวลาสักพัก..."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:188
+msgid "The contact email address doesn't seem valid."
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:205
+msgid "Unable to send the mail: SMTP error."
+msgstr "ไม่สามารถส่งอีเมลได้: ข้อผิดพลาด SMTP"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:207
+msgid "Unable to connect to the server."
+msgstr "ไม่สามารถเชื่อมต่อไปยังเซิร์ฟเวอร์ได้"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:209
+msgid "Unable to create or to send the mail."
+msgstr "ไม่สามารถสร้างหรือส่งอีเมลได้"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:212
+msgid ""
+"\n"
+"\n"
+"The bug report could not be sent, likely due to network problems. Please try "
+"to reconnect to the network and click send again.\n"
+"\n"
+"If it does not work, you will be offered to save the bug report."
+msgstr ""
+"\n"
+"\n"
+"ไม่สามารถส่งรายงานบั๊กได้ เป็นไปได้ว่าเนื่องจากปัญหาเครือข่าย โปรดลองเชื่อมต่อกับเครือข่ายใหม่ "
+"และคลิกส่งอีกครั้ง\n"
+"\n"
+"ถ้ามันไม่ได้ คุณจะถูกถามให้บันทึกรายงานบั๊กดังกล่าว"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:225
+msgid "Your message has been sent."
+msgstr "ข้อความของคุณถูกส่งแล้ว"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:232
+msgid "An error occured during encryption."
+msgstr "เกิดข้อผิดพลาดระหว่างการเข้ารหัส"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:252
+#, python-format
+msgid "Unable to save %s."
+msgstr "ไม่สามารถบันทึก %s"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:275
+#, python-format
+msgid ""
+"The bug report could not be sent, likely due to network problems.\n"
+"\n"
+"As a work-around you can save the bug report as a file on a USB drive and "
+"try to send it to us at %s from your email account using another system. "
+"Note that your bug report will not be anonymous when doing so unless you "
+"take further steps yourself (e.g. using Tor with a throw-away email "
+"account).\n"
+"\n"
+"Do you want to save the bug report to a file?"
+msgstr ""
+"ไม่สามารถส่งรายงานบั๊กได้ เป็นไปได้ว่าเนื่องจากปัญหาเครือข่าย\n"
+"\n"
+"เพื่อให้ทำงานไปก่อนได้ คุณสามารถบันทึกรายงานบั๊กเป็นแฟ้มบนไดรฟ์ยูเอสบี และลองส่งมันหาเราที่ %s "
+"จากบัญชีอีเมลของคุณ โดยใช้ระบบอื่น โปรดจำว่า รายงานบั๊กของคุณจะไม่ถูกปิดชื่อถ้าคุณทำเช่นนั้น "
+"เว้นเสียแต่ว่าคุณจะใช้มาตรการเพิ่มเติมด้วยตัวคุณเอง (เช่น ใช้ Tor "
+"ด้วยบัญชีอีเมลแบบใช้ครั้งเดียวทิ้ง)\n"
+"\n"
+"คุณต้องการบันทึกรายงานบั๊กลงแฟ้มหรือไม่?"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:337
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:280
+msgid "WhisperBack"
+msgstr "WhisperBack"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:338
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:12
+msgid "Send feedback in an encrypted mail."
+msgstr "ส่งคำติชมในอีเมลเข้ารหัส"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:341
+msgid "Copyright © 2009-2018 Tails developers (tails@boum.org)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:342
+msgid "Tails developers <tails@boum.org>"
+msgstr "นักพัฒนา Tails <tails@boum.org>"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:343
+#, fuzzy
+msgid "translator-credits"
+msgstr "translator-credits"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:376
+msgid "This doesn't seem to be a valid URL or OpenPGP key."
+msgstr "นี่ไม่น่าจะเป็น URL หรือกุญแจ OpenPGP ที่ถูกต้อง"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/whisperback.py:62
+#, python-format
+msgid "Invalid contact email: %s"
+msgstr "อีเมลติดต่อไม่ถูกต้อง: %s"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/whisperback.py:82
+#, python-format
+msgid "Invalid contact OpenPGP key: %s"
+msgstr "กุญแจ OpenPGP ของที่ติดต่อไม่ถูกต้อง: %s"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/whisperback.py:84
+msgid "Invalid contact OpenPGP public key block"
+msgstr "บล็อคกุญแจ OpenPGP ของที่ติดต่อไม่ถูกต้อง"
+
+#: config/chroot_local-includes/usr/local/bin/tca:154
+msgid "You turned on Offline Mode in the Welcome Screen."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/bin/tca:155
+msgid "It is impossible to connect to Tor in Offline Mode."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/bin/tca:156
+msgid "To connect to Tor and the Internet, restart Tails without Offline Mode."
+msgstr ""
+
+#: ../config/chroot_local-includes/etc/skel/Desktop/Report_an_error.desktop.in.h:1
+msgid "Report an error"
+msgstr "รายงานข้อผิดพลาด"
+
+#: ../config/chroot_local-includes/etc/skel/Desktop/tails-documentation.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/applications/tails-documentation.desktop.in.h:1
+msgid "Tails documentation"
+msgstr "เอกสาร Tails"
+
+#: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
+#, fuzzy
+msgid "Persistent Storage"
+msgstr "_สร้างพื้นที่เก็บข้อมูล Persistent Storage"
+
+#: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:2
+msgid ""
+"Configure which files and application configuration are saved between "
+"working sessions"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/applications/root-terminal.desktop.in.h:1
+msgid "Root Terminal"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/applications/root-terminal.desktop.in.h:2
+msgid "Opens a terminal as the root user, using gksu to ask for the password"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-documentation.desktop.in.h:2
+msgid "Learn how to use Tails"
+msgstr "เรียนรู้การใช้งาน Tails"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-about.desktop.in.h:2
+msgid "Learn more about Tails"
+msgstr "เรียนรู้เพิ่มเติมเกี่ยวกับ Tails"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "_สร้างพื้นที่เก็บข้อมูล Persistent Storage"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
+msgid "Install, clone, upgrade Tails"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/applications/tca.desktop.in.h:2
+msgid "Connect Tails to the Tor network"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:1
+msgid "Tor Browser"
+msgstr "Tor Browser"
+
+#: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:2
+msgid "Anonymous Web Browser"
+msgstr "เว็บเบราว์เซอร์แบบนิรนาม"
+
+#: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:2
+msgid "Browse the World Wide Web without anonymity"
+msgstr "ท่องเว็บโดยไม่รักษาความเป็นนิรนาม"
+
+#: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:3
+msgid "Unsafe Web Browser"
+msgstr "เว็บเบราว์เซอร์ไม่ปลอดภัย"
+
+#: ../config/chroot_local-includes/usr/share/applications/unlock-veracrypt-volumes.desktop.in.h:2
+msgid "Mount VeraCrypt encrypted file containers and devices"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:2
+msgid ""
+"Configure the additional software installed from your persistent storage "
+"when starting Tails"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/applications/whisperback.desktop.in.h:1
+msgid "WhisperBack Error Reporting"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/applications/whisperback.desktop.in.h:2
+msgid "Send feedback via encrypted e-mail"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/applications/whisperback.desktop.in.h:3
+msgid "feedback;bug;report;tails;error;"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/desktop-directories/Tails.directory.in.h:2
+msgid "Tails specific tools"
+msgstr "เครื่องมือเฉพาะของ Tails"
+
+#: ../config/chroot_local-includes/usr/share/polkit-1/actions/org.boum.tails.root-terminal.policy.in.h:1
+msgid "To start a Root Terminal, you need to authenticate."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/polkit-1/actions/org.boum.tails.additional-software.policy.in.h:1
+msgid "Remove an additional software package"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/polkit-1/actions/org.boum.tails.additional-software.policy.in.h:2
+msgid ""
+"Authentication is required to remove a package from your additional software "
+"($(command_line))"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
+msgid "Administration Password"
+msgstr "รหัสผ่านเพื่อการดูแลระบบ"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:107
+msgid "Confirm your administration password"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:124
+msgid "Disable"
+msgstr "ระงับการใช้งาน"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
+msgid "MAC Address Anonymization"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:170
+msgid ""
+"MAC address anonymization hides the serial number of your network interface "
+"(Wi-Fi or wired) from the local network. Anonymizing MAC addresses is "
+"generally safer as it helps you hide your geographical location. But it "
+"might also create connectivity problems or look suspicious."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:212
+msgid "Anonymize all MAC addresses (default)"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:258
+msgid "Don't anonymize MAC addresses"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
+msgid "Network Configuration"
+msgstr "ตั้งค่าเครือข่าย"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:327
+msgid ""
+"We replaced this additional setting in Tails 4.19 (June 2021) with a Tor "
+"Connection assistant integrated in the desktop.\n"
+"\n"
+"You will be asked whether you want to use Tor bridges when connecting to Tor "
+"after starting Tails.\n"
+"\n"
+"If you want to work offline, enable the Offline Mode in the additional "
+"settings."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:357
+msgid "Offline Mode"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:373
+msgid ""
+"If you want to work completely offline, you can disable all networking for "
+"increased security."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:528
+msgid ""
+"The Unsafe Browser allows you to sign in to a network using a captive "
+"portal.\n"
+"\n"
+"A captive portal is a web page that is displayed before you can access the "
+"Internet. Captive portals usually require you to log in to the network or "
+"enter information such as an email address.\n"
+"\n"
+"The Unsafe Browser is not anonymous and can deanonymize you. Use it only to "
+"sign in to networks.\n"
+"\n"
+"The Unsafe Browser is enabled by default again since Tails 5.8 (December "
+"2022), after we fixed the security vulnerabilities that made us disable it "
+"by default in Tails 4.8 (June 2020)."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:576
+#, fuzzy
+msgid "Enable the Unsafe Browser (default)"
+msgstr "เริ่มการทำงานเบราว์เซอร์ที่ไม่ปลอดภัย"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:622
+#, fuzzy
+msgid "Disable the Unsafe Browser"
+msgstr "เริ่มการทำงานเบราว์เซอร์ที่ไม่ปลอดภัย"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:100
+msgid "Settings were loaded from the persistent storage."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:152
+msgid "Welcome to Tails!"
+msgstr "ยินดีต้อนรับสู่ Tails!"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
+#, fuzzy
+msgid "_Persistent Storage"
+msgstr "_สร้างพื้นที่เก็บข้อมูล Persistent Storage"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
+msgid ""
+"You can save some of your files and configuration in an encrypted Persistent "
+"Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
+"passwords, and so on."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
+#, fuzzy
+msgid ""
+"You will create and configure your Persistent Storage after starting Tails."
+msgstr ""
+"คุณสามารถติดตั้งซอฟต์แวร์เพิ่มเติมได้อย่างอัตโนมัติจากพื้นที่เก็บข้อมูล Persistent Storage "
+"ของคุณเมื่อเริ่มใช้งาน Tails"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
+msgid "Language & Region"
+msgstr "ภาษาและภูมิภาค"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
+msgid "Default Settings"
+msgstr "การตั้งค่าปริยาย"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
+msgid "Show Passphrase"
+msgstr "แสดงวลีรหัสผ่าน"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "Passphrase:"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
+msgid "_Additional Settings"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
+msgid "Add an additional setting"
+msgstr "เพิ่มการตั้งค่าเพิ่มเติม"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
+#, fuzzy
+msgid "Shutdown"
+msgstr "Shutdown"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
+msgid "_Start Tails"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:8
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:56
+#, fuzzy
+msgid "Change Passphrase"
+msgstr "แสดงวลีรหัสผ่าน"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:95
+#, fuzzy
+msgid "Current _Passphrase"
+msgstr "Passphrase:"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:131
+#, fuzzy
+msgid "_New Passphrase"
+msgstr "แสดงวลีรหัสผ่าน"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:179
+#, fuzzy
+msgid "_Confirm New Passphrase"
+msgstr "แสดงวลีรหัสผ่าน"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:215
+#, fuzzy
+msgid "_Show Passphrases"
+msgstr "แสดงวลีรหัสผ่าน"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:253
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:213
+#, fuzzy
+msgid "The passphrases do not match"
+msgstr "วลีผ่านไม่ตรงกัน"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:317
+msgid "Ch_ange"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/deleted_view.ui.in:21
+msgid "The Persistent Storage was successfully deleted."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/deleted_view.ui.in:32
+msgid "_Close"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/fail_view.ui.in:30
+msgid "Oh no! Something has gone wrong."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/fail_view.ui.in:45
+msgid ""
+"The Persistent Storage service exited unexpectedly.\n"
+"\n"
+"You can send an error report or check the output of the following commands "
+"to investigate:"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/fail_view.ui.in:74
+msgid "Send Error Report"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:61
+msgid ""
+"Your Persistent Storage is unlocked.\n"
+"\n"
+"Its content is available until you shut down Tails.\n"
+"\n"
+"<a href=\"doc/persistent_storage/backup\">Learn how to make a backup of your "
+"Persistent Storage.</a>"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:89
+msgid ""
+"Turn on the features of the Persistent Storage for the data that you want to "
+"save to your Tails USB stick."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:106
+#, fuzzy
+msgid "Personal Documents"
+msgstr "ข้อมูลส่วนบุคคล"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:134
+msgid "Persistent Folder"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:153
+msgid "Open Persistent Folder"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:166
+#, fuzzy
+msgid "Activate Persistent Folder"
+msgstr "_สร้างพื้นที่เก็บข้อมูล Persistent Storage"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:191
+#, fuzzy
+msgid "System Settings"
+msgstr "การตั้งค่าปริยาย"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+#, fuzzy
+msgid "Welcome Screen"
+msgstr "หน้าจอล็อก"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
+msgid "Activate Welcome Screen"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+#, fuzzy
+msgid "Printers"
+msgstr "เครื่องพิมพ์เอกสาร"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
+#, fuzzy
+msgid "Activate Printers"
+msgstr "เครื่องพิมพ์เอกสาร"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:275
+msgid "Network"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:303
+msgid "Network Connections"
+msgstr "การเชื่อมต่อเครือข่าย"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:304
+msgid "Save Wi-Fi passwords and mobile broadband configuration."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:314
+#, fuzzy
+msgid "Activate Network Connections"
+msgstr "การเชื่อมต่อเครือข่าย"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:325
+msgid "Tor Bridge"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:335
+#, fuzzy
+msgid "Activate Tor Bridge"
+msgstr "เริ่มต้นใช้งาน Tor Browser"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:360
+msgid "Applications"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "เริ่มต้นใช้งาน Tor Browser"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
+#, fuzzy
+msgid "Activate Tor Browser Bookmarks"
+msgstr "เริ่มต้นใช้งาน Tor Browser"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:409
+msgid "Electrum Bitcoin Wallet"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:419
+msgid "Activate Electrum Bitcoin Wallet"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:430
+#, fuzzy
+msgid "Thunderbird Email Client"
+msgstr "บริการอีเมล Thunderbird"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:440
+msgid "Activate Thunderbird Email Client"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:451
+msgid "GnuPG"
+msgstr "GnuPG"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:452
+msgid "OpenPGP keys outside of Thunderbird."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:462
+msgid "Activate GnuPG"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:473
+msgid "Pidgin Internet Messenger"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:483
+msgid "Activate Pidgin Internet Messenger"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:494
+msgid "SSH Client"
+msgstr "SSH Client"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:504
+#, fuzzy
+msgid "Activate SSH Client"
+msgstr "SSH Client"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:529
+#, fuzzy
+msgid "Advanced Settings"
+msgstr "ตั้งค่าเพิ่มเติม"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:558
+#, fuzzy
+msgid "Install additional software automatically when starting Tails."
+msgstr ""
+"คุณสามารถติดตั้งซอฟต์แวร์เพิ่มเติมได้อย่างอัตโนมัติจากพื้นที่เก็บข้อมูล Persistent Storage "
+"ของคุณเมื่อเริ่มใช้งาน Tails"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:577
+#, fuzzy
+msgid "Configure Additional Software"
+msgstr "ซอฟต์แวร์เพิ่มเติม"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:590
+#, fuzzy
+msgid "Activate Additional Software"
+msgstr "ซอฟต์แวร์เพิ่มเติม"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:601
+msgid "Dotfiles"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:602
+msgid "Symlink every file in the Dotfiles folder into the Home folder."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:629
+msgid "Activate Dotfiles"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:659
+msgid "Custom"
+msgstr "ปรับแต่งเอง"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:678
+msgid ""
+"To add or remove custom features, modify /live/persistence/"
+"TailsData_unlocked/persistence.conf."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:720
+msgid ""
+"<a href=\"doc/persistent_storage\">Learn more about the Persistent Storage.</"
+"a>"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/locked_view.ui.in:52
+msgid ""
+"<b>Your Persistent Storage is locked.</b>\n"
+"\n"
+"To use or configure your Persistent Storage, unlock it in the Welcome Screen "
+"when starting Tails.\n"
+"\n"
+"To delete your Persistent Storage, click <b>Delete</b> on the right of the "
+"title bar."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:52
+msgid ""
+"Choose the passphrase that you will use to unlock the encryption of your "
+"Persistent Storage and all its data.\n"
+"\n"
+"We recommend a long passphrase of 5 to 7 random words."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:82
+#, fuzzy
+msgid "Passphrase:"
+msgstr "Passphrase:"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:101
+#, fuzzy
+msgid "Confirm:"
+msgstr "ยืนยัน"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:178
+#, fuzzy
+msgid "_Show Passphrase"
+msgstr "แสดงวลีรหัสผ่าน"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:265
+#, fuzzy
+msgid "_Back"
+msgstr "ย้อนกลับ"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:56
+msgid ""
+"Everything you do disappears automatically when you shut down Tails.\n"
+"\n"
+"But you can save some of your files and configuration in an encrypted "
+"Persistent Storage on your Tails USB stick, for example:\n"
+"\n"
+"• Your documents\n"
+"• Your Wi-Fi passwords\n"
+"• Your browser bookmarks\n"
+"• ...\n"
+"\n"
+"<a href=\"doc/persistent_storage\">Learn more about the Persistent Storage.</"
+"a>"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:92
+msgid ""
+"Sorry, it is impossible to create a Persistent Storage on this device.\n"
+"\n"
+"To be able to use Tails with a Persistent Storage, please follow our "
+"instructions on <a href=\"install\">installing Tails on a USB stick</a>."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:137
+msgid "Co_ntinue"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:29
+#, fuzzy
+msgid "_Delete..."
+msgstr "กำลังลบ..."
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:36
+#, fuzzy
+msgid "Delete Persistent Storage"
+msgstr "_สร้างพื้นที่เก็บข้อมูล Persistent Storage"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:49
+#, fuzzy
+msgid "_Change Passphrase..."
+msgstr "แสดงวลีรหัสผ่าน"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:66
+#, fuzzy
+msgid "_Restart Tails"
+msgstr "เริ่มต้น Tails ใหม่เดี๋ยวนี้"
+
+#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:61
+msgid "File Containers"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:80
+msgid "_Add"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:86
+msgid "Add a file container"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:103
+msgid "Partitions and Drives"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:121
+msgid ""
+"This application is not affiliated with or endorsed by the VeraCrypt project "
+"or IDRIX."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:29
+msgid "_Open"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:38
+msgid "Lock this volume"
+msgstr "ล็อกวอลุมนี้"
+
+#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:52
+msgid "_Unlock"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:61
+msgid "Detach this volume"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
+msgid "Target USB stick:"
+msgstr "USB key เป้าหมาย:"
+
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
+msgid "Reinstall (delete all data)"
+msgstr "ติดตั้งใหม่ (ลบข้อมูลทั้งหมด)"
+
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:11
+msgid "Copyright © 2009-2018 tails@boum.org"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
+msgid ""
+"WhisperBack - Send feedback in an encrypted mail\n"
+"Copyright (C) 2009-2018 Tails developers <tails@boum.org>\n"
+"\n"
+"This program is  free software; you can redistribute  it and/or modify\n"
+"it under the  terms of the GNU General Public  License as published by\n"
+"the Free Software Foundation; either  version 3 of the License, or (at\n"
+"your option) any later version.\n"
+"\n"
+"This program  is distributed in the  hope that it will  be useful, but\n"
+"WITHOUT   ANY  WARRANTY;   without  even   the  implied   warranty  of\n"
+"MERCHANTABILITY  or FITNESS  FOR A  PARTICULAR PURPOSE.   See  the GNU\n"
+"General Public License for more details.\n"
+"\n"
+"You should have received a copy of the GNU General Public License\n"
+"along with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:122
+msgid ""
+"If you want us to encrypt messages when we respond to you, add your key ID, "
+"a link to your key, or the key as a public key block:"
+msgstr ""
+"ถ้าคุณต้องการให้เราเข้ารหัสข้อความเมื่อเราตอบกลับคุณ เพิ่ม ID ของกุญแจคุณ ลิงก์ไปหากุญแจคุณ "
+"หรือกุญแจดังกล่าวในรูปแบบบล็อคกุญแจสาธารณะ"
+
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:308
+msgid "Summary"
+msgstr "สรุป"
+
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:337
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:485
+msgid "Bug description"
+msgstr "รายละเอียดบัก"
+
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:378
+msgid "Help:"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:388
+msgid "Read our bug reporting guidelines."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:416
+msgid "Email address (if you want an answer from us)"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:445
+msgid "optional PGP key"
+msgstr "กุญแจ PGP ตัวเลือก"
+
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:470
+msgid "Please know that we are not able to reply to every bug report."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:502
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:613
+msgid "Technical details to include"
+msgstr "รายละเอียดทางเทคนิคที่จะรวมไปด้วย"
+
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:540
+msgid "headers"
+msgstr "ส่วนหัว"
+
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:588
+msgid "debugging info"
+msgstr "ข้อมูลดีบัก"
+
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:680
+msgid "Send"
+msgstr "ส่ง"
+
+#: ../config/chroot_local-includes/usr/local/share/mime/packages/unlock-veracrypt-volumes.xml.in.h:1
+msgid "TrueCrypt/VeraCrypt container"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:82
+msgid "Configure a Tor bridge"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:106
+msgid ""
+"Bridges are secret Tor relays. Use a bridge as your first Tor relay if "
+"accessing Tor is blocked from where you are."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:122
+msgid "<a href=\"doc/anonymous_internet/tor\">Learn more about Tor bridges</a>"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:157
+msgid "Use a _default bridge"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:180
+msgid "obfs4 (recommended)"
+msgstr "obfs4 (แนะนำ)"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:181
+msgid "meek"
+msgstr "meek"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:204
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1518
+msgid "None"
+msgstr "ไม่มี"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:240
+msgid "_Ask for a Tor bridge by email"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:259
+msgid ""
+"Send an empty email to <tt>bridges@torproject.org</tt> from a Gmail or "
+"Riseup email address with your phone and scan the QR code that is attached "
+"to the automatic reply."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:272
+msgid "Scan _QR code"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:373
+msgid "_Enter a bridge that you already know"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:399
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1040
+msgid "Bridge"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:412
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1053
+msgid "obfs4 ..."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:485
+msgid "Save bridge to _Persistent Storage"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:510
+msgid "Save bridge to Persistent Storage"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:650
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1158
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1556
+msgid "_Connect to Tor"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:692
+msgid "Error connecting to Tor"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:736
+msgid "• Wrong clock"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:756
+msgid "Your clock and time zone need to be correct to connect to Tor."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:769
+msgid "Fix _Clock"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:807
+msgid "• Public network"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:827
+msgid ""
+"If you are in a shop, hotel, or airport, you might need to sign in to the "
+"local network using the Unsafe Browser."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:840
+msgid "Try _Signing in to the Network"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:879
+msgid "• Local proxy"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:899
+msgid ""
+"If you are on a corporate or university network, you might need to configure "
+"a local proxy."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:912
+msgid "Configure a Local _Proxy"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:951
+msgid "• Tor bridge by email"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:971
+msgid ""
+"Tor bridges are secret Tor relays. Use a bridge as your first Tor relay if "
+"connections to Tor are blocked, for example in some countries, by some "
+"public networks, or by some parental controls."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:991
+msgid ""
+"To get a bridge, send an empty email to <tt>bridges@torproject.org</tt> from "
+"a Gmail or Riseup email address with your phone and scan the QR code that is "
+"attached to the automatic reply."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1014
+msgid "Scan QR Code"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1145
+msgid ""
+"<a href=\"doc/anonymous_internet/tor/troubleshoot\">Troubleshooting "
+"connecting to Tor</a>"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1191
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1599
+msgid ""
+"Everything you do on the Internet from Tails goes through the Tor network."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1205
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1614
+msgid ""
+"Tor encrypts and anonymizes your connection by passing it through 3 relays.\n"
+"Tor relays are servers operated by different organizations and volunteers "
+"around the world."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1241
+msgid "<b>Connect to Tor _automatically</b>"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1291
+msgid ""
+"We recommend connecting to Tor automatically if you are on a public Wi-Fi "
+"network or if many people in your country use Tor to circumvent censorship."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1309
+msgid ""
+"Tails will try different ways of connecting to Tor until it succeeds.\n"
+"\n"
+"Someone monitoring your Internet connection could identify these attempts as "
+"coming from a Tails user."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1343
+msgid "Configure a Tor _bridge"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1389
+msgid ""
+"Tor bridges are secret Tor relays. Use a bridge as your first Tor relay if "
+"connections to Tor are blocked, for example in some countries, by some "
+"public networks, or by some parental controls.\n"
+"\n"
+"Choose this option if you already know that you need a bridge. Otherwise, "
+"Tails will autodetect whether you need a bridge to connect to Tor from your "
+"local network."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1431
+msgid "<b>_Hide to my local network that I'm connecting to Tor</b>"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1481
+msgid ""
+"You might need to go unnoticed if using Tor could look suspicious to someone "
+"who monitors your Internet connection."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1499
+msgid ""
+"Tails will only connect to Tor after you configured a Tor bridge. Bridges "
+"are secret Tor relays that hide that you are connecting to Tor.\n"
+"\n"
+"Our team is doing its best to help you connect to Tor using the most "
+"discrete types of Tor bridges.\n"
+"\n"
+"You will have to do extra configuration if you don't know any Tor bridges "
+"yet, if you connect from a public Wi-Fi network, or if you are in the "
+"Eastern Hemisphere."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1544
+msgid ""
+"<a href=\"doc/anonymous_internet/tor\">Learn more about how Tails connects "
+"to Tor</a>"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1629
+msgid "Connect to a local network"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1646
+msgid ""
+"You are not connected to a local network yet. To be able to connect to the "
+"Tor network, you first need to connect to a Wi-Fi, wire, or mobile network."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1658
+msgid "Open Wi-Fi settings"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1707
+msgid "Testing Internet access…"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1747
+msgid "You have access to the Internet"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1781
+msgid "Testing access to Tor…"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1824
+msgid "You can connect to Tor"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1854
+msgid "Failed to connect to Tor without bridges."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1870
+msgid "This local network is blocking access to Tor."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1902
+msgid "Connecting to Tor…"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2007
+msgid "Start Tor Browser"
+msgstr "เริ่มต้นใช้งาน Tor Browser"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2026
+msgid "Open Network Monitor"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2039
+msgid "View Tor Circuits"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2053
+msgid "Reset Tor Connection"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2093
+msgid "Configure a Local Proxy"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2119
+msgid "Proxy Type"
+msgstr "ชนิดพร็อกซี"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2136
+msgid "No proxy"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2137
+msgid "SOCKS 4"
+msgstr "SOCKS 4"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2138
+msgid "SOCKS 5"
+msgstr "SOCKS 5"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2139
+msgid "HTTP / HTTPS"
+msgstr "HTTP หรือ HTTPS"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2158
+msgid "Address"
+msgstr "ที่อยู่"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2175
+msgid "Username"
+msgstr "ชื่อผู้ใช้"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2192
+msgid "IP address or hostname"
+msgstr "ที่อยู่ IP หรือชื่อโฮสต์"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2210
+msgid "Port"
+msgstr "พอร์ต"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2334
+msgid "_Save Proxy Settings"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:7
+msgid "Tor Connection - Fix Clock"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:76
+msgid ""
+"Your time zone cannot be used to identify or locate you. Your time zone will "
+"never be sent over the network and will only be used to fix your clock and "
+"connect to Tor."
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:142
+msgid "Time zone"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:186
+msgid "Time"
+msgstr "เวลา"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:223
+msgid ":"
+msgstr ":"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:277
+msgid "Date"
+msgstr "วันที่"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:311
+msgid "January"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:312
+msgid "February"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:313
+msgid "March"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:314
+msgid "April"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:315
+msgid "May"
+msgstr "พ.ค."
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:316
+msgid "June"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:317
+msgid "July"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:318
+msgid "August"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:319
+msgid "September"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:320
+msgid "October"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:321
+msgid "November"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:322
+msgid "December"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:368
+msgid "Clock"
+msgstr ""
+
+#, python-format
+#~ msgid ""
+#~ "<h1>Help us fix your bug!</h1>\n"
+#~ "<p>Read <a href=\"%s\">our bug reporting instructions</a>.</p>\n"
+#~ "<p><strong>Do not include more personal information than\n"
+#~ "needed!</strong></p>\n"
+#~ "<h2>About giving us an email address</h2>\n"
+#~ "<p>\n"
+#~ "Giving us an email address allows us to contact you to clarify the "
+#~ "problem. This\n"
+#~ "is needed for the vast majority of the reports we receive as most "
+#~ "reports\n"
+#~ "without any contact information are useless. On the other hand it also "
+#~ "provides\n"
+#~ "an opportunity for eavesdroppers, like your email or Internet provider, "
+#~ "to\n"
+#~ "confirm that you are using Tails.\n"
+#~ "</p>\n"
+#~ msgstr ""
+#~ "<h1>ช่วยเราแก้ปัญหาเกี่ยวกับดีบั๊ก!</h1>\n"
+#~ "<p>โปรดอ่าน<a href=\"%s\">วิธีการแจ้งดีบั๊กให้เรา</a></p>\n"
+#~ "<p><strong>โปรดอย่าใส่ข้อมูลที่ระบุตัวตนของคุณได้ที่เกินกว่า\n"
+#~ "ความจำเป็น!</strong></p>\n"
+#~ "<h2>เกี่ยวกับการให้ที่อยู่อีเมลกับเรา</h2>\n"
+#~ "<p>\n"
+#~ "การให้ที่คุณให้ที่อยู่อีเมลกับเรานั้นเพื่อให้เราสามารถอธิบายเกี่ยวกับปัญหาให้คุณ "
+#~ "และนี่เป็นสิ่งจำเป็นเนื่องจากเราได้รับการแจ้งดีบั๊กเป็นจำนวนมากและก็จะไม่มีประโยชน์ใดเลยหากเราไม่มีข้อมูลติดต่อของคุณ "
+#~ "อนึ่ง การส่งที่อยู่อีเมลมาให้เรานั้นเปิดโอกาสให้ผู้ให้บริการต่างๆ "
+#~ "แอบดูการจราจรทางอินเทอร์เน็ตของคุณ เช่น อีเมล หรือ ผู้ให้บริการอีเมล เพื่อยืนยันว่าคุณกำลังใช้ "
+#~ "Tails อยู่\n"
+#~ "</p>\n"
+
+#~ msgid ""
+#~ "<b>Could not choose a download server.</b>\n"
+#~ "\n"
+#~ "This should not happen. Please report a bug."
+#~ msgstr ""
+#~ "<b>ไม่สามารถเลือกเซอร์เวอร์ในการดาวน์โหลด</b>\n"
+#~ "\n"
+#~ "กรณีนี้ไม่ควรเกิดขึ้น กรุณาทำการแจ้งบั๊ก"
+
+#~ msgid "Error while choosing a download server"
+#~ msgstr "พบข้อผิดพลาดขณะเลือกเซอร์เวอร์ในการดาวน์โหลด"
+
+#~ msgid "Enabled"
+#~ msgstr "เปิดใช้งานอยู่"
+
+#~ msgid "Create"
+#~ msgstr "สร้าง"
+
+#~ msgid "Verify Passphrase:"
+#~ msgstr "ยืนยันวลีผ่าน:"
+
+#~ msgid "Passphrase can't be empty"
+#~ msgstr "วลีผ่านปล่อยว่างไม่ได้"
+
+#~ msgid "Failed"
+#~ msgstr "ล้มเหลว"
+
+#~ msgid "Creating..."
+#~ msgstr "กำลังสร้าง..."
+
+#~ msgid "Save"
+#~ msgstr "บันทึก"
+
+#~ msgid "Saving..."
+#~ msgstr "กำลังบันทึก..."
+
+#~ msgid "Delete"
+#~ msgstr "ลบ"
+
+#~ msgid "Printers configuration"
+#~ msgstr "การตั้งค่าเครื่องพิมพ์เอกสาร"
+
+#~ msgid "Thunderbird emails, feeds, and OpenPGP keys"
+#~ msgstr "อีเมลจาก Thunderbird ฟีดต่างๆ และกุญแจ OpenPGP"
+
+#~ msgid "Bitcoin Client"
+#~ msgstr "ลูกข่ายบิตคอยน์"
+
+#~ msgid "Pidgin"
+#~ msgstr "Pidgin"
diff --git a/po/tr.po b/po/tr.po
index c5b29ed8ab8..92893cc1085 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -34,8 +34,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
-"PO-Revision-Date: 2023-01-28 05:48+0000\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
+"PO-Revision-Date: 2023-03-15 07:37+0000\n"
 "Last-Translator: Kaya Zeren <kayazeren@gmail.com>\n"
 "Language-Team: Turkish <https://hosted.weblate.org/projects/tor/tails-gui/tr/"
 ">\n"
@@ -44,7 +44,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: Weblate 4.16-dev\n"
+"X-Generator: Weblate 4.16.2-dev\n"
 
 #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1
@@ -356,7 +356,7 @@ msgid "Upgrade later"
 msgstr "Daha sonra güncelle"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:518
-#, fuzzy, perl-brace-format
+#, perl-brace-format
 msgid ""
 "<b>You should do a manual upgrade to the latest version of {name}.</b>\n"
 "\n"
@@ -372,7 +372,8 @@ msgstr ""
 "Bu sürüm hakkında ayrıntılı bilgi almak için {details_url} adresine "
 "bakabilirsiniz\n"
 "\n"
-"Aygıtınız bu Tails sürümüne otomatik olarak güncellenemez.\n"
+"Aygıtınız bu yeni Tails sürümüne otomatik olarak güncellenemez: "
+"{explanation}.\n"
 "\n"
 "El ile güncellemenin nasıl yapılacağını öğrenmek için {manual_upgrade_url} "
 "adresine bakabilirsiniz"
@@ -533,9 +534,9 @@ msgid "Additional Settings"
 msgstr "Ek ayarlar"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "Ä°ptal"
@@ -606,30 +607,28 @@ msgstr "Kapalı"
 msgid "Off (default)"
 msgstr "Kapalı (varsayılan)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
-#, fuzzy
-msgid "Persistent Storage Not Unlocked"
-msgstr "Kalıcı depolama birimi"
-
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
 #, fuzzy
+msgid "Persistent Storage Still Locked"
+msgstr "Kalıcı depolama biriminin kilidi açılmamış"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
 msgstr ""
-"Tails sistemini yeniden baÅŸlatmak istediÄŸinize emin misiniz?\\n\\nÅžu andaki "
-"çalışmanız kaybolacak."
+"Tails sistemini kalıcı depolama biriminizin kilidini açmadan yeniden "
+"baÅŸlatmak istediÄŸinize emin misiniz?"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
 #, fuzzy
-msgid "Continue Without Persistent Storage"
-msgstr "Kalıcı depolama birimi oluştur"
+msgid "Start Without Persistent Storage"
+msgstr "Kalıcı depolama birimi olmadan ilerle"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
-#, fuzzy
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 msgid "Don't _Create Persistent Storage"
-msgstr "_Kalıcı depolama birimi oluştur"
+msgstr "Kalıcı depolama birimi _oluşturma"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 msgid "_Create Persistent Storage"
 msgstr "_Kalıcı depolama birimi oluştur"
@@ -649,7 +648,6 @@ msgstr "Kilit açılıyor…"
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr "Kilidi aç"
 
@@ -879,7 +877,7 @@ msgstr ""
 msgid "Synchronizing data on disk..."
 msgstr "Diskteki veriler eÅŸitleniyor..."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
@@ -887,63 +885,63 @@ msgstr ""
 "Hata: Etiket ayarlanamıyor ya da aygıtınızın UUID kodu alınamıyor. İşlem "
 "sürdürülemiyor."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr "Kurulum tamamlandı! (%s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr "Tails kurulumu tamamlanamadı!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr "Tails kurucu"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr "Geçerli Tails kurulumunu kopyala"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr "İndirilmiş bir Tails ISO kalıbı kullan"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr "Güncelle"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr "El ile güncelleme yönergeleri"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr "Kur"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr "Kurulum yönergeleri"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(size)s %(vendor)s %(model)s aygıt (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr "Herhangi bir ISO kalıbı seçilmemiş"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr "Lütfen bir Tails ISO kalıbı seçin."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -954,7 +952,7 @@ msgstr ""
 "yapılandırılmış olduğundan Tails buradan başlatılamayacak. Lütfen farklı bir "
 "modele kurmayı deneyin."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
@@ -963,7 +961,7 @@ msgstr ""
 "\"%(pretty_name)s\" aygıtı Tails sisteminin kurulması için çok küçük (en az "
 "%(size)s GB gereklidir)."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -974,33 +972,33 @@ msgstr ""
 "Tails ISO kalıbına gerek duyacaksınız:\n"
 "%(dl_url)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr "Tails kurucusuna uygun bir aygıt bulunamadı"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr "Lütfen en az %0.1f GB kapasiteli bir USB bellek ya da SD kart takın."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr "Tails kurulurken bir sorun çıktı"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr "Kurulum tamamlandı!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr "Aygıt takılamadı"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(parent_size)s %(vendor)s %(model)s aygıt (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
@@ -1010,11 +1008,11 @@ msgstr ""
 "\n"
 "Bu USB bellekteki kalıcı depolama birimi kaybolacak."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr "Kalıcı depolama birimini sil ve yeniden kur"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
@@ -1024,20 +1022,20 @@ msgstr ""
 "\n"
 "Bu USB bellekteki tüm veriler kaybolacak."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr "Tüm verileri sil ve kur"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr "%(description)s%(delete_message)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr "Hedef USB belleği onaylayın"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
@@ -1045,7 +1043,7 @@ msgstr ""
 "Seçilen dosya okunamıyor. Lütfen dosya izinlerini denetleyin ya da başka bir "
 "dosya seçin."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
@@ -1053,7 +1051,7 @@ msgstr ""
 "Seçilmiş dosya kullanılamadı. ISO kalıbını diskinizin kök klasörüne "
 "taşımanız işe yarayabilir (C:\\ gibi)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr "%(filename)s seçildi"
@@ -1142,7 +1140,7 @@ msgstr "su komutu devre dışı bırakılmış. Lütfen yerine sudo komutunu kul
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1208,7 +1206,7 @@ msgstr "kullanılamıyor"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -1217,7 +1215,7 @@ msgstr ""
 "{details} Lütfen ek uygulama listenizi denetleyin ya da sorunu anlamak için "
 "sistem günlüğüne bakın."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
@@ -1225,55 +1223,55 @@ msgstr ""
 "Lütfen ek uygulama listenizi denetleyin ya da sorunu anlamak için sistem "
 "günlüğüne bakın."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr "Günlüğü görüntüle"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "Yapılandır"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} ile {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ", "
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "{packages} ek uygulamalara eklensin mi?"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 "Tails başlatılırken kalıcı depolama biriminizden otomatik olarak kurmak için."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr "Her defasında kurulsun"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr "Yalnızca bir kez kurulsun"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr "Ek uygulamanız yapılandırılamadı."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -1281,67 +1279,67 @@ msgstr ""
 "Tails başlatılırken otomatik kurulum yapılması için bir kalıcı depolama "
 "birimi oluşturarak <b>Ek Uygulamalar</b> özelliğini etkinleştirebilirsiniz."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr "Kalıcı depolama birimi oluştur"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr "Kalıcı depolama birimi oluşturulamadı."
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr "Tails başlatılırken otomatik olarak {packages} kurabilirsiniz"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr "Bunun için Tails sistemini bir USB bellekten çalıştırmalısınız."
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "{packages} ek uygulamalarınızdan kaldırılsın mı?"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr "Bu iÅŸlem otomatik {packages} kurulumunu durduracak."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "Kaldır"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr "Ek uygulamalarınız kalıcı depolama biriminden kuruluyor..."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr "Bu işlem bir kaç dakika sürebilir."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr "Ek uygulama kurulamadı"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr "Ek uygulama kuruldu"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr "Ek uygulamalarınızın güncellemeleri denetlenemedi"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -1349,11 +1347,11 @@ msgstr ""
 "Lütfen ağ bağlantınızı denetleyin, Tails sistemini yeniden başlatın ya da "
 "sorunu anlamak için sistem günlüğüne bakın."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr "Ek uygulama güncellenemedi"
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "Belgeler"
 
@@ -1516,19 +1514,19 @@ msgstr ""
 "Bilgiler: {manual_upgrade_url}"
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr "hata:"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr "Uyarı: Sanal makine algılandı!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr "Uyarı: Özgür olmayan sanal makine algılandı!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1539,11 +1537,11 @@ msgstr ""
 "işlemleri izler. Sunucu işletim sistemi ve sanallaştırma uygulaması için "
 "yalnızca özgür yazılımlar güvenilir olarak düşünülebilir."
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr "Bir daha gösterme"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr "Ayrıntılı bilgi alın"
 
@@ -1557,22 +1555,20 @@ msgid "_Use a bridge that you already know"
 msgstr "_Bildiğim bir köprüyü kullanacağım"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:242
-#, fuzzy
 msgid ""
 "To save your bridge, <a href=\"doc/persistent_storage\">unlock your "
 "Persistent Storage</a>."
 msgstr ""
-"Köprünüzü kaydetmek için <a href=\"doc/first_steps/persistence\">kalıcı "
-"depolama biriminizin kilidini açın</a>."
+"Köprünüzü kaydetmek için <a href=\"doc/persistent_storage\">kalıcı depolama "
+"biriminizin kilidini açın</a>."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:249
-#, fuzzy
 msgid ""
 "To save your bridge, <a href=\"doc/persistent_storage\">create a Persistent "
 "Storage</a> on your Tails USB stick."
 msgstr ""
-"Köprünüzü kaydetmek için, Tails USB diskinizde <a href=\"doc/first_steps/"
-"persistence\">bir kalıcı depolama birimi oluşturun</a>."
+"Köprünüzü kaydetmek için, Tails USB diskinizde <a href=\"doc/"
+"persistent_storage\">bir kalıcı depolama birimi oluşturun</a>."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:269
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:773
@@ -1637,9 +1633,8 @@ msgstr ""
 "gezinebilirsiniz."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:703
-#, fuzzy
 msgid "This local network seems to be blocking access to Tor."
-msgstr "Yerel ağınızdan Tor bağlantısı kurulması engelleniyor."
+msgstr "Bu yerel ağ Tor bağlantısı kurulmasını engelliyor gibi görünüyor."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:776
 msgid "Bridge address malformed"
@@ -1674,11 +1669,11 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1112
 msgid "Close and Lose Progress"
-msgstr ""
+msgstr "Kapat ve ilerlemeyi kaybet"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1113
 msgid "Wait"
-msgstr ""
+msgstr "Bekle"
 
 #: config/chroot_local-includes/usr/local/bin/thunderbird:41
 msgid "You need to migrate your OpenPGP keys"
@@ -1899,11 +1894,11 @@ msgstr ""
 msgid "Choose File Container"
 msgstr "Dosya kapsayıcısını seçin"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr "Giriş ekranında Unsafe Browser devre dışı bırakılmış.\\n\\n"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
@@ -1912,21 +1907,21 @@ msgstr ""
 "ekranının ek ayarlar bölümünden Unsafe Browser kullanılsın seçeneğinin "
 "etkinleÅŸtirildiÄŸinden emin olun."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr "Unsafe Browser kullanmak için Tails sistemini yeniden başlatın."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr "_Yeniden baÅŸlat"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 msgid "_Cancel"
 msgstr "Ä°_ptal"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
@@ -1934,27 +1929,27 @@ msgstr ""
 "Tails sistemini yeniden baÅŸlatmak istediÄŸinize emin misiniz?\\n\\nÅžu andaki "
 "çalışmanız kaybolacak."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr "Yeniden baÅŸlat"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr "Sistem yeniden başlatılamadı."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr "Unsafe Browser başlatılıyor..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr "Bu işlem biraz zaman alabilir, lütfen sabırlı olun."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr "Unsafe Browser kapatılıyor..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
@@ -1962,13 +1957,13 @@ msgstr ""
 "Bu işlem biraz zaman alabilir. Unsafe Browser düzgün kapatılmadan yeniden "
 "baÅŸlatamayabilirsiniz."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr "Unsafe Browser"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
@@ -1976,15 +1971,15 @@ msgstr ""
 "Şu anda başka bir Unsafe Browser çalışıyor ya da temizleniyor. Lütfen bir "
 "süre sonra yeniden deneyin."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr "chroot kurulamadı."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr "Tarayıcıyı ayarlanamadı."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
@@ -1994,7 +1989,7 @@ msgstr ""
 "uygulamasını başlatabilmek için öncelikle bir Wi-Fi, kablo ya da mobil ağı "
 "ile bağlantı kurmalısınız."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr "Tarayıcıyı çalıştırılamadı."
 
@@ -2171,6 +2166,7 @@ msgid "Tails documentation"
 msgstr "Tails belgeleri"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 msgid "Persistent Storage"
 msgstr "Kalıcı depolama birimi"
@@ -2199,6 +2195,19 @@ msgstr "Tails sistemini nasıl kullanacağınızı öğrenin"
 msgid "Learn more about Tails"
 msgstr "Tails hakkında ayrıntılı bilgi alın"
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "Kalıcı depolama birimi"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+#, fuzzy
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+"Tails USB belleğinize kaydetmek istediğiniz veriler için kalıcı depolama "
+"birimi özelliklerini açar."
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr "Tails sistemini kur, kopyala, yükselt"
@@ -2269,7 +2278,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr "Yönetim parolası"
 
@@ -2295,7 +2304,7 @@ msgid "Disable"
 msgstr "Devre dışı bırak"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr "MAC adresi anonimleÅŸtirme"
 
@@ -2321,7 +2330,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr "MAC adresleri anonimleÅŸtirilmesin"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr "Ağ yapılandırması"
 
@@ -2404,11 +2413,11 @@ msgstr "Ayarlar kalıcı depolama biriminden yüklendi."
 msgid "Welcome to Tails!"
 msgstr "Tails sistemine hoÅŸ geldiniz!"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 msgid "_Persistent Storage"
 msgstr "_Kalıcı depolama birimi"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
@@ -2418,49 +2427,52 @@ msgstr ""
 "şifrelenmiş kalıcı depolama birimine kaydedebilirsiniz: Belgeleriniz, "
 "tarayıcı yer imleriniz, Wi-Fi parolalarınız gibi bilgiler."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr ""
 "Tails sistemini başlattıktan sonra kalıcı depolama biriminizi oluşturacak ve "
 "yapılandıracaksınız."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr "Dil ve bölge"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr "Varsayılan ayarlar"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
-msgstr "Şifrelenmiş _kalıcı depolama birimi"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
 msgid "Show Passphrase"
 msgstr "Parola görüntülensin"
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
-msgstr "Kalıcı depolama biriminin kilidini açmak için parolanızı yazın"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "Parola:"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+#, fuzzy
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 "Kalıcı depolama biriminin kilidi açıldı. Yeniden kilitlemek için Tails "
 "sistemini yeniden başlatın."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr "_Ek ayarlar"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr "Bir ek ayar ekle"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
@@ -2468,11 +2480,11 @@ msgstr ""
 "Çoğu durum için varsayılan ayarları kullanmak güvenlidir. Özel bir ayar "
 "eklemek için aşağıdaki \"+\" düğmesine tıklayın."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 msgid "Shutdown"
 msgstr "Kapat"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr "Tails _baÅŸlat"
 
@@ -2535,7 +2547,6 @@ msgid "Send Error Report"
 msgstr "Hata bildirimi gönder"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:61
-#, fuzzy
 msgid ""
 "Your Persistent Storage is unlocked.\n"
 "\n"
@@ -2548,8 +2559,8 @@ msgstr ""
 "\n"
 "İçeriğine Tails sistemini kapatana kadar erişebilirsiniz.\n"
 "\n"
-"<a href=\"doc/first_steps/persistence/backup\">Kalıcı depolama biriminizi "
-"nasıl yedekleyeceğinizi öğrenin.</a>"
+"<a href=\"doc/persistent_storage/backup\">Kalıcı depolama biriminizi nasıl "
+"yedekleyeceğinizi öğrenin.</a>"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:89
 msgid ""
@@ -2579,10 +2590,20 @@ msgstr "Kalıcı klasör kullanılsın"
 msgid "System Settings"
 msgstr "Sistem ayarları"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+#, fuzzy
+msgid "Welcome Screen"
+msgstr "Giriş ekranı kullanılsın"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 msgid "Activate Welcome Screen"
 msgstr "Giriş ekranı kullanılsın"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+#, fuzzy
+msgid "Printers"
+msgstr "Yazıcılar kullanılsın"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 msgid "Activate Printers"
 msgstr "Yazıcılar kullanılsın"
@@ -2615,6 +2636,11 @@ msgstr "Tor köprüsü kullanılsın"
 msgid "Applications"
 msgstr "Uygulamalar"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "Tor Browser yer imleri kullanılsın"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 msgid "Activate Tor Browser Bookmarks"
 msgstr "Tor Browser yer imleri kullanılsın"
@@ -2624,7 +2650,6 @@ msgid "Electrum Bitcoin Wallet"
 msgstr "Electrum Bitcoin cüzdanı"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:419
-#, fuzzy
 msgid "Activate Electrum Bitcoin Wallet"
 msgstr "Electrum Bitcoin cüzdanı kullanılsın"
 
@@ -2707,16 +2732,14 @@ msgstr ""
 "TailsData_unlocked/persistence.conf dosyasını değiştirin."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:720
-#, fuzzy
 msgid ""
 "<a href=\"doc/persistent_storage\">Learn more about the Persistent Storage.</"
 "a>"
 msgstr ""
-"<a href=\"doc/first_steps/persistence\">Kalıcı depolama birimi hakkında "
-"ayrıntılı bilgi alın</a>"
+"<a href=\"doc/persistent_storage\">Kalıcı depolama birimi hakkında ayrıntılı "
+"bilgi alın</a>"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/locked_view.ui.in:52
-#, fuzzy
 msgid ""
 "<b>Your Persistent Storage is locked.</b>\n"
 "\n"
@@ -2726,10 +2749,13 @@ msgid ""
 "To delete your Persistent Storage, click <b>Delete</b> on the right of the "
 "title bar."
 msgstr ""
-"<b>Kalıcı depolama biriminiz kilitlendi.</b>\n"
+"<b>Kalıcı depolama biriminiz kilitli.</b>\n"
 "\n"
 "Kalıcı depolama biriminizi kullanmak ya da yapılandırmak için Tails "
-"sistemini başlatırken giriş ekranından kilidini açın."
+"sistemini başlatırken karşılama ekranından kilidini açın.\n"
+"\n"
+"Kalıcı depolama biriminizi silmek için adres çubuğunun sağındaki <b>Sil</b> "
+"üzerine tıklayın."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:52
 msgid ""
@@ -2761,7 +2787,6 @@ msgid "_Back"
 msgstr "_Geri"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:56
-#, fuzzy
 msgid ""
 "Everything you do disappears automatically when you shut down Tails.\n"
 "\n"
@@ -2786,11 +2811,10 @@ msgstr ""
 "• Tarayıcı yer imleriniz\n"
 "• ve bunun gibi diğer bilgiler\n"
 "\n"
-"<a href=\"doc/first_steps/persistence\">Kalıcı depolama birimi hakkında "
-"ayrıntılı bilgi alın</a>"
+"<a href=\"doc/persistent_storage\">Kalıcı depolama birimi hakkında ayrıntılı "
+"bilgi alın</a>"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:92
-#, fuzzy
 msgid ""
 "Sorry, it is impossible to create a Persistent Storage on this device.\n"
 "\n"
@@ -2800,10 +2824,9 @@ msgstr ""
 "Ne yazık ki bu Tails aygıtı üzerinde bir kalıcı depolama birimi "
 "oluşturulması desteklemiyor.\n"
 "\n"
-"Kalıcı depolama birimini kullanabilmek için, Tails sistemini bir USB belleğe "
-"yüklemek hakkında ayrıntılı bilgi almak için belgelere bakabilirsiniz:\n"
-"\n"
-"<a href=\"install\">Tails kurulumu</a>"
+"Kalıcı depolama birimini ile Tails kullanabilmek için lütfen <a "
+"href=\"install\">Tails sistemini bir USB belleğe yüklemek</a> yönergelerini "
+"izleyin."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:137
 msgid "Co_ntinue"
@@ -2865,11 +2888,11 @@ msgstr "_Engellemeyi kaldır"
 msgid "Detach this volume"
 msgstr "Bu birimin bağlantısını kes"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr "Hedef USB belleÄŸi:"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr "Yeniden kur (tüm verileri sil)"
 
@@ -3006,9 +3029,8 @@ msgid "None"
 msgstr "Hiçbiri"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:240
-#, fuzzy
 msgid "_Ask for a Tor bridge by email"
-msgstr "_E-posta ile köprü isteğinde bulun"
+msgstr "_E-posta ile Tor köprüsü isteyin"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:259
 msgid ""
@@ -3103,12 +3125,10 @@ msgid "Configure a Local _Proxy"
 msgstr "Bir yerel _vekil sunucu yapılandır"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:951
-#, fuzzy
 msgid "• Tor bridge by email"
-msgstr "• E-posta ile köprü"
+msgstr "• E-posta ile Tor köprüsü"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:971
-#, fuzzy
 msgid ""
 "Tor bridges are secret Tor relays. Use a bridge as your first Tor relay if "
 "connections to Tor are blocked, for example in some countries, by some "
@@ -3116,22 +3136,17 @@ msgid ""
 msgstr ""
 "Tor köprüleri gizli Tor aktarıcılarıdır. Örneğin bazı ülkelerde, bazı halka "
 "açık ağlarda veya bazı ebeveyn denetimi yapılan ağlarda Tor ile bağlantı "
-"kurulması engellenmişse, ilk Tor aktarıcısı olarak bir köprü kullanın.\n"
-"\n"
-"Bir köprüye gerek duyduğunuzdan eminseniz bu seçeneği kullanın. Yoksa Tails, "
-"yerel ağınızdan Tor bağlantısı kurmak için bir köprü gerekip gerekmediğini "
-"otomatik olarak algılar.."
+"kurulması engellenmişse, ilk Tor aktarıcısı olarak bir köprü kullanın."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:991
-#, fuzzy
 msgid ""
 "To get a bridge, send an empty email to <tt>bridges@torproject.org</tt> from "
 "a Gmail or Riseup email address with your phone and scan the QR code that is "
 "attached to the automatic reply."
 msgstr ""
-"Telefonunuzu ve bir Gmail ya da Riseup e-posta adresi kullanarak "
-"<tt>bridges@torproject.org</tt> adresine boş bir e-posta gönderin. Otomatik "
-"olarak verilen yanıtın ekindeki QR kodunu tarayın."
+"Bir köprü almak için, telefonunuzu ve bir Gmail ya da Riseup e-posta "
+"adresini kullanarak <tt>bridges@torproject.org</tt> adresine boÅŸ bir e-posta "
+"gönderin. Otomatik olarak verilen yanıtın ekindeki QR kodunu tarayın."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1014
 msgid "Scan QR Code"
@@ -3290,9 +3305,8 @@ msgid "Failed to connect to Tor without bridges."
 msgstr "Köprü kullanmadan Tor bağlantısı kurulamadı."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1870
-#, fuzzy
 msgid "This local network is blocking access to Tor."
-msgstr "Yerel ağınızdan Tor bağlantısı kurulması engelleniyor."
+msgstr "Bu yerel ağ Tor bağlantısı kurulmasını engelliyor."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1902
 msgid "Connecting to Tor…"
@@ -3440,6 +3454,12 @@ msgstr "Aralık"
 msgid "Clock"
 msgstr "Saat"
 
+#~ msgid "Encrypted _Persistent Storage"
+#~ msgstr "Şifrelenmiş _kalıcı depolama birimi"
+
+#~ msgid "Enter your passphrase to unlock the persistent storage"
+#~ msgstr "Kalıcı depolama biriminin kilidini açmak için parolanızı yazın"
+
 #, python-format
 #~ msgid ""
 #~ "<h1>Help us fix your bug!</h1>\n"
diff --git a/po/uk.po b/po/uk.po
new file mode 100644
index 00000000000..6f2cc7835ba
--- /dev/null
+++ b/po/uk.po
@@ -0,0 +1,3824 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+# jonny_nut, 2014
+# 897b2b5cdc927df55351e4b7d9378e5f_8d08a40 <aa41384901129ecb61f66395ce8929f2_442997>, 2016
+# LinuxChata, 2014
+# Michael Radchenko, 2021
+# O Herenko <herenko@ex.ua>, 2018
+# Oleksii Golub <sclub2018@yandex.ua>, 2015
+# Pinro Lomil <lomil97@gmail.com>, 2013
+# Sergio Thirdlingson <serge3ling@gmail.com>, 2017
+# Vira Motorko <ato4ka@i.ua>, 2015-2016
+# Vlad Anisimov <uniss@ua.fm>, 2022
+# f5a88f9e30127107e3f9ea67ac1be70b, 2015
+# Андрій Бандура <andriykopanytsia@gmail.com>, 2014
+# 3c10bacd49bdf01f9bfcd12a08b27e72_2c12325 <e46b2567c3990225cf11357b76499731_140467>, 2014
+msgid ""
+msgstr ""
+"Project-Id-Version: Tor Project\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
+"PO-Revision-Date: 2023-02-22 21:37+0000\n"
+"Last-Translator: Ihor Hordiichuk <igor_ck@outlook.com>\n"
+"Language-Team: Ukrainian <https://hosted.weblate.org/projects/tor/tails-gui/"
+"uk/>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != "
+"11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % "
+"100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || "
+"(n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
+"X-Generator: Weblate 4.16-dev\n"
+
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8
+#: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:557
+msgid "Additional Software"
+msgstr "Додаткове програмне забезпечення"
+
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:51
+msgid ""
+"You can install additional software automatically from your persistent "
+"storage when starting Tails."
+msgstr ""
+"Ви можете автоматично встановити додаткове програмне забезпечення зі свого "
+"постійного сховища під час запуску Tails."
+
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:77
+msgid ""
+"The following software is installed automatically from your persistent "
+"storage when starting Tails."
+msgstr ""
+"Наведене нижче програмне забезпечення встановлюється автоматично з вашого "
+"постійного сховища під час запуску Tails."
+
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
+msgid ""
+"To add more, install some software using <a href=\"synaptic."
+"desktop\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal."
+"desktop\">APT on the command line</a>."
+msgstr ""
+"Щоб додати більше, встановіть програмне забезпечення за допомогою <a "
+"href=\"synaptic.desktop\">Synaptic Package Manager</a> або <a href=\"org."
+"gnome.Terminal.desktop\">APT у командному рядку</a>."
+
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
+msgid "_Create persistent storage"
+msgstr "_Створити постійне сховище"
+
+#: config/chroot_local-includes/usr/local/bin/electrum:72
+msgid "Persistence is disabled for Electrum"
+msgstr "Режим постійного сховища вимкнений для Electrum"
+
+#: config/chroot_local-includes/usr/local/bin/electrum:74
+msgid ""
+"When you reboot Tails, all of Electrum's data will be lost, including your "
+"Bitcoin wallet.\n"
+"It is strongly recommended to only run Electrum when its persistence feature "
+"is activated."
+msgstr ""
+"Коли ви перезавантажите Tails, всі дані Electrum будуть втрачені, включно з "
+"вашим гаманцем Bitcoin.\n"
+"Радимо запускати Electrum лише коли активована його функція збереження."
+
+#: config/chroot_local-includes/usr/local/bin/electrum:75
+msgid "Do you want to start Electrum anyway?"
+msgstr "Усе одно запустити Electrum ?"
+
+#: config/chroot_local-includes/usr/local/bin/electrum:78
+msgid "_Launch"
+msgstr "_Запустити"
+
+#: config/chroot_local-includes/usr/local/bin/electrum:79
+msgid "_Exit"
+msgstr "_Вийти"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/DownloadProgress.pm:59
+msgid "Unknown time"
+msgstr "Невідомий час"
+
+#. Translators: Don't translate {count}, it's a place holder and
+#. will be replaced.
+#. y is the short form for years.
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/DownloadProgress.pm:78
+#, perl-brace-format
+msgid "1y"
+msgid_plural "{count}y"
+msgstr[0] "{count}Ñ€"
+msgstr[1] "{count}Ñ€"
+msgstr[2] "{count}Ñ€"
+msgstr[3] "{count}Ñ€"
+
+#. Translators: Don't translate {count}, it's a place holder and
+#. will be replaced.
+#. d is the short form for days.
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/DownloadProgress.pm:82
+#, perl-brace-format
+msgid "1d"
+msgid_plural "{count}d"
+msgstr[0] "{count}д"
+msgstr[1] "{count}д"
+msgstr[2] "{count}д"
+msgstr[3] "{count}д"
+
+#. Translators: Don't translate {count}, it's a place holder and
+#. will be replaced.
+#. h is the short form for hours;
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/DownloadProgress.pm:86
+#, perl-brace-format
+msgid "1h"
+msgid_plural "{count}h"
+msgstr[0] "{count}год"
+msgstr[1] "{count}год"
+msgstr[2] "{count}год"
+msgstr[3] "{count}год"
+
+#. Translators: Don't translate {count}, it's a place holder and
+#. will be replaced.
+#. m is the short form for minutes;
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/DownloadProgress.pm:90
+#, perl-brace-format
+msgid "1m"
+msgid_plural "{count}m"
+msgstr[0] "{count} хв"
+msgstr[1] "{count} хв"
+msgstr[2] "{count} хв"
+msgstr[3] "{count} хв"
+
+#. Translators: Don't translate {count}, it's a place holder and
+#. will be replaced.
+#. s is the short form for seconds;
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/DownloadProgress.pm:94
+#, perl-brace-format
+msgid "1s"
+msgid_plural "{count}s"
+msgstr[0] "{count} с"
+msgstr[1] "{count} с"
+msgstr[2] "{count} с"
+msgstr[3] "{count} с"
+
+#. Translators: don't translate {time}, {downloaded}, {size}
+#. and {speed}, they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/DownloadProgress.pm:139
+#, perl-brace-format
+msgid "#{time} left — {downloaded} of {size} ({speed}/sec)\n"
+msgstr "#{time} залишилось - {downloaded} з {size} ({speed}/с)\n"
+
+#. Translators: KB is the short form for kilobyte
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Role/FormatByte.pm:33
+msgid "KB"
+msgstr "Кб"
+
+#. Translators: MB is the short form for megabyte
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Role/FormatByte.pm:35
+msgid "MB"
+msgstr "Мб"
+
+#. Translators: GB is the short form for gigabyte
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Role/FormatByte.pm:37
+msgid "GB"
+msgstr "Гб"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Role/FormatByte.pm:43
+msgid "bytes"
+msgstr "байт(і,ів)"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:197
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:707
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:859
+msgid ""
+"For debugging information, execute the following command: sudo tails-"
+"debugging-info"
+msgstr ""
+"Щоб отримати інформацію відлагодження, виконайте таку команду: sudo tails-"
+"debugging-info"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:289
+msgid ""
+"<b>An error occured while updating the signing key.</b>\\n\\n<b>This "
+"prevents determining whether an upgrade is available from our website.</"
+"b>\\n\\nCheck your network connection, and restart Tails to try upgrading "
+"again.\\n\\nIf the problem persists, go to file:///usr/share/doc/tails/"
+"website/doc/upgrade/error/check.en.html"
+msgstr ""
+"<b>Під час оновлення ключа підпису сталася помилка.</b>\\n\\n<b>Це не "
+"дозволяє визначити, чи доступне оновлення з нашого веб-сайту.</"
+"b>\\n\\nПеревірте підключення до мережі та перезапустіть Tails, щоб "
+"спробувати оновити знову.\\n\\nЯкщо проблема не зникне, перейдіть до файлу: "
+"file:///usr/share/doc/tails/website/doc/upgrade/error/check.en.html"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:303
+msgid "Error while downloading the signing key"
+msgstr "Під час завантаження ключа підпису сталася помилка"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:314
+msgid "Error while updating the signing key"
+msgstr "Помилка під час оновлення ключа підпису"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:341
+msgid "Error while checking for upgrades"
+msgstr "При перевірці оновлень виникла помилка"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:343
+msgid ""
+"<b>Could not determine whether an upgrade is available from our website.</"
+"b>\n"
+"\n"
+"Check your network connection, and restart Tails to try upgrading again.\n"
+"\n"
+"If the problem persists, go to file:///usr/share/doc/tails/website/doc/"
+"upgrade/error/check.en.html"
+msgstr ""
+"<b>Не вдалося перевірити наявність оновлень на нашому сайті.</b>\n"
+"\n"
+"Перевірте з'єднання з мережею, та перезапустіть Tails для повторної спроби "
+"оновлення.\n"
+"\n"
+"Якщо проблема зберігається, дивіться file:///usr/share/doc/tails/website/doc/"
+"upgrade/error/check.en.html"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:358
+msgid "no automatic upgrade is available from our website for this version"
+msgstr "для цієї версії програми немає автоматичного оновлення нашого сайту"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364
+msgid "your device was not created using a USB image or Tails Installer"
+msgstr ""
+"ваш пристрій не було створено за допомогою образу USB або Tails Installer"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:369
+msgid "Tails was started from a DVD or a read-only device"
+msgstr "Tails була запущена з DVD або пристрою, доступного тільки для читання"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:374
+msgid "there is not enough free space on the Tails system partition"
+msgstr "на вашому пристрої недостатньо вільного місця"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:379
+msgid "not enough memory is available on this system"
+msgstr "недостатньо пам'яті"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:384
+#, perl-brace-format
+msgid "No explanation available for reason '{reason}'."
+msgstr "Немає пояснень щодо причини \"{reason}\"."
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:407
+msgid "The system is up-to-date"
+msgstr "Усі останні оновлення встановлено"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:412
+msgid "This version of Tails is outdated, and may have security issues."
+msgstr "Ця версія Tails застаріла і може мати проблеми з безпекою."
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:442
+#, perl-brace-format
+msgid ""
+"The available incremental upgrade requires {space_needed} of free space on "
+"Tails system partition,  but only {free_space} is available."
+msgstr ""
+"Доступне інкрементне оновлення потребує {space_needed} вільного місця на "
+"системному розділі Tails, але доступно лише {free_space}."
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:454
+#, perl-brace-format
+msgid ""
+"The available incremental upgrade requires {memory_needed} of free memory, "
+"but only {free_memory} is available."
+msgstr ""
+"Доступне інкрементне оновлення потребує {memory_needed} вільної пам’яті, але "
+"доступно лише {free_memory}."
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:465
+msgid ""
+"An error ocurred while detecting available upgrades.\n"
+"This should not happen. Please report a bug."
+msgstr ""
+"Під час виявлення оновлень сталася помилка.\n"
+"Це не повинно було статися. Будь ласка, повідомте про помилку."
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:468
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:487
+msgid "Error while detecting available upgrades"
+msgstr "Під час виявлення оновлень виникла помилка"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:483
+msgid ""
+"An incremental upgrade is available, but no full upgrade is.\n"
+"This should not happen. Please report a bug."
+msgstr ""
+"Тільки додаткове, а не повне оновлення доступно.\n"
+"Цього не повинно було статися. Будь ласка, повідомте про помилку."
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:496
+#, perl-brace-format
+msgid ""
+"<b>You should upgrade to {name} {version}.</b>\n"
+"\n"
+"For more information about this new version, go to {details_url}\n"
+"\n"
+"We recommend you close all other applications during the upgrade.\n"
+"Downloading the upgrade might take a long time, from several minutes to a "
+"few hours.\n"
+"\n"
+"Download size: {size}\n"
+"\n"
+"Do you want to upgrade now?"
+msgstr ""
+"<b>Вам варто оновитися до {name} {version}.</b>\n"
+"\n"
+"Більше інформації про цю нову версію ви можете знайти на {details_url}\n"
+"\n"
+"Ми рекомендуємо вам закрити усі інші додатки під час оновлення.\n"
+"Завантаження оновлення може зайняти багато часу - від кількох хвилин до "
+"кількох годин.\n"
+"\n"
+"Розмір завантаження: {size}\n"
+"\n"
+"Бажаєте виконати оновлення зараз?"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:509
+msgid "Upgrade available"
+msgstr "Доступне оновлення"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:510
+msgid "Upgrade now"
+msgstr "Оновити зараз"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:511
+msgid "Upgrade later"
+msgstr "Оновити пізніше"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:518
+#, perl-brace-format
+msgid ""
+"<b>You should do a manual upgrade to the latest version of {name}.</b>\n"
+"\n"
+"For more information about this new version, go to {details_url}\n"
+"\n"
+"It is impossible to do an automatic upgrade of your Tails to this new "
+"version: {explanation}.\n"
+"\n"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
+msgstr ""
+"<b>Вам слід виконати ручне оновлення до найновішої версії {name}.</b>\n"
+"\n"
+"Для отримання додаткової інформації про цю нову версію перейдіть на "
+"{details_url}\n"
+"\n"
+"Автоматично оновити ваш Tails до цієї нової версії неможливо: "
+"{explanation}.\n"
+"\n"
+"Щоб дізнатися, як виконати оновлення вручну, перейдіть на "
+"{manual_upgrade_url}"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:528
+msgid "New version available"
+msgstr "Доступна нова версія"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:609
+msgid "Downloading upgrade"
+msgstr "Завантаження оновлення"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:611
+#, perl-brace-format
+msgid "Downloading the upgrade to {name} {version}..."
+msgstr "Завантаження оновлення до {name} {version}..."
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700
+msgid ""
+"<b>The upgrade could not be downloaded.</b>\\n\\nCheck your network "
+"connection, and restart Tails to try upgrading again.\\n\\nIf the problem "
+"persists, go to file:///usr/share/doc/tails/website/doc/upgrade/error/"
+"download.en.html"
+msgstr ""
+"<b>Неможливо завантажити оновлення.</b>\\n\\nПеревірте мережне з'єднання та "
+"перезапустіть Tails, щоб повторити спробу оновлення.\\n\\nЯкщо проблема не "
+"зникне, перегляньте file:///usr/share/doc/tails/website/doc/upgrade/error/"
+"download.en.html"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:711
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:726
+msgid "Error while downloading the upgrade"
+msgstr "При завантаженні оновлень виникла помилка"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:721
+#, perl-brace-format
+msgid ""
+"Output file '{output_file}' does not exist, but tails-iuk-get-target-file "
+"did not complain. Please report a bug."
+msgstr ""
+"Вихідний файл '{output_file}' не існує, але tails-iuk-get-target-file не "
+"скаржився. Будь ласка, повідомте про помилку."
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:737
+msgid "Error while creating temporary downloading directory"
+msgstr "При створенні тимчасової папки для завантажень виникла помилка"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:740
+msgid "Failed to create temporary download directory"
+msgstr "Не вдалося створити тимчасову папки для завантажень"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:752
+msgid ""
+"The upgrade was successfully downloaded.\n"
+"\n"
+"The network connection will be disabled when applying the upgrade.\n"
+"\n"
+"Please save your work and close all other applications."
+msgstr ""
+"Оновлення було успішно завантажене.\n"
+"\n"
+"Мережеве з'єднання буде вимкнене коли почнеться оновлення.\n"
+"\n"
+"Збережіть вашу роботу та закрийте усі інші додатки."
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:757
+msgid "Upgrade successfully downloaded"
+msgstr "Оновлення успішно завантажене"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:758
+msgid "Apply upgrade"
+msgstr "Застосувати оновлення"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:765
+msgid ""
+"<b>Your Tails device was successfully upgraded.</b>\n"
+"\n"
+"Some security features were temporarily disabled.\n"
+"You should restart Tails on the new version as soon as possible.\n"
+"\n"
+"Do you want to restart now?"
+msgstr ""
+"<b>Ваш Tails-пристрій було успішно оновлено.</b>\n"
+"\n"
+"Деякі налаштуваня безпеки були тимчасово відключені.\n"
+"Ви повинні перезапустити нову версію Tails якомога швидше.\n"
+"\n"
+"Хочете перевантажити зараз?"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:770
+msgid "Restart Tails"
+msgstr "Перезавантажити Tails"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:771
+msgid "Restart now"
+msgstr "Перезавантажити зараз"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:772
+msgid "Restart later"
+msgstr "Перезавантажити пізніше"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:782
+msgid "Error while restarting the system"
+msgstr "При перезавантажені системи виникла помилка"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:783
+msgid "Failed to restart the system"
+msgstr "Не вдалося перезавантажити систему"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:796
+msgid "Error while shutting down the network"
+msgstr "При вимкнені мережі виникла помилка"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:797
+msgid "Failed to shutdown network"
+msgstr "Не вдалося вимкнути мережу"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:807
+msgid "Error while cancelling the upgrade download"
+msgstr "Помилка під час скасування завантаження оновлення"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:808
+msgid "Failed to cancel the upgrade download"
+msgstr "Не вдалося скасувати завантаження оновлення"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:814
+msgid "Upgrading the system"
+msgstr "Оновлення системи"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:816
+msgid ""
+"<b>Your Tails device is being upgraded...</b>\n"
+"\n"
+"For security reasons, the network connection is now disabled."
+msgstr ""
+"<b>Встановлюється оновлення на ваш Tails-пристрій...</b>\n"
+"\n"
+"З метою безпеки мережеве з'єднання вимкнено."
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:853
+msgid ""
+"<b>An error occured while installing the upgrade.</b>\\n\\nYour Tails device "
+"needs to be repaired and might be unable to restart.\\n\\nPlease follow the "
+"instructions at file:///usr/share/doc/tails/website/doc/upgrade/error/"
+"install.en.html"
+msgstr ""
+"<b>У процесі установки оновлення сталася помилка.</b>\\n\\nВаш Tails-"
+"пристрій потребує відновлення, і, можливо, не зможе запуститися знову."
+"\\n\\nбудь ласка, дотримуйтесь інструкцій по посиланню file:///usr/share/doc/"
+"tails/website/doc/upgrade/error/install.en.html"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:863
+msgid "Error while installing the upgrade"
+msgstr "При встановлені оновлень виникла помилка"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:32
+msgid "Additional Settings"
+msgstr "Додаткові налаштування"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+msgid "Cancel"
+msgstr "Відмова"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:46
+msgid "Add"
+msgstr "Додати"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:54
+msgid "Back"
+msgstr "Назад"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:63
+msgid "_Administration Password"
+msgstr "_Пароль адміністратора"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:186
+msgid "_MAC Address Anonymization"
+msgstr "_Анонімізація MAC-адреси"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:249
+msgid "_Offline Mode"
+msgstr "_Офлайн Режим"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:258
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:413
+msgid "Enable networking (default)"
+msgstr "Увімкнути мережеве з'єднання (за замовчуванням)"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:260
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:459
+msgid "Disable all networking"
+msgstr "Вимкнути всі з'єдання"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:315
+msgid "_Network Connection"
+msgstr "_З'єднання з мережею"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:323
+msgid "Obsolete"
+msgstr "Застаріле"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:338
+msgid "_Unsafe Browser"
+msgstr "_Небезпечний Браузер"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:347
+msgid "Enabled (default)"
+msgstr "Увімкнено (типово)"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:349
+msgid "Disabled"
+msgstr "Вимкнено"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:400
+msgid "On (default)"
+msgstr "Увімкнуто (за промовчанням)"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:402
+msgid "On"
+msgstr "Увімк."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:404
+msgid "Off"
+msgstr "Вимк."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:406
+msgid "Off (default)"
+msgstr "Вимкнуто (за промовчанням)"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#, fuzzy
+msgid "Persistent Storage Still Locked"
+msgstr "Постійне сховище не розблоковано"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
+msgid ""
+"Do you really want to start Tails without unlocking your Persistent Storage?"
+msgstr ""
+"Ви справді хочете запустити Tails без розблокування постійного сховища?"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
+#, fuzzy
+msgid "Start Without Persistent Storage"
+msgstr "Продовжити без розблокування постійного сховища"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
+msgid "Don't _Create Persistent Storage"
+msgstr "Не _створювати постійне сховище"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
+msgid "_Create Persistent Storage"
+msgstr "_Створити постійне сховище"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:83
+msgid "Error unlocking Persistent Storage: {}"
+msgstr "Помилка розблокування постійного сховища: {}"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:102
+msgid "Error activating Persistent Storage: {}"
+msgstr "Помилка активування постійного сховища: {}"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:68
+msgid "Unlocking…"
+msgstr "Розблокування…"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
+msgid "Unlock"
+msgstr "Розблокувати"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:99
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:40
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr "Неможливо розблокувати зашифроване сховище цим паролем."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:112
+msgid ""
+"Failed to unlock the Persistent Storage. Please start Tails and send an "
+"error report."
+msgstr ""
+"Не вдалося розблокувати постійне сховище. Будь ласка, запустіть Tails і "
+"надішліть звіт про помилку."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:122
+msgid ""
+"Failed to activate the Persistent Storage. Please start Tails and send an "
+"error report."
+msgstr ""
+"Не вдалося активувати постійне сховище. Будь ласка, запустіть Tails і "
+"надішліть звіт про помилку."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/region_settings.py:164
+msgid "_Language"
+msgstr "_Мова"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/region_settings.py:207
+msgid "_Formats"
+msgstr "_Формати"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/region_settings.py:244
+msgid "_Keyboard Layout"
+msgstr "_Розкладка клавіатури"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:288
+#, python-format
+msgid "Unable to write on %(device)s, skipping."
+msgstr "Неможливо записати на %(device)s, пропускаю."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:332
+#, python-format
+msgid ""
+"Some partitions of the target device %(device)s are mounted. They will be "
+"unmounted before starting the installation process."
+msgstr ""
+"Деякі розділи цільового пристрою %(device)s змонтовані. Вони будуть "
+"демонтовані перед початком установки."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:341
+msgid "Extracting live image to the target device..."
+msgstr "Видобування живого образу на цільовий пристрій..."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:348
+#, python-format
+msgid "Wrote to device at %(speed)d MB/sec"
+msgstr "Записано на пристрій на %(speed)d MB/sec"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:446
+#, python-format
+msgid ""
+"There was a problem executing the following command: `%(command)s`.\n"
+"A more detailed error log has been written to \"%(filename)s\"."
+msgstr ""
+"Помилка виконання команди: `%(command)s`.\n"
+"Детальний журнал помилок збережений у \"%(filename)s\"."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:462
+#, python-format
+msgid ""
+"Not enough free space on device.\n"
+"%(iso_size)dMB ISO + %(overlay_size)dMB overlay > %(free_space)dMB free space"
+msgstr ""
+"Недостатньо місця на пристрої.\n"
+"%(iso_size)dMB ISO + %(overlay_size)dMB постійне сховище > %(free_space)dMB "
+"вільного місця"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:471
+#, python-format
+msgid "Creating %sMB persistent overlay"
+msgstr "Створення %sМБ постійного сховища"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:521
+#, python-format
+msgid "Unable to copy %(infile)s to %(outfile)s: %(message)s"
+msgstr "Не вдалося скопіювати %(infile)s на %(outfile)s: %(message)s"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:535
+msgid "Removing existing Tails system"
+msgstr "Видалення існуючої системи Tails"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:545
+#, python-format
+msgid "Unable to remove file from previous Tails system: %(message)s"
+msgstr "Не вдалося видалити файл з попередньої системи Tails: %(message)s"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:552
+#, python-format
+msgid "Unable to chmod %(file)s: %(message)s"
+msgstr "Не вдалося chmod %(file)s: %(message)s"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:559
+#, python-format
+msgid "Unable to remove directory from previous Tails system: %(message)s"
+msgstr "Не вдалося видалити каталог з попередньої системи Tails: %(message)s"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:607
+#, python-format
+msgid "Cannot find device %s"
+msgstr "Пристрій %s не знайдено"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:657
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:904
+msgid "Unknown filesystem.  Your device may need to be reformatted."
+msgstr "Невідома файлова система. Ваш пристрій потребує переформатування."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:660
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:907
+#, python-format
+msgid "Unsupported filesystem: %s"
+msgstr "Непідтримувана файлова система: %s"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:678
+#, python-format
+msgid "Unknown GLib exception while trying to mount device: %(message)s"
+msgstr "Невідоме виключення GLib при спробі встановити пристрій: %(message)s"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:683
+#, python-format
+msgid "Unable to mount device: %(message)s"
+msgstr "Не вдалося змонтувати пристрій: %(message)s"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:688
+msgid "No mount points found"
+msgstr "Немає точок монтування"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:699
+#, python-format
+msgid "Entering unmount_device for \"%(device)s\""
+msgstr "Відкриття незмонтованого_пристрою для «%(device)s»"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:708
+#, python-format
+msgid "Unmounting mounted filesystems on \"%(device)s\""
+msgstr "Демонтування файлових систем на «%(device)s»"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:712
+#, python-format
+msgid "Unmounting \"%(udi)s\" on \"%(device)s\""
+msgstr "Відмонтування «%(udi)s» на «%(device)s»"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:723
+#, python-format
+msgid "Mount %s exists after unmounting"
+msgstr "Точка монтування %s існує після демонтування"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:760
+#, python-format
+msgid "Partitioning device %(device)s"
+msgstr "Розмітка пристрою %(device)s"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:889
+#, python-format
+msgid "Unsupported device '%(device)s', please report a bug."
+msgstr ""
+"Непідтримуваний пристрій '%(device)s', будь ласка, повідомте про помилку."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:892
+msgid "Trying to continue anyway."
+msgstr "Спроба все одно продовжити."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:901
+msgid "Verifying filesystem..."
+msgstr "Перевірка файлової системи..."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:925
+#, python-format
+msgid "Unable to change volume label: %(message)s"
+msgstr "Не вдалося змінити мітку тому: %(message)s"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:930
+msgid "Installing bootloader..."
+msgstr "Встановлення завантажувача..."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:937
+#, python-format
+msgid "Removing %(file)s"
+msgstr "Видалення %(file)s"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:1019
+#, python-format
+msgid "%s already bootable"
+msgstr "%s вже завантажувальний"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:1039
+msgid "Unable to find partition"
+msgstr "Не вдалося знайти розділ"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:1058
+#, python-format
+msgid "Formatting %(device)s as FAT32"
+msgstr "Форматування %(device)s у FAT32"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:1121
+#, python-format
+msgid "Reading extracted MBR from %s"
+msgstr "Читання витягнутого MBR з %s"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:1125
+#, python-format
+msgid "Could not read the extracted MBR from %(path)s"
+msgstr "Не зміг прочитати витягнутий MBR з %(path)s"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:1138
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:1139
+#, python-format
+msgid "Resetting Master Boot Record of %s"
+msgstr "Очищення головного завантажувального запису %s"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:1144
+msgid "Drive is a loopback, skipping MBR reset"
+msgstr "Цей диск є циклічним пристроєм, пропускаємо очищення MBR"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:1148
+msgid "Synchronizing data on disk..."
+msgstr "Синхронізація даних на диску..."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
+msgid ""
+"Error: Cannot set the label or obtain the UUID of your device.  Unable to "
+"continue."
+msgstr ""
+"Помилка: Не вдається встановити позначку чи отримати UUID вашого пристрою.  "
+"Неможливо продовжити."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
+#, python-format
+msgid "Installation complete! (%s)"
+msgstr "Установка завершена! (%s)"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
+msgid "Tails installation failed!"
+msgstr "Не вдалось установити Tails!"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
+#: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
+msgid "Tails Installer"
+msgstr "Инсталятор Tails"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
+msgid "Clone the current Tails"
+msgstr "Клонувати поточний Tails"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
+msgid "Use a downloaded Tails ISO image"
+msgstr "Використати завантажений ISO-образ Tails"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
+msgid "Upgrade"
+msgstr "Оновлення"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
+msgid "Manual Upgrade Instructions"
+msgstr "Інструкція з ручного оновлення"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
+msgid "Install"
+msgstr "Встановити"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
+msgid "Installation Instructions"
+msgstr "Інструкції зі Встановлення"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
+#, python-format
+msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
+msgstr "%(size)s%(vendor)s%(model)s пристрій (%(device)s)"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
+msgid "No ISO image selected"
+msgstr "Не вибрано ISO-образ"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
+msgid "Please select a Tails ISO image."
+msgstr "Оберіть ISO-образ Tails."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
+#, python-format
+msgid ""
+"The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
+"manufacturer and Tails will fail to start from it. Please try installing on "
+"a different model."
+msgstr ""
+"USB-накопичувач \"%(pretty_name)s\" налаштовано виробником як незнімний, і "
+"Tails не зможе з нього запуститися. Спробуйте встановити на іншу модель."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
+#, python-format
+msgid ""
+"The device \"%(pretty_name)s\" is too small to install Tails (at least "
+"%(size)s GB is required)."
+msgstr ""
+"Пристрій \"%(pretty_name)s\" замалий для встановлення Tails (потрібно хоча б "
+"%(size)s ГБ)."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
+#, python-format
+msgid ""
+"To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
+"downloaded Tails ISO image:\n"
+"%(dl_url)s"
+msgstr ""
+"Щоб оновити пристрій \"%(pretty_name)s\" з цього Tails, вам потрібно "
+"скористатися завантаженим ISO-образом Tails:\n"
+"%(dl_url)s"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
+msgid "No device suitable to install Tails could be found"
+msgstr "Не вдалося знайти пристрій, придатний для встановлення Tails"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
+#, python-format
+msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
+msgstr ""
+"Будь ласка, під'єднайте USB-накопичувач або SD-карту ємністю принаймні %0.1f "
+"ГБ."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
+msgid "An error happened while installing Tails"
+msgstr "Під час встановлення Tails сталася помилка"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
+msgid "Installation complete!"
+msgstr "Установка завершена!"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
+msgid "Unable to mount device"
+msgstr "Не вдалося змонтувати пристрій"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
+#, python-format
+msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
+msgstr "%(parent_size)s %(vendor)s %(model)s пристрій (%(device)s)"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
+msgid ""
+"\n"
+"\n"
+"The persistent storage on this USB stick will be lost."
+msgstr ""
+"\n"
+"\n"
+"Постійне сховище на цьому USB-накопичувачі буде втрачено."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
+msgid "Delete Persistent Storage and Reinstall"
+msgstr "Видалити і перевстановити постійне сховище"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
+msgid ""
+"\n"
+"\n"
+"All data on this USB stick will be lost."
+msgstr ""
+"\n"
+"\n"
+"Всі дані на цьому USB-накопичувачі будуть втрачені."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
+msgid "Delete All Data and Install"
+msgstr "Видалити всі дані і встановити"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
+#, python-format
+msgid "%(description)s%(delete_message)s"
+msgstr "%(description)s%(delete_message)s"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
+msgid "Confirm the target USB stick"
+msgstr "Підтвердьте цільовий USB-накопичувач"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
+msgid ""
+"The selected file is unreadable. Please fix its permissions or select "
+"another file."
+msgstr "Вибраний файл не читається. Виправте файл або виберіть інший."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
+msgid ""
+"Unable to use the selected file.  You may have better luck if you move your "
+"ISO to the root of your drive (ie: C:\\)"
+msgstr ""
+"Неможливо використовувати вказаний файл. Спробуйте перемістити ISO в корінь "
+"диска (наприклад, C:\\)"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
+#, python-format
+msgid "%(filename)s selected"
+msgstr "%(filename)s обрано"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/source.py:31
+msgid "Unable to find Tails on ISO"
+msgstr "Не вдається знайти Tails на ISO"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/source.py:37
+#, python-format
+msgid "Could not guess underlying block device: %s"
+msgstr "Не можу вгадати основний блоковий пристрій: %s"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/source.py:52
+#, python-format
+msgid ""
+"There was a problem executing `%(cmd)s`.\n"
+"%(out)s\n"
+"%(err)s"
+msgstr ""
+"Виникла проблема виконання `%(cmd)s`.\n"
+"%(out)s\n"
+"%(err)s"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/source.py:64
+#, python-format
+msgid "\"%s\" does not exist"
+msgstr "«%s» не існує"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/source.py:66
+#, python-format
+msgid "\"%s\" is not a directory"
+msgstr "«%s» не є каталогом"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/source.py:77
+#, python-format
+msgid "Skipping \"%(filename)s\""
+msgstr "Пропуск «%(filename)s»"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/utils.py:54
+#, python-format
+msgid ""
+"There was a problem executing `%(cmd)s`.%(out)s\n"
+"%(err)s"
+msgstr ""
+"Виникла проблема виконання `%(cmd)s`.%(out)s\n"
+"%(err)s"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/utils.py:126
+msgid "Could not open device for writing."
+msgstr "Не вдається відкрити пристрій для запису."
+
+#: config/chroot_local-includes/usr/local/bin/keepassxc:19
+#, sh-format
+msgid ""
+"<b><big>Do you want to rename your <i>KeePassXC</i> database?</big></b>\n"
+"\n"
+"You have a <i>KeePassXC</i> database in your <i>Persistent</i> folder:\n"
+"\n"
+"<i>${filename}</i>\n"
+"\n"
+"Renaming your database to <i>${default_filename}</i> would allow "
+"<i>KeePassXC</i> to open it automatically in the future."
+msgstr ""
+"<b><big>Хочете перейменувати свою базу даних <i>KeePassXC</i>?</big></b>\n"
+"\n"
+"Ваша база даних <i>KeePassXC</i> розміщена в <i>постійній</i> теці:\n"
+"\n"
+"<i>${filename}</i>\n"
+"\n"
+"Перейменування вашої бази даних на <i>${default_filename}</i> дозволить "
+"<i>KeePassXC</i> автоматично відкривати її в майбутньому."
+
+#: config/chroot_local-includes/usr/local/bin/keepassxc:28
+msgid "Rename"
+msgstr "Перейменувати"
+
+#: config/chroot_local-includes/usr/local/bin/keepassxc:30
+msgid "Keep current name"
+msgstr "Залишити поточну назву"
+
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
+msgid "su is disabled. Please use sudo instead."
+msgstr "su вимкнено. Натомість використовуйте sudo."
+
+#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1096
+msgid "Error"
+msgstr "Помилка"
+
+#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
+msgid ""
+"The device Tails is running from cannot be found. Maybe you used the 'toram' "
+"option?"
+msgstr ""
+"Не вдається знайти пристрій, з якого запущений Tails. Може, ви скористалися "
+"опцією 'toram'?"
+
+#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:251
+msgid ""
+"The drive Tails is running from cannot be found. Maybe you used the 'toram' "
+"option?"
+msgstr ""
+"Не вдалося знайти диск, з якого запущений Tails. Може, ви скористалися "
+"опцією 'toram'?"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:78
+msgid "Lock screen"
+msgstr "Заблокувати екран"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:82
+msgid "Suspend"
+msgstr "Призупинити"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:86
+msgid "Restart"
+msgstr "Перезавантажити"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:90
+msgid "Power Off"
+msgstr "Вимкнення живлення"
+
+#: config/chroot_local-includes/usr/local/bin/tails-about:22
+#: config/chroot_local-includes/usr/local/bin/tails-about:35
+#: ../config/chroot_local-includes/usr/share/desktop-directories/Tails.directory.in.h:1
+msgid "Tails"
+msgstr "Tails"
+
+#: config/chroot_local-includes/usr/local/bin/tails-about:25
+#: ../config/chroot_local-includes/usr/share/applications/tails-about.desktop.in.h:1
+msgid "About Tails"
+msgstr "Про Tails"
+
+#: config/chroot_local-includes/usr/local/bin/tails-about:36
+#, python-format
+msgid ""
+"Build information:\n"
+"%s"
+msgstr ""
+"Інформація про зборку:\n"
+"%s"
+
+#: config/chroot_local-includes/usr/local/bin/tails-about:54
+msgid "not available"
+msgstr "недоступно"
+
+#. Translators: Don't translate {details}, it's a placeholder and will
+#. be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
+#, python-brace-format
+msgid ""
+"{details} Please check your list of additional software or read the system "
+"log to understand the problem."
+msgstr ""
+"{details} Перевірте свій список додаткового програмного забезпечення або "
+"прочитайте системний журнал, щоб зрозуміти проблему."
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
+msgid ""
+"Please check your list of additional software or read the system log to "
+"understand the problem."
+msgstr ""
+"Перевірте свій список додаткового програмного забезпечення або прочитайте "
+"системний журнал, щоб зрозуміти проблему."
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
+msgid "Show Log"
+msgstr "Показати журнал"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
+msgid "Configure"
+msgstr "Налаштування"
+
+#. Translators: Don't translate {beginning} or {last}, they are
+#. placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
+#, python-brace-format
+msgid "{beginning} and {last}"
+msgstr "{beginning} Ñ– {last}"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
+msgid ", "
+msgstr ", "
+
+#. Translators: Don't translate {packages}, it's a placeholder and will
+#. be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
+#, python-brace-format
+msgid "Add {packages} to your additional software?"
+msgstr "Додати {packages} до вашого додаткового програмного забезпечення?"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
+msgid ""
+"To install it automatically from your persistent storage when starting Tails."
+msgstr ""
+"Щоб автоматично встановити його з постійного сховища під час запуску Tails."
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
+msgid "Install Every Time"
+msgstr "Встановлювати кожного разу"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+msgid "Install Only Once"
+msgstr "Встановити лише один раз"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
+msgid "The configuration of your additional software failed."
+msgstr "Помилка конфігурації вашого додаткового програмного забезпечення."
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
+msgid ""
+"To install it automatically when starting Tails, you can create a persistent "
+"storage and activate the <b>Additional Software</b> feature."
+msgstr ""
+"Щоб встановити його автоматично під час запуску Tails, ви можете створити "
+"постійне сховище та активувати функцію <b>Additional Software</b>."
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+msgid "Create Persistent Storage"
+msgstr "Створити Постійне Сховище"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
+msgid "Creating your persistent storage failed."
+msgstr "Не вдалося створити постійне сховище."
+
+#. Translators: Don't translate {packages}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#, python-brace-format
+msgid "You could install {packages} automatically when starting Tails"
+msgstr "Ви можете автоматично встановити {packages} під час запуску Tails"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
+msgid "To do so, you need to run Tails from a USB stick."
+msgstr "Для цього вам потрібно запустити Tails з USB-накопичувача."
+
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#, python-brace-format
+msgid "Remove {packages} from your additional software?"
+msgstr "Вилучити {packages} із додаткового програмного забезпечення?"
+
+#. Translators: Don't translate {packages}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
+#, python-brace-format
+msgid "This will stop installing {packages} automatically."
+msgstr "Це автоматично припинить встановлення {packages}."
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
+msgid "Remove"
+msgstr "Забрати"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
+msgid "Installing your additional software from persistent storage..."
+msgstr ""
+"Встановлення додаткового програмного забезпечення з постійного сховища..."
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
+msgid "This can take several minutes."
+msgstr "Це може зайняти декілька хвилин."
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
+msgid "The installation of your additional software failed"
+msgstr "Помилка встановлення додаткового програмного забезпечення"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
+msgid "Additional software installed successfully"
+msgstr "Додаткове програмне забезпечення успішно встановлено"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
+msgid "The check for upgrades of your additional software failed"
+msgstr "Не вдалося перевірити оновлення додаткового програмного забезпечення"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
+msgid ""
+"Please check your network connection, restart Tails, or read the system log "
+"to understand the problem."
+msgstr ""
+"Перевірте підключення до мережі, перезапустіть Tails або прочитайте "
+"системний журнал, щоб зрозуміти проблему."
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
+msgid "The upgrade of your additional software failed"
+msgstr "Помилка оновлення вашого додаткового програмного забезпечення"
+
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
+msgid "Documentation"
+msgstr "Документація"
+
+#. Translators: Don't translate {package}, it's a placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#, python-brace-format
+msgid ""
+"Remove {package} from your additional software? This will stop installing "
+"the package automatically."
+msgstr ""
+"Видалити {package} із додаткового програмного забезпечення? Це призведе до "
+"припинення автоматичного встановлення пакету."
+
+#. Translators: Don't translate {pkg}, it's a placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:106
+#, python-brace-format
+msgid "Failed to remove {pkg}"
+msgstr "Не вдалося видалити {pkg}"
+
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:131
+msgid "Failed to read additional software configuration"
+msgstr "Не вдалося прочитати додаткову конфігурацію програмного забезпечення"
+
+#. Translators: Don't translate {package}, it's a placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:161
+#, python-brace-format
+msgid "Stop installing {package} automatically"
+msgstr "Припинити автоматичне встановлення {package}"
+
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:187
+msgid ""
+"To do so, install some software using <a href=\"synaptic.desktop\">Synaptic "
+"Package Manager</a> or <a href=\"org.gnome.Terminal.desktop\">APT on the "
+"command line</a>."
+msgstr ""
+"Щоб зробити це, встановіть програмне забезпечення за допомогою <a "
+"href=\"synaptic.desktop\">Synaptic Package Manager</a> або <a href=\"org."
+"gnome.Terminal.desktop\">APT у командному рядку</a>."
+
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:196
+msgid ""
+"To do so, unlock your persistent storage when starting Tails and install "
+"some software using <a href=\"synaptic.desktop\">Synaptic Package Manager</"
+"a> or <a href=\"org.gnome.Terminal.desktop\">APT on the command line</a>."
+msgstr ""
+"Для цього розблокуйте своє постійне сховище під час запуску Tails та "
+"встановіть деяке програмне забезпечення за допомогою <a href=\"synaptic."
+"desktop\">Synaptic Package Manager</a> або <a href=\"org.gnome.Terminal."
+"desktop\">APT у командному рядку</a>."
+
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
+msgid ""
+"To do so, create a persistent storage and install some software using <a "
+"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a href=\"org."
+"gnome.Terminal.desktop\">APT on the command line</a>."
+msgstr ""
+"Для цього створіть постійне сховище та встановіть програмне забезпечення за "
+"допомогою <a href=\"synaptic.desktop\">Synaptic Package Manager</a> або <a "
+"href=\"org.gnome.Terminal.desktop\">APT у командному рядку</a>."
+
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:214
+msgid "To do so, install Tails on a USB stick and create a persistent storage."
+msgstr ""
+"Для цього встановіть Tails на USB-накопичувач і створіть постійне сховище."
+
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:258
+msgid "[package not available]"
+msgstr "[пакет недоступний]"
+
+#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:68
+msgid "Failed to synchronize the clock!"
+msgstr "Не вдалося синхронізувати годинник!"
+
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:110
+msgid "Lock Screen"
+msgstr "Заблокувати екран"
+
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:125
+msgid "Screen Locker"
+msgstr "Блокувальник екрану"
+
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:131
+msgid "Set up a password to unlock the screen."
+msgstr "Встановіть пароль, щоб розблокувати екран."
+
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:149
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2227
+msgid "Password"
+msgstr "Пароль"
+
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:93
+msgid "Confirm"
+msgstr "Підтвердити"
+
+#: config/chroot_local-includes/usr/local/bin/tails-security-check:121
+msgid "This version of Tails has known security issues:"
+msgstr "Ця версія Tails має відомі проблеми безпеки:"
+
+#: config/chroot_local-includes/usr/local/bin/tails-security-check:132
+msgid "Known security issues"
+msgstr "Відомі проблеми безпеки"
+
+#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:56
+#, sh-format
+msgid "Network card ${nic} disabled"
+msgstr "Мережева карта ${nic} відключена"
+
+#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:57
+#, sh-format
+msgid ""
+"MAC address anonymization failed for network card ${nic_name} (${nic}) so it "
+"is temporarily disabled.\n"
+"You might prefer to restart Tails and disable MAC address anonymization."
+msgstr ""
+"Не вдалося анонімізувати MAC-адресу для мережевої карти ${nic_name} "
+"(${nic}), тому її тимчасово вимкнено.\n"
+"Ви можете віддати перевагу перезапуску Tails і вимкнути анонімізацію MAC-"
+"адреси."
+
+#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:66
+msgid "All networking disabled"
+msgstr "Всі налаштування мережі вимкнені"
+
+#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:67
+#, sh-format
+msgid ""
+"MAC address anonymization failed for network card ${nic_name} (${nic}). The "
+"error recovery also failed so all networking is disabled.\n"
+"You might prefer to restart Tails and disable MAC address anonymization."
+msgstr ""
+"Не вдалося анонімізувати MAC-адресу для мережевої карти ${nic_name} "
+"(${nic}). Відновлення помилок також не вдалося, тому всі мережі вимкнено.\n"
+"Ви можете віддати перевагу перезапуску Tails і вимкнути анонімізацію MAC-"
+"адреси."
+
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
+msgid ""
+"<b>Not enough memory available to check for upgrades.</b>\n"
+"\n"
+"Make sure this system satisfies the requirements for running Tails.\n"
+"See file:///usr/share/doc/tails/website/doc/about/requirements.en.html\n"
+"\n"
+"Try to restart Tails to check for upgrades again.\n"
+"\n"
+"Or do a manual upgrade.\n"
+"See {manual_upgrade_url}"
+msgstr ""
+"<b>Недостатньо доступної пам'яті для перевірки оновлень.</b>\n"
+"\n"
+"Переконайтеся, що система задовільняє вимогам для запуску Tails.\n"
+"Прочитайте файл:///usr/share/doc/tails/website/doc/about/requirements.en."
+"html\n"
+"\n"
+"Спробуйте перезапустити Tails для повторної перевірки оновлень.\n"
+"\n"
+"Або здійсніть ручне оновлення.\n"
+"Див. {manual_upgrade_url}"
+
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
+msgid "error:"
+msgstr "помилка:"
+
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
+msgid "Warning: virtual machine detected!"
+msgstr "Увага: знайдено віртуальну машину!"
+
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+msgid "Warning: non-free virtual machine detected!"
+msgstr "Увага: знайдено невільну віртуальну машину!"
+
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+msgid ""
+"Both the host operating system and the virtualization software are able to "
+"monitor what you are doing in Tails. Only free software can be considered "
+"trustworthy, for both the host operating system and the virtualization "
+"software."
+msgstr ""
+"Операційна система та програмне забезпечення віртуалізації у змозі "
+"контролювати те, що Ви робите в Tails. Лише вільне програмне забезпечення "
+"розглядається як варте довіри, як для операційної системи, так і для "
+"програмне забезпечення віртуалізації."
+
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
+msgid "Don't Show Again"
+msgstr "Не показувати знову"
+
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+msgid "Learn More"
+msgstr "Докладніше"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/config.py:9
+#: ../config/chroot_local-includes/usr/share/applications/tca.desktop.in.h:1
+msgid "Tor Connection"
+msgstr "Підключення Tor"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:200
+msgid "_Use a bridge that you already know"
+msgstr "_Використовуйте міст, який вам вже відомий"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:242
+msgid ""
+"To save your bridge, <a href=\"doc/persistent_storage\">unlock your "
+"Persistent Storage</a>."
+msgstr ""
+"Щоб зберегти свій міст, <a href=\"doc/persistent_storage\">розблокуйте "
+"Постійне Сховище</a>."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:249
+msgid ""
+"To save your bridge, <a href=\"doc/persistent_storage\">create a Persistent "
+"Storage</a> on your Tails USB stick."
+msgstr ""
+"Щоб зберегти свій міст, <a href=\"doc/persistent_storage\">створіть Постійне "
+"Сховище</a> на USB-накопичувачі Tails."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:269
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:773
+#, python-brace-format
+msgid "Invalid: {exception}"
+msgstr "Недійсний: {exception}"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:281
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:786
+msgid "You need to configure an obfs4 bridge to hide that you are using Tor"
+msgstr ""
+"Вам потрібно налаштувати міст obfs4, щоб приховати, що ви використовуєте Tor"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:334
+msgid "Failed to configure your Persistent Storage"
+msgstr "Не вдалося налаштувати Постійне Сховище"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:385
+msgid "Failed to detect a webcam. Maybe your webcam is too old."
+msgstr "Не вдалося виявити вебкамеру. Можливо, ваша вебкамера застаріла."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:394
+msgid "Failed to scan QR code. Try with more light or closer to the camera."
+msgstr ""
+"Не вдалося зісканувати QR-код. Спробуйте за більшої освітленості або ближче "
+"до камери."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:401
+msgid "Invalid QR code. Try sending another email and scanning again."
+msgstr ""
+"Недійсний QR-код. Спробуйте надсилання іншого листа і зіскануйте ще раз."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:451
+msgid "Synchronizing the system's clock…"
+msgstr "Синхронізація годинника системи…"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:500
+msgid "Connecting to Tor without bridges…"
+msgstr "Під'єднання до Tor без мостів…"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:507
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:531
+msgid "Connecting to Tor with default bridges…"
+msgstr "Під'єднання до Tor за допомогою типових мостів…"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:514
+msgid "Connecting to Tor with a custom bridge…"
+msgstr "Під'єднання до Tor за допомогою власного мосту…"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:622
+msgid "Connected to Tor successfully with bridges"
+msgstr "Успішно під'єднано до Tor за допомогою мостів"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:624
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1960
+msgid "Connected to Tor successfully"
+msgstr "Успішно під'єднано до Tor"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:628
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1985
+msgid "You can now browse the Internet anonymously and uncensored."
+msgstr "Тепер ви можете переглядати інтернет анонімно та без цензури."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:703
+msgid "This local network seems to be blocking access to Tor."
+msgstr "Схоже, що ця локальна мережа блокує доступ до Tor."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:776
+msgid "Bridge address malformed"
+msgstr "Адреса мосту неправильно сформована"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:794
+msgid "Setting a bridge is needed if you want to hide that you are using Tor"
+msgstr ""
+"Встановлення мосту потрібно, якщо ви хочете приховати, що ви використовуєте "
+"Tor"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1011
+#, python-brace-format
+msgid "Scanned {bridge_type} bridge: <b>{bridge_info}</b>."
+msgstr "Зіскановано {bridge_type} міст: <b>{bridge_info}</b>."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1102
+msgid "Are you sure you want to lose progress?"
+msgstr "Ви впевнені, що хочете відмовитися від досягнутого?"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1106
+msgid ""
+"Tails will continue connecting to Tor after you close the Tor Connection "
+"assistant.\n"
+"\n"
+"If connecting to Tor fails, you will have to wait again until the end of the "
+"progress bar to be able to troubleshoot your connection."
+msgstr ""
+"Tails продовжить під'єднання до Tor після того, як ви закриєте помічник "
+"Під'єднання до Tor.\n"
+"\n"
+"Якщо не вдасться під'єднатися до Tor, вам доведеться знову зачекати до "
+"завершення індикатора виконання, щоб мати змогу усунути несправності "
+"з'єднання."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1112
+msgid "Close and Lose Progress"
+msgstr "Закрити й втратити виконане"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1113
+msgid "Wait"
+msgstr "Зачекати"
+
+#: config/chroot_local-includes/usr/local/bin/thunderbird:41
+msgid "You need to migrate your OpenPGP keys"
+msgstr "Вам потрібно перенести ключі OpenPGP"
+
+#: config/chroot_local-includes/usr/local/bin/thunderbird:43
+msgid ""
+"<i>Thunderbird</i> 78 now replaces the <i>Enigmail</i> extension with built-"
+"in support for OpenPGP encryption. To continue using your OpenPGP keys in "
+"<i>Thunderbird</i>, follow our migration instructions."
+msgstr ""
+"<i>Thunderbird</i> 78 тепер замінює розширення <i>Enigmail</i> вбудованою "
+"підтримкою шифрування OpenPGP. Щоб продовжити використання ваших ключів "
+"OpenPGP у <i>Thunderbird</i>, дотримуйтесь наших інструкцій щодо міграції."
+
+#: config/chroot_local-includes/usr/local/bin/thunderbird:45
+msgid "_Open Migration Instructions"
+msgstr "_Відкрийте інструкції з міграції"
+
+#: config/chroot_local-includes/usr/local/bin/thunderbird:46
+msgid "_Migrate Later"
+msgstr "_Мігрувати пізніше"
+
+#: config/chroot_local-includes/usr/bin/tor-browser:49
+msgid "Tor is not ready"
+msgstr "Tor не готовий"
+
+#: config/chroot_local-includes/usr/bin/tor-browser:50
+msgid "Tor is not ready. Start Tor Browser anyway?"
+msgstr "Tor не готовий. Усе одно запустити Tor?"
+
+#: config/chroot_local-includes/usr/bin/tor-browser:51
+msgid "Start Tor Browser Offline"
+msgstr "Запустити браузер Tor офлайн"
+
+#: config/chroot_local-includes/usr/bin/tor-browser:52
+msgid "Open Tor Connection"
+msgstr "Відкрийте з'єднання Tor"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/torstatus@tails.boum.org/extension.js:37
+msgid "Tor Status"
+msgstr "Стан Tor"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/torstatus@tails.boum.org/extension.js:46
+msgid "Open Onion Circuits"
+msgstr "Відкриті схеми Onion"
+
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced. They need
+#. to be present in the translated string.
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:65
+#, python-brace-format
+msgid "{volume_label} ({volume_size})"
+msgstr "{volume_label} ({volume_size})"
+
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced. They need
+#. to be present in the translated string.
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:71
+#, python-brace-format
+msgid "{partition_name} ({partition_size})"
+msgstr "{partition_name} ({partition_size})"
+
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced. It needs to be present in the translated
+#. string.
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:77
+#, python-brace-format
+msgid "{volume_size} Volume"
+msgstr "Розмір {volume_size}"
+
+#. Translators: Don't translate {volume_name}, it's a placeholder and
+#. will be replaced. It needs to be present in the translated string.
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#, python-brace-format
+msgid "{volume_name} (Read-Only)"
+msgstr "{volume_name} (тількт для читання)"
+
+#. Translators: Don't translate {partition_name} and {container_path}, they
+#. are placeholders and will be replaced. They need to be present
+#. in the translated string.
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:125
+#, python-brace-format
+msgid "{partition_name} in {container_path}"
+msgstr "{partition_name} у {container_path}"
+
+#. Translators: Don't translate {volume_name} and {path_to_file_container},
+#. they are placeholders and will be replaced. You should only have to translate
+#. this string if it makes sense to reverse the order of the placeholders.
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:132
+#, python-brace-format
+msgid "{volume_name} – {path_to_file_container}"
+msgstr "{volume_name} – {path_to_file_container}"
+
+#. Translators: Don't translate {partition_name} and {drive_name}, they
+#. are placeholders and will be replaced. They need to be present
+#. in the translated string.
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:139
+#, python-brace-format
+msgid "{partition_name} on {drive_name}"
+msgstr "{partition_name} на {drive_name}"
+
+#. Translators: Don't translate {volume_name} and {drive_name},
+#. they are placeholders and will be replaced. You should only have to translate
+#. this string if it makes sense to reverse the order of the placeholders.
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:146
+#, python-brace-format
+msgid "{volume_name} – {drive_name}"
+msgstr "{volume_name} – {drive_name}"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
+msgid "Wrong passphrase or parameters"
+msgstr "Неправильна парольна фраза або параметри"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:236
+msgid "Error unlocking volume"
+msgstr "Помилка розблокування гучності"
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.  They need
+#. to be present in the translated string.
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:241
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+"Не вдалося розблокувати розділ {volume_name}:\n"
+"{error_message}"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
+msgid "One or more applications are keeping the volume busy."
+msgstr "Одна або кілька програм тримають розділ зайнятим."
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced. They need
+#. to be present in the translated string.
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:350
+#, python-brace-format
+msgid ""
+"Couldn't lock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+"Не вдалося заблокувати розділ {volume_name}:\n"
+"{error_message}"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:352
+msgid "Locking the volume failed"
+msgstr "Не вдалося заблокувати розділ"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
+msgid "No file containers added"
+msgstr "Немає доданих файлових контейнерів"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:98
+msgid "No VeraCrypt devices detected"
+msgstr "Не знайдено пристроїв VeraCrypt"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:40
+#: ../config/chroot_local-includes/usr/share/applications/unlock-veracrypt-volumes.desktop.in.h:1
+msgid "Unlock VeraCrypt Volumes"
+msgstr "Розблокувати розділи VeraCrypt"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:114
+msgid "Container already added"
+msgstr "Контейнер вже додано"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:115
+#, python-format
+msgid "The file container %s should already be listed."
+msgstr "Файловий контейнер %s вже має бути в списку."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:131
+msgid "Container opened read-only"
+msgstr "Контейнер відкритий лише для читання"
+
+#. Translators: Don't translate {path}, it's a placeholder  and will be replaced.
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
+#, python-brace-format
+msgid ""
+"The file container {path} could not be opened with write access. It was "
+"opened read-only instead. You will not be able to modify the content of the "
+"container.\n"
+"{error_message}"
+msgstr ""
+"Не вдалося відкрити файловий контейнер {path} з доступом на запис. Натомість "
+"його було відкрито лише для читання. Ви не зможете змінити вміст "
+"контейнера.\n"
+"{error_message}"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
+msgid "Error opening file"
+msgstr "Помилка відкриття файлу"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+msgid "Not a VeraCrypt container"
+msgstr "Не контейнер VeraCrypt"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
+#, python-format
+msgid "The file %s does not seem to be a VeraCrypt container."
+msgstr "Схоже, файл %s не є контейнером VeraCrypt."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+msgid "Failed to add container"
+msgstr "Не вдалося додати контейнер"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
+#, python-format
+msgid ""
+"Could not add file container %s: Timeout while waiting for loop setup.\n"
+"Please try using the <i>Disks</i> application instead."
+msgstr ""
+"Не вдалося додати файловий контейнер %s: Перевищено час встановлення циклу.\n"
+"Спробуйте скористатися застосунком <i>Disks</i> натомість."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
+msgid "Choose File Container"
+msgstr "Виберіть файловий контейнер"
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
+msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
+msgstr "Небезпечний браузер було вимкнено на екрані привітання.\\n\\n"
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
+msgid ""
+"To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
+"Browser is enabled in the additional settings of the Welcome Screen."
+msgstr ""
+"Для користування небезпечним браузером перезапустіть Tails і переконайтеся, "
+"що його ввімкнено в додаткових налаштуваннях екрана привітання."
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
+msgid "To use the Unsafe Browser, restart Tails."
+msgstr "Щоб використовувати небезпечний браузер, перезапустіть Tails."
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+msgid "_Restart"
+msgstr "_Перезапустити"
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
+msgid "_Cancel"
+msgstr "_Скасувати"
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
+msgid ""
+"Do you really want to restart Tails now?\\n\\nAll your current work will be "
+"lost."
+msgstr ""
+"Ви справді хочете перезапустити Tails зараз?\\n\\nУся ваша поточна робота "
+"буде втрачена."
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+msgid "Restart Now"
+msgstr "Перезавантажити зараз"
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+msgid "Failed to restart the system."
+msgstr "Не вдалося перезапустити систему."
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+msgid "Starting the Unsafe Browser..."
+msgstr "Запуск Небезпечного Браузера..."
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
+msgid "This may take a while, so please be patient."
+msgstr "Це може тривати деякий час, будь ласка, зачекайте."
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
+msgid "Shutting down the Unsafe Browser..."
+msgstr "Вимкнення Небезпечного Браузера..."
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+msgid ""
+"This may take a while, and you may not restart the Unsafe Browser until it "
+"is properly shut down."
+msgstr ""
+"Це може тривати деякий час, і ви не можете перезапускати небезпечний "
+"браузер, поки він правильно не вимкнеться."
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
+#: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
+msgid "Unsafe Browser"
+msgstr "Небезпечний Браузер"
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
+msgid ""
+"Another Unsafe Browser is currently running, or being cleaned up. Please "
+"retry in a while."
+msgstr ""
+"Інший Небезпечний Браузер зараз працює або очищується. Повторіть спробу "
+"трохи згодом."
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
+msgid "Failed to setup chroot."
+msgstr "Не вдалося встановити chroot."
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
+msgid "Failed to configure browser."
+msgstr "Не вдалося налаштувати браузер."
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+msgid ""
+"You are not connected to a local network yet.\\n\\nTo be able to start the "
+"Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
+"network."
+msgstr ""
+"Ви ще не під'єднані до локальної мережі.\\n\\nЩоб мати можливість запустити "
+"Небезпечний Браузер, спочатку потрібно під'єднатися до Wi-Fi, дротової або "
+"мобільної мережі."
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
+msgid "Failed to run browser."
+msgstr "Не вдалося запустити браузер."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/exceptions.py:40
+#, python-format
+msgid ""
+"The %s variable was not found in the configuration file: /etc/whisperback/"
+"config.py"
+msgstr ""
+"Змінна %s не знайдена в конфігураційному файлі: /etc/whisperback/config.py"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:113
+msgid "Name of the affected software"
+msgstr "Назва ураженого програмного забезпечення"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:115
+msgid "Exact steps to reproduce the error"
+msgstr "Точні кроки для відтворення помилки"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:117
+msgid "Actual result and description of the error"
+msgstr "Фактичний результат і опис помилки"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:119
+msgid "Desired result"
+msgstr "Бажаний результат"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:132
+msgid "Unable to load a valid configuration."
+msgstr "Не вдалося завантажити вірну конфігурацію."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:169
+msgid "Sending mail..."
+msgstr "Відправлення листа..."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:170
+msgid "Sending mail"
+msgstr "Відправлення листа"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:172
+msgid "This could take a while..."
+msgstr "Це може зайняти деякий час..."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:188
+msgid "The contact email address doesn't seem valid."
+msgstr "Адреса електронної пошти контакту не схожа на дійсну."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:205
+msgid "Unable to send the mail: SMTP error."
+msgstr "Не вдалося відправити лист: помилка SMTP."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:207
+msgid "Unable to connect to the server."
+msgstr "Не вдалося підключитися до серверу."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:209
+msgid "Unable to create or to send the mail."
+msgstr "Не вдалося створити або відправити повідомлення."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:212
+msgid ""
+"\n"
+"\n"
+"The bug report could not be sent, likely due to network problems. Please try "
+"to reconnect to the network and click send again.\n"
+"\n"
+"If it does not work, you will be offered to save the bug report."
+msgstr ""
+"\n"
+"\n"
+"Звіт про помилку не може бути надісланий, імовірно, через проблеми мережі. "
+"Спробуйте під'єднатися до мережі й знову натисніть кнопку надсилання.\n"
+"\n"
+"Якщо це не допоможе, то вам буде запропоновано зберегти звіт про помилку."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:225
+msgid "Your message has been sent."
+msgstr "Ваше повідомлення було відправлено."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:232
+msgid "An error occured during encryption."
+msgstr "При шифруванні виникла помилка."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:252
+#, python-format
+msgid "Unable to save %s."
+msgstr "Не вдалося зберегти %s."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:275
+#, python-format
+msgid ""
+"The bug report could not be sent, likely due to network problems.\n"
+"\n"
+"As a work-around you can save the bug report as a file on a USB drive and "
+"try to send it to us at %s from your email account using another system. "
+"Note that your bug report will not be anonymous when doing so unless you "
+"take further steps yourself (e.g. using Tor with a throw-away email "
+"account).\n"
+"\n"
+"Do you want to save the bug report to a file?"
+msgstr ""
+"Повідомлення про помилку не може бути відправлено ймовірно через проблеми у "
+"мережі.\n"
+"\n"
+"Можливо зберегти звіт про помилку у вигляді файлу на USB диск і спробувати "
+"відправити його нам за адресою %s по електронній пошті за допомогою іншої "
+"системи. Зверніть увагу на те, що у цьому разі Ваше повідомлення про помилку "
+"не буде анонімним, якщо Ви не вживете додаткових кроків самостійно "
+"(наприклад, за допомогою Tor з одноразовим обліковим записом електронної "
+"пошти).\n"
+"\n"
+"Ви хочете зберегти звіт про помилку у файл?"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:337
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:280
+msgid "WhisperBack"
+msgstr "WhisperBack"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:338
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:12
+msgid "Send feedback in an encrypted mail."
+msgstr "Відправити зворотній зв'язок у зашифрованому листі."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:341
+msgid "Copyright © 2009-2018 Tails developers (tails@boum.org)"
+msgstr "Авторське право © 2009-2018 Розробники Tails (tails@boum.org)"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:342
+msgid "Tails developers <tails@boum.org>"
+msgstr "Розробники Tails <tails@boum.org>"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:343
+msgid "translator-credits"
+msgstr "перекладачі"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:376
+msgid "This doesn't seem to be a valid URL or OpenPGP key."
+msgstr "Невірний URL або OpenPGP ключ."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/whisperback.py:62
+#, python-format
+msgid "Invalid contact email: %s"
+msgstr "Недійсна адреса електронної пошти контакту: %s"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/whisperback.py:82
+#, python-format
+msgid "Invalid contact OpenPGP key: %s"
+msgstr "Недійсний ключ OpenPGP контакту: %s"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/whisperback.py:84
+msgid "Invalid contact OpenPGP public key block"
+msgstr "Недійсний блок публічного ключа OpenPGP контакту"
+
+#: config/chroot_local-includes/usr/local/bin/tca:154
+msgid "You turned on Offline Mode in the Welcome Screen."
+msgstr "Ви ввімкнули автономний режим на Екрані Привітання."
+
+#: config/chroot_local-includes/usr/local/bin/tca:155
+msgid "It is impossible to connect to Tor in Offline Mode."
+msgstr "Неможливо підключитися до Tor в автономному режимі."
+
+#: config/chroot_local-includes/usr/local/bin/tca:156
+msgid "To connect to Tor and the Internet, restart Tails without Offline Mode."
+msgstr ""
+"Щоб підключитися до Tor та Інтернету, перезапустіть Tails без автономного "
+"режиму."
+
+#: ../config/chroot_local-includes/etc/skel/Desktop/Report_an_error.desktop.in.h:1
+msgid "Report an error"
+msgstr "Повідомити про помилку"
+
+#: ../config/chroot_local-includes/etc/skel/Desktop/tails-documentation.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/applications/tails-documentation.desktop.in.h:1
+msgid "Tails documentation"
+msgstr "Документація по Tails"
+
+#: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
+msgid "Persistent Storage"
+msgstr "Постійне сховище"
+
+#: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:2
+msgid ""
+"Configure which files and application configuration are saved between "
+"working sessions"
+msgstr ""
+"Налаштуйте, які файли та конфігурації програм зберігатимуться між робочими "
+"сеансами"
+
+#: ../config/chroot_local-includes/usr/share/applications/root-terminal.desktop.in.h:1
+msgid "Root Terminal"
+msgstr "Кореневий термінал"
+
+#: ../config/chroot_local-includes/usr/share/applications/root-terminal.desktop.in.h:2
+msgid "Opens a terminal as the root user, using gksu to ask for the password"
+msgstr ""
+"Відкриває термінал як кореневий користувач, використовуючи gksu, щоб "
+"запитати пароль"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-documentation.desktop.in.h:2
+msgid "Learn how to use Tails"
+msgstr "Навчіться користуватися Tails"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-about.desktop.in.h:2
+msgid "Learn more about Tails"
+msgstr "Дізнайтеся більше про Tails"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "Постійне сховище"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+#, fuzzy
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+"Увімкніть функції постійного сховища для даних, які ви хочете зберегти на "
+"USB-накопичувачі Tails."
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
+msgid "Install, clone, upgrade Tails"
+msgstr "Встановіть, клонуйте, оновіть Tails"
+
+#: ../config/chroot_local-includes/usr/share/applications/tca.desktop.in.h:2
+msgid "Connect Tails to the Tor network"
+msgstr "Підключіть Tails до мережі Tor"
+
+#: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:1
+msgid "Tor Browser"
+msgstr "Tor Browser"
+
+#: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:2
+msgid "Anonymous Web Browser"
+msgstr "Анонімний веб-браузер"
+
+#: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:2
+msgid "Browse the World Wide Web without anonymity"
+msgstr "Перегляд всесвітньої павутини без анонімності"
+
+#: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:3
+msgid "Unsafe Web Browser"
+msgstr "Небезпечний Веббраузер"
+
+#: ../config/chroot_local-includes/usr/share/applications/unlock-veracrypt-volumes.desktop.in.h:2
+msgid "Mount VeraCrypt encrypted file containers and devices"
+msgstr "Підключити зашифровані файлові контейнери та пристрої VeraCrypt"
+
+#: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:2
+msgid ""
+"Configure the additional software installed from your persistent storage "
+"when starting Tails"
+msgstr ""
+"Під час запуску Tails налаштуйте додаткове програмне забезпечення, "
+"встановлене з вашого постійного сховища"
+
+#: ../config/chroot_local-includes/usr/share/applications/whisperback.desktop.in.h:1
+msgid "WhisperBack Error Reporting"
+msgstr "WhisperBack - Звіт про помилки"
+
+#: ../config/chroot_local-includes/usr/share/applications/whisperback.desktop.in.h:2
+msgid "Send feedback via encrypted e-mail"
+msgstr "Надіслати зворотній зв'язок зашифрованим електронним листом"
+
+#: ../config/chroot_local-includes/usr/share/applications/whisperback.desktop.in.h:3
+msgid "feedback;bug;report;tails;error;"
+msgstr "зворотній зв'язок;баґ;звіт;tails;помилка;"
+
+#: ../config/chroot_local-includes/usr/share/desktop-directories/Tails.directory.in.h:2
+msgid "Tails specific tools"
+msgstr "Спеціальні інструменти Tails"
+
+#: ../config/chroot_local-includes/usr/share/polkit-1/actions/org.boum.tails.root-terminal.policy.in.h:1
+msgid "To start a Root Terminal, you need to authenticate."
+msgstr "Щоб запустити Кореневий термінал, потрібно автентифікуватися."
+
+#: ../config/chroot_local-includes/usr/share/polkit-1/actions/org.boum.tails.additional-software.policy.in.h:1
+msgid "Remove an additional software package"
+msgstr "Видалити додатковий пакет програмного забезпечення"
+
+#: ../config/chroot_local-includes/usr/share/polkit-1/actions/org.boum.tails.additional-software.policy.in.h:2
+msgid ""
+"Authentication is required to remove a package from your additional software "
+"($(command_line))"
+msgstr ""
+"Для видалення пакета з додаткового програмного забезпечення "
+"($(command_line)) потрібна автентифікація"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
+msgid "Administration Password"
+msgstr "Пароль адміністратора"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+"Встановіть пароль адміністатора, щоб виконувати адміністрування. Інакше він "
+"буде вимкнений для покращення безпеки."
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:69
+msgid "Enter an administration password"
+msgstr "Введіть пароль адміністратора"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:107
+msgid "Confirm your administration password"
+msgstr "Підтвердіть свій пароль адміністратора"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:124
+msgid "Disable"
+msgstr "Вимкнути"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
+msgid "MAC Address Anonymization"
+msgstr "Анонімізувати MAC-адреси"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:170
+msgid ""
+"MAC address anonymization hides the serial number of your network interface "
+"(Wi-Fi or wired) from the local network. Anonymizing MAC addresses is "
+"generally safer as it helps you hide your geographical location. But it "
+"might also create connectivity problems or look suspicious."
+msgstr ""
+"Анонімізація MAC-адреси приховує серійний номер вашого мережевого інтерфейсу "
+"(Wi-Fi або дротового) від локальної мережі. Анонімізація MAC-адрес, як "
+"правило, безпечніша, оскільки допомагає приховати своє географічне "
+"розташування. Але це також може створити проблеми з підключенням або "
+"виглядати підозрілим."
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:212
+msgid "Anonymize all MAC addresses (default)"
+msgstr "Анонімізувати всі MAC-адреси (за замовчуванням)"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:258
+msgid "Don't anonymize MAC addresses"
+msgstr "Не анонімізувати MAC-адреси"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
+msgid "Network Configuration"
+msgstr "Налаштування мережі"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:327
+msgid ""
+"We replaced this additional setting in Tails 4.19 (June 2021) with a Tor "
+"Connection assistant integrated in the desktop.\n"
+"\n"
+"You will be asked whether you want to use Tor bridges when connecting to Tor "
+"after starting Tails.\n"
+"\n"
+"If you want to work offline, enable the Offline Mode in the additional "
+"settings."
+msgstr ""
+"Ми замінили це додаткове налаштування в Tails 4.19 (червень 2021) на "
+"помічник Підключення Tor, інтегрований у робочий стіл.\n"
+"\n"
+"Після запуску Tails вас запитають, чи хочете ви використовувати мости Tor "
+"під час підключення до Tor.\n"
+"\n"
+"Якщо ви хочете працювати офлайн, увімкніть автономний режим у додаткових "
+"налаштуваннях."
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:357
+msgid "Offline Mode"
+msgstr "Офлайн Режим"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:373
+msgid ""
+"If you want to work completely offline, you can disable all networking for "
+"increased security."
+msgstr ""
+"Якщо ви хочете працювати повністю офлайн, ви можете вимкнути всі мережі для "
+"підвищення безпеки."
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:528
+msgid ""
+"The Unsafe Browser allows you to sign in to a network using a captive "
+"portal.\n"
+"\n"
+"A captive portal is a web page that is displayed before you can access the "
+"Internet. Captive portals usually require you to log in to the network or "
+"enter information such as an email address.\n"
+"\n"
+"The Unsafe Browser is not anonymous and can deanonymize you. Use it only to "
+"sign in to networks.\n"
+"\n"
+"The Unsafe Browser is enabled by default again since Tails 5.8 (December "
+"2022), after we fixed the security vulnerabilities that made us disable it "
+"by default in Tails 4.8 (June 2020)."
+msgstr ""
+"Небезпечний браузер дає змогу ввійти в мережу за допомогою порталу "
+"з'єднання.\n"
+"\n"
+"Портал з'єднання — це вебсторінка, яка показується перед тим, як ви зможете "
+"отримати доступ до інтернету. Портали з'єднання зазвичай вимагають увійти в "
+"мережу або ввести таку інформацію, як адреса електронної пошти.\n"
+"\n"
+"Небезпечний браузер не анонімний і може деанонімізувати вас. Використовуйте "
+"його лише для входу в мережі.\n"
+"\n"
+"Небезпечний браузер знову типово ввімкнено починаючи з Tails 5.8 (грудень "
+"2022), після усунення вразливостей безпеки, через які його було вимкнено в "
+"Tails 4.8 (червень 2020)."
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:576
+msgid "Enable the Unsafe Browser (default)"
+msgstr "Увімкнути небезпечний браузер (типово)"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:622
+msgid "Disable the Unsafe Browser"
+msgstr "Вимкнути небезпечний браузер"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:100
+msgid "Settings were loaded from the persistent storage."
+msgstr "Налаштування завантажено з постійного сховища."
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:152
+msgid "Welcome to Tails!"
+msgstr "Ласкаво просимо до Tails!"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
+msgid "_Persistent Storage"
+msgstr "_Постійне сховище"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
+msgid ""
+"You can save some of your files and configuration in an encrypted Persistent "
+"Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
+"passwords, and so on."
+msgstr ""
+"Ви можете зберігати деякі файли та конфігурацію в зашифрованому постійному "
+"сховищі на USB-накопичувачі Tails: ваші документи, закладки браузера, паролі "
+"Wi-Fi тощо."
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
+msgid ""
+"You will create and configure your Persistent Storage after starting Tails."
+msgstr "Ви створите та налаштуєте своє постійне сховище після запуску Tails."
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
+msgid "Language & Region"
+msgstr "Мова і розташування"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
+msgid "Default Settings"
+msgstr "Типові налаштування"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
+msgid "Show Passphrase"
+msgstr "Показати пароль"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "Ключова фраза:"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+#, fuzzy
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
+msgstr ""
+"Ваше постійне сховище розблоковане. Перезапустіть Tails, щоб заблокувати "
+"його знов."
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
+msgid "_Additional Settings"
+msgstr "_Додаткові налаштування"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
+msgid "Add an additional setting"
+msgstr "Додати ще одне додаткове налаштування"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+"Налаштування за промовчанням безпечні в більшості випадків. Щоб додати ваше "
+"власне налаштування, натисніть знизу \"+\"."
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
+msgid "Shutdown"
+msgstr "Вимкнення"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
+msgid "_Start Tails"
+msgstr "_Запустити Tails"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:8
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:56
+msgid "Change Passphrase"
+msgstr "Змінити парольну фразу"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:95
+msgid "Current _Passphrase"
+msgstr "Поточна _парольна фраза"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:131
+msgid "_New Passphrase"
+msgstr "_Нова парольна фраза"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:179
+msgid "_Confirm New Passphrase"
+msgstr "_Підтвердити нову парольну фразу"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:215
+msgid "_Show Passphrases"
+msgstr "_Показати парольні фрази"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:253
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:213
+msgid "The passphrases do not match"
+msgstr "Парольні фрази не збігаються"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:317
+msgid "Ch_ange"
+msgstr "Зм_інити"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/deleted_view.ui.in:21
+msgid "The Persistent Storage was successfully deleted."
+msgstr "Постійне сховище успішно видалено."
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/deleted_view.ui.in:32
+msgid "_Close"
+msgstr "_Закрити"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/fail_view.ui.in:30
+msgid "Oh no! Something has gone wrong."
+msgstr "Ой, лишенько! Щось пішло не за планом."
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/fail_view.ui.in:45
+msgid ""
+"The Persistent Storage service exited unexpectedly.\n"
+"\n"
+"You can send an error report or check the output of the following commands "
+"to investigate:"
+msgstr ""
+"Служба Постійного сховища несподівано завершила роботу.\n"
+"\n"
+"Ви можете надіслати звіт про помилку або перевірити вивід таких команд для "
+"вивчення проблеми:"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/fail_view.ui.in:74
+msgid "Send Error Report"
+msgstr "Надіслати звіт про помилку"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:61
+msgid ""
+"Your Persistent Storage is unlocked.\n"
+"\n"
+"Its content is available until you shut down Tails.\n"
+"\n"
+"<a href=\"doc/persistent_storage/backup\">Learn how to make a backup of your "
+"Persistent Storage.</a>"
+msgstr ""
+"Ваше постійне сховище розблоковане.\n"
+"\n"
+"Його вміст буде доступний, доки ви не вимкнете Tails.\n"
+"\n"
+"<a href=\"doc/persistent_storage/backup\">Дізнайтеся, як зробити резервну "
+"копію вашого постійного сховища.</a>"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:89
+msgid ""
+"Turn on the features of the Persistent Storage for the data that you want to "
+"save to your Tails USB stick."
+msgstr ""
+"Увімкніть функції постійного сховища для даних, які ви хочете зберегти на "
+"USB-накопичувачі Tails."
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:106
+msgid "Personal Documents"
+msgstr "Особисті документи"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:134
+msgid "Persistent Folder"
+msgstr "Постійна тека"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:153
+msgid "Open Persistent Folder"
+msgstr "Відкрити постійну теку"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:166
+msgid "Activate Persistent Folder"
+msgstr "Активувати постійну теку"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:191
+msgid "System Settings"
+msgstr "Системні налаштування"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+#, fuzzy
+msgid "Welcome Screen"
+msgstr "Активувати екран привітання"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
+msgid "Activate Welcome Screen"
+msgstr "Активувати екран привітання"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+#, fuzzy
+msgid "Printers"
+msgstr "Активувати принтери"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
+msgid "Activate Printers"
+msgstr "Активувати принтери"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:275
+msgid "Network"
+msgstr "Мережа"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:303
+msgid "Network Connections"
+msgstr "Мережеві підключення"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:304
+msgid "Save Wi-Fi passwords and mobile broadband configuration."
+msgstr "Зберегти паролі Wi-Fi та конфігурацію стільникового зв'язку."
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:314
+msgid "Activate Network Connections"
+msgstr "Активувати мережеві з'єднання"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:325
+msgid "Tor Bridge"
+msgstr "Міст Tor"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:335
+msgid "Activate Tor Bridge"
+msgstr "Активувати міст Tor"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:360
+msgid "Applications"
+msgstr "Застосунки"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "Активувати закладки браузера Tor"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
+msgid "Activate Tor Browser Bookmarks"
+msgstr "Активувати закладки браузера Tor"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:409
+msgid "Electrum Bitcoin Wallet"
+msgstr "Гаманець Electrum Bitcoin"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:419
+msgid "Activate Electrum Bitcoin Wallet"
+msgstr "Активувати гаманець Electrum Bitcoin"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:430
+msgid "Thunderbird Email Client"
+msgstr "Клієнт е-пошти Thunderbird"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:440
+msgid "Activate Thunderbird Email Client"
+msgstr "Активувати клієнт е-пошти Thunderbird"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:451
+msgid "GnuPG"
+msgstr "GnuPG"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:452
+msgid "OpenPGP keys outside of Thunderbird."
+msgstr "Ключі OpenPGP поза Thunderbird."
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:462
+msgid "Activate GnuPG"
+msgstr "Активувати GnuPG"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:473
+msgid "Pidgin Internet Messenger"
+msgstr "Інтернет-месенджер Pidgin"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:483
+msgid "Activate Pidgin Internet Messenger"
+msgstr "Активувати інтернет-месенджер Pidgin"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:494
+msgid "SSH Client"
+msgstr "Клієнт SSH"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:504
+msgid "Activate SSH Client"
+msgstr "Активувати клієнт SSH"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:529
+msgid "Advanced Settings"
+msgstr "Додаткові налаштування"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:558
+msgid "Install additional software automatically when starting Tails."
+msgstr ""
+"Автоматично встановлювати додаткове програмне забезпечення під час запуску "
+"Tails."
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:577
+msgid "Configure Additional Software"
+msgstr "Налаштувати додаткове програмне забезпечення"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:590
+msgid "Activate Additional Software"
+msgstr "Активувати додаткове програмне забезпечення"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:601
+msgid "Dotfiles"
+msgstr "Dotfiles"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:602
+msgid "Symlink every file in the Dotfiles folder into the Home folder."
+msgstr "Символьне посилання на кожен файл у теці Dotfiles у теці Домівка."
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:629
+msgid "Activate Dotfiles"
+msgstr "Активувати Dotfiles"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:659
+msgid "Custom"
+msgstr "Користувацький"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:678
+msgid ""
+"To add or remove custom features, modify /live/persistence/"
+"TailsData_unlocked/persistence.conf."
+msgstr ""
+"Щоб додати або вилучити користувацькі функції, змініть файл /live/"
+"persistence/TailsData_unlocked/persistence.conf."
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:720
+msgid ""
+"<a href=\"doc/persistent_storage\">Learn more about the Persistent Storage.</"
+"a>"
+msgstr "<a href=\"doc/persistent_storage\">Докладніше про постійне сховище</a>"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/locked_view.ui.in:52
+msgid ""
+"<b>Your Persistent Storage is locked.</b>\n"
+"\n"
+"To use or configure your Persistent Storage, unlock it in the Welcome Screen "
+"when starting Tails.\n"
+"\n"
+"To delete your Persistent Storage, click <b>Delete</b> on the right of the "
+"title bar."
+msgstr ""
+"<b>Ваше постійне сховище розблоковано.</b>\n"
+"\n"
+"Щоб використовувати або налаштувати його, розблокуйте його на екрані "
+"привітання під час запуску Tails.\n"
+"\n"
+"Щоб видалити постійне сховище, клацніть <b>Видалити</b> у правій частині "
+"панелі заголовка."
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:52
+msgid ""
+"Choose the passphrase that you will use to unlock the encryption of your "
+"Persistent Storage and all its data.\n"
+"\n"
+"We recommend a long passphrase of 5 to 7 random words."
+msgstr ""
+"Виберіть парольну фразу, яку ви будете використовувати для розблокування "
+"шифрування вашого постійного сховища та всіх даних на ньому.\n"
+"\n"
+"Ми радимо використовувати довгу парольну фразу, що містить від 5 до 7 "
+"випадкових слів."
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:82
+msgid "Passphrase:"
+msgstr "Ключова фраза:"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:101
+msgid "Confirm:"
+msgstr "Підтвердити:"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:178
+msgid "_Show Passphrase"
+msgstr "_Показати парольну фразу"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:265
+msgid "_Back"
+msgstr "_Назад"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:56
+msgid ""
+"Everything you do disappears automatically when you shut down Tails.\n"
+"\n"
+"But you can save some of your files and configuration in an encrypted "
+"Persistent Storage on your Tails USB stick, for example:\n"
+"\n"
+"• Your documents\n"
+"• Your Wi-Fi passwords\n"
+"• Your browser bookmarks\n"
+"• ...\n"
+"\n"
+"<a href=\"doc/persistent_storage\">Learn more about the Persistent Storage.</"
+"a>"
+msgstr ""
+"Усе, що ви робите, автоматично зникає, коли ви вимикаєте Tails.\n"
+"\n"
+"Але ви можете зберегти деякі файли та конфігурацію в зашифрованому "
+"постійному сховищі на USB-накопичувачі Tails, наприклад:\n"
+"\n"
+"• Ваші документи\n"
+"• Ваші паролі до Wi-Fi\n"
+"• Закладки вашого браузера\n"
+"• ...\n"
+"\n"
+"<a href=\"doc/persistent_storage\">Докладніше про постійне сховище</a>"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:92
+msgid ""
+"Sorry, it is impossible to create a Persistent Storage on this device.\n"
+"\n"
+"To be able to use Tails with a Persistent Storage, please follow our "
+"instructions on <a href=\"install\">installing Tails on a USB stick</a>."
+msgstr ""
+"На жаль неможливо створити постійне сховище на цьому пристрої.\n"
+"\n"
+"Щоб мати змогу використовувати Tails з постійним сховищем виконайте вказівки "
+"про <a href=\"install\">встановлення Tails на USB-накопичувач</a>."
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:137
+msgid "Co_ntinue"
+msgstr "Пр_одовжити"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:29
+msgid "_Delete..."
+msgstr "_Видалити..."
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:36
+msgid "Delete Persistent Storage"
+msgstr "Видалити постійне сховище"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:49
+msgid "_Change Passphrase..."
+msgstr "_Змінити парольну фразу..."
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:66
+msgid "_Restart Tails"
+msgstr "_Перезапустити Tails"
+
+#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:61
+msgid "File Containers"
+msgstr "Файлові контейнери"
+
+#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:80
+msgid "_Add"
+msgstr "_Додати"
+
+#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:86
+msgid "Add a file container"
+msgstr "Додати файловий контейнер"
+
+#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:103
+msgid "Partitions and Drives"
+msgstr "Розділи та диски"
+
+#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:121
+msgid ""
+"This application is not affiliated with or endorsed by the VeraCrypt project "
+"or IDRIX."
+msgstr ""
+"Ця програма не пов’язана з проектом VeraCrypt або IDRIX і не схвалена ним."
+
+#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:29
+msgid "_Open"
+msgstr "_Відчинено"
+
+#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:38
+msgid "Lock this volume"
+msgstr "Заблокувати це сховище"
+
+#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:52
+msgid "_Unlock"
+msgstr "_Розблокувати"
+
+#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:61
+msgid "Detach this volume"
+msgstr "Від’єднати це сховище"
+
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
+msgid "Target USB stick:"
+msgstr "Цільовий USB-накопичувач:"
+
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
+msgid "Reinstall (delete all data)"
+msgstr "Перевстановити (вилучити всі дані)"
+
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:11
+msgid "Copyright © 2009-2018 tails@boum.org"
+msgstr "Авторське право © 2009-2018 tails@boum.org"
+
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
+msgid ""
+"WhisperBack - Send feedback in an encrypted mail\n"
+"Copyright (C) 2009-2018 Tails developers <tails@boum.org>\n"
+"\n"
+"This program is  free software; you can redistribute  it and/or modify\n"
+"it under the  terms of the GNU General Public  License as published by\n"
+"the Free Software Foundation; either  version 3 of the License, or (at\n"
+"your option) any later version.\n"
+"\n"
+"This program  is distributed in the  hope that it will  be useful, but\n"
+"WITHOUT   ANY  WARRANTY;   without  even   the  implied   warranty  of\n"
+"MERCHANTABILITY  or FITNESS  FOR A  PARTICULAR PURPOSE.   See  the GNU\n"
+"General Public License for more details.\n"
+"\n"
+"You should have received a copy of the GNU General Public License\n"
+"along with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
+msgstr ""
+"WhisperBack - Надсилайте звіти у зашифрованому листі\n"
+"Авторське право (C) 2009-2018 Розробники Tails <tails@boum.org>\n"
+"\n"
+"Ця програма є вільним програмним забезпеченням; ви можете поширювати\n"
+"її та/або модифікувати на умовах ліцензії GNU General Public License, "
+"опублікованої\n"
+"Free Software Foundation, або версії 3 цієї Ліцензії, або (на ваш розсуд) "
+"будь-якої\n"
+"новішої версії.\n"
+"\n"
+"Ця програма поширюється у сподіванні, що вона буде корисною, але БЕЗ БУДЬ-"
+"ЯКИХ\n"
+"ГАРАНТІЙ, навіть без очікуваних (передбачуваних) гарантій КОМЕРЦІЙНОЇ ЯКОСТІ "
+"або\n"
+"ПРИДАТНОСТІ ДО ПЕВНОЇ ПОТРЕБИ. Більше подробиць про ліцензію GNU\n"
+"General Public License.\n"
+"\n"
+"Ви мали отримати копію ліцензії GNU General Public License\n"
+"разом з цією програмою. Якщо ж ні, - перегляньте її на <http://www.gnu.org/"
+"licenses/>.\n"
+
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:122
+msgid ""
+"If you want us to encrypt messages when we respond to you, add your key ID, "
+"a link to your key, or the key as a public key block:"
+msgstr ""
+"Якщо Ви хочете, щоб ми зашифрували відповідь на Ваше повідомлення, додайте "
+"ID Вашого ключа, посилання на Ваш ключ, або ключ в якості відкритого ключа "
+"блоку:"
+
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:308
+msgid "Summary"
+msgstr "Резюме"
+
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:337
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:485
+msgid "Bug description"
+msgstr "Опис багу"
+
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:378
+msgid "Help:"
+msgstr "Допомога:"
+
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:388
+msgid "Read our bug reporting guidelines."
+msgstr "Прочитайте наші настанови зі звітування про баґи."
+
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:416
+msgid "Email address (if you want an answer from us)"
+msgstr "Адреса електронної пошти (якщо ви хочете отримати від нас відповідь)"
+
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:445
+msgid "optional PGP key"
+msgstr "опціональний ключ PGP"
+
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:470
+msgid "Please know that we are not able to reply to every bug report."
+msgstr "Зверніть увагу, що ми не можемо відповісти на кожен звіт про помилку."
+
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:502
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:613
+msgid "Technical details to include"
+msgstr "Технічні подробиці для додавання"
+
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:540
+msgid "headers"
+msgstr "заголовки"
+
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:588
+msgid "debugging info"
+msgstr "налагоджувальна інформація"
+
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:680
+msgid "Send"
+msgstr "Відправити"
+
+#: ../config/chroot_local-includes/usr/local/share/mime/packages/unlock-veracrypt-volumes.xml.in.h:1
+msgid "TrueCrypt/VeraCrypt container"
+msgstr "Контейнер TrueCrypt/VeraCrypt"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:82
+msgid "Configure a Tor bridge"
+msgstr "Налаштуйте міст Tor"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:106
+msgid ""
+"Bridges are secret Tor relays. Use a bridge as your first Tor relay if "
+"accessing Tor is blocked from where you are."
+msgstr ""
+"Мости — це таємні ретранслятори Tor. Використовуйте міст як перший "
+"ретранслятор Tor, якщо доступ до Tor заблоковано з вашого місця перебування."
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:122
+msgid "<a href=\"doc/anonymous_internet/tor\">Learn more about Tor bridges</a>"
+msgstr ""
+"<a href=\"doc/anonymous_internet/tor\">Дізнайтеся більше про мости Tor</a>"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:157
+msgid "Use a _default bridge"
+msgstr "Використовувати міст _за замовчуванням"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:180
+msgid "obfs4 (recommended)"
+msgstr "obfs4 (рекомендовано)"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:181
+msgid "meek"
+msgstr "meek"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:204
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1518
+msgid "None"
+msgstr "Нічого"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:240
+msgid "_Ask for a Tor bridge by email"
+msgstr "_Попросити міст Tor електронною поштою"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:259
+msgid ""
+"Send an empty email to <tt>bridges@torproject.org</tt> from a Gmail or "
+"Riseup email address with your phone and scan the QR code that is attached "
+"to the automatic reply."
+msgstr ""
+"Надішліть порожній електронний лист на адресу <tt>bridges@torproject.org</"
+"tt> з електронної адреси Gmail або Riseup. Наприклад, ви можете надіслати "
+"електронний лист зі свого телефону та зісканувати QR-код, який прикріплений "
+"до автоматичної відповіді."
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:272
+msgid "Scan _QR code"
+msgstr "Сканувати _QR-код"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:373
+msgid "_Enter a bridge that you already know"
+msgstr "_Введіть міст, який вам вже відомий"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:399
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1040
+msgid "Bridge"
+msgstr "Міст"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:412
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1053
+msgid "obfs4 ..."
+msgstr "obfs4 ..."
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:485
+msgid "Save bridge to _Persistent Storage"
+msgstr "Зберегти міст до _Постійного Сховища"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:510
+msgid "Save bridge to Persistent Storage"
+msgstr "Зберегти міст до Постійного Сховища"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:650
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1158
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1556
+msgid "_Connect to Tor"
+msgstr "_Підключітися до Tor"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:692
+msgid "Error connecting to Tor"
+msgstr "Помилка підключення до Tor"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:736
+msgid "• Wrong clock"
+msgstr "• Неправильний годинник"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:756
+msgid "Your clock and time zone need to be correct to connect to Tor."
+msgstr ""
+"Щоб підключитися до Tor, ваш годинник і часовий пояс мають бути правильними."
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:769
+msgid "Fix _Clock"
+msgstr "Виправити _Годинник"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:807
+msgid "• Public network"
+msgstr "• Публічна мережа"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:827
+msgid ""
+"If you are in a shop, hotel, or airport, you might need to sign in to the "
+"local network using the Unsafe Browser."
+msgstr ""
+"Якщо ви перебуваєте в магазині, готелі або аеропорту, вам може знадобитися "
+"увійти в локальну мережу за допомогою Небезпечного браузера."
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:840
+msgid "Try _Signing in to the Network"
+msgstr "Спробуйте _Увійти в мережу"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:879
+msgid "• Local proxy"
+msgstr "• Локальний проксі"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:899
+msgid ""
+"If you are on a corporate or university network, you might need to configure "
+"a local proxy."
+msgstr ""
+"Якщо ви перебуваєте в корпоративній або університетській мережі, вам може "
+"знадобитися налаштувати локальний проксі-сервер."
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:912
+msgid "Configure a Local _Proxy"
+msgstr "Налаштуйте локальний _Проксі-сервер"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:951
+msgid "• Tor bridge by email"
+msgstr "• Міст Tor електронною поштою"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:971
+msgid ""
+"Tor bridges are secret Tor relays. Use a bridge as your first Tor relay if "
+"connections to Tor are blocked, for example in some countries, by some "
+"public networks, or by some parental controls."
+msgstr ""
+"Мости Tor — це таємні ретранслятори Tor. Використовуйте міст першим "
+"ретранслятором Tor, якщо з'єднання з Tor заблоковано, наприклад, у деяких "
+"країнах, деякими загальнодоступними мережами або деякими елементами "
+"батьківського контролю."
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:991
+msgid ""
+"To get a bridge, send an empty email to <tt>bridges@torproject.org</tt> from "
+"a Gmail or Riseup email address with your phone and scan the QR code that is "
+"attached to the automatic reply."
+msgstr ""
+"Щоб отримати міст, надішліть порожній електронний лист на адресу "
+"<tt>bridges@torproject.org</tt> з електронної адреси Gmail або Riseup зі "
+"свого телефону та скануйте прикріплений до автоматичної відповіді QR-код."
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1014
+msgid "Scan QR Code"
+msgstr "Сканувати QR-код"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1145
+msgid ""
+"<a href=\"doc/anonymous_internet/tor/troubleshoot\">Troubleshooting "
+"connecting to Tor</a>"
+msgstr ""
+"<a href=\"doc/anonymous_internet/tor/troubleshoot\">Усунення несправностей "
+"під'єднання до Tor</a>"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1191
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1599
+msgid ""
+"Everything you do on the Internet from Tails goes through the Tor network."
+msgstr "Усе, що ви робите в інтернеті з Tails, проходить через мережу Tor."
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1205
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1614
+msgid ""
+"Tor encrypts and anonymizes your connection by passing it through 3 relays.\n"
+"Tor relays are servers operated by different organizations and volunteers "
+"around the world."
+msgstr ""
+"Tor шифрує та анонімізує ваше з’єднання, передаючи його через 3 "
+"ретранслятори.\n"
+"Ретранслятори Tor — це сервери, якими керують різні організації та волонтери "
+"з усього світу."
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1241
+msgid "<b>Connect to Tor _automatically</b>"
+msgstr "<b>Під'єднуватися до Tor _автоматично</b>"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1291
+msgid ""
+"We recommend connecting to Tor automatically if you are on a public Wi-Fi "
+"network or if many people in your country use Tor to circumvent censorship."
+msgstr ""
+"Ми радимо під'єднуватися до Tor автоматично, якщо ви перебуваєте в "
+"загальнодоступній мережі Wi-Fi або якщо багато людей у вашій країні "
+"використовують Tor для обходу цензури."
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1309
+msgid ""
+"Tails will try different ways of connecting to Tor until it succeeds.\n"
+"\n"
+"Someone monitoring your Internet connection could identify these attempts as "
+"coming from a Tails user."
+msgstr ""
+"Tails намагатиметься різними способами під’єднатися до Tor, доки не вийде.\n"
+"\n"
+"Хтось, хто відстежує ваше інтернет-з’єднання, може визначити, що ці спроби "
+"надходять від користувача Tails."
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1343
+msgid "Configure a Tor _bridge"
+msgstr "Налаштуйте _міст Tor"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1389
+msgid ""
+"Tor bridges are secret Tor relays. Use a bridge as your first Tor relay if "
+"connections to Tor are blocked, for example in some countries, by some "
+"public networks, or by some parental controls.\n"
+"\n"
+"Choose this option if you already know that you need a bridge. Otherwise, "
+"Tails will autodetect whether you need a bridge to connect to Tor from your "
+"local network."
+msgstr ""
+"Мости Tor - це секретні ретранслятори Tor. Використовуйте міст як перший "
+"ретранслятор Tor, якщо підключення до Tor заблоковано, наприклад, у деяких "
+"країнах, деякими загальнодоступними мережами або деякими елементами "
+"батьківського контролю.\n"
+"\n"
+"Виберіть цей параметр, якщо ви вже знаєте, що вам потрібен міст. В іншому "
+"випадку Tails автоматично визначить, чи потрібен вам міст для підключення до "
+"Tor із локальної мережі."
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1431
+msgid "<b>_Hide to my local network that I'm connecting to Tor</b>"
+msgstr "<b>_Приховувати від моєї локальної мережі, що я під'єднуюся до Tor</b>"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1481
+msgid ""
+"You might need to go unnoticed if using Tor could look suspicious to someone "
+"who monitors your Internet connection."
+msgstr ""
+"Можливо, вам доведеться залишитися непоміченим, якщо використання Tor може "
+"здатися підозрілим для когось, хто стежить за вашим Інтернет-з’єднанням."
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1499
+msgid ""
+"Tails will only connect to Tor after you configured a Tor bridge. Bridges "
+"are secret Tor relays that hide that you are connecting to Tor.\n"
+"\n"
+"Our team is doing its best to help you connect to Tor using the most "
+"discrete types of Tor bridges.\n"
+"\n"
+"You will have to do extra configuration if you don't know any Tor bridges "
+"yet, if you connect from a public Wi-Fi network, or if you are in the "
+"Eastern Hemisphere."
+msgstr ""
+"Tails підключатиметься до Tor лише після того, як ви налаштували міст Tor. "
+"Мости - це секретні ретранслятори Tor, які приховують, що ви підключаєтесь "
+"до Tor.\n"
+"\n"
+"Наша команда робить все можливе, щоб допомогти вам підключитися до Tor за "
+"допомогою найбільш дискретних типів мостів Tor.\n"
+"\n"
+"Вам доведеться виконати додаткове налаштування, якщо Ви поки не знєте "
+"жодного мосту Tor, якщо ви підключаєтесь із загальнодоступної мережі Wi-Fi "
+"або якщо ви перебуваєте у Східній півкулі."
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1544
+msgid ""
+"<a href=\"doc/anonymous_internet/tor\">Learn more about how Tails connects "
+"to Tor</a>"
+msgstr ""
+"<a href=\"doc/anonymous_internet/tor\">Дізнайтеся більше про те, як Tails "
+"підключається до Tor</a>"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1629
+msgid "Connect to a local network"
+msgstr "Під'єднатися до локальної мережі"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1646
+msgid ""
+"You are not connected to a local network yet. To be able to connect to the "
+"Tor network, you first need to connect to a Wi-Fi, wire, or mobile network."
+msgstr ""
+"Ви ще не під'єднані до локальної мережі. Щоб мати можливість під'єднатися до "
+"мережі Tor, спочатку потрібно під'єднатися до Wi-Fi, дротової або мобільної "
+"мережі."
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1658
+msgid "Open Wi-Fi settings"
+msgstr "Відкрити налаштування Wi-Fi"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1707
+msgid "Testing Internet access…"
+msgstr "Перевірка доступу до інтернету…"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1747
+msgid "You have access to the Internet"
+msgstr "Ви маєте доступ до інтернету"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1781
+msgid "Testing access to Tor…"
+msgstr "Перевірка доступу до Tor…"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1824
+msgid "You can connect to Tor"
+msgstr "Ви можете під'єднатися до Tor"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1854
+msgid "Failed to connect to Tor without bridges."
+msgstr "Не вдалося під'єднатися до Tor без мостів."
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1870
+msgid "This local network is blocking access to Tor."
+msgstr "Ця локальна мережа блокує доступ до Tor."
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1902
+msgid "Connecting to Tor…"
+msgstr "Під'єднання до Tor…"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2007
+msgid "Start Tor Browser"
+msgstr "Запустити Tor браузер"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2026
+msgid "Open Network Monitor"
+msgstr "Відкрити Монітор мережі"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2039
+msgid "View Tor Circuits"
+msgstr "Переглянути схеми Tor"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2053
+msgid "Reset Tor Connection"
+msgstr "Скинути з'єднання з Tor"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2093
+msgid "Configure a Local Proxy"
+msgstr "Сконфігурувати локальний проксі-сервер"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2119
+msgid "Proxy Type"
+msgstr "Тип проксі"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2136
+msgid "No proxy"
+msgstr "Без проксі"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2137
+msgid "SOCKS 4"
+msgstr "SOCKS 4"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2138
+msgid "SOCKS 5"
+msgstr "SOCKS 5"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2139
+msgid "HTTP / HTTPS"
+msgstr "HTTP / HTTPS"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2158
+msgid "Address"
+msgstr "Адреса"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2175
+msgid "Username"
+msgstr "Ім'я користувача"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2192
+msgid "IP address or hostname"
+msgstr "IP-адреса або ім'я хосту"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2210
+msgid "Port"
+msgstr "Порт"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2334
+msgid "_Save Proxy Settings"
+msgstr "_Зберегти налаштування проксі"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:7
+msgid "Tor Connection - Fix Clock"
+msgstr "З'єднання Tor - Виправити годинник"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:76
+msgid ""
+"Your time zone cannot be used to identify or locate you. Your time zone will "
+"never be sent over the network and will only be used to fix your clock and "
+"connect to Tor."
+msgstr ""
+"Ваш часовий пояс не можна використовувати для ідентифікації або визначення "
+"вашого місцеперебування. Ваш часовий пояс ніколи не надсилатиметься мережею "
+"і використовуватиметься лише для налаштування годинника та під'єднання до "
+"Tor."
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:142
+msgid "Time zone"
+msgstr "Часовий пояс"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:186
+msgid "Time"
+msgstr "Час"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:223
+msgid ":"
+msgstr ":"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:277
+msgid "Date"
+msgstr "Дата"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:311
+msgid "January"
+msgstr "Січень"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:312
+msgid "February"
+msgstr "Лютий"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:313
+msgid "March"
+msgstr "Березень"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:314
+msgid "April"
+msgstr "Квітень"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:315
+msgid "May"
+msgstr "Травень"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:316
+msgid "June"
+msgstr "Червень"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:317
+msgid "July"
+msgstr "Липень"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:318
+msgid "August"
+msgstr "Серпень"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:319
+msgid "September"
+msgstr "Вересень"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:320
+msgid "October"
+msgstr "Жовтень"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:321
+msgid "November"
+msgstr "Листопад"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:322
+msgid "December"
+msgstr "Грудень"
+
+#: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:368
+msgid "Clock"
+msgstr "Годинник"
+
+#~ msgid "Encrypted _Persistent Storage"
+#~ msgstr "Зашифроване _Постійне Сховище"
+
+#~ msgid "Enter your passphrase to unlock the persistent storage"
+#~ msgstr "Введіть свій пароль, щоб розблокувати постійне сховище"
+
+#, python-format
+#~ msgid ""
+#~ "<h1>Help us fix your bug!</h1>\n"
+#~ "<p>Read <a href=\"%s\">our bug reporting instructions</a>.</p>\n"
+#~ "<p><strong>Do not include more personal information than\n"
+#~ "needed!</strong></p>\n"
+#~ "<h2>About giving us an email address</h2>\n"
+#~ "<p>\n"
+#~ "Giving us an email address allows us to contact you to clarify the "
+#~ "problem. This\n"
+#~ "is needed for the vast majority of the reports we receive as most "
+#~ "reports\n"
+#~ "without any contact information are useless. On the other hand it also "
+#~ "provides\n"
+#~ "an opportunity for eavesdroppers, like your email or Internet provider, "
+#~ "to\n"
+#~ "confirm that you are using Tails.\n"
+#~ "</p>\n"
+#~ msgstr ""
+#~ "<h1>Допоможіть нам виправити нашу помилку!</h1>\n"
+#~ "<p> Прочитайте <a href=\"%s\">наші інструкції, як повідомляти про "
+#~ "помилки</a>.</p>\n"
+#~ "<p><strong>Не повідомляйте більше особистої інформації, ніж\n"
+#~ "необхідно!</strong></p>\n"
+#~ "<h2>Про надання нам адреси електронної пошти</h2>\n"
+#~ "<p>\n"
+#~ "Надання нам адреси електронної пошти дає нам змогу зв'язатися з вами для "
+#~ "уточнення проблеми.\n"
+#~ "Це необхідно в більшості випадків, коли ми отримуємо звіти про помилки, "
+#~ "оскільки без контактної\n"
+#~ "інформації вони, переважно, марні. З іншого боку, це також дає можливість "
+#~ "засобам перехоплення\n"
+#~ "та збору інформації, наприклад, постачальнику вашої електронної пошти або "
+#~ "інтернету дізнатися,\n"
+#~ "що ви використовуєте Tails.\n"
+#~ "</p>\n"
+
+#~ msgid ""
+#~ "<b>Could not choose a download server.</b>\n"
+#~ "\n"
+#~ "This should not happen. Please report a bug."
+#~ msgstr ""
+#~ "<b>Не вдалося обрати сервер завантаження.</b>\n"
+#~ "\n"
+#~ "Це не повинно ставатися. Будь ласка, повідомте про помилку."
+
+#~ msgid "Error while choosing a download server"
+#~ msgstr "Помилка при виборі сервера завантаження"
+
+#~ msgid "The Amnesic Incognito Live System"
+#~ msgstr "Amnesic Incognito Live System"
+
+#~ msgid "Launch the Unsafe Browser?"
+#~ msgstr "Запустити Небезпечний Браузер?"
+
+#~ msgid ""
+#~ "The Unsafe Browser is not anonymous and the websites that you visit can "
+#~ "see your real IP address.\\n\\nOnly use the Unsafe Browser to sign in to "
+#~ "a network, then close it."
+#~ msgstr ""
+#~ "Небезпечний браузер не анонімний, і відвідувані вами вебсайти можуть "
+#~ "бачити вашу справжню IP-адресу.\\n\\nВикористовуйте його лише для входу в "
+#~ "мережу, а потім закривайте його."
+
+#~ msgid "Enabled"
+#~ msgstr "Включено"
+
+#, python-brace-format
+#~ msgid ""
+#~ "live-persist failed with return code {returncode}:\n"
+#~ "{stderr}"
+#~ msgstr ""
+#~ "невдача в live-persist, код поверення {returncode}:\n"
+#~ "{stderr}"
+
+#, python-brace-format
+#~ msgid ""
+#~ "cryptsetup failed with return code {returncode}:\n"
+#~ "{stdout}\n"
+#~ "{stderr}"
+#~ msgstr ""
+#~ "невдача в cryptsetup, код повернення {returncode}:\n"
+#~ "{stdout}\n"
+#~ "{stderr}"
+
+#, python-brace-format
+#~ msgid ""
+#~ "live-persist failed with return code {returncode}:\n"
+#~ "{stdout}\n"
+#~ "{stderr}"
+#~ msgstr ""
+#~ "невдача в live-persist, код поверення {returncode}:\n"
+#~ "{stdout}\n"
+#~ "{stderr}"
+
+#, python-brace-format
+#~ msgid ""
+#~ "umount failed with return code {returncode}:\n"
+#~ "{stdout}\n"
+#~ "{stderr}"
+#~ msgstr ""
+#~ "невдача в umount, код повернення {returncode}:\n"
+#~ "{stdout}\n"
+#~ "{stderr}"
+
+#~ msgid "Persistence wizard - Persistent volume creation"
+#~ msgstr "Майстер постійного сховища - Створення постійного розділу"
+
+#~ msgid "Choose a passphrase to protect the persistent volume"
+#~ msgstr "Виберіть пароль для захисту постійного розділу"
+
+#, perl-brace-format
+#~ msgid ""
+#~ "A {size} persistent volume will be created on the <b>{vendor} {model}</b> "
+#~ "device. Data on this volume will be stored in an encrypted form protected "
+#~ "by a passphrase."
+#~ msgstr ""
+#~ "Постійний розділ {size} буде створено на пристрої <b>{vendor} {model}</"
+#~ "b>. Дані в цьому розділі будуть зберігатися в зашифрованому вигляді під "
+#~ "захистом пароля."
+
+#~ msgid "Create"
+#~ msgstr "Створити"
+
+#~ msgid ""
+#~ "<b>Beware!</b> Using persistence has consequences that must be well "
+#~ "understood. Tails can't help you if you use it wrong! See the "
+#~ "<i>Encrypted persistence</i> page of the Tails documentation to learn "
+#~ "more."
+#~ msgstr ""
+#~ "<b>Обережно!</b> Ви маєте добре розуміти можливі наслідки використання "
+#~ "постійного сховища. Tails не зможе вам допомогти, якщо ви неправильно ним "
+#~ "користуватиметесь! Перегляньте сторінку <i>Зашифроване постійне сховище</"
+#~ "i> в документації Tails, щоб дізнатися більше."
+
+#~ msgid "Verify Passphrase:"
+#~ msgstr "Перевірити пароль:"
+
+#~ msgid "Passphrase can't be empty"
+#~ msgstr "Ключова фраза не може бути порожною"
+
+#~ msgid "Failed"
+#~ msgstr "Невдало"
+
+#~ msgid "Mounting Tails persistence partition."
+#~ msgstr "Монтування постійного сховища Tails."
+
+#~ msgid "The Tails persistence partition will be mounted."
+#~ msgstr "Постійне сховище Tails буде змонтоване."
+
+#~ msgid "Correcting permissions of the persistent volume."
+#~ msgstr "Виправлення прав доступу до постійного розділу."
+
+#~ msgid "The permissions of the persistent volume will be corrected."
+#~ msgstr "Права доступу до постійного розділу будуть виправлені."
+
+#~ msgid "Creating default persistence configuration."
+#~ msgstr "Створення типової конфігурації постійного сховища."
+
+#~ msgid "The default persistence configuration will be created."
+#~ msgstr "Буде створено типову конфігурацію постійного сховища."
+
+#~ msgid "Creating..."
+#~ msgstr "Створення..."
+
+#~ msgid "Creating the persistent volume..."
+#~ msgstr "Створення постійного розділу..."
+
+#~ msgid "Persistence wizard - Persistent volume configuration"
+#~ msgstr "Майстер постійного сховища - Конфігурація постійного розділу"
+
+#~ msgid "Specify the files that will be saved in the persistent volume"
+#~ msgstr "Вкажіть файли, які будуть збережені в постійному розділі"
+
+#, perl-brace-format
+#~ msgid ""
+#~ "The selected files will be stored in the encrypted partition {partition} "
+#~ "({size}), on the <b>{vendor} {model}</b> device."
+#~ msgstr ""
+#~ "Вибрані файли будуть збережені у зашифрованому сховищі {partition} "
+#~ "({size}), на пристрої <b>{vendor} {model}</b>."
+
+#~ msgid "Save"
+#~ msgstr "Зберегти"
+
+#~ msgid "Saving..."
+#~ msgstr "Збереження…"
+
+#~ msgid "Saving persistence configuration..."
+#~ msgstr "Збереження поточної конфігурації..."
+
+#~ msgid "Persistence wizard - Persistent volume deletion"
+#~ msgstr "Майстер постійного сховища - Видалення постійного розділу"
+
+#~ msgid "Your persistent data will be deleted."
+#~ msgstr "Ваші дані будуть видалені."
+
+#, perl-brace-format
+#~ msgid ""
+#~ "The persistent volume {partition} ({size}), on the <b>{vendor} {model}</"
+#~ "b> device, will be deleted."
+#~ msgstr ""
+#~ "Постійний розділ {partition} ({size}), на пристрої <b>{vendor} {model}</"
+#~ "b> буде видалений."
+
+#~ msgid "Delete"
+#~ msgstr "Вилучити"
+
+#~ msgid "Deleting the persistent volume..."
+#~ msgstr "Видалення постійного розділу..."
+
+#~ msgid "Keep files stored in the `Persistent' directory"
+#~ msgstr "Зберігати файли в \"постійній\" папці"
+
+#~ msgid "Language, administration password, and additional settings"
+#~ msgstr "Мова, пароль адміністратора та додаткові налаштування"
+
+#~ msgid "Save the last bridge that you used to connect to Tor"
+#~ msgstr ""
+#~ "Зберегти останній міст, який ви використовували для підключення до Tor"
+
+#~ msgid "Bookmarks saved in the Tor Browser"
+#~ msgstr "Закладки, збережені у браузері Tor"
+
+#~ msgid "Configuration of network devices and connections"
+#~ msgstr "Конфігурація мережевих пристроїв і з'єднань"
+
+#~ msgid "Software installed when starting Tails"
+#~ msgstr "Програмне забезпечення, що встановлюється при запуску Tails"
+
+#~ msgid "Printers configuration"
+#~ msgstr "Налаштування принтерів"
+
+#~ msgid "Thunderbird emails, feeds, and OpenPGP keys"
+#~ msgstr "Електронні листи Thunderbird, розсилки та ключі OpenPGP"
+
+#~ msgid "OpenPGP keys in GnuPG and Kleopatra"
+#~ msgstr "Ключі OpenPGP у GnuPG і Kleopatra"
+
+#~ msgid "Bitcoin Client"
+#~ msgstr "Bitcoin-клієнт"
+
+#~ msgid "Pidgin"
+#~ msgstr "Pidgin"
+
+#~ msgid "Pidgin profiles and OTR keyring"
+#~ msgstr "Профілі Pidgin і OTR"
+
+#~ msgid "SSH keys, configuration and known hosts"
+#~ msgstr "Ключі SSH, налаштування і хости"
+
+#~ msgid "Setup Tails persistent volume"
+#~ msgstr "Встановити постійний розділ Tails"
+
+#~ msgid "Device already has a persistent volume."
+#~ msgstr "Пристрій вже має постійний розділ."
+
+#~ msgid "Device has not enough unallocated space."
+#~ msgstr "На пристрої недостатньо вільного місця."
+
+#~ msgid "Device has no persistent volume."
+#~ msgstr "Пристрій не має постійного розділу."
+
+#~ msgid ""
+#~ "Cannot delete the persistent volume while in use. You should restart "
+#~ "Tails without persistence."
+#~ msgstr ""
+#~ "Не можна видалити постійний розділ при його використанні. Ви повинні "
+#~ "перезапустити Tails без постійного сховища."
+
+#~ msgid "Persistence volume is not unlocked."
+#~ msgstr "Постійне сховище не розблоковано."
+
+#~ msgid "Persistence volume is not mounted."
+#~ msgstr "Постійне сховище незмонтовано."
+
+#~ msgid ""
+#~ "Persistence volume is not readable. Permissions or ownership problems?"
+#~ msgstr ""
+#~ "Постійне сховище не може бути прочитане. Проблеми з дозволами або "
+#~ "власником?"
+
+#~ msgid "Persistence volume is not writable."
+#~ msgstr "Запис у постійне сховище неможливий."
+
+#~ msgid "Tails is running from non-USB / non-SDIO device."
+#~ msgstr "Tails запущено з не-USB / не-SDIO пристрою."
+
+#~ msgid "Device is optical."
+#~ msgstr "Пристрій є оптичним."
+
+#~ msgid "Device was not created using a USB image or Tails Installer."
+#~ msgstr ""
+#~ "Пристрій не було створено за допомогою образу USB або інсталятора Tails."
+
+#~ msgid "Persistence wizard - Finished"
+#~ msgstr "Майстер постійного сховища - Завершено"
+
+#~ msgid ""
+#~ "Any changes you have made will only take effect after restarting Tails."
+#~ msgstr ""
+#~ "Будь-які зміни, зроблені вами вступлять в силу тільки після "
+#~ "перевантаження Tails."
+
+#~ msgid "Tails is configuring your Persistent Storage. Please wait..."
+#~ msgstr "Tails налаштовує ваше постійне сховище. Будь ласка, зачекайте..."
+
+#~ msgid ""
+#~ "Only use the Unsafe Browser to sign in to a network, then close it."
+#~ "\\n\\nThe Unsafe Browser is disabled by default for security.\\n\\nTo <a "
+#~ "href='file:///usr/share/doc/tails/website/doc/anonymous_internet/"
+#~ "unsafe_browser.en.html#use'>use the Unsafe Browser</a>, restart Tails and "
+#~ "enable the Unsafe Browser in the additional settings of the Welcome "
+#~ "Screen."
+#~ msgstr ""
+#~ "Використовуйте небезпечний браузер лише для входу в мережу, після чого "
+#~ "закрийте його.\\n\\nНебезпечний браузер типово вимкнено з міркувань "
+#~ "безпеки.\\n\\nЩоб <a href='file:///usr/share/doc/tails/website/doc/"
+#~ "anonymous_internet/unsafe_browser.en.html#use'>використовувати його</a>, "
+#~ "перезапустіть Tails та увімкніть небезпечний браузер у додаткових "
+#~ "налаштуваннях Екрана привітання."
+
+#~ msgid ""
+#~ "\\n\\nTo always enable the Unsafe Browser, turn on the Welcome Screen "
+#~ "feature of the Persistent Storage."
+#~ msgstr ""
+#~ "\\n\\nЩоб назавжди дозволити Небезпечний Браузер, увімкніть функцію "
+#~ "Екрана привітання Постійного Сховища."
+
+#~ msgid "Delete the persistent volume and its content"
+#~ msgstr "Видалити постійний розділ і його вміст"
+
+#~ msgid "Configure persistent volume"
+#~ msgstr "Налаштувати постійний розділ"
+
+#~ msgid "image"
+#~ msgstr "зображення"
+
+#~ msgid "heading"
+#~ msgstr "заголовок"
+
+#~ msgid "_Request a new bridge"
+#~ msgstr "_Запросити новий міст"
+
+#~ msgid "toggle-button"
+#~ msgstr "перемикач"
+
+#~ msgid ""
+#~ "To request new Tor bridges, you can also:\n"
+#~ "\n"
+#~ "            1. Send an empty email to <tt>bridges@torproject.org</tt> "
+#~ "from a Gmail or Riseup email address.\n"
+#~ "\n"
+#~ "              2. Type below one of the bridges that you received by email."
+#~ msgstr ""
+#~ "Щоб запросити нові мости Tor, ви також можете:\n"
+#~ "\n"
+#~ "1. Надішліть порожній лист на адресу <tt>bridges@torproject.org</tt> з "
+#~ "електронної адреси Gmail або Riseup.\n"
+#~ "\n"
+#~ "2. Введіть нижче один із мостів, які ви отримали електронною поштою."
diff --git a/po/ur.po b/po/ur.po
index 62d37f44531..f7f086e9ba2 100644
--- a/po/ur.po
+++ b/po/ur.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
 "PO-Revision-Date: 2023-02-11 10:42+0000\n"
 "Last-Translator: emma peel <emma.peel@riseup.net>\n"
 "Language-Team: Urdu <https://hosted.weblate.org/projects/tor/tails-gui/ur/>\n"
@@ -430,9 +430,9 @@ msgid "Additional Settings"
 msgstr ""
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr ""
@@ -504,24 +504,24 @@ msgstr ""
 msgid "Off (default)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
-msgid "Persistent Storage Not Unlocked"
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+msgid "Persistent Storage Still Locked"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
-msgid "Continue Without Persistent Storage"
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
+msgid "Start Without Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 msgid "Don't _Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 msgid "_Create Persistent Storage"
 msgstr ""
@@ -541,7 +541,6 @@ msgstr ""
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr ""
 
@@ -758,69 +757,69 @@ msgstr ""
 msgid "Synchronizing data on disk..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr "نصب کرنے کا عمل پورا ہوا!%s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr "نصب کریں"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -828,14 +827,14 @@ msgid ""
 "a different model."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
 "%(size)s GB is required)."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -843,76 +842,76 @@ msgid ""
 "%(dl_url)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr "نصب کرنے کا عمل پورا ہوا!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
 "The persistent storage on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
 "All data on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr ""
@@ -987,7 +986,7 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1051,143 +1050,143 @@ msgstr ""
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
 "log to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr "لاگ دکھائیے"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "مرتب کریں"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "مٹائیں"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr ""
 
@@ -1318,19 +1317,19 @@ msgid ""
 msgstr ""
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1338,11 +1337,11 @@ msgid ""
 "software."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr ""
 
@@ -1669,90 +1668,90 @@ msgstr ""
 msgid "Choose File Container"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 msgid "_Cancel"
 msgstr "_منسوخ"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
 "network."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr ""
 
@@ -1910,6 +1909,7 @@ msgid "Tails documentation"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 msgid "Persistent Storage"
 msgstr ""
@@ -1936,6 +1936,15 @@ msgstr ""
 msgid "Learn more about Tails"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+msgid "Back Up Persistent Storage"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr ""
@@ -2002,7 +2011,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr ""
 
@@ -2026,7 +2035,7 @@ msgid "Disable"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr ""
 
@@ -2047,7 +2056,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr ""
 
@@ -2106,66 +2115,67 @@ msgstr ""
 msgid "Welcome to Tails!"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 msgid "_Persistent Storage"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
+msgid "Show Passphrase"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
-msgid "Show Passphrase"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+msgid "_Passphrase"
 msgstr ""
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 msgid "Shutdown"
 msgstr "بندھ کریں"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr ""
 
@@ -2260,10 +2270,19 @@ msgstr ""
 msgid "System Settings"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+msgid "Welcome Screen"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 msgid "Activate Welcome Screen"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+#, fuzzy
+msgid "Printers"
+msgstr "پرنٹرز"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 #, fuzzy
 msgid "Activate Printers"
@@ -2297,6 +2316,11 @@ msgstr ""
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "ٹار براؤزر"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 msgid "Activate Tor Browser Bookmarks"
 msgstr ""
@@ -2510,11 +2534,11 @@ msgstr ""
 msgid "Detach this volume"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr ""
 
diff --git a/po/uz.po b/po/uz.po
index 657abb38451..3b73f4f1d56 100644
--- a/po/uz.po
+++ b/po/uz.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
 "PO-Revision-Date: 2022-02-07 09:25+0000\n"
 "Last-Translator: Transifex Bot <>\n"
 "Language-Team: Uzbek (http://www.transifex.com/otf/torproject/language/uz/)\n"
@@ -424,9 +424,9 @@ msgid "Additional Settings"
 msgstr ""
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "Bekor qilish"
@@ -498,24 +498,24 @@ msgstr ""
 msgid "Off (default)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
-msgid "Persistent Storage Not Unlocked"
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+msgid "Persistent Storage Still Locked"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
-msgid "Continue Without Persistent Storage"
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
+msgid "Start Without Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 msgid "Don't _Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 msgid "_Create Persistent Storage"
 msgstr ""
@@ -535,7 +535,6 @@ msgstr ""
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr ""
 
@@ -752,69 +751,69 @@ msgstr ""
 msgid "Synchronizing data on disk..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -822,14 +821,14 @@ msgid ""
 "a different model."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
 "%(size)s GB is required)."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -837,76 +836,76 @@ msgid ""
 "%(dl_url)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
 "The persistent storage on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
 "All data on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr ""
@@ -981,7 +980,7 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1041,143 +1040,143 @@ msgstr ""
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
 "log to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "Sozlash"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "Убрать"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr ""
 
@@ -1308,19 +1307,19 @@ msgid ""
 msgstr ""
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1328,11 +1327,11 @@ msgid ""
 "software."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr ""
 
@@ -1659,91 +1658,91 @@ msgstr ""
 msgid "Choose File Container"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 #, fuzzy
 msgid "_Cancel"
 msgstr "Bekor qilish"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
 "network."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr ""
 
@@ -1901,6 +1900,7 @@ msgid "Tails documentation"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 msgid "Persistent Storage"
 msgstr ""
@@ -1927,6 +1927,15 @@ msgstr ""
 msgid "Learn more about Tails"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+msgid "Back Up Persistent Storage"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr ""
@@ -1993,7 +2002,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr ""
 
@@ -2017,7 +2026,7 @@ msgid "Disable"
 msgstr "Faolsizlantirish"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr ""
 
@@ -2038,7 +2047,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr ""
 
@@ -2097,66 +2106,67 @@ msgstr ""
 msgid "Welcome to Tails!"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 msgid "_Persistent Storage"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
+msgid "Show Passphrase"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
-msgid "Show Passphrase"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+msgid "_Passphrase"
 msgstr ""
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 msgid "Shutdown"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr ""
 
@@ -2250,10 +2260,18 @@ msgstr ""
 msgid "System Settings"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+msgid "Welcome Screen"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 msgid "Activate Welcome Screen"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+msgid "Printers"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 msgid "Activate Printers"
 msgstr ""
@@ -2286,6 +2304,11 @@ msgstr ""
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "Tor brauzeri"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 msgid "Activate Tor Browser Bookmarks"
 msgstr ""
@@ -2499,11 +2522,11 @@ msgstr ""
 msgid "Detach this volume"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr ""
 
diff --git a/po/vi.po b/po/vi.po
index 3bc07fd4157..c9551601d8f 100644
--- a/po/vi.po
+++ b/po/vi.po
@@ -9,9 +9,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
-"PO-Revision-Date: 2023-01-25 11:40+0000\n"
-"Last-Translator: emma peel <emma.peel@riseup.net>\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
+"PO-Revision-Date: 2023-02-24 19:39+0000\n"
+"Last-Translator: tictactoe <phandinhminh@protonmail.ch>\n"
 "Language-Team: Vietnamese <https://hosted.weblate.org/projects/tor/tails-gui/"
 "vi/>\n"
 "Language: vi\n"
@@ -32,12 +32,16 @@ msgid ""
 "You can install additional software automatically from your persistent "
 "storage when starting Tails."
 msgstr ""
+"Bạn có thể cài đặt thêm phần mềm một cách tự động từ dung lượng lưu trữ liên "
+"tục của bạn khi khởi động hệ điều hành Tails."
 
 #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:77
 msgid ""
 "The following software is installed automatically from your persistent "
 "storage when starting Tails."
 msgstr ""
+"Phần mềm sau đây được cài đặt tự động từ bộ lưu trữ liên tục của bạn khi "
+"khởi động Tails."
 
 #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
@@ -46,10 +50,13 @@ msgid ""
 "desktop\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal."
 "desktop\">APT on the command line</a>."
 msgstr ""
+"Để thêm vào nữa, hãy cài đặt một số phần mềm sử dụng <a href=\"synaptic."
+"desktop\">Trình quản lý gói Synaptic</a> hoặc <a href=\"org.gnome.Terminal."
+"desktop\">APT trên dòng lệnh command line</a>."
 
 #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
 msgid "_Create persistent storage"
-msgstr ""
+msgstr "_Khởi tạo vùng lưu trữ liên tục kéo dài"
 
 #: config/chroot_local-includes/usr/local/bin/electrum:72
 msgid "Persistence is disabled for Electrum"
@@ -62,23 +69,26 @@ msgid ""
 "It is strongly recommended to only run Electrum when its persistence feature "
 "is activated."
 msgstr ""
+"Khi bạn khởi động lại Tails, tất cả các dữ liệu của Electrum sẽ bị mất đi, "
+"bao gồm cả ví điện tử Bitcoin của bạn.\n"
+"Một khuyến cáo vô cùng thiết yếu là chỉ chạy Electrum khi tính năng liên tục "
+"kéo dài của nó được kích hoạt."
 
 #: config/chroot_local-includes/usr/local/bin/electrum:75
 msgid "Do you want to start Electrum anyway?"
 msgstr "Bạn có muốn khởi động Electrum dù thế nào đi nữa?"
 
 #: config/chroot_local-includes/usr/local/bin/electrum:78
-#, fuzzy
 msgid "_Launch"
-msgstr "_Launch"
+msgstr "_Khởi động"
 
 #: config/chroot_local-includes/usr/local/bin/electrum:79
 msgid "_Exit"
-msgstr "__Exit"
+msgstr "_Thoát"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/DownloadProgress.pm:59
 msgid "Unknown time"
-msgstr ""
+msgstr "Thời gian không xác định"
 
 #. Translators: Don't translate {count}, it's a place holder and
 #. will be replaced.
@@ -87,7 +97,7 @@ msgstr ""
 #, perl-brace-format
 msgid "1y"
 msgid_plural "{count}y"
-msgstr[0] ""
+msgstr[0] "{count} năm"
 
 #. Translators: Don't translate {count}, it's a place holder and
 #. will be replaced.
@@ -96,7 +106,7 @@ msgstr[0] ""
 #, perl-brace-format
 msgid "1d"
 msgid_plural "{count}d"
-msgstr[0] ""
+msgstr[0] "{count} ngày"
 
 #. Translators: Don't translate {count}, it's a place holder and
 #. will be replaced.
@@ -105,7 +115,7 @@ msgstr[0] ""
 #, perl-brace-format
 msgid "1h"
 msgid_plural "{count}h"
-msgstr[0] ""
+msgstr[0] "{count} giờ"
 
 #. Translators: Don't translate {count}, it's a place holder and
 #. will be replaced.
@@ -114,7 +124,7 @@ msgstr[0] ""
 #, perl-brace-format
 msgid "1m"
 msgid_plural "{count}m"
-msgstr[0] ""
+msgstr[0] "{count} phút"
 
 #. Translators: Don't translate {count}, it's a place holder and
 #. will be replaced.
@@ -123,14 +133,14 @@ msgstr[0] ""
 #, perl-brace-format
 msgid "1s"
 msgid_plural "{count}s"
-msgstr[0] ""
+msgstr[0] "{count} giây"
 
 #. Translators: don't translate {time}, {downloaded}, {size}
 #. and {speed}, they are placeholders and will be replaced.
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/DownloadProgress.pm:139
 #, perl-brace-format
 msgid "#{time} left — {downloaded} of {size} ({speed}/sec)\n"
-msgstr ""
+msgstr "#{time} còn lại — {downloaded} trong {size} ({speed}/giây)\n"
 
 #. Translators: KB is the short form for kilobyte
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Role/FormatByte.pm:33
@@ -158,7 +168,7 @@ msgid ""
 "For debugging information, execute the following command: sudo tails-"
 "debugging-info"
 msgstr ""
-"Để có thông tin gỡ rỗi, thực thi dòng lệnh dưới đây: sudo tails-debugging-"
+"Để có thông tin gỡ rối, thực thi dòng lệnh dưới đây: sudo tails-debugging-"
 "info"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:289
@@ -169,18 +179,24 @@ msgid ""
 "again.\\n\\nIf the problem persists, go to file:///usr/share/doc/tails/"
 "website/doc/upgrade/error/check.en.html"
 msgstr ""
+"<b>Đã có một lỗi đã xảy ra trong khi cập nhật khoá key chữ ký.</"
+"b>\\n\\n<b>Điều này ngăn chặn việc xác định rằng một bản cập nhật có khả "
+"dụng từ trang web của chúng tôi không.</b>\\n\\nKiểm tra kết nối mạng của "
+"bạn, và khởi động lại Tails để thử nâng cấp lại.\\n\\nNếu vấn đề vẫn tồn "
+"tại, hãy tới tập tin:///usr/share/doc/tails/website/doc/upgrade/error/check."
+"en.html"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:303
 msgid "Error while downloading the signing key"
-msgstr ""
+msgstr "Đã có lỗi trong khi tải khóa key chữ ký xuống"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:314
 msgid "Error while updating the signing key"
-msgstr ""
+msgstr "Đã có lỗi trong khi cập nhật khoá key chữ ký"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:341
 msgid "Error while checking for upgrades"
-msgstr "Có lỗi khi kiểm tra các bản cập nhật"
+msgstr "Đã có lỗi khi kiểm tra các bản cập nhật"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:343
 msgid ""
@@ -208,6 +224,8 @@ msgstr "không có sẵn việc tự động nâng cấp từ website cho phiên
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364
 msgid "your device was not created using a USB image or Tails Installer"
 msgstr ""
+"thiết bị của bạn đã không được khởi tạo bằng cách sử dụng ổ đĩa image USB "
+"hoặc trình cài đặt Tails Installer"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:369
 msgid "Tails was started from a DVD or a read-only device"
@@ -224,11 +242,11 @@ msgstr "không có đủ bộ nhớ sẵn có trên hệ thống"
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:384
 #, perl-brace-format
 msgid "No explanation available for reason '{reason}'."
-msgstr ""
+msgstr "Không có giải thích nào là khả dụng cho lý do '{reason}'."
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:407
 msgid "The system is up-to-date"
-msgstr "Hệ thống được cập nhật mới nhất"
+msgstr "Hệ thống đang ở trạng thái mới nhất"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:412
 msgid "This version of Tails is outdated, and may have security issues."
@@ -240,6 +258,8 @@ msgid ""
 "The available incremental upgrade requires {space_needed} of free space on "
 "Tails system partition,  but only {free_space} is available."
 msgstr ""
+"Nâng cấp gia tăng khả dụng yêu cầu {space_needed} của không gian trống trên "
+"phẩn ổ đĩa hệ thống Tails,  nhưng chỉ {free_space} là khả dụng."
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:454
 #, perl-brace-format
@@ -247,12 +267,16 @@ msgid ""
 "The available incremental upgrade requires {memory_needed} of free memory, "
 "but only {free_memory} is available."
 msgstr ""
+"Nâng cấp gia tăng khả dụng yêu cầu {memory_needed} của bộ nhớ trống, nhưng "
+"chỉ {free_memory} là khả dụng."
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:465
 msgid ""
 "An error ocurred while detecting available upgrades.\n"
 "This should not happen. Please report a bug."
 msgstr ""
+"Đã có một lỗi xảy ra trong khi dò tìm các bản cập nhật khả dụng.\n"
+"Điều này không nên xảy ra. Xin vui lòng báo cáo lại lỗi bug."
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:468
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:487
@@ -282,6 +306,18 @@ msgid ""
 "\n"
 "Do you want to upgrade now?"
 msgstr ""
+"<b>Bạn nên cập nhật lên tới phiên bản {name} {version}.</b>\n"
+"\n"
+"Để biết thêm thông tin chi tiết về phiên bản mới này, đi tới {details_url}\n"
+"\n"
+"Chúng tôi khuyến cáo bạn hãy đóng tất cả các ứng dụng khác trong lúc nâng "
+"cấp.\n"
+"Việc tải bản nâng cấp có thể mất nhiều thời gian, từ vài phút cho tới vài "
+"giờ.\n"
+"\n"
+"Kích thước tải xuống: {size}\n"
+"\n"
+"Bạn có muốn nâng cấp ngay bây giờ không?"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:509
 msgid "Upgrade available"
@@ -307,6 +343,16 @@ msgid ""
 "\n"
 "To learn how to do a manual upgrade, go to {manual_upgrade_url}"
 msgstr ""
+"<b>Bạn nên thực hiện việc nâng cấp thủ công lên phiên bản mới nhất của "
+"{name}.</b>\n"
+"\n"
+"Để biết thêm thông tin chi tiết về phiên bản mới này, đi tới {details_url}\n"
+"\n"
+"Việc nâng cấp tự động phiên bản Tails của bạn lên phiên bản mới này là không "
+"khả thi: {explanation}.\n"
+"\n"
+"Để tìm hiểu cách làm thế nào để thực hiện nâng cấp thủ công, đi tới "
+"{manual_upgrade_url}"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:528
 msgid "New version available"
@@ -319,7 +365,7 @@ msgstr "Đang tải bản cập nhật"
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:611
 #, perl-brace-format
 msgid "Downloading the upgrade to {name} {version}..."
-msgstr ""
+msgstr "Đang tải xuống bản cập nhật cho {name} {version}..."
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700
 msgid ""
@@ -343,6 +389,8 @@ msgid ""
 "Output file '{output_file}' does not exist, but tails-iuk-get-target-file "
 "did not complain. Please report a bug."
 msgstr ""
+"Tập tin trích xuất '{output_file}' không tồn tại, nhưng tập tin tails-iuk-"
+"get-target-file đã không phàn nàn gì cả. Xin hãy báo cáo lại một lỗi bug."
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:737
 msgid "Error while creating temporary downloading directory"
@@ -360,14 +408,19 @@ msgid ""
 "\n"
 "Please save your work and close all other applications."
 msgstr ""
+"Bản cập nhật đã được tải xuống thành công.\n"
+"\n"
+"Kết nối mạng sẽ được vô hiệu hoá trong khi áp dụng bản cập nhật.\n"
+"\n"
+"Xin vui lòng sao lưu lại công việc của bạn và đóng tất cả các ứng dụng khác."
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:757
 msgid "Upgrade successfully downloaded"
-msgstr ""
+msgstr "Bản cập nhật đã được tải xuống thành công"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:758
 msgid "Apply upgrade"
-msgstr ""
+msgstr "Áp dụng nâng cấp"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:765
 msgid ""
@@ -415,11 +468,11 @@ msgstr "Tắt mạng lưới thất bại"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:807
 msgid "Error while cancelling the upgrade download"
-msgstr ""
+msgstr "Có lỗi trong khi dừng tải xuống bản cập nhật"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:808
 msgid "Failed to cancel the upgrade download"
-msgstr ""
+msgstr "Đã thất bại khi dừng tải xuống bản cập nhật"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:814
 msgid "Upgrading the system"
@@ -431,6 +484,9 @@ msgid ""
 "\n"
 "For security reasons, the network connection is now disabled."
 msgstr ""
+"<b>Thiết bị Tails của bạn đang được cập nhật...</b>\n"
+"\n"
+"Vì những lý do bảo mật, kết nối mạng hiện đang được vô hiệu hoá."
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:853
 msgid ""
@@ -450,12 +506,12 @@ msgstr "Có lỗi khi đang cài đặt bản cập nhật"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:32
 msgid "Additional Settings"
-msgstr "Những cài đặt thêm"
+msgstr "Cài đặt bổ sung"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "Hủy bỏ"
@@ -466,56 +522,53 @@ msgstr "Thêm vào"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:54
 msgid "Back"
-msgstr "Lùi"
+msgstr "Quay lại"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:63
 msgid "_Administration Password"
-msgstr "_Administration Password"
+msgstr "_Mật khẩu quản trị"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:186
 msgid "_MAC Address Anonymization"
-msgstr ""
+msgstr "_Ẩn danh hoá địa chỉ MAC"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:249
 msgid "_Offline Mode"
-msgstr ""
+msgstr "_Chế độ ngoại tuyến"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:258
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:413
 msgid "Enable networking (default)"
-msgstr ""
+msgstr "Kích hoạt kết nối mạng (mặc định)"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:260
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:459
 msgid "Disable all networking"
-msgstr "Vô hiệu tất cả mạng lưới"
+msgstr "Vô hiệu hoá tất cả các chức năng mạng"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:315
-#, fuzzy
 msgid "_Network Connection"
-msgstr "_Network Connection"
+msgstr "_Kết nối Mạng"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:323
 msgid "Obsolete"
-msgstr ""
+msgstr "Lỗi thời"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:338
 msgid "_Unsafe Browser"
-msgstr ""
+msgstr "_Trình duyệt không an toàn"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:347
-#, fuzzy
 msgid "Enabled (default)"
-msgstr "Mở (mặc định)"
+msgstr "Đã bật (mặc định)"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:349
-#, fuzzy
 msgid "Disabled"
-msgstr "Vô hiệu"
+msgstr "Đã vô hiệu hoá"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:400
 msgid "On (default)"
-msgstr "Mở (mặc định)"
+msgstr "Bật (mặc định)"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:402
 msgid "On"
@@ -523,57 +576,53 @@ msgstr "Bật"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:404
 msgid "Off"
-msgstr "tắt"
+msgstr "Tắt"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:406
 msgid "Off (default)"
 msgstr "Tắt (mặc định)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
-#, fuzzy
-msgid "Persistent Storage Not Unlocked"
-msgstr "Encrypted _Persistent Storage"
-
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
 #, fuzzy
+msgid "Persistent Storage Still Locked"
+msgstr "Ổ đĩa lưu trữ liên tục kéo dài không được mở khóa"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
-msgstr "Nhập mật khẩu của bạn để mở khóa dung lượng bền vững"
+msgstr ""
+"Bạn có thực sự muốn khởi động Tails mà không mở khoá ổ đĩa lưu trữ liên tục "
+"kéo dài của bạn chứ?"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
 #, fuzzy
-msgid "Continue Without Persistent Storage"
-msgstr "Encrypted _Persistent Storage"
+msgid "Start Without Persistent Storage"
+msgstr "Tiếp tục mà Không có ổ đĩa lưu trữ liên tục kéo dài"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
-#, fuzzy
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 msgid "Don't _Create Persistent Storage"
-msgstr "Encrypted _Persistent Storage"
+msgstr "Không _Khởi tạo ổ đĩa lưu trữ liên tục kéo dài"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
-#, fuzzy
 msgid "_Create Persistent Storage"
-msgstr "Encrypted _Persistent Storage"
+msgstr "_Khởi tạo ổ đĩa lưu trữ liên tục kéo dài"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:83
-#, fuzzy
 msgid "Error unlocking Persistent Storage: {}"
-msgstr "Encrypted _Persistent Storage"
+msgstr "Có lỗi xảy ra khi mở khoá Ổ đĩa lưu trữ liên tục kéo dài: {}"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:102
-#, fuzzy
 msgid "Error activating Persistent Storage: {}"
-msgstr "Encrypted _Persistent Storage"
+msgstr "Có lỗi xảy ra khi kích hoạt Ổ đĩa lưu trữ liên tục kéo dài: {}"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:68
 msgid "Unlocking…"
-msgstr "Đang mở khóa..."
+msgstr "Đang mở khóa…"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr "Mở khóa"
 
@@ -587,27 +636,28 @@ msgid ""
 "Failed to unlock the Persistent Storage. Please start Tails and send an "
 "error report."
 msgstr ""
+"Đã thất bại khi mở khoá Ổ đĩa liên tục kéo dài. Xin vui lòng khởi động Tails "
+"và gửi một báo cáo lỗi."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:122
 msgid ""
 "Failed to activate the Persistent Storage. Please start Tails and send an "
 "error report."
 msgstr ""
+"Đã thất bại khi kích hoạt Ổ đĩa liên tục kéo dài. Xin vui lòng khởi động "
+"Tails và gửi một báo cáo lỗi."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/region_settings.py:164
-#, fuzzy
 msgid "_Language"
-msgstr "_Language"
+msgstr "_Ngôn ngữ"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/region_settings.py:207
-#, fuzzy
 msgid "_Formats"
-msgstr "_Formats"
+msgstr "_Định dạng"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/region_settings.py:244
-#, fuzzy
 msgid "_Keyboard Layout"
-msgstr "_Keyboard Layout"
+msgstr "_Bố cục bàn phím"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:288
 #, python-format
@@ -638,6 +688,9 @@ msgid ""
 "There was a problem executing the following command: `%(command)s`.\n"
 "A more detailed error log has been written to \"%(filename)s\"."
 msgstr ""
+"Đã có một vấn đề xảy ra khi thực thi dòng lệnh command sau đây: "
+"`%(command)s`.\n"
+"Một nhật ký lỗi bug chi tiết hơn đã được ghi nhận vào \"%(filename)s\"."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:462
 #, python-format
@@ -645,6 +698,9 @@ msgid ""
 "Not enough free space on device.\n"
 "%(iso_size)dMB ISO + %(overlay_size)dMB overlay > %(free_space)dMB free space"
 msgstr ""
+"Không đủ không gian trống trên thiết bị.\n"
+"%(iso_size)dMB ISO + %(overlay_size)dMB đè lên > %(free_space)dMB không gian "
+"trống"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:471
 #, python-format
@@ -658,12 +714,12 @@ msgstr "Không thể chép %(infile)s tới %(outfile)s: %(message)s"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:535
 msgid "Removing existing Tails system"
-msgstr ""
+msgstr "Loại bỏ hệ thống Tails đang tồn tại"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:545
 #, python-format
 msgid "Unable to remove file from previous Tails system: %(message)s"
-msgstr ""
+msgstr "Không thể loại bỏ tập tin khỏi hệ thống Tails trước đó: %(message)s"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:552
 #, python-format
@@ -673,7 +729,7 @@ msgstr "Không thể chmod %(file)s: %(message)s"
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:559
 #, python-format
 msgid "Unable to remove directory from previous Tails system: %(message)s"
-msgstr ""
+msgstr "Không thể loại bỏ thư mục khỏi hệ thống Tails trước đó: %(message)s"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:607
 #, python-format
@@ -684,7 +740,7 @@ msgstr "Không thể tìm thấy thiết bị %s"
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:904
 msgid "Unknown filesystem.  Your device may need to be reformatted."
 msgstr ""
-"Định dạng không xác định. Thiết bị của bạn có thể cần được định dạng lại."
+"Định dạng không xác định.  Thiết bị của bạn có thể cần được định dạng lại."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:660
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:907
@@ -695,7 +751,9 @@ msgstr "Tập tin hệ thống không được hỗ trợ: %s"
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:678
 #, python-format
 msgid "Unknown GLib exception while trying to mount device: %(message)s"
-msgstr "Ngoại lệ GLib chưa biết khi kết nối thiết bị: %(message)s"
+msgstr ""
+"Ngoại lệ GLib không xác định trong khi cố gắng gắn kết nối thiết bị: "
+"%(message)s"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:683
 #, python-format
@@ -709,17 +767,18 @@ msgstr "Không có ổ đĩa được tìm thấy"
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:699
 #, python-format
 msgid "Entering unmount_device for \"%(device)s\""
-msgstr ""
+msgstr "Đang nhập _thiết bị rời unmount cho \"%(device)s\""
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:708
 #, python-format
 msgid "Unmounting mounted filesystems on \"%(device)s\""
 msgstr ""
+"Đang tách rời unmount hệ thống tập tin đã gắn mounted trên \"%(device)s\""
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:712
 #, python-format
 msgid "Unmounting \"%(udi)s\" on \"%(device)s\""
-msgstr ""
+msgstr "Đang tách rời unmount \"%(udi)s\" trên \"%(device)s\""
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:723
 #, python-format
@@ -734,15 +793,15 @@ msgstr "Đang phân vùng thiết bị %(device)s"
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:889
 #, python-format
 msgid "Unsupported device '%(device)s', please report a bug."
-msgstr "Thiết bị không được hỗ trợ  '%(device)s', vui lòng báo lỗi."
+msgstr "Thiết bị không được hỗ trợ '%(device)s', vui lòng báo lỗi."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:892
 msgid "Trying to continue anyway."
-msgstr "Cứ tiếp tục."
+msgstr "Dù sao cũng cứ cố gắng tiếp tục."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:901
 msgid "Verifying filesystem..."
-msgstr "Đang xác minh tập tin hệ thống..."
+msgstr "Đang xác minh hệ thống tập tin..."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:925
 #, python-format
@@ -780,7 +839,7 @@ msgstr "Đọc MBR được giải nén từ %s"
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:1125
 #, python-format
 msgid "Could not read the extracted MBR from %(path)s"
-msgstr "Đã không thể đọc MBR được giải nén từ %(path)s"
+msgstr "Đã không thể đọc nổi MBR được giải nén từ %(path)s"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:1138
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:1139
@@ -796,7 +855,7 @@ msgstr "Ổ đĩa là loopback, bỏ qua việc thiết lập lại MBR"
 msgid "Synchronizing data on disk..."
 msgstr "Đang đồng bộ hóa dữ liệu trên ổ đĩa..."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
@@ -804,71 +863,74 @@ msgstr ""
 "Lỗi: Không thể gán nhãn hoặc lấy UUID từ thiết bị của bạn. Không thể tiếp "
 "tục."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr "Cài đặt hoàn tất! (%s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr "Việc cài đặt Tails đã thất bại!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr "Trình cài đặt Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
-msgstr ""
+msgstr "Tạo bản sao clone của Tails hiện tại"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
-msgstr ""
+msgstr "Sử dụng tập tin image ISO Tails đã được tải xuống"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr "Nâng cấp"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
-msgstr ""
+msgstr "Hướng dẫn nâng cấp thủ công"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr "Cài đặt"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
-msgstr ""
+msgstr "Hướng dẫn cài đặt"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(size)s %(vendor)s %(model)s thiết bị (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
-msgstr "Không có hình ảnh ISO nào được chọn"
+msgstr "Không có tập tin image ISO nào được chọn"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
-msgstr ""
+msgstr "Xin vui lòng lựa chọn một tập tin image ISO Tails."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
 "manufacturer and Tails will fail to start from it. Please try installing on "
 "a different model."
 msgstr ""
+"Thẻ nhớ USB \"%(pretty_name)s\" được cấu hình không thể loại bỏ được bởi nhà "
+"sản xuất của nó và Tails sẽ bị hỏng nếu khởi chạy từ nó. Xin vui lòng thử "
+"cài đặt trên một mô-đen khác."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
@@ -877,95 +939,104 @@ msgstr ""
 "Thiết bị \"%(pretty_name)s\" quá nhỏ để cài đặt Tails (yêu cầu ít nhất "
 "%(size)s GB)."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
 "downloaded Tails ISO image:\n"
 "%(dl_url)s"
 msgstr ""
+"Để nâng cấp thiết bị \"%(pretty_name)s\" từ Tails này, bạn cần phải sử dụng "
+"một đĩa image ISO Tails đã được tải xuống:\n"
+"%(dl_url)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr "Đã không thể tìm thấy thiết bị nào phù hợp cho việc cài đặt Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr "Hãy cắm một ổ USB di động hay thẻ SD với dung lượng ít nhất %0.1f GB."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr "Một lỗi đã xuất hiện trong khi cài đặt Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr "Cài đặt hoàn tất!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr "Không thể gắn thiết bị"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
-msgstr ""
+msgstr "%(parent_size)s %(vendor)s %(model)s thiết bị (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
 "The persistent storage on this USB stick will be lost."
 msgstr ""
+"\n"
+"\n"
+"Ổ lưu trữ liên tục kéo dài trên thẻ nhớ USB này sẽ bị mất."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
-msgstr ""
+msgstr "Xoá Ổ đĩa lưu trữ liên tục kéo dài và Cài đặt lại"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
 "All data on this USB stick will be lost."
 msgstr ""
+"\n"
+"\n"
+"Mọi dữ liệu trên chiếc thẻ nhớ USB này sẽ bị mất."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
-msgstr ""
+msgstr "Xoá tất cả Dữ liệu và Cài đặt"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
-msgstr ""
+msgstr "%(description)s%(delete_message)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
-msgstr ""
+msgstr "Hãy xác nhận thẻ nhớ USB đích đến"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
 msgstr ""
-"Những tập tin được chọn không thể đọc được. Vui lòng sửa quyền của nó hoặc "
+"Tập tin được chọn không thể đọc được. Vui lòng sửa quyền hạn của nó hoặc "
 "chọn một tập tin khác."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
 msgstr ""
-"Không thể sử dụng tập tin được chọn. Bạn có thể may mắn hơn nếu bạn di duyển "
-"ISO của bạn tới nền của thiết bị của bạn (ví dụ: C:\\)"
+"Không thể sử dụng tập tin được chọn.  Bạn có thể may mắn hơn nếu bạn di "
+"chuyển ISO của bạn tới root gốc ổ đĩa của bạn (ví dụ như: C:\\)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr "%(filename)s được chọn"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/source.py:31
 msgid "Unable to find Tails on ISO"
-msgstr ""
+msgstr "Không thể tìm thấy Tails trên file ISO"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/source.py:37
 #, python-format
@@ -979,21 +1050,24 @@ msgid ""
 "%(out)s\n"
 "%(err)s"
 msgstr ""
+"Đã có một vấn đề khi thực thi `%(cmd)s`.\n"
+"%(out)s\n"
+"%(err)s"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/source.py:64
 #, python-format
 msgid "\"%s\" does not exist"
-msgstr ""
+msgstr "\"%s\" không tồn tại"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/source.py:66
 #, python-format
 msgid "\"%s\" is not a directory"
-msgstr ""
+msgstr "\"%s\" không phải là một thư mục"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/source.py:77
 #, python-format
 msgid "Skipping \"%(filename)s\""
-msgstr ""
+msgstr "Bỏ qua \"%(filename)s\""
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/utils.py:54
 #, python-format
@@ -1001,6 +1075,8 @@ msgid ""
 "There was a problem executing `%(cmd)s`.%(out)s\n"
 "%(err)s"
 msgstr ""
+"Đã có một vấn đề khi thực thi `%(cmd)s`.%(out)s\n"
+"%(err)s"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/utils.py:126
 msgid "Could not open device for writing."
@@ -1018,22 +1094,32 @@ msgid ""
 "Renaming your database to <i>${default_filename}</i> would allow "
 "<i>KeePassXC</i> to open it automatically in the future."
 msgstr ""
+"<b><big>Bạn có muốn đổi tên cơ sở dữ liệu <i>KeePassXC</i> của bạn không?</"
+"big></b>\n"
+"\n"
+"Bạn có một cơ sở dữ liệu <i>KeePassXC</i> ở trong thư mục <i>Persistent</i> "
+"liên tục kéo dài của bạn:\n"
+"\n"
+"<i>${filename}</i>\n"
+"\n"
+"Đổi tên cơ sở dữ liệu <i>${default_filename}</i> của bạn sẽ cho phép "
+"<i>KeePassXC</i> mở nó một cách tự động trong tương lai."
 
 #: config/chroot_local-includes/usr/local/bin/keepassxc:28
 msgid "Rename"
-msgstr ""
+msgstr "Đặt lại tên"
 
 #: config/chroot_local-includes/usr/local/bin/keepassxc:30
 msgid "Keep current name"
-msgstr ""
+msgstr "Giữ tên hiện tại"
 
 #: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
 msgid "su is disabled. Please use sudo instead."
-msgstr ""
+msgstr "su đã được vô hiệu hoá. Xin hãy sử dụng sudo thay thế."
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1046,20 +1132,24 @@ msgid ""
 "The device Tails is running from cannot be found. Maybe you used the 'toram' "
 "option?"
 msgstr ""
+"Thiết bị mà Tails đang chạy từ đó ra không thể được tìm thấy. Có lẽ bạn đã "
+"sử dụng tuỳ chọn 'toram'?"
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:251
 msgid ""
 "The drive Tails is running from cannot be found. Maybe you used the 'toram' "
 "option?"
 msgstr ""
+"Ổ đĩa mà Tails đang chạy từ đó ra không thể được tìm thấy. Có lẽ bạn đã sử "
+"dụng tuỳ chọn 'toram'?"
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:78
 msgid "Lock screen"
-msgstr ""
+msgstr "Khóa màn hình"
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:82
 msgid "Suspend"
-msgstr ""
+msgstr "Tạm ngưng"
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:86
 msgid "Restart"
@@ -1086,7 +1176,7 @@ msgid ""
 "Build information:\n"
 "%s"
 msgstr ""
-"Xây dựng thông tin\n"
+"Thông tin phiên bản:\n"
 "%s"
 
 #: config/chroot_local-includes/usr/local/bin/tails-about:54
@@ -1095,143 +1185,152 @@ msgstr "không có sẵn"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
 "log to understand the problem."
 msgstr ""
+"{details} Xin vui lòng kiểm tra danh sách các phần mềm bổ sung hoặc đọc nhật "
+"ký log hệ thống để hiểu vấn đề."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
 msgstr ""
+"Xin vui lòng kiểm tra danh sách các phần mềm bổ sung hoặc đọc nhật ký log hệ "
+"thống để hiểu vấn đề."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
-msgstr "Hiển Đăng nhập"
+msgstr "Hiển thị nhật ký Log"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "Cấu hình"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
-msgstr ""
+msgstr "{beginning} và {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
-msgstr ""
+msgstr ", "
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
-msgstr ""
+msgstr "Thêm {packages} vào phần mềm bổ sung của bạn chứ?"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
+"Để cài đặt nó tự động từ ổ lưu trữ liên tục kéo dài khi khởi chạy Tails."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
-msgstr ""
+msgstr "Cài đặt vào mọi lần"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
-msgstr ""
+msgstr "Chỉ cài đặt một lần"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
-msgstr ""
+msgstr "Cấu hình của phần mềm bổ sung của bạn đã thất bại."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
 msgstr ""
+"Để tự động cài đặt nó khi khởi động Tails, bạn có thể tạo một vùng lưu trữ "
+"liên tục kéo dài và kích hoạt tính năng <b>Phần mềm bổ sung</b>."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
-msgstr ""
+msgstr "Tạo một vùng lưu trữ liên tục kéo dài"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
-msgstr ""
+msgstr "Việc khởi tạo vùng lưu trữ liên tục kéo dài của bạn đã thất bại."
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
-msgstr ""
+msgstr "Bạn có thể cài đặt {packages} một cách tự động khi khởi chạy Tails"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
-msgstr ""
+msgstr "Để làm điều đó, bạn cần phải chạy Tails từ một thẻ nhớ USB."
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
-msgstr ""
+msgstr "Loại bỏ {packages} khỏi phần mềm bổ sung của bạn chứ?"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
-msgstr ""
+msgstr "Điều này sẽ dừng việc cài đặt {packages} một cách tự động."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "Gỡ bỏ"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
-msgstr ""
+msgstr "Đang cài đặt phần mềm bổ sung từ bộ nhớ liên tục kéo dài..."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
-msgstr ""
+msgstr "Điều này có thể mất một vài phút."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
-msgstr ""
+msgstr "Việc cài đặt phần mềm bổ sung của bạn đã thất bại"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
-msgstr ""
+msgstr "Phần mềm bổ sung đã được cài đặt thành công"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
-msgstr ""
+msgstr "Việc kiểm tra cập nhật của phần mềm bổ sung của bạn đã thất bại"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
 msgstr ""
+"Xin hãy kiểm tra kết nối internet của bạn, khởi động lại Tails, hoặc đọc "
+"nhật ký log hệ thống để hiểu vấn đề."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
-msgstr ""
+msgstr "Việc nâng cấp phần mềm bổ sung của bạn đã thất bại"
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "Tài liệu"
 
@@ -1242,22 +1341,24 @@ msgid ""
 "Remove {package} from your additional software? This will stop installing "
 "the package automatically."
 msgstr ""
+"Loại bỏ {package} khỏi phần mềm bổ sung của bạn chứ? Điều này sẽ dừng việc "
+"cài đặt gói package một cách tự động."
 
 #. Translators: Don't translate {pkg}, it's a placeholder and will be replaced.
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:106
 #, python-brace-format
 msgid "Failed to remove {pkg}"
-msgstr ""
+msgstr "Loại bỏ đã thất bại {pkg}"
 
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:131
 msgid "Failed to read additional software configuration"
-msgstr ""
+msgstr "Đã thất bại khi đọc cấu hình phần mềm bổ sung"
 
 #. Translators: Don't translate {package}, it's a placeholder and will be replaced.
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:161
 #, python-brace-format
 msgid "Stop installing {package} automatically"
-msgstr ""
+msgstr "Dừng cài đặt {package} một cách tự động"
 
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:187
 msgid ""
@@ -1265,6 +1366,9 @@ msgid ""
 "Package Manager</a> or <a href=\"org.gnome.Terminal.desktop\">APT on the "
 "command line</a>."
 msgstr ""
+"Để làm điều đó, hãy cài đặt một số phần mềm sử dụng <a href=\"synaptic."
+"desktop\">Trình quản lý gói Synaptic</a> hoặc <a href=\"org.gnome.Terminal."
+"desktop\">APT trên dòng lệnh command</a>."
 
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:196
 msgid ""
@@ -1272,6 +1376,10 @@ msgid ""
 "some software using <a href=\"synaptic.desktop\">Synaptic Package Manager</"
 "a> or <a href=\"org.gnome.Terminal.desktop\">APT on the command line</a>."
 msgstr ""
+"Để làm điều đó, mở khoá ổ đĩa liên tục kéo dài của bạn khi bắt đầu khởi động "
+"Tails vầ cài đặt một số phần mềm sử dụng <a href=\"synaptic.desktop\">Trình "
+"quản lý gói package Synaptic</a> hoặc <a href=\"org.gnome.Terminal."
+"desktop\">APT trên dòng lệnh command</a>."
 
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
 msgid ""
@@ -1279,14 +1387,20 @@ msgid ""
 "href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a href=\"org."
 "gnome.Terminal.desktop\">APT on the command line</a>."
 msgstr ""
+"Để làm điều đó, khởi tạo một vùng lưu trữ liên tục kéo dài và cài đặt một số "
+"phần mềm sử dụng <a href=\"synaptic.desktop\">Trình quản lý gói package "
+"Synaptic</a> hoặc <a href=\"org.gnome.Terminal.desktop\">APT trên dòng lệnh "
+"command</a>."
 
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:214
 msgid "To do so, install Tails on a USB stick and create a persistent storage."
 msgstr ""
+"Để làm như vậy, hãy cài đặt Tails trên thẻ nhớ hoặc USB và tạo một ổ lưu trữ "
+"liên tục lâu dài."
 
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:258
 msgid "[package not available]"
-msgstr ""
+msgstr "[gói package không khả dụng]"
 
 #: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:68
 msgid "Failed to synchronize the clock!"
@@ -1294,15 +1408,15 @@ msgstr "Thất bại trong việc đồng bộ đồng hồ!"
 
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:110
 msgid "Lock Screen"
-msgstr ""
+msgstr "Khóa màn hình"
 
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:125
 msgid "Screen Locker"
-msgstr ""
+msgstr "Bộ khoá màn hình"
 
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:131
 msgid "Set up a password to unlock the screen."
-msgstr ""
+msgstr "Cài đặt một mật khẩu để mở khoá màn hình."
 
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:149
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2227
@@ -1334,10 +1448,14 @@ msgid ""
 "is temporarily disabled.\n"
 "You might prefer to restart Tails and disable MAC address anonymization."
 msgstr ""
+"Ẩn danh hoá địa chỉ MAC đã thất bại cho card mạng ${nic_name} (${nic}) do đó "
+"nó đã bị vô hiệu hoá tạm thời.\n"
+"Có lẽ sẽ thích hợp hơn cho bạn khi khởi động lại Tails và vô hiệu hoá ẩn "
+"danh địa chỉ MAC."
 
 #: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:66
 msgid "All networking disabled"
-msgstr "Tất cả mạng lưới đã bị vô hiệu"
+msgstr "Tất cả mạng lưới đã bị vô hiệu hoá"
 
 #: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:67
 #, sh-format
@@ -1346,6 +1464,10 @@ msgid ""
 "error recovery also failed so all networking is disabled.\n"
 "You might prefer to restart Tails and disable MAC address anonymization."
 msgstr ""
+"Ẩn danh hoá địa chỉ MAC đã thất bại đối với card mạng ${nic_name} (${nic}). "
+"Lỗi khôi phục cũng đã thất bại do đó tất cả mạng lưới đã bị vô hiệu hoá.\n"
+"Có lẽ sẽ phù hợp hơn đối với bạn khi khởi động lại Tails và vô hiệu hoá ẩn "
+"danh địa chỉ MAC."
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
 #, python-brace-format
@@ -1360,21 +1482,30 @@ msgid ""
 "Or do a manual upgrade.\n"
 "See {manual_upgrade_url}"
 msgstr ""
+"<b>Không đủ bộ nhớ khả dụng để kiểm tra bản cập nhật.</b>\n"
+"\n"
+"Hãy chắc chắn rằng hệ thống này thoả mãn các điều kiện để chạy Tails.\n"
+"Hãy xem file:///usr/share/doc/tails/website/doc/about/requirements.en.html\n"
+"\n"
+"Hãy thử khởi động lại Tails để kiểm tra lại cập nhật.\n"
+"\n"
+"Hoặc thực hiện cập nhật thủ công.\n"
+"Hãy xem {manual_upgrade_url}"
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr "lá»—i:"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr "Cảnh báo: máy ảo được phát hiện!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
-msgstr "Cảnh báo: máy ảo không miễn phí được phát hiện!"
+msgstr "Cảnh báo: máy ảo không tự do được phát hiện!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1382,116 +1513,129 @@ msgid ""
 "software."
 msgstr ""
 "Cả hệ thống vận hành máy chủ và phần mềm ảo hóa đều có thể theo dõi những gì "
-"bạn đang làm trên Tails. Chỉ có phần mềm miễn phí có thể được xem xét đáng "
-"tin cậy, dành cho cả hệ thống vận hành máy chủ và phần mềm ảo hóa."
+"bạn đang làm trên Tails. Chỉ có phần mềm tự do có thể được xem xét đáng tin "
+"cậy, dành cho cả hệ thống vận hành máy chủ và phần mềm ảo hóa."
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
-msgstr ""
+msgstr "Không hiện lại"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr "Tìm hiểu thêm"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/config.py:9
 #: ../config/chroot_local-includes/usr/share/applications/tca.desktop.in.h:1
 msgid "Tor Connection"
-msgstr ""
+msgstr "Kết nối Tor"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:200
 msgid "_Use a bridge that you already know"
-msgstr ""
+msgstr "_Sử dụng một cầu Bridge mà bạn đã biết"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:242
 msgid ""
 "To save your bridge, <a href=\"doc/persistent_storage\">unlock your "
 "Persistent Storage</a>."
 msgstr ""
+"Để sao lưu lại cầu Bridge của bạn, <a href=\"doc/persistent_storage\">mở "
+"khoá ổ đĩa lưu trữ liên tục kéo dài của bạn</a>."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:249
 msgid ""
 "To save your bridge, <a href=\"doc/persistent_storage\">create a Persistent "
 "Storage</a> on your Tails USB stick."
 msgstr ""
+"Để sao lưu cầu Bridge của bạn, <a href=\"doc/persistent_storage\">khởi tạo "
+"một ổ đĩa lưu trữ liên tục kéo dài</a> trên thẻ nhớ USB Tails của bạn."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:269
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:773
 #, python-brace-format
 msgid "Invalid: {exception}"
-msgstr ""
+msgstr "Không hợp lệ: {exception}"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:281
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:786
 msgid "You need to configure an obfs4 bridge to hide that you are using Tor"
 msgstr ""
+"Bạn cần phải định cấu hình một cầu Bridge obfs4 để ẩn đi rằng bạn đang sử "
+"dụng Tor"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:334
 msgid "Failed to configure your Persistent Storage"
 msgstr ""
+"Đã thất bại khi định cấu hình cho Dung lượng lưu trữ liên tục dài hạn của bạn"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:385
 msgid "Failed to detect a webcam. Maybe your webcam is too old."
-msgstr ""
+msgstr "Đã thất bại khi dò tìm một webcam. Có lẽ webcam của bạn quá cũ."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:394
 msgid "Failed to scan QR code. Try with more light or closer to the camera."
 msgstr ""
+"Đã thất bại khi quét mã code QR. Hãy thử lại với một camera đặt gần hơn hoặc "
+"rọi sáng sủa hơn."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:401
 msgid "Invalid QR code. Try sending another email and scanning again."
 msgstr ""
+"Mã code QR không hợp lệ. Hãy thử gửi một email khác và quét lại lần nữa."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:451
 msgid "Synchronizing the system's clock…"
-msgstr ""
+msgstr "Đang đồng bộ hoá đồng hồ của hệ thống…"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:500
 msgid "Connecting to Tor without bridges…"
-msgstr ""
+msgstr "Đang kết nối tới Tor mà không có cầu Bridge…"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:507
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:531
 msgid "Connecting to Tor with default bridges…"
-msgstr ""
+msgstr "Đang kết nối tới Tor với cầu Bridge mặc định…"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:514
 msgid "Connecting to Tor with a custom bridge…"
-msgstr ""
+msgstr "Đang kết nối tới Tor với một cầu Bridge tuỳ chỉnh…"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:622
 msgid "Connected to Tor successfully with bridges"
-msgstr ""
+msgstr "Đã kết nối tới Tor thành công với cầu Bridge"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:624
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1960
 msgid "Connected to Tor successfully"
-msgstr ""
+msgstr "Đã kết nối tới Tor thành công"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:628
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1985
 msgid "You can now browse the Internet anonymously and uncensored."
 msgstr ""
+"Giờ đây bạn có thể duyệt internet một cách ẩn danh và không bị kiểm duyệt."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:703
 msgid "This local network seems to be blocking access to Tor."
-msgstr ""
+msgstr "Mạng lưới cục bộ này có vẻ như đang chặn truy cập tới Tor."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:776
 msgid "Bridge address malformed"
-msgstr ""
+msgstr "Địa chỉ cầu Bridge không đúng dạng"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:794
 msgid "Setting a bridge is needed if you want to hide that you are using Tor"
 msgstr ""
+"Cài đặt một cầu Bridge là cần thiết nếu bạn muốn ẩn giấu rằng bạn đang sử "
+"dụng Tor"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1011
 #, python-brace-format
 msgid "Scanned {bridge_type} bridge: <b>{bridge_info}</b>."
-msgstr ""
+msgstr "Đã quét scan {bridge_type} cầu Bridge: <b>{bridge_info}</b>."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1102
 msgid "Are you sure you want to lose progress?"
-msgstr ""
+msgstr "Bạn có chắc chắn rằng bạn muốn mất tiến độ không?"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1106
 msgid ""
@@ -1501,18 +1645,23 @@ msgid ""
 "If connecting to Tor fails, you will have to wait again until the end of the "
 "progress bar to be able to troubleshoot your connection."
 msgstr ""
+"Tails sẽ tiếp tục kết nối tới Tor sau khi bạn đóng trình hỗ trợ kết nối "
+"Tor.\n"
+"\n"
+"Nếu kết nối tới Tor thất bại, bạn sẽ phải đợi lần nữa cho tới khi kết thúc "
+"của thanh tiến trình để có thể truy xét kết nối của bạn."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1112
 msgid "Close and Lose Progress"
-msgstr ""
+msgstr "Đóng và Mất đi Tiến trình"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1113
 msgid "Wait"
-msgstr ""
+msgstr "Chờ"
 
 #: config/chroot_local-includes/usr/local/bin/thunderbird:41
 msgid "You need to migrate your OpenPGP keys"
-msgstr ""
+msgstr "Bạn cần di tản các khoá key OpenPGP của bạn"
 
 #: config/chroot_local-includes/usr/local/bin/thunderbird:43
 msgid ""
@@ -1520,14 +1669,17 @@ msgid ""
 "in support for OpenPGP encryption. To continue using your OpenPGP keys in "
 "<i>Thunderbird</i>, follow our migration instructions."
 msgstr ""
+"<i>Thunderbird</i> 78 hiện thay thế cho tiện ích <i>Enigmail</i> với hỗ trợ "
+"tích hợp sẵn cho mã hoá OpenPGP. Để tiếp tụp sử dụng khoá key OpenPGP trong "
+"<i>Thunderbird</i>, hãy theo bước các chỉ dẫn dịch chuyển của chúng tôi."
 
 #: config/chroot_local-includes/usr/local/bin/thunderbird:45
 msgid "_Open Migration Instructions"
-msgstr ""
+msgstr "_Mở các chỉ dẫn dịch chuyển"
 
 #: config/chroot_local-includes/usr/local/bin/thunderbird:46
 msgid "_Migrate Later"
-msgstr ""
+msgstr "_Dịch chuyển sau"
 
 #: config/chroot_local-includes/usr/bin/tor-browser:49
 msgid "Tor is not ready"
@@ -1535,15 +1687,15 @@ msgstr "Tor chưa sẵn sàng"
 
 #: config/chroot_local-includes/usr/bin/tor-browser:50
 msgid "Tor is not ready. Start Tor Browser anyway?"
-msgstr "Tor chưa sẵn sàng. Bắt đầu Tor Browser dù thế nào đi nữa?"
+msgstr "Tor chưa sẵn sàng. Khởi chạy Tor Browser dù thế nào chăng nữa chứ?"
 
 #: config/chroot_local-includes/usr/bin/tor-browser:51
 msgid "Start Tor Browser Offline"
-msgstr ""
+msgstr "Khởi chạy trình duyệt Tor Browser ngoại tuyến"
 
 #: config/chroot_local-includes/usr/bin/tor-browser:52
 msgid "Open Tor Connection"
-msgstr ""
+msgstr "Mở kết nối Tor"
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/torstatus@tails.boum.org/extension.js:37
 msgid "Tor Status"
@@ -1551,7 +1703,7 @@ msgstr "Trạng thái Tor"
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/torstatus@tails.boum.org/extension.js:46
 msgid "Open Onion Circuits"
-msgstr ""
+msgstr "Mở các mạch nối Onion"
 
 #. Translators: Don't translate {volume_label} or {volume_size},
 #. they are placeholders and will be replaced. They need
@@ -1559,7 +1711,7 @@ msgstr ""
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:65
 #, python-brace-format
 msgid "{volume_label} ({volume_size})"
-msgstr ""
+msgstr "{volume_label} ({volume_size})"
 
 #. Translators: Don't translate {partition_name} or {partition_size},
 #. they are placeholders and will be replaced. They need
@@ -1567,7 +1719,7 @@ msgstr ""
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:71
 #, python-brace-format
 msgid "{partition_name} ({partition_size})"
-msgstr ""
+msgstr "{partition_name} ({partition_size})"
 
 #. Translators: Don't translate {volume_size}, it's a placeholder
 #. and will be replaced. It needs to be present in the translated
@@ -1575,14 +1727,14 @@ msgstr ""
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:77
 #, python-brace-format
 msgid "{volume_size} Volume"
-msgstr ""
+msgstr "{volume_size} Âm lượng"
 
 #. Translators: Don't translate {volume_name}, it's a placeholder and
 #. will be replaced. It needs to be present in the translated string.
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
 #, python-brace-format
 msgid "{volume_name} (Read-Only)"
-msgstr ""
+msgstr "{volume_name} (Chỉ được đọc)"
 
 #. Translators: Don't translate {partition_name} and {container_path}, they
 #. are placeholders and will be replaced. They need to be present
@@ -1590,7 +1742,7 @@ msgstr ""
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:125
 #, python-brace-format
 msgid "{partition_name} in {container_path}"
-msgstr ""
+msgstr "{partition_name} trong {container_path}"
 
 #. Translators: Don't translate {volume_name} and {path_to_file_container},
 #. they are placeholders and will be replaced. You should only have to translate
@@ -1598,7 +1750,7 @@ msgstr ""
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:132
 #, python-brace-format
 msgid "{volume_name} – {path_to_file_container}"
-msgstr ""
+msgstr "{volume_name} – {path_to_file_container}"
 
 #. Translators: Don't translate {partition_name} and {drive_name}, they
 #. are placeholders and will be replaced. They need to be present
@@ -1606,7 +1758,7 @@ msgstr ""
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:139
 #, python-brace-format
 msgid "{partition_name} on {drive_name}"
-msgstr ""
+msgstr "{partition_name} trên {drive_name}"
 
 #. Translators: Don't translate {volume_name} and {drive_name},
 #. they are placeholders and will be replaced. You should only have to translate
@@ -1614,15 +1766,15 @@ msgstr ""
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:146
 #, python-brace-format
 msgid "{volume_name} – {drive_name}"
-msgstr ""
+msgstr "{volume_name} – {drive_name}"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
 msgid "Wrong passphrase or parameters"
-msgstr ""
+msgstr "Cụm mật khẩu hoặc thông số sai"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:236
 msgid "Error unlocking volume"
-msgstr ""
+msgstr "Lỗi mở khoá âm lượng"
 
 #. Translators: Don't translate {volume_name} or {error_message},
 #. they are placeholder and will be replaced.  They need
@@ -1633,10 +1785,12 @@ msgid ""
 "Couldn't unlock volume {volume_name}:\n"
 "{error_message}"
 msgstr ""
+"Không thể mở khoá âm lượng {volume_name}:\n"
+"{error_message}"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
 msgid "One or more applications are keeping the volume busy."
-msgstr ""
+msgstr "Một hoặc nhiều ứng dụng đang giữ âm lượng bận rộn."
 
 #. Translators: Don't translate {volume_name} or {error_message},
 #. they are placeholder and will be replaced. They need
@@ -1647,36 +1801,38 @@ msgid ""
 "Couldn't lock volume {volume_name}:\n"
 "{error_message}"
 msgstr ""
+"Đã không thể khoá âm lượng {volume_name}:\n"
+"{error_message}"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:352
 msgid "Locking the volume failed"
-msgstr ""
+msgstr "Khoá âm lượng đã thất bại"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
 msgid "No file containers added"
-msgstr ""
+msgstr "Không có tập tin container chứa nào đã được thêm vào"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:98
 msgid "No VeraCrypt devices detected"
-msgstr ""
+msgstr "Không thiết bị VeraCrypt nào đã được phát hiện"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:40
 #: ../config/chroot_local-includes/usr/share/applications/unlock-veracrypt-volumes.desktop.in.h:1
 msgid "Unlock VeraCrypt Volumes"
-msgstr ""
+msgstr "Mở khoá các âm lượng VeraCrypt"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:114
 msgid "Container already added"
-msgstr ""
+msgstr "Container chứa đã được thêm vào"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:115
 #, python-format
 msgid "The file container %s should already be listed."
-msgstr ""
+msgstr "Tập tin container chứa %s nên được lên danh sách."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:131
 msgid "Container opened read-only"
-msgstr ""
+msgstr "Container chứa chỉ được đọc đã mở"
 
 #. Translators: Don't translate {path}, it's a placeholder  and will be replaced.
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
@@ -1687,23 +1843,27 @@ msgid ""
 "container.\n"
 "{error_message}"
 msgstr ""
+"Tập tin container chứa {path} không thể được mở với quyền truy cập viết. "
+"Thay vì thế, nó đã được mở chỉ được đọc. Bạn sẽ không thể chỉnh sửa nội dung "
+"của container chứa.\n"
+"{error_message}"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
 msgid "Error opening file"
-msgstr ""
+msgstr "Lỗi khi mở tập tin"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
 msgid "Not a VeraCrypt container"
-msgstr ""
+msgstr "Không phải container chứa VeraCrypt"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
 #, python-format
 msgid "The file %s does not seem to be a VeraCrypt container."
-msgstr ""
+msgstr "Tập tin %s không trông như một container chứa VeraCrypt."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
 msgid "Failed to add container"
-msgstr ""
+msgstr "Đã thất bại khi thêm container chứa"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
 #, python-format
@@ -1711,100 +1871,112 @@ msgid ""
 "Could not add file container %s: Timeout while waiting for loop setup.\n"
 "Please try using the <i>Disks</i> application instead."
 msgstr ""
+"Đã không thể thêm tập tin container chứa %s: Đã hết thời gian trong khi đợi "
+"cài đặt vòng loop.\n"
+"Xin vui lòng thử sử dụng <i>Các đĩa</i> ứng dụng thay thế."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
 msgid "Choose File Container"
-msgstr ""
+msgstr "Lựa chọn tập tin Container chứa"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
+"Trình duyệt không an toàn đã được vô hiệu hoá trong màn hình chào mừng. "
+"\\n\\n"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
+"Để sử dụng trình duyệt không an toàn, hãy khởi động lại Tails và chắc chắn "
+"rằng trình duyệt không an toàn đã được kích hoạt trong cài đặt bổ sung của "
+"Màn hình Chào mừng."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 msgid "To use the Unsafe Browser, restart Tails."
-msgstr ""
+msgstr "Để sử dụng trình duyệt không an toàn, khởi động lại Tails."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
-msgstr ""
+msgstr "_Khởi động lại"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
-#, fuzzy
 msgid "_Cancel"
-msgstr "Hủy bỏ"
+msgstr "_Hủy bỏ"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 msgstr ""
+"Bạn có thật sự muốn khởi động lại Tails ngay bây giờ không?\\n\\nTất cả công "
+"việc hiện tại của bạn sẽ bị mất."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
-msgstr ""
+msgstr "Khởi động lại ngay"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
-msgstr ""
+msgstr "Đã thất bại khi khởi động lại hệ thống."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
-msgstr "Đang bắt đầu trình duyệt không an toàn..."
+msgstr "Đang khởi chạy trình duyệt không an toàn..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr "Việc này có thể mất chút thời gian, nên hay kiên nhẫn."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
-msgstr "Đang tắt Trình duyệt không an toàn..."
+msgstr "Đang tắt Trình duyệt Không an toàn..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
 msgstr ""
 "Việc này có thể mất chút thời gian, và bạn có thể không khởi động lại Trình "
-"duyệt không an toàn cho tới khi nó được tắt chính xác."
+"duyệt Không an toàn cho tới khi nó được tắt một cách đúng đắn."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
-msgstr "Trình duyệt không an toàn"
+msgstr "Trình duyệt Không an toàn"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
 msgstr ""
-"Một Trình duyệt không an toàn khác đang chạy, hoặc đang được dọn dẹp. Vui "
+"Một Trình duyệt Không an toàn khác đang chạy, hoặc đang được dọn dẹp. Vui "
 "lòng thử lại trong chốc lát."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr "Thất bại khi cài đặt chroot."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr "Thất bại khi cấu hình trình duyệt."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
 "network."
 msgstr ""
+"Bạn vẫn chưa được kết nối tới một mạng lưới cục bộ.\\n\\nĐể có thể bắt đầu "
+"khởi động Trình duyệt Không an toàn, trước tiên bạn phải kết nối tới một Wi-"
+"Fi, nối dây, hoặc mạng lưới di động."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr "Thất bại khi chạy trình duyệt."
 
@@ -1814,6 +1986,8 @@ msgid ""
 "The %s variable was not found in the configuration file: /etc/whisperback/"
 "config.py"
 msgstr ""
+"Biến %s đã không được tìm thấy trong tập tin cấu hình: /etc/whisperback/"
+"config.py"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:113
 msgid "Name of the affected software"
@@ -1821,7 +1995,7 @@ msgstr "Tên của phần mềm bị ảnh hưởng"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:115
 msgid "Exact steps to reproduce the error"
-msgstr "Số bước chính xác để tạo lại lỗi"
+msgstr "Các bước chính xác để tạo lại lỗi sai"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:117
 msgid "Actual result and description of the error"
@@ -1849,15 +2023,15 @@ msgstr "Việc này có thể mất chút thời gian..."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:188
 msgid "The contact email address doesn't seem valid."
-msgstr ""
+msgstr "Địa chỉ email liên hệ có vẻ không hợp lệ."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:205
 msgid "Unable to send the mail: SMTP error."
-msgstr "Không thể gửi thư: lỗi SMTP."
+msgstr "Không thể gửi thư email: lỗi SMTP."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:207
 msgid "Unable to connect to the server."
-msgstr "Không thể kết nối với máy chủ."
+msgstr "Không thể kết nối tới máy chủ."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:209
 msgid "Unable to create or to send the mail."
@@ -1874,23 +2048,23 @@ msgid ""
 msgstr ""
 "\n"
 "\n"
-"Báo cáo lỗi không thể gửi đi được, có thể do vấn đề mạng lưới. Vui lòng thử "
-"kết nối lại với mạng lưới và bấm gửi lại.\n"
+"Báo cáo lỗi bug không thể được gửi đi, có thể do vấn đề về mạng. Vui lòng "
+"thử kết nối lại tới mạng và bấm gửi lại.\n"
 "\n"
-"Nếu nó không hoạt động, bạn sẽ được đề nghị lưu lại báo cáo lỗi."
+"Nếu nó không hoạt động, bạn sẽ được đề nghị lưu lại báo cáo lỗi bug."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:225
 msgid "Your message has been sent."
-msgstr "Thông điệp của bạn đã được gửi đi."
+msgstr "Tin nhắn của bạn đã được gửi đi."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:232
 msgid "An error occured during encryption."
-msgstr "Một lỗi xảy ra trong quá trình mã hóa."
+msgstr "Một lỗi đã xảy ra trong quá trình mã hóa."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:252
 #, python-format
 msgid "Unable to save %s."
-msgstr "Không thể lưu %s."
+msgstr "Không thể sao lưu %s."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:275
 #, python-format
@@ -1905,15 +2079,15 @@ msgid ""
 "\n"
 "Do you want to save the bug report to a file?"
 msgstr ""
-"Báo cáo lỗi không thể được gửi đi, có thể do lỗi mạng lưới.\n"
+"Báo cáo lỗi bug không thể được gửi đi, có thể do lỗi mạng.\n"
 "\n"
-"Như là một người gõ rối bạn có thể lưu báo cáo lỗi như một tập tin trên ổ "
-"USB và cố gắng gửi nó đến chúng tôi tại %s từ email của bạn dùng một hệ "
-"thống khác. Lưu ý rằng báo cáo lỗi của bạn sẽ không ẩn danh khi làm nhưng "
-"vậy, do đó trừ khi tự bạn có những bước xa hơn (ví dụ sử dụng Tor với một "
-"tài khoản email bỏ đi).\n"
+"Như một biện pháp gỡ rối, bạn có thể sao lưu báo cáo lỗi bug như một tập tin "
+"trên ổ USB và cố gắng gửi nó cho chúng tôi tại %s từ tài khoản email của bạn "
+"sử dụng một hệ thống khác. Hãy lưu ý rằng báo cáo lỗi bug của bạn sẽ không "
+"được ẩn danh khi làm như vậy trừ khi tự bạn có thể thực hiện một số biện "
+"pháp bổ sung (ví dụ như sử dụng Tor với một tài khoản email bỏ đi).\n"
 "\n"
-"Bạn có muốn lưu báo cáo lỗi vào một tập tin?"
+"Bạn có muốn sao lưu báo cáo lỗi bug vào một tập tin không?"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:337
 #: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:280
@@ -1927,19 +2101,19 @@ msgstr "Gửi phản hồi trong thư được mã hóa."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:341
 msgid "Copyright © 2009-2018 Tails developers (tails@boum.org)"
-msgstr ""
+msgstr "Bản quyền © 2009-2018 Các lập trình viên Tails (tails@boum.org)"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:342
 msgid "Tails developers <tails@boum.org>"
-msgstr "Những nhà phát triển Tails <tails@boum.org>"
+msgstr "Các nhà phát triển Tails <tails@boum.org>"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:343
 msgid "translator-credits"
-msgstr "người dịch-những sự đóng góp"
+msgstr "phiên dịch viên-những sự đóng góp"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:376
 msgid "This doesn't seem to be a valid URL or OpenPGP key."
-msgstr "Việc này dường như là một URL hợp lệ hoặc khóa OpenPGP."
+msgstr "Đây dường như không phải là một URL hợp lệ hoặc khóa key OpenPGP."
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/whisperback.py:62
 #, python-format
@@ -1949,27 +2123,29 @@ msgstr "Email liên lạc không hợp lệ: %s"
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/whisperback.py:82
 #, python-format
 msgid "Invalid contact OpenPGP key: %s"
-msgstr "Khóa OpenPGP liên lạc không hợp lệ: %s"
+msgstr "Khóa key OpenPGP liên lạc không hợp lệ: %s"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/whisperback.py:84
 msgid "Invalid contact OpenPGP public key block"
-msgstr "Khối khóa công khai của danh bạ OpenPGP không hợp lệ"
+msgstr "Khối block khóa key liên lạc công cộng OpenPGP không hợp lệ"
 
 #: config/chroot_local-includes/usr/local/bin/tca:154
 msgid "You turned on Offline Mode in the Welcome Screen."
-msgstr ""
+msgstr "Bạn đã bật Chế độ Ngoại tuyến trong Màn hình Chào mừng."
 
 #: config/chroot_local-includes/usr/local/bin/tca:155
 msgid "It is impossible to connect to Tor in Offline Mode."
-msgstr ""
+msgstr "Kết nối tới Tor trong chế độ ngoại tuyến là bất khả khi."
 
 #: config/chroot_local-includes/usr/local/bin/tca:156
 msgid "To connect to Tor and the Internet, restart Tails without Offline Mode."
 msgstr ""
+"Để kết nối tới Tor và Internet, khởi động lại Tails mà không có Chế độ Ngoại "
+"tuyến."
 
 #: ../config/chroot_local-includes/etc/skel/Desktop/Report_an_error.desktop.in.h:1
 msgid "Report an error"
-msgstr "Báo lỗi."
+msgstr "Báo cáo một lỗi"
 
 #: ../config/chroot_local-includes/etc/skel/Desktop/tails-documentation.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/applications/tails-documentation.desktop.in.h:1
@@ -1977,24 +2153,28 @@ msgid "Tails documentation"
 msgstr "Tài liệu về Tails"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
-#, fuzzy
 msgid "Persistent Storage"
-msgstr "Encrypted _Persistent Storage"
+msgstr "Ổ đĩa lưu trữ liên tục kéo dài"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:2
 msgid ""
 "Configure which files and application configuration are saved between "
 "working sessions"
 msgstr ""
+"Định cấu hình tập tin nào và cấu hình ứng dụng nào được sao lưu giữa các "
+"phiên làm việc"
 
 #: ../config/chroot_local-includes/usr/share/applications/root-terminal.desktop.in.h:1
 msgid "Root Terminal"
-msgstr ""
+msgstr "Mở Terminal Root với tư cách quản lý hệ thống"
 
 #: ../config/chroot_local-includes/usr/share/applications/root-terminal.desktop.in.h:2
 msgid "Opens a terminal as the root user, using gksu to ask for the password"
 msgstr ""
+"Mở một Terminal với tư cách quản lý hệ thống, sử dụng gksu để yêu cầu mật "
+"khẩu"
 
 #: ../config/chroot_local-includes/usr/share/applications/tails-documentation.desktop.in.h:2
 msgid "Learn how to use Tails"
@@ -2004,51 +2184,66 @@ msgstr "Tìm hiểu cách sử dụng Tails"
 msgid "Learn more about Tails"
 msgstr "Tìm hiểu thêm về Tails"
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "Ổ đĩa lưu trữ liên tục kéo dài"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+#, fuzzy
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+"Bật các tính năng của ổ đĩa lưu trữ liên tục kéo dài cho dữ liệu mà bạn muốn "
+"sao lưu tới thẻ nhớ USB Tails của bạn."
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
-msgstr ""
+msgstr "Cài đặt, tạo bản sao clone, nâng cấp Tails"
 
 #: ../config/chroot_local-includes/usr/share/applications/tca.desktop.in.h:2
 msgid "Connect Tails to the Tor network"
-msgstr ""
+msgstr "Kết nối Tails tới mạng lưới Tor Network"
 
 #: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:1
 msgid "Tor Browser"
-msgstr "Trình duyệt Tor"
+msgstr "Trình duyệt Tor Browser"
 
 #: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:2
 msgid "Anonymous Web Browser"
-msgstr "Trình duyệt trang ẩn danh"
+msgstr "Trình duyệt Web ẩn danh"
 
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:2
 msgid "Browse the World Wide Web without anonymity"
-msgstr "Duyệt Word Wide Web mà không có sự ẩn danh"
+msgstr "Duyệt World Wide Web mà không có ẩn danh"
 
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:3
 msgid "Unsafe Web Browser"
-msgstr "Trình duyệt trang không an toàn"
+msgstr "Trình duyệt Web Không an toàn"
 
 #: ../config/chroot_local-includes/usr/share/applications/unlock-veracrypt-volumes.desktop.in.h:2
 msgid "Mount VeraCrypt encrypted file containers and devices"
-msgstr ""
+msgstr "Gắn Container chứa tập tin đã mã hoá VeraCrypt và thiết bị"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:2
 msgid ""
 "Configure the additional software installed from your persistent storage "
 "when starting Tails"
 msgstr ""
+"Định cấu hình phần mềm bổ sung được cài đặt từ ổ đĩa lưu trữ liên tục kéo "
+"dài khi bắt đầu khởi chạy Tails"
 
 #: ../config/chroot_local-includes/usr/share/applications/whisperback.desktop.in.h:1
 msgid "WhisperBack Error Reporting"
-msgstr ""
+msgstr "Báo cáo lỗi WhisperBack"
 
 #: ../config/chroot_local-includes/usr/share/applications/whisperback.desktop.in.h:2
 msgid "Send feedback via encrypted e-mail"
-msgstr ""
+msgstr "Gửi phản hồi thông qua thư email được mã hoá"
 
 #: ../config/chroot_local-includes/usr/share/applications/whisperback.desktop.in.h:3
 msgid "feedback;bug;report;tails;error;"
-msgstr ""
+msgstr "phản hồi; lỗi bug;báo cáo;tails;lỗi;"
 
 #: ../config/chroot_local-includes/usr/share/desktop-directories/Tails.directory.in.h:2
 msgid "Tails specific tools"
@@ -2056,21 +2251,23 @@ msgstr "Những công cụ đặc biệt của Tails"
 
 #: ../config/chroot_local-includes/usr/share/polkit-1/actions/org.boum.tails.root-terminal.policy.in.h:1
 msgid "To start a Root Terminal, you need to authenticate."
-msgstr "Để khởi động một Thiết bị gốc, bạn cần phải xác thực"
+msgstr "Để khởi động một Root Terminal gốc, bạn cần phải xác thực."
 
 #: ../config/chroot_local-includes/usr/share/polkit-1/actions/org.boum.tails.additional-software.policy.in.h:1
 msgid "Remove an additional software package"
-msgstr ""
+msgstr "Loại bỏ một gói package phần mềm bổ sung"
 
 #: ../config/chroot_local-includes/usr/share/polkit-1/actions/org.boum.tails.additional-software.policy.in.h:2
 msgid ""
 "Authentication is required to remove a package from your additional software "
 "($(command_line))"
 msgstr ""
+"Việc xác thực được yêu cầu đề gỡ bỏ một gói package khỏi phần mềm bổ sung "
+"của bạn ($(command_line))"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr "Mật khẩu Quản trị"
 
@@ -2096,9 +2293,9 @@ msgid "Disable"
 msgstr "Vô hiệu"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
-msgstr ""
+msgstr "Ẩn danh hoá địa chỉ MAC"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:170
 msgid ""
@@ -2107,17 +2304,21 @@ msgid ""
 "generally safer as it helps you hide your geographical location. But it "
 "might also create connectivity problems or look suspicious."
 msgstr ""
+"Ẩn danh hoá địa chỉ MAC giúp ẩn đi số sê-ri của giao diện mạng (Wi-Fi hoặc "
+"nối dây) từ mạng cục bộ. Ẩn danh hoá địa chỉ MAC thông thường an toàn hơn "
+"bởi nó giúp bạn ẩn đi vị trí địa lý của bạn. Nhưng nó cũng đồng thời tạo ra "
+"một số vấn đề kết nối hoặc trông khả nghi."
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:212
 msgid "Anonymize all MAC addresses (default)"
-msgstr ""
+msgstr "Ẩn danh hoá tất cả các địa chỉ MAC (mặc định)"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:258
 msgid "Don't anonymize MAC addresses"
-msgstr ""
+msgstr "Không ẩn danh các địa chỉ MAC"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr "Cấu hình mạng lưới"
 
@@ -2132,16 +2333,26 @@ msgid ""
 "If you want to work offline, enable the Offline Mode in the additional "
 "settings."
 msgstr ""
+"Chúng tôi đã thay thế cài đặt bổ sung này trong Tails 4.19 (tháng sáu 2021) "
+"với một trình hỗ trợ kết nối Tor được tích hợp trong màn hình Desktop.\n"
+"\n"
+"Bạn sẽ được hỏi rằng, liệu bạn có muốn sử dụng cầu Bridge Tor khi kết nối "
+"tới Tor sau khi khởi chạy Tails không.\n"
+"\n"
+"Nếu bạn muốn làm việc ngoại tuyến, hãy kích hoạt Chế độ Ngoại tuyến trong "
+"phần cài đặt bổ sung."
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:357
 msgid "Offline Mode"
-msgstr ""
+msgstr "Chế độ Ngoại tuyến"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:373
 msgid ""
 "If you want to work completely offline, you can disable all networking for "
 "increased security."
 msgstr ""
+"Nếu bạn muốn làm việc hoàn toàn ngoại tuyến, bạn có thể tắt tất cả mạng để "
+"tăng cường bảo mật."
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:528
 msgid ""
@@ -2159,143 +2370,153 @@ msgid ""
 "2022), after we fixed the security vulnerabilities that made us disable it "
 "by default in Tails 4.8 (June 2020)."
 msgstr ""
+"Trình duyệt Không an toàn cho phép bạn đăng nhập vào một mạng lưới sử dụng "
+"một cổng thông tin đóng.\n"
+"\n"
+"Một cổng thông tin đóng là một trang web được hiển thị trước khi bạn có thể "
+"truy cập Internet. Cổng thông tin đóng thông thường yêu cầu bạn đăng nhập "
+"vào mạng lưới hoặc nhập thông tin ví dụ như một địa chỉ email.\n"
+"\n"
+"Trình duyệt Không an toàn là không ẩn danh và có thể gỡ ẩn danh bạn. Cho nên "
+"chỉ sử dụng nó để đăng nhập vào mạng lưới.\n"
+"\n"
+"Trình duyệt Không an toàn được bật kích hoạt theo mặc định trở lại kể từ "
+"Tails 5.8 (Tháng mười hai 2022), sau khi chúng tôi sửa chữa các lỗ hổng nguy "
+"cơ bảo mật mà khiến chúng ta tắt nó đi theo mặc định trong Tails 4.8 (tháng "
+"sáu 2020)."
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:576
-#, fuzzy
 msgid "Enable the Unsafe Browser (default)"
-msgstr "Đang bắt đầu trình duyệt không an toàn..."
+msgstr "Bật Trình duyệt Không an toàn (mặc định)"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:622
-#, fuzzy
 msgid "Disable the Unsafe Browser"
-msgstr "Đang bắt đầu trình duyệt không an toàn..."
+msgstr "Tắt Trình duyệt Không an toàn"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:100
 msgid "Settings were loaded from the persistent storage."
-msgstr ""
+msgstr "Cài đặt được tải từ ổ đĩa lưu trữ liên tục kéo dài."
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:152
 msgid "Welcome to Tails!"
 msgstr "Chào mừng đến với Tails!"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
-#, fuzzy
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 msgid "_Persistent Storage"
-msgstr "Encrypted _Persistent Storage"
+msgstr "_Ổ đĩa lưu trữ liên tục kéo dài"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
+"Bạn có thể sao lưu một số tập tin của bạn và cấu hình trong một ổ đĩa lưu "
+"trữ liên tục kéo dài đã mã hoá trên thẻ nhớ USB Tails của bạn: tài liệu của "
+"bạn, các dấu trang trình duyệt, mật khẩu Wi-Fi, và nhiều nữa."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr ""
+"Bạn sẽ có thể tạo và định cấu hình ổ đĩa lưu trữ liên tục kéo dài của bạn "
+"sau khi khởi chạy Tails."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
-msgstr "Ngôn ngữ và Vùng"
+msgstr "Ngôn ngữ và Vùng miền"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr "Những cài đặt mặc định"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-#, fuzzy
-msgid "Encrypted _Persistent Storage"
-msgstr "Encrypted _Persistent Storage"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
 msgid "Show Passphrase"
-msgstr "Hiển thị đoạn mật khẩu"
+msgstr "Hiển thị cụm mật khẩu"
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
-msgstr "Nhập mật khẩu của bạn để mở khóa dung lượng bền vững"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "Cụm mật khẩu:"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
 msgstr ""
-"Phân vùng lưu trữ bền vững của bạn bị mở khoá. Khởi động lại Tails để khoá "
-"nó lại."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
 #, fuzzy
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
+msgstr ""
+"Ổ đĩa lưu trữ liên tục kéo dài của bạn được mở khoá. Khởi động lại Tails để "
+"khoá nó lại."
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
-msgstr "_Additional Settings"
+msgstr "_Cài đặt bổ sung"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
-msgstr "Thêm một cài đặt nữa"
+msgstr "Thêm một cài đặt bổ sung"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
 msgstr ""
-"Những cài đặt mặc định là an toàn trong hầu hết tình huống. Để thêm những "
-"cài đặt riêng, bấm nút \"+\" bên dưới."
+"Những cài đặt mặc định là an toàn trong hầu hết các tình huống. Để thêm vào "
+"một cài đặt tuỳ chọn, nhấp vào nút \"+\" bên dưới."
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 msgid "Shutdown"
-msgstr "Tắt trình duyệt"
+msgstr "Tắt đi"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
-msgstr "_Start Tails"
+msgstr "_Khởi chạy Tails"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:8
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:56
-#, fuzzy
 msgid "Change Passphrase"
-msgstr "Hiển thị đoạn mật khẩu"
+msgstr "Thay đổi cụm mật khẩu"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:95
-#, fuzzy
 msgid "Current _Passphrase"
-msgstr "Đoạn mật khẩu:"
+msgstr "_Cụm mật khẩu hiện tại"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:131
-#, fuzzy
 msgid "_New Passphrase"
-msgstr "Hiển thị đoạn mật khẩu"
+msgstr "_Cụm mật khẩu mới"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:179
-#, fuzzy
 msgid "_Confirm New Passphrase"
-msgstr "Hiển thị đoạn mật khẩu"
+msgstr "_Xác nhận cụm mật khẩu mới"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:215
-#, fuzzy
 msgid "_Show Passphrases"
-msgstr "Hiển thị đoạn mật khẩu"
+msgstr "_Hiển thị cụm mật khẩu"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:253
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:213
-#, fuzzy
 msgid "The passphrases do not match"
-msgstr "Đoạn mật khẩu không đúng"
+msgstr "Cụm mật khẩu không trùng khớp"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:317
 msgid "Ch_ange"
-msgstr ""
+msgstr "Thay _đổi"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/deleted_view.ui.in:21
-#, fuzzy
 msgid "The Persistent Storage was successfully deleted."
-msgstr "Dữ liệu bền vững của bạn sẽ bị xóa."
+msgstr "Ổ đĩa lưu trữ liên tục kéo dài của bạn đã được xóa thành công."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/deleted_view.ui.in:32
 msgid "_Close"
-msgstr ""
+msgstr "_Đóng"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/fail_view.ui.in:30
 msgid "Oh no! Something has gone wrong."
-msgstr ""
+msgstr "Ồ không! Có điều gì đó sai sót đã xảy ra."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/fail_view.ui.in:45
 msgid ""
@@ -2304,10 +2525,14 @@ msgid ""
 "You can send an error report or check the output of the following commands "
 "to investigate:"
 msgstr ""
+"Dịch vụ ổ đĩa lưu trữ liên tục kéo dài đã thoát một cách bất ngờ.\n"
+"\n"
+"Bạn có thể gửi một báo cáo lõi hoặc kiểm tra các thông tin xuất của các dòng "
+"lệnh command sau để điều tra:"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/fail_view.ui.in:74
 msgid "Send Error Report"
-msgstr ""
+msgstr "Gửi báo cáo lỗi"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:61
 msgid ""
@@ -2318,99 +2543,111 @@ msgid ""
 "<a href=\"doc/persistent_storage/backup\">Learn how to make a backup of your "
 "Persistent Storage.</a>"
 msgstr ""
+"Ổ đĩa lưu trữ liên tục kéo dài của bạn đã được mở khoá.\n"
+"\n"
+"Nội dung của nó sẽ vẫn khả dụng cho tới khi bạn tắt Tails đi.\n"
+"\n"
+"<a href=\"doc/persistent_storage/backup\">Tìm hiểu làm thế nào để tạo ra một "
+"bản backup cho ổ đĩa lưu trữ liên tục kéo dài của bạn.</a>"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:89
 msgid ""
 "Turn on the features of the Persistent Storage for the data that you want to "
 "save to your Tails USB stick."
 msgstr ""
+"Bật các tính năng của ổ đĩa lưu trữ liên tục kéo dài cho dữ liệu mà bạn muốn "
+"sao lưu tới thẻ nhớ USB Tails của bạn."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:106
-#, fuzzy
 msgid "Personal Documents"
-msgstr "Dữ liệu cá nhân"
+msgstr "Các tài liệu cá nhân"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:134
 msgid "Persistent Folder"
-msgstr ""
+msgstr "Thư mục lưu trữ liên tục kéo dài"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:153
-#, fuzzy
 msgid "Open Persistent Folder"
-msgstr "Encrypted _Persistent Storage"
+msgstr "Mở Thư mục lưu trữ liên tục kéo dài"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:166
-#, fuzzy
 msgid "Activate Persistent Folder"
-msgstr "Encrypted _Persistent Storage"
+msgstr "Kích hoạt Thư mục lưu trữ liên tục kéo dài"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:191
-#, fuzzy
 msgid "System Settings"
-msgstr "Những cài đặt mặc định"
+msgstr "Cài đặt hệ thống"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+#, fuzzy
+msgid "Welcome Screen"
+msgstr "Kích hoạt Màn hình Chào mừng"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 msgid "Activate Welcome Screen"
-msgstr ""
+msgstr "Kích hoạt Màn hình Chào mừng"
 
-#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
 #, fuzzy
+msgid "Printers"
+msgstr "Kích hoạt máy in"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 msgid "Activate Printers"
-msgstr "Những máy in"
+msgstr "Kích hoạt máy in"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:275
 msgid "Network"
-msgstr ""
+msgstr "Mạng lưới"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:303
 msgid "Network Connections"
-msgstr "Những kết nối mạng lưới"
+msgstr "Các kết nối mạng"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:304
 msgid "Save Wi-Fi passwords and mobile broadband configuration."
-msgstr ""
+msgstr "Sao lưu mật khẩu Wi-Fi và cấu hình băng thông di động."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:314
-#, fuzzy
 msgid "Activate Network Connections"
-msgstr "Những kết nối mạng lưới"
+msgstr "Kích hoạt các kết nối mạng"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:325
 msgid "Tor Bridge"
-msgstr ""
+msgstr "Cầu Bridge Tor"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:335
-#, fuzzy
 msgid "Activate Tor Bridge"
-msgstr "Bắt đầu trình duyệt Tor"
+msgstr "Kích hoạt cầu Bridge Tor"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:360
 msgid "Applications"
-msgstr ""
+msgstr "Ứng dụng"
 
-#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
 #, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "Kích hoạt Dấu trang trình duyệt Tor Browser"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 msgid "Activate Tor Browser Bookmarks"
-msgstr "Dấu trang trình duyệt"
+msgstr "Kích hoạt Dấu trang trình duyệt Tor Browser"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:409
-#, fuzzy
 msgid "Electrum Bitcoin Wallet"
-msgstr "Ví bitcoin Electrum và cấu hình"
+msgstr "Ví tiền điện tử Bitcoin Electrum"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:419
-#, fuzzy
 msgid "Activate Electrum Bitcoin Wallet"
-msgstr "Ví bitcoin Electrum và cấu hình"
+msgstr "Kích hoạt ví tiền điện tử Bitcoin Electrum"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:430
-#, fuzzy
 msgid "Thunderbird Email Client"
-msgstr "Thunderbird"
+msgstr "Email khách Thunderbird"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:440
 msgid "Activate Thunderbird Email Client"
-msgstr ""
+msgstr "Kích hoạt Email khách Thunderbird"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:451
 msgid "GnuPG"
@@ -2418,62 +2655,55 @@ msgstr "GnuPG"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:452
 msgid "OpenPGP keys outside of Thunderbird."
-msgstr ""
+msgstr "Khoá key OpenPGP bên ngoài Thunderbird."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:462
 msgid "Activate GnuPG"
-msgstr ""
+msgstr "Kích hoạt GnuPG"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:473
 msgid "Pidgin Internet Messenger"
-msgstr ""
+msgstr "Trình nhắn tin Pidgin Internet Messenger"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:483
 msgid "Activate Pidgin Internet Messenger"
-msgstr ""
+msgstr "Kích hoạt trình nhắn tin Pidgin Internet Messenger"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:494
 msgid "SSH Client"
-msgstr "Máy trạm SSH"
+msgstr "Máy khách SSH"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:504
-#, fuzzy
 msgid "Activate SSH Client"
-msgstr "Máy trạm SSH"
+msgstr "Kích hoạt Máy khách SSH"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:529
-#, fuzzy
 msgid "Advanced Settings"
-msgstr "Những cài đặt thêm"
+msgstr "Cài đặt nâng cao"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:558
-#, fuzzy
 msgid "Install additional software automatically when starting Tails."
-msgstr "Phần mềm đã được cài đặt khi khởi động Tails"
+msgstr "Tự động cài đặt phần mềm bổ sung khi khởi chạy Tails."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:577
-#, fuzzy
 msgid "Configure Additional Software"
-msgstr "Phần mềm bổ sung"
+msgstr "Cấu hình phần mềm bổ sung"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:590
-#, fuzzy
 msgid "Activate Additional Software"
-msgstr "Phần mềm bổ sung"
+msgstr "Kích hoạt phần mềm bổ sung"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:601
-#, fuzzy
 msgid "Dotfiles"
-msgstr "Dotfiles"
+msgstr "Tập tin Dotfiles"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:602
 msgid "Symlink every file in the Dotfiles folder into the Home folder."
-msgstr ""
+msgstr "Symlink mọi tập tin trong thư mục Dotfiles vào trong thư mục chủ Home."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:629
-#, fuzzy
 msgid "Activate Dotfiles"
-msgstr "Dotfiles"
+msgstr "Kích hoạt Dotfiles"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:659
 msgid "Custom"
@@ -2484,12 +2714,16 @@ msgid ""
 "To add or remove custom features, modify /live/persistence/"
 "TailsData_unlocked/persistence.conf."
 msgstr ""
+"Để thêm hoặc loại bỏ các tính năng tuỳ chỉnh, hãy chỉnh sửa /live/"
+"persistence/TailsData_unlocked/persistence.conf."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:720
 msgid ""
 "<a href=\"doc/persistent_storage\">Learn more about the Persistent Storage.</"
 "a>"
 msgstr ""
+"<a href=\"doc/persistent_storage\">Tìm hiểu thêm về ổ đĩa lưu trữ liên tục "
+"kéo dài.</a>"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/locked_view.ui.in:52
 msgid ""
@@ -2501,6 +2735,13 @@ msgid ""
 "To delete your Persistent Storage, click <b>Delete</b> on the right of the "
 "title bar."
 msgstr ""
+"<b>Ổ đĩa lưu trữ liên tục kéo dài của bạn đã khoá lại.</b>\n"
+"\n"
+"Để sử dụng hoặc định cấu hình ổ đĩa lưu trữ liên tục kéo dài của bạn, hãy mở "
+"khoá nó trong Màn hình Chào mừng khi khởi chạy Tails.\n"
+"\n"
+"Để xoá bỏ Ổ đĩa lưu trữ liên tục kéo dài của bạn, hãy nhấp vào <b>Xoá bỏ</b> "
+"ở phía bên phải của thanh tiêu đề."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:52
 msgid ""
@@ -2509,25 +2750,26 @@ msgid ""
 "\n"
 "We recommend a long passphrase of 5 to 7 random words."
 msgstr ""
+"Lựa chọn một cụm mật khẩu mà bạn sẽ sử dụng để mở khoá mã hoá Ổ đĩa lưu trữ "
+"liên tục kéo dài của bạn và tất cả các dữ liệu của nó.\n"
+"\n"
+"Chúng tôi khuyến cáo một cụm mật khẩu dài tầm 5 cho tới 7 ký tự ngẫu nhiên."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:82
 msgid "Passphrase:"
-msgstr "Đoạn mật khẩu:"
+msgstr "Cụm mật khẩu:"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:101
-#, fuzzy
 msgid "Confirm:"
-msgstr "Xác nhận"
+msgstr "Xác nhận:"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:178
-#, fuzzy
 msgid "_Show Passphrase"
-msgstr "Hiển thị đoạn mật khẩu"
+msgstr "_Hiển thị cụm mật khẩu"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:265
-#, fuzzy
 msgid "_Back"
-msgstr "Lùi"
+msgstr "_Quay lại"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:56
 msgid ""
@@ -2544,6 +2786,19 @@ msgid ""
 "<a href=\"doc/persistent_storage\">Learn more about the Persistent Storage.</"
 "a>"
 msgstr ""
+"Mọi thứ mà bạn thực hiện sẽ biến mất một cách tự động khi bạn tắt Tails đi.\n"
+"\n"
+"Nhưng bạn có thể sao lưu một số tập tin của bạn và định cấu hình trong một Ổ "
+"đĩa lưu trữ liên tục kéo dài đã mã hoá trên thẻ nhớ USB Tails của bạn, ví "
+"dụ:\n"
+"\n"
+"• Các tài liệu của bạn\n"
+"• Các mật khẩu Wi-Fi của bạn\n"
+"• Các dấu trang trình duyệt của bạn\n"
+"• ...\n"
+"\n"
+"<a href=\"doc/persistent_storage\">Tìm hiểu thêm về Ổ đĩa lưu trữ liên tục "
+"kéo dài.</a>"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:92
 msgid ""
@@ -2552,80 +2807,84 @@ msgid ""
 "To be able to use Tails with a Persistent Storage, please follow our "
 "instructions on <a href=\"install\">installing Tails on a USB stick</a>."
 msgstr ""
+"Xin lỗi, việc khởi tạo một Ổ đĩa lưu trữ liên tục kéo dài trên thiết bị này "
+"là bất khả thi.\n"
+"\n"
+"Để có thể sử dụng Tails với một Ổ đĩa lưu trữ liên tục kéo dài, xin vui lòng "
+"theo sát các hướng dẫn của chúng tôi về <a href=\"install\">việc cài đặt "
+"Tails trên một thẻ nhớ USB</a>."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:137
 msgid "Co_ntinue"
-msgstr ""
+msgstr "Tiếp _tục"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:29
-#, fuzzy
 msgid "_Delete..."
-msgstr "Đang xóa..."
+msgstr "_Đang xóa..."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:36
-#, fuzzy
 msgid "Delete Persistent Storage"
-msgstr "Encrypted _Persistent Storage"
+msgstr "Xoá Ổ đĩa lưu trữ liên tục kéo dài"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:49
-#, fuzzy
 msgid "_Change Passphrase..."
-msgstr "Hiển thị đoạn mật khẩu"
+msgstr "_Thay đổi cụm mật khẩu..."
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:66
-#, fuzzy
 msgid "_Restart Tails"
-msgstr "Khởi động lại Tails"
+msgstr "_Khởi động lại Tails"
 
 #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:61
 msgid "File Containers"
-msgstr ""
+msgstr "Container chứa tập tin"
 
 #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:80
 msgid "_Add"
-msgstr ""
+msgstr "_Thêm"
 
 #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:86
 msgid "Add a file container"
-msgstr ""
+msgstr "Thêm một container chứa tập tin"
 
 #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:103
 msgid "Partitions and Drives"
-msgstr ""
+msgstr "Phân vùng và ổ đĩa"
 
 #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:121
 msgid ""
 "This application is not affiliated with or endorsed by the VeraCrypt project "
 "or IDRIX."
 msgstr ""
+"Ứng dụng này không được liên kết cùng hoặc được xác nhận bởi dự án VeraCrypt "
+"hoặc IDRIX."
 
 #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:29
 msgid "_Open"
-msgstr ""
+msgstr "_Mở"
 
 #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:38
 msgid "Lock this volume"
-msgstr ""
+msgstr "Khoá vùng ổ đĩa này lại"
 
 #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:52
 msgid "_Unlock"
-msgstr ""
+msgstr "_Mở khoá"
 
 #: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:61
 msgid "Detach this volume"
-msgstr ""
+msgstr "Tách vùng ổ đĩa này"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
-msgstr ""
+msgstr "Thẻ nhớ USB đích đến:"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
-msgstr ""
+msgstr "Cài đặt lại (xoá toàn bộ dữ liệu)"
 
 #: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:11
 msgid "Copyright © 2009-2018 tails@boum.org"
-msgstr ""
+msgstr "Bản quyền © 2009-2018 tails@boum.org"
 
 #: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
 msgid ""
@@ -2645,15 +2904,33 @@ msgid ""
 "You should have received a copy of the GNU General Public License\n"
 "along with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
 msgstr ""
+"WhisperBack - Gửi phản hồi trong thư được mã hóa\n"
+"Bản quyền (C) 2009-2018 Nhà phát triển Tails <tails@boum.org>\n"
+"\n"
+"Chương trình này là  phần mềm miễn phí; bạn có thể phân phối lại  nó và/hoặc "
+"sửa đổi\n"
+"nó theo  các điều khoản của Giấy phép Công cộng Chung GNU  được phát hành "
+"bởi\n"
+"Tổ chức Phần mềm Tự do; hoặc  phiên bản 3 của Giấy phép, hoặc (tại\n"
+"tùy chọn của bạn) bất kỳ phiên bản nào sau này.\n"
+"\n"
+"Chương trình này  được phân phối với  hy vọng rằng nó sẽ  hữu ích, nhưng\n"
+"KHÔNG CÓ   BẤT KỲ  BẢO HÀNH NÀO;   thậm chí  còn không có   bảo đảm   về\n"
+"KHẢ NĂNG THƯƠNG MẠI  hoặc PHÙ HỢP  CHO MỘT  MỤC ĐÍCH CỤ THỂ .   Xem  GNU\n"
+"Giấy phép Công cộng Chung để biết thêm chi tiết.\n"
+"\n"
+"Bạn nên nhận được một bản sao Giấy phép Công cộng Chung GNU\n"
+"cùng với chương trình này.  Nếu không, hãy xem <http://www.gnu.org/licenses/"
+">.\n"
 
 #: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:122
 msgid ""
 "If you want us to encrypt messages when we respond to you, add your key ID, "
 "a link to your key, or the key as a public key block:"
 msgstr ""
-"Nếu bạn muốn chúng tôi mã hóa thông điệp khi chúng tôi phản hồi bạn, thêm ID "
-"của khóa của bạn, một kết nối tới khóa của bạn, hoặc khóa như là một chuỗi "
-"khóa công khai:"
+"Nếu bạn muốn chúng tôi mã hóa tin nhắn khi chúng tôi phản hồi cho bạn, hãy "
+"thêm khoá key ID của bạn, một đường dẫn tới khóa key của bạn, hoặc khóa key "
+"như là một chuỗi khóa key công khai:"
 
 #: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:308
 msgid "Summary"
@@ -2662,27 +2939,28 @@ msgstr "Tóm tắt"
 #: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:337
 #: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:485
 msgid "Bug description"
-msgstr "Mô tả lỗi"
+msgstr "Mô tả lỗi bug"
 
 #: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:378
 msgid "Help:"
-msgstr ""
+msgstr "Trợ giúp:"
 
 #: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:388
 msgid "Read our bug reporting guidelines."
-msgstr ""
+msgstr "Hãy đọc hướng dẫn báo cáo lỗi bug của chúng tôi."
 
 #: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:416
 msgid "Email address (if you want an answer from us)"
-msgstr ""
+msgstr "Địa chỉ Email (nếu bạn muốn một câu trả lời từ chúng tôi)"
 
 #: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:445
 msgid "optional PGP key"
-msgstr "khóa PGP tùy chọn"
+msgstr "khóa key PGP tùy chọn"
 
 #: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:470
 msgid "Please know that we are not able to reply to every bug report."
 msgstr ""
+"Xin hãy lưu ý rằng chúng tôi không thể phản hồi cho mọi báo cáo lỗi bug được."
 
 #: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:502
 #: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:613
@@ -2691,37 +2969,41 @@ msgstr "Những chi tiết kỹ thuật để bao gồm"
 
 #: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:540
 msgid "headers"
-msgstr "những đầu đề"
+msgstr "các đầu đề"
 
 #: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:588
 msgid "debugging info"
-msgstr "thông tin gỡ rối"
+msgstr "thông tin gỡ rối debug"
 
 #: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:680
 msgid "Send"
-msgstr "Gởi"
+msgstr "Gá»­i Ä‘i"
 
 #: ../config/chroot_local-includes/usr/local/share/mime/packages/unlock-veracrypt-volumes.xml.in.h:1
 msgid "TrueCrypt/VeraCrypt container"
-msgstr ""
+msgstr "Container chứa TrueCrypt/VeraCrypt"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:82
 msgid "Configure a Tor bridge"
-msgstr ""
+msgstr "Định cấu hình một cầu Bridge Tor"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:106
 msgid ""
 "Bridges are secret Tor relays. Use a bridge as your first Tor relay if "
 "accessing Tor is blocked from where you are."
 msgstr ""
+"Cầu Bridge là các rơ-le Tor bí mật. Hãy sử dụng cầu Bridge làm rơ-le Tor đầu "
+"tiên của bạn nếu việc truy cập Tor bị chặn từ nơi bạn đang ở."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:122
 msgid "<a href=\"doc/anonymous_internet/tor\">Learn more about Tor bridges</a>"
 msgstr ""
+"<a href=\"doc/anonymous_internet/tor\">Tìm hiểu thêm về các cầu Bridge Tor</"
+"a>"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:157
 msgid "Use a _default bridge"
-msgstr ""
+msgstr "Sử dụng một_cầu Bridge mặc định"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:180
 msgid "obfs4 (recommended)"
@@ -2738,7 +3020,7 @@ msgstr "Không có"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:240
 msgid "_Ask for a Tor bridge by email"
-msgstr ""
+msgstr "_Hỏi xin một cầu Bridge Tor bằng email"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:259
 msgid ""
@@ -2746,86 +3028,94 @@ msgid ""
 "Riseup email address with your phone and scan the QR code that is attached "
 "to the automatic reply."
 msgstr ""
+"Gửi một thư email rỗng tới <tt>bridges@torproject.org</tt> từ một địa chỉ "
+"email Gmail hoặc Riseup với số điện thoại của bạn và quét scan mã code QR "
+"được đính kèm vào phản hồi tự động."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:272
 msgid "Scan _QR code"
-msgstr ""
+msgstr "Quét scan_mã code QR"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:373
 msgid "_Enter a bridge that you already know"
-msgstr ""
+msgstr "_Nhập một cầu Bridge mà bạn đã biết"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:399
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1040
 msgid "Bridge"
-msgstr ""
+msgstr "Cầu Bridge"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:412
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1053
 msgid "obfs4 ..."
-msgstr ""
+msgstr "obfs4 ..."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:485
 msgid "Save bridge to _Persistent Storage"
-msgstr ""
+msgstr "Lưu cầu Bridge tới _Ổ lưu trữ liên tục kéo dài"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:510
 msgid "Save bridge to Persistent Storage"
-msgstr ""
+msgstr "Lưu cầu Bridge tới Ổ lưu trữ liên tục kéo dài"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:650
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1158
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1556
 msgid "_Connect to Tor"
-msgstr ""
+msgstr "_Kết nối tới Tor"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:692
 msgid "Error connecting to Tor"
-msgstr ""
+msgstr "Lỗi khi kết nối tới Tor"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:736
 msgid "• Wrong clock"
-msgstr ""
+msgstr "• Đồng hồ sai"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:756
 msgid "Your clock and time zone need to be correct to connect to Tor."
-msgstr ""
+msgstr "Đồng hồ của bạn và múi giờ cần được chỉnh sửa để kết nối tới Tor."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:769
 msgid "Fix _Clock"
-msgstr ""
+msgstr "Sửa _Đồng hồ"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:807
 msgid "• Public network"
-msgstr ""
+msgstr "• Mạng công cộng"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:827
 msgid ""
 "If you are in a shop, hotel, or airport, you might need to sign in to the "
 "local network using the Unsafe Browser."
 msgstr ""
+"Nếu bạn đang trong một cửa hàng, khách sạn, hoặc sân bay, bạn có thể cần "
+"phải đăng nhập vào mạng lưới cục bộ bằng cách sử dụng Trình duyệt Không an "
+"toàn."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:840
 msgid "Try _Signing in to the Network"
-msgstr ""
+msgstr "Thử _Đăng nhập vào Mạng lưới"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:879
 msgid "• Local proxy"
-msgstr ""
+msgstr "• Proxy cục bộ"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:899
 msgid ""
 "If you are on a corporate or university network, you might need to configure "
 "a local proxy."
 msgstr ""
+"Nếu bạn đang ở trên mạng lưới của công ty hoặc trường đại học, bạn có thể "
+"cần phải định cấu hình một proxy cục bộ."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:912
 msgid "Configure a Local _Proxy"
-msgstr ""
+msgstr "Định cấu hình một _Proxy Cục bộ"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:951
 msgid "• Tor bridge by email"
-msgstr ""
+msgstr "• Cầu Bridge Tor qua email"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:971
 msgid ""
@@ -2833,6 +3123,10 @@ msgid ""
 "connections to Tor are blocked, for example in some countries, by some "
 "public networks, or by some parental controls."
 msgstr ""
+"Các cầu Bridge Tor là các rơ-le Tor bí mật. Sử dụng một cầu Bridge như chiếc "
+"rơ-le Tor đầu tiên của bạn nếu các kết nối tới Tor bị chặn, ví dụ như ở một "
+"số quốc gia, thông qua một số mạng lưới công cộng, hoặc bởi một số phương "
+"thức kiểm soát của phụ huynh."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:991
 msgid ""
@@ -2840,22 +3134,29 @@ msgid ""
 "a Gmail or Riseup email address with your phone and scan the QR code that is "
 "attached to the automatic reply."
 msgstr ""
+"Để lấy một cầu Bridge, gửi một email rỗng tới <tt>bridges@torproject.org</"
+"tt> từ một địa chỉ email Gmail hoặc Riseup với điện thoại của bạn và quét "
+"scan mã code QR được đính kèm vào phản hồi tự động."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1014
 msgid "Scan QR Code"
-msgstr ""
+msgstr "Quét mã QR"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1145
 msgid ""
 "<a href=\"doc/anonymous_internet/tor/troubleshoot\">Troubleshooting "
 "connecting to Tor</a>"
 msgstr ""
+"<a href=\"doc/anonymous_internet/tor/troubleshoot\">Khắc phục sự cố kết nối "
+"tá»›i Tor</a>"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1191
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1599
 msgid ""
 "Everything you do on the Internet from Tails goes through the Tor network."
 msgstr ""
+"Tất cả mọi thứ bạn làm trên Internet từ Tails được truyền qua mạng lưới Tor "
+"Network."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1205
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1614
@@ -2864,16 +3165,23 @@ msgid ""
 "Tor relays are servers operated by different organizations and volunteers "
 "around the world."
 msgstr ""
+"Tor mã hoá và ẩn danh hoá kết nối của bạn bằng cách dẫn nó thông qua 3 rơ-"
+"le.\n"
+"Rơ-le Tor là các máy chủ được vận hành bởi các tổ chức khác nhau và các tình "
+"nguyện viên trên toàn thế giới."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1241
 msgid "<b>Connect to Tor _automatically</b>"
-msgstr ""
+msgstr "<b>Kết nối tới Tor _một cách tự động</b>"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1291
 msgid ""
 "We recommend connecting to Tor automatically if you are on a public Wi-Fi "
 "network or if many people in your country use Tor to circumvent censorship."
 msgstr ""
+"Chúng tôi khuyến cáo bạn kết nối tới Tor một cách tự động nếu bạn đang ở "
+"trên mạng lưới Wi-Fi công cộng hoặc nếu có nhiều người trong quốc gia của "
+"bạn sử dụng Tor để vượt qua kiểm duyệt."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1309
 msgid ""
@@ -2882,10 +3190,15 @@ msgid ""
 "Someone monitoring your Internet connection could identify these attempts as "
 "coming from a Tails user."
 msgstr ""
+"Tails sẽ thử nhiều cách kết nối tới Tor khác nhau cho tới khi nó thành "
+"công.\n"
+"\n"
+"Ai đó theo dõi kết nối Internet của bạn có thể nhận diện những cố gắng này "
+"như nó đến từ một người sử dụng Tails."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1343
 msgid "Configure a Tor _bridge"
-msgstr ""
+msgstr "Định cấu hình một _Cầu Bridge Tor"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1389
 msgid ""
@@ -2897,16 +3210,26 @@ msgid ""
 "Tails will autodetect whether you need a bridge to connect to Tor from your "
 "local network."
 msgstr ""
+"Các cầu Bridge Tor là các rơ-le Tor bí mật. Sử dụng một cầu Bridge như chiếc "
+"rơ-le Tor đầu tiên của bạn nếu các kết nối tới Tor bị chặn, ví dụ như đối "
+"với một số quốc gia, thông qua một số mạng lưới công cộng, hoặc thông qua "
+"một số phương thức kiểm soát của phụ huynh.\n"
+"\n"
+"Chọn lấy lựa chọn này nếu bạn đã biết rằng bạn cần một cầu Bridge. Nếu "
+"không, Tails sẽ tự động phát hiện cho bạn nếu như bạn cần một cầu Bridge để "
+"kết nối tới Tor từ mạng cục bộ của bạn."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1431
 msgid "<b>_Hide to my local network that I'm connecting to Tor</b>"
-msgstr ""
+msgstr "<b>_Ẩn khỏi mạng lưới cục bộ của tôi rằng tôi đang kết nối tới Tor</b>"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1481
 msgid ""
 "You might need to go unnoticed if using Tor could look suspicious to someone "
 "who monitors your Internet connection."
 msgstr ""
+"Bạn có thể cần phải tiến hành mà không được thông báo nếu việc sử dụng Tor "
+"có thể trông khả nghi đối với ai đó đang theo soát kết nối Internet của bạn."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1499
 msgid ""
@@ -2920,90 +3243,106 @@ msgid ""
 "yet, if you connect from a public Wi-Fi network, or if you are in the "
 "Eastern Hemisphere."
 msgstr ""
+"Tails sẽ chỉ kết nối tới Tor sau khi bạn đã định cấu hình một cầu Bridge "
+"Tor. Các cầu Bridge là các rơ-le Tor bí mật giúp ẩn đi rằng bạn đang kết nối "
+"tá»›i Tor.\n"
+"\n"
+"Đội ngũ của chúng tôi đang làm tất cả những gì trong khả năng của mình một "
+"cách tốt nhất để giúp bạn kết nối tới Tor sử dụng các kiểu cầu Bridge Tor "
+"kín đáo nhất có thể.\n"
+"\n"
+"Bạn sẽ phải làm một số việc định cấu hình bổ sung thêm nếu như bạn vẫn chưa "
+"biết bất kỳ chiếc cầu Bridge Tor nào cả, nếu bạn kết nối từ một mạng Wi-Fi "
+"công cộng, hoặc nếu bạn đang ở Bán cầu Đông của địa cầu."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1544
 msgid ""
 "<a href=\"doc/anonymous_internet/tor\">Learn more about how Tails connects "
 "to Tor</a>"
 msgstr ""
+"<a href=\"doc/anonymous_internet/tor\">Tìm hiểu thêm về cách thức làm thế "
+"nào Tails kết nối tới Tor</a>"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1629
 msgid "Connect to a local network"
-msgstr ""
+msgstr "Kết nối tới một mạng cục bộ"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1646
 msgid ""
 "You are not connected to a local network yet. To be able to connect to the "
 "Tor network, you first need to connect to a Wi-Fi, wire, or mobile network."
 msgstr ""
+"Bạn vẫn chưa kết nối tới một mạng cục bộ nào. Để có thể kết nối tới mạng "
+"lưới Tor Network, trước tiên bạn cần phải kết nối tới một mạng lưới Wi-Fi, "
+"nối dây, hoặc di động."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1658
 msgid "Open Wi-Fi settings"
-msgstr ""
+msgstr "Mở cài đặt Wi-Fi"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1707
 msgid "Testing Internet access…"
-msgstr ""
+msgstr "Đang test thử truy cập Internet…"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1747
 msgid "You have access to the Internet"
-msgstr ""
+msgstr "Bạn đã có truy cập Internet"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1781
 msgid "Testing access to Tor…"
-msgstr ""
+msgstr "Đang test thử truy cập tới Tor…"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1824
 msgid "You can connect to Tor"
-msgstr ""
+msgstr "Bạn có thể kết nối tới Tor"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1854
 msgid "Failed to connect to Tor without bridges."
-msgstr ""
+msgstr "Đã thất bại khi kết nối tới Tor mà không có cầu Bridge."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1870
 msgid "This local network is blocking access to Tor."
-msgstr ""
+msgstr "Mạng lưới cục bộ này đang chặn truy cập tới Tor."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:1902
 msgid "Connecting to Tor…"
-msgstr ""
+msgstr "Đang kết nối tới Tor…"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2007
 msgid "Start Tor Browser"
-msgstr "Bắt đầu trình duyệt Tor"
+msgstr "Khởi động trình duyệt Tor Browser"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2026
 msgid "Open Network Monitor"
-msgstr ""
+msgstr "Mở trình theo dõi Mạng"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2039
 msgid "View Tor Circuits"
-msgstr ""
+msgstr "Hiện các mạch nối Tor Circuit"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2053
 msgid "Reset Tor Connection"
-msgstr ""
+msgstr "Khởi động lại kết nối Tor"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2093
 msgid "Configure a Local Proxy"
-msgstr ""
+msgstr "Định cấu hình một Proxy cục bộ"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2119
 msgid "Proxy Type"
-msgstr "Loại proxy"
+msgstr "Kiểu proxy"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2136
 msgid "No proxy"
-msgstr ""
+msgstr "Không proxy"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2137
 msgid "SOCKS 4"
-msgstr "SOCK 4"
+msgstr "SOCKS 4"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2138
 msgid "SOCKS 5"
-msgstr "SOCK 5"
+msgstr "SOCKS 5"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2139
 msgid "HTTP / HTTPS"
@@ -3011,15 +3350,15 @@ msgstr "HTTP / HTTPS"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2158
 msgid "Address"
-msgstr "Địa chỉ nhà"
+msgstr "Địa chỉ"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2175
 msgid "Username"
-msgstr "Tên đăng nhập"
+msgstr "Tên người dùng"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2192
 msgid "IP address or hostname"
-msgstr "Địa chỉ IP hoặc hostname"
+msgstr "Địa chỉ IP hoặc tên máy chủ hostname"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2210
 msgid "Port"
@@ -3027,11 +3366,11 @@ msgstr "Cổng"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:2334
 msgid "_Save Proxy Settings"
-msgstr ""
+msgstr "_Lưu Cài đặt Proxy"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:7
 msgid "Tor Connection - Fix Clock"
-msgstr ""
+msgstr "Kết nối Tor - Chỉnh sửa đồng hồ"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:76
 msgid ""
@@ -3039,10 +3378,13 @@ msgid ""
 "never be sent over the network and will only be used to fix your clock and "
 "connect to Tor."
 msgstr ""
+"Múi giờ của bạn không thể được sử dụng để xác định hoặc định vị bạn. Múi giờ "
+"của bạn sẽ không bao giờ được gửi qua mạng và sẽ chỉ được sử dụng để sửa "
+"đồng hồ của bạn và kết nối tới Tor."
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:142
 msgid "Time zone"
-msgstr ""
+msgstr "Múi giờ"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:186
 msgid "Time"
@@ -3054,59 +3396,65 @@ msgstr ":"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:277
 msgid "Date"
-msgstr "Ngày tháng"
+msgstr "Ngày"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:311
 msgid "January"
-msgstr ""
+msgstr "Tháng một"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:312
 msgid "February"
-msgstr ""
+msgstr "Tháng hai"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:313
 msgid "March"
-msgstr ""
+msgstr "Tháng ba"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:314
 msgid "April"
-msgstr ""
+msgstr "Tháng tư"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:315
 msgid "May"
-msgstr "05"
+msgstr "Tháng năm"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:316
 msgid "June"
-msgstr ""
+msgstr "Tháng sáu"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:317
 msgid "July"
-msgstr ""
+msgstr "Tháng bảy"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:318
 msgid "August"
-msgstr ""
+msgstr "Tháng tám"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:319
 msgid "September"
-msgstr ""
+msgstr "Tháng chín"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:320
 msgid "October"
-msgstr ""
+msgstr "Tháng mười"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:321
 msgid "November"
-msgstr ""
+msgstr "Tháng mười một"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:322
 msgid "December"
-msgstr ""
+msgstr "Tháng mười hai"
 
 #: ../config/chroot_local-includes/usr/share/tails/tca/time-dialog.ui.in:368
 msgid "Clock"
-msgstr ""
+msgstr "Đồng hồ"
+
+#~ msgid "Encrypted _Persistent Storage"
+#~ msgstr "Đã mã hoá _Ổ đĩa lưu trữ liên tục kéo dài"
+
+#~ msgid "Enter your passphrase to unlock the persistent storage"
+#~ msgstr "Nhập cụm mật khẩu của bạn để mở khóa ổ đĩa lưu trữ liên tục kéo dài"
 
 #, python-format
 #~ msgid ""
@@ -3158,7 +3506,19 @@ msgstr ""
 #~ msgstr "Có lỗi khi chọn máy chủ tải về"
 
 #~ msgid "The Amnesic Incognito Live System"
-#~ msgstr "Hệ thống cải trang tự xóa sống"
+#~ msgstr "Hệ thống Cải trang Ẩn danh tự xóa Trực tuyến"
+
+#~ msgid "Launch the Unsafe Browser?"
+#~ msgstr "Khởi chạy trình duyệt không an toàn chứ?"
+
+#~ msgid ""
+#~ "The Unsafe Browser is not anonymous and the websites that you visit can "
+#~ "see your real IP address.\\n\\nOnly use the Unsafe Browser to sign in to "
+#~ "a network, then close it."
+#~ msgstr ""
+#~ "Trình duyệt không an toàn không hề ẩn danh và các trang web mà bạn truy "
+#~ "cập có thể thấy rõ ràng địa chỉ IP thật của bạn.\\n\\n Chỉ sử dụng trình "
+#~ "duyệt không an toàn để đăng nhập vào một mạng lưới, và rồi đóng nó lại."
 
 #~ msgid "Enabled"
 #~ msgstr "Được bật lên"
diff --git a/po/zh_CN.po b/po/zh_CN.po
index 547ff98c84c..d5db7a0e7c6 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -46,9 +46,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
-"PO-Revision-Date: 2023-01-26 22:48+0000\n"
-"Last-Translator: emma peel <emma.peel@riseup.net>\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
+"PO-Revision-Date: 2023-03-17 05:37+0000\n"
+"Last-Translator: Kishin Sagume <kishinsagi@riseup.net>\n"
 "Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/tor/"
 "tails-gui/zh_Hans/>\n"
 "Language: zh_CN\n"
@@ -56,7 +56,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Weblate 4.16-dev\n"
+"X-Generator: Weblate 4.16.2-dev\n"
 
 #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1
@@ -352,7 +352,7 @@ msgid "Upgrade later"
 msgstr "稍后升级"
 
 #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:518
-#, fuzzy, perl-brace-format
+#, perl-brace-format
 msgid ""
 "<b>You should do a manual upgrade to the latest version of {name}.</b>\n"
 "\n"
@@ -367,7 +367,7 @@ msgstr ""
 "\n"
 "有关此版本的更多信息请见 {details_url}。\n"
 "\n"
-"无法将您的 Tails 自动升级到新版本。\n"
+"无法将您的 Tails 自动升级到新版本: {explanation}。\n"
 "\n"
 "关于如何进行手动升级,请见 {manual_upgrade_url}"
 
@@ -525,9 +525,9 @@ msgid "Additional Settings"
 msgstr "额外设置"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "取消"
@@ -598,31 +598,29 @@ msgstr "å…³"
 msgid "Off (default)"
 msgstr "关闭(默认)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
-#, fuzzy
-msgid "Persistent Storage Not Unlocked"
-msgstr "持久化存储"
-
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
 #, fuzzy
+msgid "Persistent Storage Still Locked"
+msgstr "持久化存储未解锁"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
-msgstr "现在确定要重启 Tails?\\n\\n目前的所有工作都将丢失。"
+msgstr "你确定想在不开启持久性存储的情况下启动Tails吗?"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
 #, fuzzy
-msgid "Continue Without Persistent Storage"
-msgstr "创建永久存储"
+msgid "Start Without Persistent Storage"
+msgstr "在没有开启持久性存储的情况下继续"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
-#, fuzzy
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 msgid "Don't _Create Persistent Storage"
-msgstr "创建持久存储(_C)"
+msgstr "不要_创建持久性存储"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 msgid "_Create Persistent Storage"
-msgstr "创建持久存储(_C)"
+msgstr "_创建持久存储"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:83
 msgid "Error unlocking Persistent Storage: {}"
@@ -639,7 +637,6 @@ msgstr "正在解锁…"
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr "解锁"
 
@@ -652,13 +649,13 @@ msgstr "无法用此密码解锁加密的存储。"
 msgid ""
 "Failed to unlock the Persistent Storage. Please start Tails and send an "
 "error report."
-msgstr ""
+msgstr "解锁持久性存储失败。请启动Tails并发送一份错误报告。"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:122
 msgid ""
 "Failed to activate the Persistent Storage. Please start Tails and send an "
 "error report."
-msgstr ""
+msgstr "激活持久性存储失败。请启动Tails并发送一份错误报告。"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/region_settings.py:164
 msgid "_Language"
@@ -771,9 +768,9 @@ msgid "No mount points found"
 msgstr "未找到挂载点"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:699
-#, fuzzy, python-format
+#, python-format
 msgid "Entering unmount_device for \"%(device)s\""
-msgstr "输入 “%(device)s” 的卸载设备"
+msgstr "输入 “%(device)s” 的卸载_设备"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:708
 #, python-format
@@ -860,69 +857,69 @@ msgstr "驱动器为环回 ,跳过 MBR 重设"
 msgid "Synchronizing data on disk..."
 msgstr "正在同步硬盘中的数据..."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
 msgstr "错误:无法设定标签或获得你设备的UUID。 不能继续。"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr "安装完成!(%s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr "Tails 安装失败!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr "Tails 安装程序"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr "克隆当前的 Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr "使用已下载的 Tails ISO 映像"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr "升级"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr "手动升级指南"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr "安装"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr "安装说明"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(size)s%(vendor)s%(model)s设备(%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr "无选中的 ISO 映像"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr "请选择一个 Tails 的 ISO 映像。"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -932,7 +929,7 @@ msgstr ""
 "此USB移动存储设备\"%(pretty_name)s\"被生产厂商配置为不可移动磁盘,Tails 无法"
 "从其上启动。请尝试在其他移动存储设备上安装。"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
@@ -940,7 +937,7 @@ msgid ""
 msgstr ""
 "设备“%(pretty_name)s”太小,不足以安装 Tails(需要至少 %(size)s GB 的空间)。"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -950,33 +947,33 @@ msgstr ""
 "要更新 %(pretty_name)s 上的 Tails,你需要使用一个 Tails ISO 映像:\n"
 "%(dl_url)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr "找不到适合安装 Tails 的设备"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr "请插入容量 %0.1f GB 以上的的 U 盘或 SD 卡。"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr "安装 Tails 时发生错误"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr "安装完成!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr "无法挂载设备"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(parent_size)s%(vendor)s%(model)s设备(%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
@@ -986,11 +983,11 @@ msgstr ""
 "\n"
 "此 USB 存储器上的持久化存储数据都将丢失。"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr "删除持久化存储并重新安装"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
@@ -1000,32 +997,32 @@ msgstr ""
 "\n"
 "此 USB 存储器上的所有数据都将丢失。"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr "删除所有数据并安装"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr "%(description)s%(delete_message)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr "确认目标 USB 存储器"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
 msgstr "选中文件不可读。请修改其许可或选择其他文件。"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
 msgstr "无法使用所选文件。您可以将文件移动到磁盘根目录后再试(例如 C:\\)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr "%(filename)s 已选取"
@@ -1113,7 +1110,7 @@ msgstr "su 无法使用。请用 sudo 来替代。"
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1175,67 +1172,67 @@ msgstr "不可用"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
 "log to understand the problem."
 msgstr "{details} 请检查你的附加软件列表和系统日志来了解问题的详细信息。"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
 msgstr "请检查你的附加软件列表和系统日志来了解问题的详细信息。"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr "显示日志"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "配置"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} 和 {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ", "
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "添加 {packages} 为附加软件?"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr "使它在每次启动 Tails 时从永久存储中安装。"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr "始终安装"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr "仅安装一次"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr "配置附加软件失败。"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -1243,77 +1240,77 @@ msgstr ""
 "要在 Tails 每次启动时安装此软件,你可以创建一个永久存储并启动 <b>附加软件</b>"
 "功能。"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr "创建永久存储"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr "创建持久存储失败。"
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr "启动 Tails 时,你可以自动安装 {packages}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr "这样做,您需要从 USB 中运行 Tails。"
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "从附加软件中移除{packages} ?"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr "这将导致 {packages}的安装进程自动中止。"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "移除"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr "从永久存储中安装您的附加软件……"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr "这可能会花费几分钟。"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr "附加软件安装失败"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr "附加软件安装成功"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr "附加软件升级检查失败"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
 msgstr "请检查您的网络连接,重启 Tails 或者阅读系统日志以了解问题所在。"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr "附加软件更新失败。"
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "文档"
 
@@ -1323,7 +1320,7 @@ msgstr "文档"
 msgid ""
 "Remove {package} from your additional software? This will stop installing "
 "the package automatically."
-msgstr "从您的附加软件中移除{package}?这将自动中止{package}的安装进程。"
+msgstr "从附加软件中移除{package}?此操作会自动中止软件包的安装进程。"
 
 #. Translators: Don't translate {pkg}, it's a placeholder and will be replaced.
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:106
@@ -1466,19 +1463,19 @@ msgstr ""
 "参阅: {manual_upgrade_url}"
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr "错误:"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr "警告:检测到虚拟机!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr "警告:检测到非自由虚拟机!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1488,11 +1485,11 @@ msgstr ""
 "主机的操作系统和虚拟化软件都可能监视您在使用 Tails 时的行为。只有自由软件值得"
 "信赖,包括主机的操作系统和虚拟化软件。"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr "不再显示"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr "了解更多"
 
@@ -1506,21 +1503,19 @@ msgid "_Use a bridge that you already know"
 msgstr "使用你已知的网桥(_U)"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:242
-#, fuzzy
 msgid ""
 "To save your bridge, <a href=\"doc/persistent_storage\">unlock your "
 "Persistent Storage</a>."
 msgstr ""
-"要保存网桥,<a href=\"doc/first_steps/persistence\">解锁您的持久化存储</a>。"
+"要保存网桥,<a href=\"doc/persistent_storage\">解锁您的持久化存储</a>。"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:249
-#, fuzzy
 msgid ""
 "To save your bridge, <a href=\"doc/persistent_storage\">create a Persistent "
 "Storage</a> on your Tails USB stick."
 msgstr ""
-"要保存网桥,请在您的 Tails USB 设备上<a href=\"doc/first_steps/persistence\">"
-"创建一个持久化存储</a>。"
+"要保存网桥,请在您的 Tails USB 设备上<a href=\"doc/persistent_storage\">创建"
+"一个持久化存储</a>。"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:269
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:773
@@ -1539,15 +1534,15 @@ msgstr "配置持久化存储失败。"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:385
 msgid "Failed to detect a webcam. Maybe your webcam is too old."
-msgstr ""
+msgstr "未能检测到摄像头。也许你的摄像头太旧了。"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:394
 msgid "Failed to scan QR code. Try with more light or closer to the camera."
-msgstr ""
+msgstr "扫描二维码失败。尝试增加光线或靠近相机。"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:401
 msgid "Invalid QR code. Try sending another email and scanning again."
-msgstr ""
+msgstr "二维码无效。尝试再发送一封邮件并扫描。"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:451
 msgid "Synchronizing the system's clock…"
@@ -1581,9 +1576,8 @@ msgid "You can now browse the Internet anonymously and uncensored."
 msgstr "您现在可以匿名且不受审查地浏览互联网。"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:703
-#, fuzzy
 msgid "This local network seems to be blocking access to Tor."
-msgstr "你的本地网络正在封锁到 Tor 的连接。"
+msgstr "这个局域网络似乎阻止了对Tor的访问。"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:776
 msgid "Bridge address malformed"
@@ -1596,7 +1590,7 @@ msgstr "如果你想隐藏你正在使用 Tor,则需要设置桥接"
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1011
 #, python-brace-format
 msgid "Scanned {bridge_type} bridge: <b>{bridge_info}</b>."
-msgstr ""
+msgstr "扫描了{bridge_type}网桥:<b>{bridge_info}</b>。"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1102
 msgid "Are you sure you want to lose progress?"
@@ -1616,11 +1610,11 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1112
 msgid "Close and Lose Progress"
-msgstr ""
+msgstr "关闭并失去进展"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tca/ui/main_window.py:1113
 msgid "Wait"
-msgstr ""
+msgstr "等待"
 
 #: config/chroot_local-includes/usr/local/bin/thunderbird:41
 msgid "You need to migrate your OpenPGP keys"
@@ -1838,83 +1832,85 @@ msgstr ""
 msgid "Choose File Container"
 msgstr "选择文件容器"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
-msgstr ""
+msgstr "不安全浏览器在欢迎屏幕中被禁用。\\n\\n"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
+"要使用不安全浏览器,请重新启动Tails,并确保在欢迎屏幕的附加设置中启用不安全浏"
+"览器。"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr "要使用不安全的浏览器,请重启 Tails。"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr "重启(_R)"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 msgid "_Cancel"
 msgstr "取消(_C)"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 msgstr "现在确定要重启 Tails?\\n\\n目前的所有工作都将丢失。"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr "立即重启"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr "系统重启失败。"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr "正在启动非安全浏览器..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr "可能需要一会儿,请稍等。"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr "正在关闭非安全浏览器..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
 msgstr "可能需要一会儿。正常关闭之前无法重启非安全浏览器。"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr "非安全浏览器"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
 msgstr "另一种不安全的浏览器正在运行,或者正在被清理。请在稍后重试。"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr "设置 chroot 失败。"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr "配置浏览器失败。"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
@@ -1923,7 +1919,7 @@ msgstr ""
 "您尚未连接到本地网络。\\n\\n无法启动非安全浏览器,您需要先连接到 Wi-Fi、有线"
 "或移动网络。"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr "运行浏览器失败。"
 
@@ -2093,6 +2089,7 @@ msgid "Tails documentation"
 msgstr "Tails 文档"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 msgid "Persistent Storage"
 msgstr "持久化存储"
@@ -2119,6 +2116,17 @@ msgstr "了解如何使用 Tails"
 msgid "Learn more about Tails"
 msgstr "更深入了解 Tails"
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "持久化存储"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+#, fuzzy
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr "为你想保存到Tails U盘的数据打开持久性存储的功能。"
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr "安装,克隆,升级 Tails"
@@ -2185,7 +2193,7 @@ msgstr "移除附加软件需要认证 ($(command_line))"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr "管理密码"
 
@@ -2211,7 +2219,7 @@ msgid "Disable"
 msgstr "禁用"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr "MAC 地址匿名化"
 
@@ -2235,7 +2243,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr "不匿名化 MAC 地址"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr "网络配置"
 
@@ -2310,66 +2318,71 @@ msgstr "设置是从持久化存储加载的。"
 msgid "Welcome to Tails!"
 msgstr "欢迎使用 Tails!"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 msgid "_Persistent Storage"
 msgstr "持久化存储(_P)"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
+"你可以将你的一些文件和配置保存在Tails U盘上的加密持久存储中:你的文档、浏览器"
+"书签、Wi-Fi密码等。"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr "启动 Tails 后,您将创建并配置您的持久化存储。"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr "语言和区域"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr "默认设置"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
-msgstr "加密的永久存储(_P)"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
 msgid "Show Passphrase"
 msgstr "显示密码"
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
-msgstr "请输入您的密码以解锁永久存储"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "密语:"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+#, fuzzy
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr "您的永久存储已解锁。重启 Tails 以再次锁定它。"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr "附加设置(_A)"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr "添加一个额外设置"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
 msgstr "默认设置在大多数情况下是安全的。要添加自定义设置,点击下面的 + 按钮。"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 msgid "Shutdown"
 msgstr "关闭"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr "启动 Tails(_S)"
 
@@ -2401,7 +2414,7 @@ msgstr "密码词组不匹配"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:317
 msgid "Ch_ange"
-msgstr ""
+msgstr "修改(_A)"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/deleted_view.ui.in:21
 msgid "The Persistent Storage was successfully deleted."
@@ -2409,11 +2422,11 @@ msgstr "已成功删除持久化存储。"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/deleted_view.ui.in:32
 msgid "_Close"
-msgstr ""
+msgstr "_关闭"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/fail_view.ui.in:30
 msgid "Oh no! Something has gone wrong."
-msgstr ""
+msgstr "糟糕!出现错误。"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/fail_view.ui.in:45
 msgid ""
@@ -2422,6 +2435,9 @@ msgid ""
 "You can send an error report or check the output of the following commands "
 "to investigate:"
 msgstr ""
+"持久化存储服务意外退出。\n"
+"\n"
+"你可以发送一份错误报告或检查以下命令的输出来调查:"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/fail_view.ui.in:74
 msgid "Send Error Report"
@@ -2436,12 +2452,18 @@ msgid ""
 "<a href=\"doc/persistent_storage/backup\">Learn how to make a backup of your "
 "Persistent Storage.</a>"
 msgstr ""
+"你的持久性存储已被解锁。\n"
+"\n"
+"它的内容在你关闭Tails之前是可用的。\n"
+"\n"
+"<a href=\"doc/persistent_storage/backup\">了解如何对你的持久性存储进行备份。"
+"</a>"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:89
 msgid ""
 "Turn on the features of the Persistent Storage for the data that you want to "
 "save to your Tails USB stick."
-msgstr ""
+msgstr "为你想保存到Tails U盘的数据打开持久性存储的功能。"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:106
 msgid "Personal Documents"
@@ -2463,17 +2485,27 @@ msgstr "激活持久文件夹"
 msgid "System Settings"
 msgstr "系统设置"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+#, fuzzy
+msgid "Welcome Screen"
+msgstr "激活欢迎屏幕"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 msgid "Activate Welcome Screen"
 msgstr "激活欢迎屏幕"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+#, fuzzy
+msgid "Printers"
+msgstr "激活打印机"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 msgid "Activate Printers"
 msgstr "激活打印机"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:275
 msgid "Network"
-msgstr ""
+msgstr "网络"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:303
 msgid "Network Connections"
@@ -2481,7 +2513,7 @@ msgstr "网络连接"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:304
 msgid "Save Wi-Fi passwords and mobile broadband configuration."
-msgstr ""
+msgstr "保存Wi-Fi密码和移动宽带配置。"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:314
 msgid "Activate Network Connections"
@@ -2497,7 +2529,12 @@ msgstr "激活 Tor 网桥"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:360
 msgid "Applications"
-msgstr ""
+msgstr "应用"
+
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "激活 Tor 浏览器书签"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 msgid "Activate Tor Browser Bookmarks"
@@ -2508,9 +2545,8 @@ msgid "Electrum Bitcoin Wallet"
 msgstr "Electrum 比特币钱包"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:419
-#, fuzzy
 msgid "Activate Electrum Bitcoin Wallet"
-msgstr "Electrum 比特币钱包"
+msgstr "激活Electrum 比特币钱包"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:430
 msgid "Thunderbird Email Client"
@@ -2518,7 +2554,7 @@ msgstr "Thunderbird 电子邮件客户端"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:440
 msgid "Activate Thunderbird Email Client"
-msgstr ""
+msgstr "激活Thunderbird电子邮件客户端"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:451
 msgid "GnuPG"
@@ -2526,19 +2562,19 @@ msgstr "GnuPG"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:452
 msgid "OpenPGP keys outside of Thunderbird."
-msgstr ""
+msgstr "Thunderbird之外的OpenPGP密钥。"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:462
 msgid "Activate GnuPG"
-msgstr ""
+msgstr "激活GnuPG"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:473
 msgid "Pidgin Internet Messenger"
-msgstr ""
+msgstr "Pidgin网络信使"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:483
 msgid "Activate Pidgin Internet Messenger"
-msgstr ""
+msgstr "激活Pidgin网络信使"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:494
 msgid "SSH Client"
@@ -2585,14 +2621,14 @@ msgid ""
 "To add or remove custom features, modify /live/persistence/"
 "TailsData_unlocked/persistence.conf."
 msgstr ""
+"要添加或删除自定义功能,请修改/live/persistence/TailsData_unlocked/"
+"persistence.conf。"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:720
-#, fuzzy
 msgid ""
 "<a href=\"doc/persistent_storage\">Learn more about the Persistent Storage.</"
 "a>"
-msgstr ""
-"<a href=\"doc/first_steps/persistence\">了解更多关于持久化存储的信息</a>"
+msgstr "<a href=\"doc/persistent_storage\">了解更多关于持久性存储的信息。</a>"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/locked_view.ui.in:52
 msgid ""
@@ -2604,6 +2640,11 @@ msgid ""
 "To delete your Persistent Storage, click <b>Delete</b> on the right of the "
 "title bar."
 msgstr ""
+"<b>你的持久性存储被锁定。</b>\n"
+"\n"
+"要使用或配置您的持久性存储,请在启动Tails时在欢迎屏幕中解锁它。\n"
+"\n"
+"要删除您的Persistent Storage,请点击标题栏右侧的<b>删除</b>。"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:52
 msgid ""
@@ -2612,6 +2653,9 @@ msgid ""
 "\n"
 "We recommend a long passphrase of 5 to 7 random words."
 msgstr ""
+"选择你要用来解锁你的持久性存储器及其所有数据的加密的密码。\n"
+"\n"
+"我们建议使用5到7个随机单词的密码。"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:82
 msgid "Passphrase:"
@@ -2644,6 +2688,17 @@ msgid ""
 "<a href=\"doc/persistent_storage\">Learn more about the Persistent Storage.</"
 "a>"
 msgstr ""
+"当你关闭Tails时,你所做的一切都会自动消失。\n"
+"\n"
+"但你可以将你的一些文件和配置保存在你的Tails U盘上的加密持久性存储器中,比如"
+"说:\n"
+"\n"
+"- 你的文件\n"
+"- 你的Wi-Fi密码\n"
+"- 你的浏览器书签\n"
+"- ...\n"
+"\n"
+"<a href=\"doc/persistent_storage\">了解更多关于持久性存储的信息。</a>"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:92
 msgid ""
@@ -2652,14 +2707,18 @@ msgid ""
 "To be able to use Tails with a Persistent Storage, please follow our "
 "instructions on <a href=\"install\">installing Tails on a USB stick</a>."
 msgstr ""
+"对不起,不可能在这个设备上创建一个持久性存储。\n"
+"\n"
+"要想在持久性存储器中使用Tails,请遵循我们关于<a href=\"install\">在U盘上安装"
+"Tails的说明</a>。"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:137
 msgid "Co_ntinue"
-msgstr ""
+msgstr "继续(_N)"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:29
 msgid "_Delete..."
-msgstr "删除(_D)..."
+msgstr "删除(_D)…"
 
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:36
 msgid "Delete Persistent Storage"
@@ -2711,11 +2770,11 @@ msgstr "解锁(_U)"
 msgid "Detach this volume"
 msgstr "卸载此卷"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr "目标USB存储器:"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr "重新安装(删除所有数据)"
 
@@ -3259,6 +3318,12 @@ msgstr "十二月"
 msgid "Clock"
 msgstr "时钟"
 
+#~ msgid "Encrypted _Persistent Storage"
+#~ msgstr "加密的永久存储(_P)"
+
+#~ msgid "Enter your passphrase to unlock the persistent storage"
+#~ msgstr "请输入您的密码以解锁永久存储"
+
 #, python-format
 #~ msgid ""
 #~ "<h1>Help us fix your bug!</h1>\n"
diff --git a/po/zh_HK.po b/po/zh_HK.po
index 1c89e63ca8d..6ab8c52c0ea 100644
--- a/po/zh_HK.po
+++ b/po/zh_HK.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
 "PO-Revision-Date: 2023-01-25 11:40+0000\n"
 "Last-Translator: emma peel <emma.peel@riseup.net>\n"
 "Language-Team: Chinese (Traditional, Hong Kong) <https://hosted.weblate.org/"
@@ -452,9 +452,9 @@ msgid "Additional Settings"
 msgstr ""
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "取消"
@@ -526,27 +526,27 @@ msgstr "關閉"
 msgid "Off (default)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
 #, fuzzy
-msgid "Persistent Storage Not Unlocked"
+msgid "Persistent Storage Still Locked"
 msgstr "持續磁碟區未解鎖。"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
 #, fuzzy
-msgid "Continue Without Persistent Storage"
+msgid "Start Without Persistent Storage"
 msgstr "建立%sMB持續覆蓋"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 #, fuzzy
 msgid "Don't _Create Persistent Storage"
 msgstr "建立%sMB持續覆蓋"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 #, fuzzy
 msgid "_Create Persistent Storage"
@@ -567,7 +567,6 @@ msgstr ""
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr ""
 
@@ -784,69 +783,69 @@ msgstr "磁碟迴送,略過MBR重設"
 msgid "Synchronizing data on disk..."
 msgstr "同步磁碟上嘅資料…"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
 msgstr "錯誤:無法設定標籤或取得你設備嘅UUID。無法繼續。"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr "安裝完成!(%s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr "Tails安裝失敗!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr "Tails安裝程序"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr "升級"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -854,7 +853,7 @@ msgid ""
 "a different model."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
@@ -862,7 +861,7 @@ msgid ""
 msgstr ""
 "「%(pretty_name)s」設備嘅容量太小,無法安裝Tails(至少需要%(size)s GB嘅空間)。"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -870,77 +869,77 @@ msgid ""
 "%(dl_url)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr "請插入至少%0.1fGB的USB快閃隨身碟或SD卡。"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr "安裝Tails時發生錯誤"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr "安裝完成!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr "無法掛接裝置"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
 "The persistent storage on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
 "All data on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
 msgstr "所選檔案無法讀取。請修正其權限或選取另一檔案。"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
 msgstr ""
 "無法使用所選檔案。如你將ISO移動到磁碟根目錄下(例如:C:\\),你可能會好運一啲"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr "已選取%(filename)s"
@@ -1015,7 +1014,7 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1077,143 +1076,143 @@ msgstr "唔可以揀"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
 "log to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "設定"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "移除"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "文件"
 
@@ -1344,19 +1343,19 @@ msgid ""
 msgstr ""
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr "錯誤:"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr "警告:偵測到虛擬機器!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr "警告:偵測到此虛擬機器並非自由軟件!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1366,11 +1365,11 @@ msgstr ""
 "主機作業系統同虛擬化軟件都能夠監控你喺Tails嘅行動。只有真正免費嘅主機作業系統"
 "同虛擬化軟件先值得信賴。"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr "深入瞭解"
 
@@ -1697,91 +1696,91 @@ msgstr ""
 msgid "Choose File Container"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 #, fuzzy
 msgid "_Cancel"
 msgstr "取消"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr "正在啟動唔安全瀏覽器…"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr "呢樣需要一段時間,請耐心等候。"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr "正在關閉唔安全瀏覽器…"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
 msgstr "呢樣需要一段時間,你可能無法將唔安全瀏覽器重新啟動,直到佢正確咁關閉。"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr "唔安全瀏覽器"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
 msgstr "目前正在執行另一個唔安全瀏覽器,或被清理。請喺一段時間後重試。"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr "無法設定chroot。"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr "無法設定瀏覽器。"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
 "network."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr "無法開啟瀏覽器。"
 
@@ -1951,6 +1950,7 @@ msgid "Tails documentation"
 msgstr "Tails文件"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 msgid "Persistent Storage"
 msgstr ""
@@ -1977,6 +1977,16 @@ msgstr "了解如何使用Tails"
 msgid "Learn more about Tails"
 msgstr "了解更多關於Tails"
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "建立%sMB持續覆蓋"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr ""
@@ -2043,7 +2053,7 @@ msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr ""
 
@@ -2067,7 +2077,7 @@ msgid "Disable"
 msgstr "停用"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr ""
 
@@ -2088,7 +2098,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr ""
 
@@ -2149,66 +2159,68 @@ msgstr ""
 msgid "Welcome to Tails!"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 msgid "_Persistent Storage"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-msgid "Encrypted _Persistent Storage"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
 msgid "Show Passphrase"
 msgstr ""
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "通關句語:"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 msgid "_Additional Settings"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 msgid "Shutdown"
 msgstr "離開"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 msgid "_Start Tails"
 msgstr ""
 
@@ -2310,10 +2322,19 @@ msgstr "正在建立持續磁碟區…"
 msgid "System Settings"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+msgid "Welcome Screen"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 msgid "Activate Welcome Screen"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+#, fuzzy
+msgid "Printers"
+msgstr "打印機"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 #, fuzzy
 msgid "Activate Printers"
@@ -2349,6 +2370,11 @@ msgstr "啟動Tor洋蔥路由瀏覽器"
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "啟動Tor洋蔥路由瀏覽器"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 #, fuzzy
 msgid "Activate Tor Browser Bookmarks"
@@ -2571,11 +2597,11 @@ msgstr ""
 msgid "Detach this volume"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr ""
 
diff --git a/po/zh_TW.po b/po/zh_TW.po
index 025143ef924..c75a01ed2be 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -23,7 +23,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-15 08:44+0100\n"
+"POT-Creation-Date: 2023-03-18 14:06+0100\n"
 "PO-Revision-Date: 2023-01-26 19:00+0000\n"
 "Last-Translator: emma peel <emma.peel@riseup.net>\n"
 "Language-Team: Chinese (Traditional) <https://hosted.weblate.org/projects/"
@@ -481,9 +481,9 @@ msgid "Additional Settings"
 msgstr "額外的設定"
 
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:584
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:591
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 msgid "Cancel"
 msgstr "取消"
@@ -558,28 +558,28 @@ msgstr "關閉"
 msgid "Off (default)"
 msgstr "關閉(預設)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:167
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
 #, fuzzy
-msgid "Persistent Storage Not Unlocked"
+msgid "Persistent Storage Still Locked"
 msgstr "建立永久性儲存裝置"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:168
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:169
 #, fuzzy
 msgid ""
 "Do you really want to start Tails without unlocking your Persistent Storage?"
 msgstr "請輸入通關密語以便解鎖此永久性儲存裝置"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:170
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:171
 #, fuzzy
-msgid "Continue Without Persistent Storage"
+msgid "Start Without Persistent Storage"
 msgstr "建立永久性儲存裝置"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:408
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:411
 #, fuzzy
 msgid "Don't _Create Persistent Storage"
 msgstr "建立永久性儲存裝置"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:410
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:413
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/passphrase_view.ui.in:281
 #, fuzzy
 msgid "_Create Persistent Storage"
@@ -602,7 +602,6 @@ msgstr "解鎖中...."
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:94
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:108
 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:118
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:508
 msgid "Unlock"
 msgstr "解鎖"
 
@@ -823,69 +822,69 @@ msgstr "磁碟回送,略過 MBR 重設"
 msgid "Synchronizing data on disk..."
 msgstr "正在同步磁碟上的資料..."
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:147
 msgid ""
 "Error: Cannot set the label or obtain the UUID of your device.  Unable to "
 "continue."
 msgstr "錯誤:無法設定標籤或取得裝置的 UUID,無法繼續。"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:181
 #, python-format
 msgid "Installation complete! (%s)"
 msgstr "安裝完成! (%s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:186
 msgid "Tails installation failed!"
 msgstr "Tails 系統安裝失敗!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:275
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
 msgid "Tails Installer"
 msgstr "Tails 安裝程式"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:317
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:164
 msgid "Clone the current Tails"
 msgstr "複製目前的  Tails"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:185
 msgid "Use a downloaded Tails ISO image"
 msgstr "使用一個已下載的 Tails ISO 映像檔。"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:368
 msgid "Upgrade"
 msgstr "升級"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:369
 msgid "Manual Upgrade Instructions"
 msgstr "手動升級指示"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:572
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:579
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:359
 msgid "Install"
 msgstr "安裝"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:376
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
 #: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
 msgid "Installation Instructions"
 msgstr "安裝指示"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:383
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:390
 #, python-format
 msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(size)s %(vendor)s %(model)s 設備 (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:395
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:402
 msgid "No ISO image selected"
 msgstr "未選取  ISO 映像檔"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:396
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:403
 msgid "Please select a Tails ISO image."
 msgstr "請選擇 Tails ISO 映像檔。"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:458
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:465
 #, python-format
 msgid ""
 "The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
@@ -895,7 +894,7 @@ msgstr ""
 "此USB隨身碟「%(pretty_name)s」已被原廠設定為不可移除模式,故安裝於其中的 "
 "Tails 系統將無法正常啟動。請試著更換別種型號的儲存裝置。"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:475
 #, python-format
 msgid ""
 "The device \"%(pretty_name)s\" is too small to install Tails (at least "
@@ -904,7 +903,7 @@ msgstr ""
 "“%(pretty_name)s”設備的容量太小,無法安裝Tails (至少需要 %(size)s GB 的空"
 "間)。"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:481
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:488
 #, python-format
 msgid ""
 "To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a "
@@ -912,77 +911,77 @@ msgid ""
 "%(dl_url)s"
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:501
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:508
 msgid "No device suitable to install Tails could be found"
 msgstr "找不到可以安裝 Tails 系統的裝置"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:503
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:510
 #, python-format
 msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
 msgstr "請插入最少有%0.1fGB空間的USB隨身碟或SD記憶卡。"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:515
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:522
 msgid "An error happened while installing Tails"
 msgstr "安裝 Tails 系統時發生錯誤"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:567
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:574
 msgid "Installation complete!"
 msgstr "安裝完成!"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:622
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:629
 msgid "Unable to mount device"
 msgstr "無法掛接裝置"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:628
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:635
 #, python-format
 msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
 msgstr "%(parent_size)s %(vendor)s %(model)s 設備 (%(device)s)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:644
 msgid ""
 "\n"
 "\n"
 "The persistent storage on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:638
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:645
 msgid "Delete Persistent Storage and Reinstall"
 msgstr "刪除永久性儲存裝置並重新安裝"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:640
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:647
 msgid ""
 "\n"
 "\n"
 "All data on this USB stick will be lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:641
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:648
 msgid "Delete All Data and Install"
 msgstr "刪除所有資料並安裝"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:642
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:649
 #, python-format
 msgid "%(description)s%(delete_message)s"
 msgstr "%(description)s%(delete_message)s"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:646
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:653
 msgid "Confirm the target USB stick"
 msgstr "確認目標隨身碟"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:687
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
 msgid ""
 "The selected file is unreadable. Please fix its permissions or select "
 "another file."
 msgstr "所選取的檔案無法讀取,請修改該檔案之存取權限或選擇另一個檔案。"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:693
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
 msgid ""
 "Unable to use the selected file.  You may have better luck if you move your "
 "ISO to the root of your drive (ie: C:\\)"
 msgstr ""
 "無法使用所選取的檔案,或許您可以嘗試將 ISO 檔移動到磁碟根目錄下(例如:C:\\)"
 
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:699
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:706
 #, python-format
 msgid "%(filename)s selected"
 msgstr "%(filename)s 已選取"
@@ -1062,7 +1061,7 @@ msgstr "su 已停用。請改用 sudo。"
 
 #: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:46
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:314
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:460
 #: ../config/chroot_local-includes/usr/share/tails/tca/main.ui.in:593
@@ -1124,67 +1123,67 @@ msgstr "不可用"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
 "log to understand the problem."
 msgstr "{details} 請檢查您的其他軟體清單或閱讀系統記錄來了解問題的詳細資訊。"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:162
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
 msgstr "請檢查您的其他軟體清單或閱讀系統記錄來了解問題的詳細資訊。"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Show Log"
 msgstr "顯示日誌"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:166
 msgid "Configure"
 msgstr "設定"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:232
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} 和 {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:233
 msgid ", "
 msgstr ", "
 
 #. Translators: Don't translate {packages}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:298
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "將 {packages} 加入到您的其他軟體嗎?"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr "在 Tails 啟動時從永久性儲存裝置中安裝它。"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
 msgid "Install Every Time"
 msgstr "每次安裝"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
 msgid "Install Only Once"
 msgstr "只安裝一次"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:302
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:339
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:379
 msgid "The configuration of your additional software failed."
 msgstr "設定其他軟體失敗。"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:323
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -1192,78 +1191,78 @@ msgstr ""
 "要在 Tails 啟動時安裝它,您可以建立一個永久性儲存裝置並啟動<b>其他軟體</b>功"
 "能。"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:265
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
 msgid "Create Persistent Storage"
 msgstr "建立永久性儲存裝置"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
 msgid "Creating your persistent storage failed."
 msgstr "建立您的永久性儲存裝置失敗。"
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:343
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr "你可以在 Tails 啟動時自動安裝 {packages}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:346
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:353
 msgid "To do so, you need to run Tails from a USB stick."
 msgstr "如要實現以上動作,您需要從 USB 隨身碟執行 Tails。"
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "將 {packages} 從您的其他軟體中移除嗎?"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr "這會停止自動安裝 {packages} 。"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:373
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:163
 msgid "Remove"
 msgstr "移除"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:543
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:550
 msgid "Installing your additional software from persistent storage..."
 msgstr "從永久性儲存裝置安裝您的其他軟體..."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:552
 msgid "This can take several minutes."
 msgstr "這可能會花幾分鐘。"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:558
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:565
 msgid "The installation of your additional software failed"
 msgstr "安裝您的其他軟體失敗"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
 msgid "Additional software installed successfully"
 msgstr "其他軟體安裝成功"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:593
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:600
 msgid "The check for upgrades of your additional software failed"
 msgstr "檢查其他軟體的升級失敗"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:610
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
 msgstr ""
 "請檢查您的網路連線,重新啟動 Tails,或閱讀系統記錄來了解問題的詳細資訊。"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:602
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:609
 msgid "The upgrade of your additional software failed"
 msgstr "升級您的其他軟體失敗"
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:36
 msgid "Documentation"
 msgstr "文檔"
 
@@ -1403,19 +1402,19 @@ msgid ""
 msgstr ""
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:45
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
 msgid "error:"
 msgstr "錯誤:"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:21
 msgid "Warning: virtual machine detected!"
 msgstr "警告: 偵測到虛擬機器!"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:23
 msgid "Warning: non-free virtual machine detected!"
 msgstr "警告:偵測到此虛擬機器是由非自由軟體 !"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:27
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:25
 msgid ""
 "Both the host operating system and the virtualization software are able to "
 "monitor what you are doing in Tails. Only free software can be considered "
@@ -1425,11 +1424,11 @@ msgstr ""
 "主機作業系統和虛擬化軟體都能夠監控您在 Tails 中做什麼。只有真正免費的主機作業"
 "系統和虛擬化軟體才能值得信賴。"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:38
 msgid "Don't Show Again"
 msgstr "不再顯示"
 
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:42
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:40
 msgid "Learn More"
 msgstr "深入瞭解"
 
@@ -1765,92 +1764,92 @@ msgstr ""
 msgid "Choose File Container"
 msgstr "選擇檔案容器"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:48
 msgid "The Unsafe Browser was disabled in the Welcome Screen.\\n\\n"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid ""
 "To use the Unsafe Browser, restart Tails and make sure that the Unsafe "
 "Browser is enabled in the additional settings of the Welcome Screen."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:61
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:53
 #, fuzzy
 msgid "To use the Unsafe Browser, restart Tails."
 msgstr "關閉不安全瀏覽器(預設)"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:64
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:56
 msgid "_Restart"
 msgstr "_重新啟動"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:65
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/change_passphrase_dialog.ui.in:304
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/welcome_view.ui.in:121
 msgid "_Cancel"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 msgid ""
 "Do you really want to restart Tails now?\\n\\nAll your current work will be "
 "lost."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:67
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:59
 msgid "Restart Now"
 msgstr "馬上重啟"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:66
 msgid "Failed to restart the system."
 msgstr "重新開始系統失敗"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:74
 msgid "Starting the Unsafe Browser..."
 msgstr "正在啟動不安全的瀏覽器..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:83
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:75
 msgid "This may take a while, so please be patient."
 msgstr "這可能需要一段時間,所以請耐心等候。"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:89
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:81
 msgid "Shutting down the Unsafe Browser..."
 msgstr "正在關閉不安全的瀏覽器..."
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:82
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
 msgstr ""
 "這可能需要一段時間,您可能無法將不安全的瀏覽器重新啟動,直到它正確地關閉。"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:103
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:95
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:512
 msgid "Unsafe Browser"
 msgstr "不安全的瀏覽器"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:117
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:109
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
 msgstr "目前正在執行另一個不安全的瀏覽器,或被清理。請在一段時間後重試。"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:116
 msgid "Failed to setup chroot."
 msgstr "無法設定 chroot。"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:130
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:122
 msgid "Failed to configure browser."
 msgstr "無法設定瀏覽器"
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:132
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:124
 msgid ""
 "You are not connected to a local network yet.\\n\\nTo be able to start the "
 "Unsafe Browser, you first need to connect to a Wi-Fi, wired, or mobile "
 "network."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:155
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:147
 msgid "Failed to run browser."
 msgstr "無法開啟瀏覽器"
 
@@ -2022,6 +2021,7 @@ msgid "Tails documentation"
 msgstr "Tails 文件"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.PersistentStorage.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:379
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/window.ui.in:25
 #, fuzzy
 msgid "Persistent Storage"
@@ -2049,6 +2049,16 @@ msgstr "了解如何使用 Tails"
 msgid "Learn more about Tails"
 msgstr "了解更多關於 Tails"
 
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:1
+#, fuzzy
+msgid "Back Up Persistent Storage"
+msgstr "建立永久性儲存裝置"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-backup.desktop.in.h:2
+msgid ""
+"Make a backup of the Tails Persistent Storage to another Tails USB stick"
+msgstr ""
+
 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
 msgid "Install, clone, upgrade Tails"
 msgstr "安裝、複製、升級 Tails"
@@ -2116,7 +2126,7 @@ msgstr "需要驗證來從其他軟體中移除套件 ($(command_line))"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:739
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:744
 msgid "Administration Password"
 msgstr "管理員密碼"
 
@@ -2142,7 +2152,7 @@ msgid "Disable"
 msgstr "關閉"
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:743
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:748
 msgid "MAC Address Anonymization"
 msgstr ""
 
@@ -2163,7 +2173,7 @@ msgid "Don't anonymize MAC addresses"
 msgstr ""
 
 #: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:747
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:752
 msgid "Network Configuration"
 msgstr "網路設定"
 
@@ -2224,60 +2234,62 @@ msgstr ""
 msgid "Welcome to Tails!"
 msgstr "歡迎使用 Tails!"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:186
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:181
 #, fuzzy
 msgid "_Persistent Storage"
 msgstr "建立永久性儲存裝置"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:232
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:213
 msgid ""
 "You can save some of your files and configuration in an encrypted Persistent "
 "Storage on your Tails USB stick: your documents, browser bookmarks, Wi-Fi "
 "passwords, and so on."
 msgstr ""
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:246
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:227
 #, fuzzy
 msgid ""
 "You will create and configure your Persistent Storage after starting Tails."
 msgstr "在 Tails 啟動時從永久性儲存裝置中安裝它。 "
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:300
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:280
 msgid "Language & Region"
 msgstr "語言和區域"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:336
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:316
 msgid "Default Settings"
 msgstr "預設值"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:399
-#, fuzzy
-msgid "Encrypted _Persistent Storage"
-msgstr "加密的永久性儲存裝置"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:440
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:418
 msgid "Show Passphrase"
 msgstr "顯示通關密語"
 
-#. The label for this placeholder text is not very big, so keep this string short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:493
-msgid "Enter your passphrase to unlock the persistent storage"
-msgstr "請輸入通關密語以便解鎖此永久性儲存裝置"
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:471
+#, fuzzy
+msgid "_Passphrase"
+msgstr "通關密語:"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:541
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:506
+msgid "Unlock Encryption"
+msgstr ""
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:547
+#, fuzzy
+msgid ""
+"Your Persistent Storage is unlocked. Its content will be available until you "
+"shut down Tails."
 msgstr "您的永久性儲存裝置已被解鎖,請重新啟動 Tails 系統以便將它再次鎖定。"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:579
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:584
 #, fuzzy
 msgid "_Additional Settings"
 msgstr "額外的設定"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:662
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:667
 msgid "Add an additional setting"
 msgstr "添加一個額外設定"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:711
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:716
 msgid ""
 "The default settings are safe in most situations. To add a custom setting, "
 "press the \"+\" button below."
@@ -2285,11 +2297,11 @@ msgstr ""
 "在大多數的情況下,預設的設定值是很安全的。若您想要增加個人化的設定,請按下方"
 "的「+」按鈕。"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:755
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:760
 msgid "Shutdown"
 msgstr "關閉"
 
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:766
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:771
 #, fuzzy
 msgid "_Start Tails"
 msgstr "å•Ÿå‹• Tails"
@@ -2397,11 +2409,21 @@ msgstr "建立永久性儲存裝置"
 msgid "System Settings"
 msgstr "預設值"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:219
+#, fuzzy
+msgid "Welcome Screen"
+msgstr "歡迎介面"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:229
 #, fuzzy
 msgid "Activate Welcome Screen"
 msgstr "歡迎介面"
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:240
+#, fuzzy
+msgid "Printers"
+msgstr "印表機"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:250
 #, fuzzy
 msgid "Activate Printers"
@@ -2437,6 +2459,11 @@ msgstr "啟動洋蔥路由瀏覽器"
 msgid "Applications"
 msgstr ""
 
+#: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:388
+#, fuzzy
+msgid "Tor Browser Bookmarks"
+msgstr "瀏覽器書籤"
+
 #: ../config/chroot_local-includes/usr/share/tails/persistent-storage/features_view.ui.in:398
 #, fuzzy
 msgid "Activate Tor Browser Bookmarks"
@@ -2664,11 +2691,11 @@ msgstr "解鎖(_U)"
 msgid "Detach this volume"
 msgstr "分離此加密區"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:266
 msgid "Target USB stick:"
 msgstr "指定目標隨身碟:"
 
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:342
 msgid "Reinstall (delete all data)"
 msgstr "重新安裝(刪除所有資料)"
 
@@ -3170,6 +3197,13 @@ msgstr "十二月"
 msgid "Clock"
 msgstr "時鐘"
 
+#, fuzzy
+#~ msgid "Encrypted _Persistent Storage"
+#~ msgstr "加密的永久性儲存裝置"
+
+#~ msgid "Enter your passphrase to unlock the persistent storage"
+#~ msgstr "請輸入通關密語以便解鎖此永久性儲存裝置"
+
 #, python-format
 #~ msgid ""
 #~ "<h1>Help us fix your bug!</h1>\n"
-- 
GitLab


From 67ae1856c9a029519dffb71bb98c7a94970da0d2 Mon Sep 17 00:00:00 2001
From: intrigeri <intrigeri@boum.org>
Date: Sat, 18 Mar 2023 13:23:41 +0000
Subject: [PATCH 172/187] Update changelog for 5.11.

---
 debian/changelog | 242 ++++++++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 240 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 23cd5cdf47f..5032c46c08c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,247 @@
 tails (5.11) UNRELEASED; urgency=medium
 
-  * Dummy entry for next release.
+  * Upgrade Thunderbird to 102.9.0-1~deb11u1
 
- -- intrigeri <intrigeri@debian.org>  Thu, 16 Feb 2023 07:33:54 +0000
+  * Upgrade Tor Browser to 12.0.4-build2 (tails/tails!1082)
 
+    Closes issues:
+      - Upgrade to Tor Browser 12.0.4 based on Firefox 102.9 (tails/tails#19450)
+
+    Commits:
+      - Fetch Tor Browser from our own archive
+      - Upgrade Tor Browser to 12.0.4-build2
+
+  * Upgrade Tor Browser to 12.0.4-build1 (tails/tails!1078)
+
+    Closes issues:
+      - Upgrade to Tor Browser 12.0.4 based on Firefox 102.9 (tails/tails#19450)
+
+    Commits:
+      - workaround failure
+      - Fetch Tor Browser from our own archive
+      - Upgrade Tor Browser to 12.0.4-build1
+
+  * Fix root exporting unsafe env (tails/tails!1067)
+
+    Closes issues:
+      - LPE via Environment Key Injection (tails/tails#19464)
+
+    Commits:
+      - remove inaccurate type hint
+      - Revert "tails-additional-software: Fix string returned instead of int"
+      - tails-additional-software: Fix logging command
+      - tails-additional-software: Fix string returned instead of int
+      - tails-additional-software: Log stderr of the executed command to Journal
+      - tails-additional-software: Fix _ (gettext.gettext) not defined
+      - tails-additional-software: Add type hints
+      - tails-additional-software: Print logs of apt hooks to journal
+      - Remote shell: Don't capture stderr of "sh_spawn" commands
+      - tailslib: Make code easier to read
+      - Start tails-dump-user-env.service automatically again
+      - Revert "workaround failure"
+      - 10-tor.sh: Remove obsolete wait loops
+      - run-with-user-env: Depend on tails-dump-user-env.service
+      - run-with-env: Fix current environment not passed to the command
+      - tails-additional-software: Log stderr of the executed command
+      - let's use standard logging methods
+      - Remote shell: Fix some log output not printed to stderr
+      - Apply 1 suggestion(s) to 1 file(s)
+      - Rename exec-with-env -> run-with-env
+      - INHERIT_FD is needed for connect-drop to work
+      - port exec-with-env to argparse
+      - fix allowed_env
+      - Use exec in some places
+      - tails-dump-user-env.service: Be explicit about which users the service should
+        run for
+      - userenv.py: Don't use current env in read_allowed_env_vars_from_file
+      - dump-user-env: Use logging module
+      - userenv.py: Fix all env vars from the current env passed
+      - exec-with-env: Move read_allowed_env_vars_from_file() to userenv.py
+      - exec-with-env: Only export allow-listed environment variables
+      - tailslib: Move NOSYMFOLLOW_MOUNTPOINT back to tps package
+      - exec-with-env: Fix error message
+      - dump-user-env: Fix error message
+      - dump-user-env: Don't set $EUID
+      - userenv.py: Log invalid environment variables
+      - dump-user-env: Only dump specific environment variables
+      - Remote shell: Remove unused imports
+      - Test Suite: Use "systemctl poweroff" instead of "poweroff"
+      - Remote shell: Don't fail if user env is not found
+      - Remote shell: Use user env in commands executed as root
+      - refactor: Rename loadenv-exec -> exec-with-env
+      - Run tails-additional-software-notify as amnesia with user env
+      - exec-with-user-env: Fix comment and add usage message
+      - refactor: Rename launch_x_application -> run_with_user_env
+      - refactor: Rename gnome-env -> user-env
+      - dump-user-env: Print error message when required variables could not be set
+      - tps-frontend-wrapper: Pass current user environment
+      - Reimplement loadenv-exec in Python
+      - Replace most usages of gnome_env in Python scripts
+      - netnsdrop.py: Remove unused argument user
+      - tails-additional-software-notify: Fix error when printing usage message
+      - tails-additional-software-notify: Fix unresolved reference '_'
+      - Replace systemctl-user with exec-in-gnome-env
+      - Avoid exporting gnome environment file in privileged processes
+      - Dump gnome-shell env as amnesia
+      - tails-notify-user: Use consistent indentation
+      - 20-time.sh: Don't export amnesia-controlled gnome env
+      - tailslib: Don't export gnome env
+      - Test suite: Fix unset environment variables evaluating to true
+      - tca-portal: Support setting debug log level via environment and kernel cmdline
+
+  * Sanitize input (tails/tails!1058)
+
+    Closes issues:
+      - LPE via Environment Key Injection (tails/tails#19464)
+
+    Commits:
+      - sanitize WAYLAND_DISPLAY
+      - Sanitize input
+
+  * Test new tps functionality (tails/tails!1052)
+
+    Closes issues:
+      - Ensure Cucumber tests cover new tps functionality (tails/tails#19225)
+
+    Commits:
+      - Quote variable used in shell command
+      - rubocop --auto-correct
+      - Test Suite: Improve Gherkin of "Creating a Persistent Storage" scenario
+      - Test Suite: Add scenario "Changing the Persistent Storage passphrase"
+      - Test Suite: Add scenario "Activating and deactivating Persistent Storage
+        features"
+      - Test Suite: Add scenario "Creating a Persistent Storage"
+
+  * Test suite: Fix step "the clearnet user has not sent packets out to the
+    Internet" (tails/tails!1074)
+
+    Closes issues:
+      - Test suite step "the clearnet user has not sent packets out to the Internet" is
+        now irrelevant to Unsafe Browser (tails/tails#19370)
+
+    Commits:
+      - fix step name
+      - Test suite: Add anti test for packets sent by the Unsafe Browser
+      - Test suite: Fix step "the clearnet user has not sent packets out to the
+        Internet"
+
+  * Remove custom window-center extension (tails/tails!1072)
+
+    Closes issues:
+      - Consider replacing our custom window-center GNOME Shell extension with the
+        center-new-windows Mutter option (tails/tails#19489)
+
+    Commits:
+      - Remove custom window-center extension
+
+  * 10-tor.sh: Add log output (tails/tails!1070)
+
+    Commits:
+      - Remote shell: Improve log output
+      - 10-tor.sh: Add log output
+
+  * Use zram (tails/tails!1064)
+
+    Closes issues:
+      - Consider using zram (tails/tails#5740)
+
+    Commits:
+      - remove unused variable
+      - chdir / makes paths more predictable
+      - move swapon.tails in its own file
+      - 05-replace_swapon: Use exec to run the original swapon
+      - 05-replace_swapon: Improve device check
+      - 05-replace_swapon: Fail if any argument contains non-zram device
+      - Use zram
+      - Replace swapon
+
+  * Welcome Screen: UI changes (tails/tails!1063)
+
+    Commits:
+      - Help new users understand better the encryption model (#18732)
+      - Test suite: Make output easier to search for
+      - Remote Shell: Automatically restart service when it fails
+      - Test Suite: Use Dogtail to check if the Greeter has started
+      - Test Suite: Avoid spamming log with stacktrace of the same error
+      - Test Suite: Fix failure because of outdated screenshot
+      - Test Suite: Use Dogtail to open GNOME Shell menus
+      - Test Suite: Use Dogtail for some Greeter steps
+      - Welcome Screen: Fix excessive height
+      - Welcome Screen: Replace passphrase entry placeholder with a label
+      - Welcome Screen: Align section header icons / link buttons
+      - Welcome Screen: Remove unnecessary GtkBox
+      - Welcome Screen: Update label
+      - Welcome Screen: Update string shown when Persistent Storage is unlocked
+
+  * Upgrade to Linux 6.1.12-1 from sid (stable branch) (tails/tails!1062)
+
+    Closes issues:
+      - Upgrade Linux kernel to 6.1.7+ (tails/tails#19444)
+
+    Commits:
+      - Test suite: disable bridge QR code automated tests
+      - Upgrade to Linux 6.1.12-1 from sid
+
+  * Welcome Screen: Don't allow unlocking with empty passphrase (tails/tails!1059)
+
+    Closes issues:
+      - Disable "Unlock" button until a passphrase has been entered (tails/tails#19357)
+
+    Commits:
+      - Welcome Screen: Don't allow unlocking with empty passphrase
+
+  * Upgrade to Linux 6.1.12-1 from sid (devel branch) (tails/tails!1055)
+
+    Commits:
+      - Test suite: relax timeout
+      - Test suite: disable bridge QR code automated tests
+      - Upgrade to Linux 6.1.12-1 from sid
+
+  * tps: Fix strings not translatable (tails/tails!1053)
+
+    Closes issues:
+      - Missing translations of UI strings about Persistent Storage (tails/tails#19415)
+
+    Commits:
+      - tails-backup: Fix strings not translatable
+      - tps: Fix strings not translatable
+
+  * Set screencast feature to never stop automatically (#12723) (tails/tails!1049)
+
+    Commits:
+      - Set screencast feature to never stop automatically (#12723)
+
+  * Avoid double negation (tails/tails!1048)
+
+    Commits:
+      - Be more explicit
+      - Avoid double negation
+
+  * Unlock VeraCrypt Volumes: Use Gtk.show_uri_on_window to open directories
+    (tails/tails!1045)
+
+    Closes issues:
+      - Opening VeraCrypt volume spawns zombie process (tails/tails#19423)
+
+    Commits:
+      - Unlock VeraCrypt Volumes: Use Gtk.show_uri_on_window to open directories
+
+  * Enable non-free-firmware archive area for distributions that support it
+    (tails/tails!1036)
+
+    Closes issues:
+      - devel FTBFS (tails/tails#19456)
+      - devel branch FTBFS: uBlock diff (tails/tails#19398)
+      - Enable non-free-firmware APT component (tails/tails#19411)
+
+    Commits:
+      - fix FTBFS: patch wasnt applying
+      - Fix FTBFS by installing b43-fwcutter from bullseye instead of sid
+      - Bump the debian APT snapshot to one that supports the non-free-firmware archive
+        area
+      - Enable non-free-firmware archive area for distributions that support it
+
+ -- Tails developers <tails@boum.org>  Sat, 18 Mar 2023 13:21:19 +0000
 tails (5.10) unstable; urgency=medium
 
   * Upgrade Tor Browser to 12.0.3-build1 (tails/tails!1046)
-- 
GitLab


From 2cd32ece68ad7a170cf63e987a45846e6773577e Mon Sep 17 00:00:00 2001
From: intrigeri <intrigeri@boum.org>
Date: Sat, 18 Mar 2023 13:24:24 +0000
Subject: [PATCH 173/187] Update version and date for 5.11.

---
 wiki/src/inc/stable_amd64_date.html            | 2 +-
 wiki/src/inc/stable_amd64_img_gpg_verify.html  | 2 +-
 wiki/src/inc/stable_amd64_img_sig_url.html     | 2 +-
 wiki/src/inc/stable_amd64_img_torrent_url.html | 2 +-
 wiki/src/inc/stable_amd64_img_url.html         | 2 +-
 wiki/src/inc/stable_amd64_img_url_https.html   | 2 +-
 wiki/src/inc/stable_amd64_iso_gpg_verify.html  | 2 +-
 wiki/src/inc/stable_amd64_iso_sig_url.html     | 2 +-
 wiki/src/inc/stable_amd64_iso_torrent_url.html | 2 +-
 wiki/src/inc/stable_amd64_iso_url.html         | 2 +-
 wiki/src/inc/stable_amd64_iso_url_https.html   | 2 +-
 wiki/src/inc/stable_amd64_version.html         | 2 +-
 12 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/wiki/src/inc/stable_amd64_date.html b/wiki/src/inc/stable_amd64_date.html
index 1490c72542b..b330db292e3 100644
--- a/wiki/src/inc/stable_amd64_date.html
+++ b/wiki/src/inc/stable_amd64_date.html
@@ -1 +1 @@
-2023-02-16
\ No newline at end of file
+2023-03-20
\ No newline at end of file
diff --git a/wiki/src/inc/stable_amd64_img_gpg_verify.html b/wiki/src/inc/stable_amd64_img_gpg_verify.html
index 4c0a9b81095..fb1cf6e25c3 100644
--- a/wiki/src/inc/stable_amd64_img_gpg_verify.html
+++ b/wiki/src/inc/stable_amd64_img_gpg_verify.html
@@ -1 +1 @@
-TZ=UTC gpg --no-options --keyid-format long --verify tails-amd64-5.10.img.sig tails-amd64-5.10.img
+TZ=UTC gpg --no-options --keyid-format long --verify tails-amd64-5.11.img.sig tails-amd64-5.11.img
diff --git a/wiki/src/inc/stable_amd64_img_sig_url.html b/wiki/src/inc/stable_amd64_img_sig_url.html
index 825443d1545..c3704498a4d 100644
--- a/wiki/src/inc/stable_amd64_img_sig_url.html
+++ b/wiki/src/inc/stable_amd64_img_sig_url.html
@@ -1 +1 @@
-https://tails.boum.org/torrents/files/tails-amd64-5.10.img.sig
+https://tails.boum.org/torrents/files/tails-amd64-5.11.img.sig
diff --git a/wiki/src/inc/stable_amd64_img_torrent_url.html b/wiki/src/inc/stable_amd64_img_torrent_url.html
index 3985d10708e..9478b9eff83 100644
--- a/wiki/src/inc/stable_amd64_img_torrent_url.html
+++ b/wiki/src/inc/stable_amd64_img_torrent_url.html
@@ -1 +1 @@
-https://tails.boum.org/torrents/files/tails-amd64-5.10.img.torrent
+https://tails.boum.org/torrents/files/tails-amd64-5.11.img.torrent
diff --git a/wiki/src/inc/stable_amd64_img_url.html b/wiki/src/inc/stable_amd64_img_url.html
index a6b1397159e..0ab29a77898 100644
--- a/wiki/src/inc/stable_amd64_img_url.html
+++ b/wiki/src/inc/stable_amd64_img_url.html
@@ -1 +1 @@
-https://download.tails.net/tails/stable/tails-amd64-5.10/tails-amd64-5.10.img
+https://download.tails.net/tails/stable/tails-amd64-5.11/tails-amd64-5.11.img
diff --git a/wiki/src/inc/stable_amd64_img_url_https.html b/wiki/src/inc/stable_amd64_img_url_https.html
index 2385081a8c1..94476397983 100644
--- a/wiki/src/inc/stable_amd64_img_url_https.html
+++ b/wiki/src/inc/stable_amd64_img_url_https.html
@@ -1 +1 @@
-https://mirrors.wikimedia.org/tails/stable/tails-amd64-5.10/tails-amd64-5.10.img
+https://mirrors.wikimedia.org/tails/stable/tails-amd64-5.11/tails-amd64-5.11.img
diff --git a/wiki/src/inc/stable_amd64_iso_gpg_verify.html b/wiki/src/inc/stable_amd64_iso_gpg_verify.html
index 86b61f6bfcc..41841493aa1 100644
--- a/wiki/src/inc/stable_amd64_iso_gpg_verify.html
+++ b/wiki/src/inc/stable_amd64_iso_gpg_verify.html
@@ -1 +1 @@
-TZ=UTC gpg --no-options --keyid-format long --verify tails-amd64-5.10.iso.sig tails-amd64-5.10.iso
+TZ=UTC gpg --no-options --keyid-format long --verify tails-amd64-5.11.iso.sig tails-amd64-5.11.iso
diff --git a/wiki/src/inc/stable_amd64_iso_sig_url.html b/wiki/src/inc/stable_amd64_iso_sig_url.html
index 5f08e75a719..4444c41ca22 100644
--- a/wiki/src/inc/stable_amd64_iso_sig_url.html
+++ b/wiki/src/inc/stable_amd64_iso_sig_url.html
@@ -1 +1 @@
-https://tails.boum.org/torrents/files/tails-amd64-5.10.iso.sig
+https://tails.boum.org/torrents/files/tails-amd64-5.11.iso.sig
diff --git a/wiki/src/inc/stable_amd64_iso_torrent_url.html b/wiki/src/inc/stable_amd64_iso_torrent_url.html
index 697b7090e44..dc7b3950c30 100644
--- a/wiki/src/inc/stable_amd64_iso_torrent_url.html
+++ b/wiki/src/inc/stable_amd64_iso_torrent_url.html
@@ -1 +1 @@
-https://tails.boum.org/torrents/files/tails-amd64-5.10.iso.torrent
+https://tails.boum.org/torrents/files/tails-amd64-5.11.iso.torrent
diff --git a/wiki/src/inc/stable_amd64_iso_url.html b/wiki/src/inc/stable_amd64_iso_url.html
index d04483d82f2..c555450f8cc 100644
--- a/wiki/src/inc/stable_amd64_iso_url.html
+++ b/wiki/src/inc/stable_amd64_iso_url.html
@@ -1 +1 @@
-https://download.tails.net/tails/stable/tails-amd64-5.10/tails-amd64-5.10.iso
+https://download.tails.net/tails/stable/tails-amd64-5.11/tails-amd64-5.11.iso
diff --git a/wiki/src/inc/stable_amd64_iso_url_https.html b/wiki/src/inc/stable_amd64_iso_url_https.html
index 521cfe11b42..e606de53550 100644
--- a/wiki/src/inc/stable_amd64_iso_url_https.html
+++ b/wiki/src/inc/stable_amd64_iso_url_https.html
@@ -1 +1 @@
-https://mirrors.wikimedia.org/tails/stable/tails-amd64-5.10/tails-amd64-5.10.iso
+https://mirrors.wikimedia.org/tails/stable/tails-amd64-5.11/tails-amd64-5.11.iso
diff --git a/wiki/src/inc/stable_amd64_version.html b/wiki/src/inc/stable_amd64_version.html
index f9ce5a96efa..21df8b319f8 100644
--- a/wiki/src/inc/stable_amd64_version.html
+++ b/wiki/src/inc/stable_amd64_version.html
@@ -1 +1 @@
-5.10
+5.11
-- 
GitLab


From b5e134554ab29256ada5f0db52b623e63ef59fb8 Mon Sep 17 00:00:00 2001
From: intrigeri <intrigeri@boum.org>
Date: Sat, 18 Mar 2023 13:36:40 +0000
Subject: [PATCH 174/187] Update website PO files.

---
 wiki/src/doc/first_steps/welcome_screen.de.po | 130 +++++-----
 wiki/src/doc/first_steps/welcome_screen.es.po | 154 +++++++-----
 wiki/src/doc/first_steps/welcome_screen.fr.po | 160 +++++++-----
 wiki/src/doc/first_steps/welcome_screen.it.po | 158 +++++++-----
 wiki/src/doc/first_steps/welcome_screen.pt.po |  86 ++++---
 wiki/src/doc/first_steps/welcome_screen.ru.po |  78 ++++--
 wiki/src/doc/persistent_storage.de.po         |  39 +--
 wiki/src/doc/persistent_storage.es.po         |  36 +--
 wiki/src/doc/persistent_storage.fr.po         |  68 +++--
 wiki/src/doc/persistent_storage.it.po         |  60 ++---
 wiki/src/doc/persistent_storage.pt.po         |  48 ++--
 wiki/src/doc/persistent_storage.ru.po         |  52 ++--
 .../additional_software.de.po                 |  47 ++--
 .../additional_software.es.po                 |  43 ++--
 .../additional_software.fr.po                 |  86 ++++---
 .../additional_software.it.po                 |  65 +++--
 .../additional_software.pt.po                 |  43 ++--
 .../additional_software.ru.po                 |  95 ++++---
 wiki/src/doc/persistent_storage/use.de.po     |  34 +--
 wiki/src/doc/persistent_storage/use.es.po     |  34 +--
 wiki/src/doc/persistent_storage/use.fr.po     |  43 ++--
 wiki/src/doc/persistent_storage/use.it.po     |  34 +--
 wiki/src/doc/persistent_storage/use.pt.po     |  34 +--
 wiki/src/doc/persistent_storage/use.ru.po     |  38 ++-
 wiki/src/doc/sensitive_documents.index.de.po  |  12 +-
 wiki/src/doc/sensitive_documents.index.es.po  |  12 +-
 wiki/src/doc/sensitive_documents.index.fr.po  |   9 +-
 wiki/src/doc/sensitive_documents.index.it.po  |  12 +-
 wiki/src/doc/sensitive_documents.index.pt.po  |  13 +-
 wiki/src/doc/sensitive_documents.index.ru.po  |  17 +-
 .../screenshot_and_screencast.de.po           | 100 ++++++++
 .../screenshot_and_screencast.es.po           | 100 ++++++++
 .../screenshot_and_screencast.fr.po           | 100 ++++++++
 .../screenshot_and_screencast.it.po           | 100 ++++++++
 .../screenshot_and_screencast.pt.po           | 100 ++++++++
 .../screenshot_and_screencast.ru.po           | 100 ++++++++
 .../inc/steps/restart_first_time.inline.de.po | 123 ++++-----
 .../inc/steps/restart_first_time.inline.es.po |  76 +++---
 .../inc/steps/restart_first_time.inline.fr.po |  78 +++---
 .../inc/steps/restart_first_time.inline.it.po | 233 ++++++------------
 .../inc/steps/restart_first_time.inline.pt.po |  28 +--
 .../inc/steps/restart_first_time.inline.ru.po | 120 ++++-----
 wiki/src/news/version_4.1.de.po               |  15 +-
 wiki/src/news/version_4.1.es.po               |  15 +-
 wiki/src/news/version_4.1.fr.po               |  25 +-
 wiki/src/news/version_4.1.it.po               |  15 +-
 wiki/src/news/version_4.1.pt.po               |  15 +-
 wiki/src/news/version_4.1.ru.po               |  15 +-
 48 files changed, 1849 insertions(+), 1249 deletions(-)
 create mode 100644 wiki/src/doc/sensitive_documents/screenshot_and_screencast.de.po
 create mode 100644 wiki/src/doc/sensitive_documents/screenshot_and_screencast.es.po
 create mode 100644 wiki/src/doc/sensitive_documents/screenshot_and_screencast.fr.po
 create mode 100644 wiki/src/doc/sensitive_documents/screenshot_and_screencast.it.po
 create mode 100644 wiki/src/doc/sensitive_documents/screenshot_and_screencast.pt.po
 create mode 100644 wiki/src/doc/sensitive_documents/screenshot_and_screencast.ru.po

diff --git a/wiki/src/doc/first_steps/welcome_screen.de.po b/wiki/src/doc/first_steps/welcome_screen.de.po
index fb0cab0f4fe..dc75ebe3f76 100644
--- a/wiki/src/doc/first_steps/welcome_screen.de.po
+++ b/wiki/src/doc/first_steps/welcome_screen.de.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: tails-l10n@boum.org\n"
-"POT-Creation-Date: 2023-03-15 18:33+0000\n"
+"POT-Creation-Date: 2023-03-18 14:36+0100\n"
 "PO-Revision-Date: 2022-12-20 10:06+0000\n"
 "Last-Translator: xin <xin@riseup.net>\n"
 "Language-Team: \n"
@@ -41,7 +41,7 @@ msgstr ""
 
 #. type: Plain text
 #, fuzzy, no-wrap
-msgid "[[!img welcome-screen.png link=no alt=\"Welcome to Tails!\"]]\n"
+msgid "[[!img welcome_screen.png link=no alt=\"Welcome to Tails!\"]]\n"
 msgstr "[[!img tails-greeter-welcome-to-tails.png link=no alt=\"Tails Greeter: Willkommen bei Tails!\"]]\n"
 
 #. type: Plain text
@@ -247,32 +247,40 @@ msgid "Persistent Storage"
 msgstr "Beständiger Speicher"
 
 #. type: Plain text
-#, fuzzy
 msgid ""
-"If a [[Persistent Storage|persistent_storage]] is detected on the USB stick, "
-"an additional section appears in the Welcome Screen below the **Language & "
-"Region** section:"
+"You can save some of your files and configuration in an encrypted "
+"[[Persistent Storage|persistent_storage]] on your Tails USB stick."
+msgstr ""
+
+#. type: Bullet: '- '
+msgid ""
+"If no Persistent Storage is detected on the USB stick, you can click the "
+"**Create Persistent Storage** button to automatically start the Persistent "
+"Storage settings after you start Tails and the desktop appears."
 msgstr ""
-"Wenn eine [[verschlüsselte beständige Datenpartition|first_steps/"
-"persistence]] auf dem USB-Stick\n"
-"erkannt wird, erscheint ein zusätzlicher Bereich unter dem Abschnitt <span "
-"class=\"guilabel\">Sprache & Region</span>\n"
-" im <span class=\"application\">Tails Greeter</span>.\n"
 
 #. type: Plain text
-#, no-wrap
-msgid "[[!img persistence.png link=\"no\" alt=\"\"]]\n"
+#, fuzzy, no-wrap
+#| msgid "[[!img persistence.png link=\"no\" alt=\"\"]]\n"
+msgid "  [[!img create_persistent_storage.png link=\"no\" alt=\"\"]]\n"
 msgstr "[[!img persistence.png link=\"no\" alt=\"\"]]\n"
 
-#. type: Plain text
+#. type: Bullet: '- '
 msgid ""
-"To unlock the Persistent Storage, enter your passphrase and click **Unlock**."
+"If a Persistent Storage is detected on the USB stick, enter your passphrase "
+"and click **Unlock Encryption** to unlock and activate your Persistent "
+"Storage."
 msgstr ""
 
+#. type: Plain text
+#, fuzzy, no-wrap
+#| msgid "[[!img persistence.png link=\"no\" alt=\"\"]]\n"
+msgid "  [[!img unlock_persistent_storage.png link=\"no\" alt=\"\"]]\n"
+msgstr "[[!img persistence.png link=\"no\" alt=\"\"]]\n"
+
 #. type: Plain text
 msgid ""
-"To learn more about the Persistent Storage, see our documentation on the "
-"[[Persistent Storage|persistent_storage]]."
+"See also our [[documentation on the Persistent Storage|persistent_storage]]."
 msgstr ""
 
 #. type: Plain text
@@ -415,6 +423,18 @@ msgstr ""
 "<tr><td><span class=\"keycap\">Alt+S</td><td><span class=\"guilabel\">Tails starten</td></tr>\n"
 "</table>\n"
 
+#, fuzzy
+#~ msgid ""
+#~ "If a [[Persistent Storage|persistent_storage]] is detected on the USB "
+#~ "stick, an additional section appears in the Welcome Screen below the "
+#~ "**Language & Region** section:"
+#~ msgstr ""
+#~ "Wenn eine [[verschlüsselte beständige Datenpartition|first_steps/"
+#~ "persistence]] auf dem USB-Stick\n"
+#~ "erkannt wird, erscheint ein zusätzlicher Bereich unter dem Abschnitt "
+#~ "<span class=\"guilabel\">Sprache & Region</span>\n"
+#~ " im <span class=\"application\">Tails Greeter</span>.\n"
+
 #, fuzzy
 #~| msgid ""
 #~| "Change the <span class=\"guilabel\">Network Configuration</span> to "
@@ -514,45 +534,45 @@ msgstr ""
 
 #~ msgid ""
 #~ "<table>\n"
-#~ "<tr><td><span class=\"keycap\">Alt+L</span></td><td><span class=\"guilabel"
-#~ "\">Language</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Alt+K</span></td><td><span class=\"guilabel"
-#~ "\">Keyboard Layout</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Alt+F</span></td><td><span class=\"guilabel"
-#~ "\">Formats</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Alt+P</span></td><td><span class=\"guilabel"
-#~ "\">Encrypted Persistent Storage</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Alt+A</span></td><td><span class=\"guilabel"
-#~ "\">Additional Settings</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Ctrl+Shift+A</span></td><td><span class="
-#~ "\"guilabel\">Administration Password</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Ctrl+Shift+M</span></td><td><span class="
-#~ "\"guilabel\">MAC Address Spoofing</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Ctrl+Shift+N</span></td><td><span class="
-#~ "\"guilabel\">Network Configuration</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Alt+S</td><td><span class=\"guilabel"
-#~ "\">Start Tails</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Alt+L</span></td><td><span "
+#~ "class=\"guilabel\">Language</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Alt+K</span></td><td><span "
+#~ "class=\"guilabel\">Keyboard Layout</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Alt+F</span></td><td><span "
+#~ "class=\"guilabel\">Formats</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Alt+P</span></td><td><span "
+#~ "class=\"guilabel\">Encrypted Persistent Storage</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Alt+A</span></td><td><span "
+#~ "class=\"guilabel\">Additional Settings</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Ctrl+Shift+A</span></td><td><span "
+#~ "class=\"guilabel\">Administration Password</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Ctrl+Shift+M</span></td><td><span "
+#~ "class=\"guilabel\">MAC Address Spoofing</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Ctrl+Shift+N</span></td><td><span "
+#~ "class=\"guilabel\">Network Configuration</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Alt+S</td><td><span "
+#~ "class=\"guilabel\">Start Tails</td></tr>\n"
 #~ "</table>\n"
 #~ msgstr ""
 #~ "<table>\n"
-#~ "<tr><td><span class=\"keycap\">Alt+L</span></td><td><span class=\"guilabel"
-#~ "\">Sprache</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Alt+K</span></td><td><span class=\"guilabel"
-#~ "\">Tastaturbelegung</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Alt+F</span></td><td><span class=\"guilabel"
-#~ "\">Formate</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Alt+P</span></td><td><span class=\"guilabel"
-#~ "\">Verschlüsselte beständige Datenpartition</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Alt+A</span></td><td><span class=\"guilabel"
-#~ "\">Zusätzliche Einstellungen</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Strg+Shift+A</span></td><td><span class="
-#~ "\"guilabel\">Administrationspasswort</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Strg+Shift+M</span></td><td><span class="
-#~ "\"guilabel\">Manipulation der MAC-Adresse</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Strg+Shift+N</span></td><td><span class="
-#~ "\"guilabel\">Netzwerkverbindung</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Alt+S</td><td><span class=\"guilabel"
-#~ "\">Tails starten</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Alt+L</span></td><td><span "
+#~ "class=\"guilabel\">Sprache</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Alt+K</span></td><td><span "
+#~ "class=\"guilabel\">Tastaturbelegung</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Alt+F</span></td><td><span "
+#~ "class=\"guilabel\">Formate</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Alt+P</span></td><td><span "
+#~ "class=\"guilabel\">Verschlüsselte beständige Datenpartition</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Alt+A</span></td><td><span "
+#~ "class=\"guilabel\">Zusätzliche Einstellungen</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Strg+Shift+A</span></td><td><span "
+#~ "class=\"guilabel\">Administrationspasswort</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Strg+Shift+M</span></td><td><span "
+#~ "class=\"guilabel\">Manipulation der MAC-Adresse</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Strg+Shift+N</span></td><td><span "
+#~ "class=\"guilabel\">Netzwerkverbindung</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Alt+S</td><td><span "
+#~ "class=\"guilabel\">Tails starten</td></tr>\n"
 #~ "</table>\n"
 
 #~ msgid "Using the <span class=\"application\">Boot Loader Menu</span>\n"
@@ -619,8 +639,8 @@ msgstr ""
 #~ "other, and separate them by a <span class=\"keycap\">Space</span>."
 #~ msgstr ""
 #~ "Falls Sie mehr als eine Bootoption hinzufügen wollen, geben Sie eine nach "
-#~ "der anderen ein und trennen Sie diese jeweils durch ein <span class="
-#~ "\"keycap\">Leerzeichen</span>."
+#~ "der anderen ein und trennen Sie diese jeweils durch ein <span "
+#~ "class=\"keycap\">Leerzeichen</span>."
 
 #~ msgid "Then press <span class=\"keycap\">Enter</span> to start Tails."
 #~ msgstr ""
diff --git a/wiki/src/doc/first_steps/welcome_screen.es.po b/wiki/src/doc/first_steps/welcome_screen.es.po
index 910da0e87e3..39a8b74e451 100644
--- a/wiki/src/doc/first_steps/welcome_screen.es.po
+++ b/wiki/src/doc/first_steps/welcome_screen.es.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tails\n"
 "Report-Msgid-Bugs-To: tails-l10n@boum.org\n"
-"POT-Creation-Date: 2023-03-15 18:33+0000\n"
+"POT-Creation-Date: 2023-03-18 14:36+0100\n"
 "PO-Revision-Date: 2023-03-09 14:28+0000\n"
 "Last-Translator: xin <xin@riseup.net>\n"
 "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/"
@@ -40,8 +40,9 @@ msgstr ""
 "que cambien algunas de las funcionalidades básicas de Tails."
 
 #. type: Plain text
-#, no-wrap
-msgid "[[!img welcome-screen.png link=no alt=\"Welcome to Tails!\"]]\n"
+#, fuzzy, no-wrap
+#| msgid "[[!img welcome-screen.png link=no alt=\"Welcome to Tails!\"]]\n"
+msgid "[[!img welcome_screen.png link=no alt=\"Welcome to Tails!\"]]\n"
 msgstr "[[!img welcome-screen.png link=no alt=\"¡Bienvenido a Tails!\"]]\n"
 
 #. type: Plain text
@@ -250,31 +251,36 @@ msgid "Persistent Storage"
 msgstr "Almacenamiento Persistente"
 
 #. type: Plain text
-#, fuzzy
-#| msgid ""
-#| "If a [[Persistent Storage|first_steps/persistence]] is detected on the "
-#| "USB stick, an additional section appears in the Welcome Screen below the "
-#| "**Language & Region** section:"
 msgid ""
-"If a [[Persistent Storage|persistent_storage]] is detected on the USB stick, "
-"an additional section appears in the Welcome Screen below the **Language & "
-"Region** section:"
+"You can save some of your files and configuration in an encrypted "
+"[[Persistent Storage|persistent_storage]] on your Tails USB stick."
+msgstr ""
+
+#. type: Bullet: '- '
+msgid ""
+"If no Persistent Storage is detected on the USB stick, you can click the "
+"**Create Persistent Storage** button to automatically start the Persistent "
+"Storage settings after you start Tails and the desktop appears."
 msgstr ""
-"Si se detecta un [[Almacenamiento Persistente|first_steps/persistence]] en "
-"la memoria USB, una sección adicional aparecerá en la Pantalla de Bienvenida "
-"debajo de **Idioma y región**:"
 
 #. type: Plain text
-#, no-wrap
-msgid "[[!img persistence.png link=\"no\" alt=\"\"]]\n"
+#, fuzzy, no-wrap
+#| msgid "[[!img persistence.png link=\"no\" alt=\"\"]]\n"
+msgid "  [[!img create_persistent_storage.png link=\"no\" alt=\"\"]]\n"
 msgstr "[[!img persistence.png link=\"no\" alt=\"\"]]\n"
 
-#. type: Plain text
+#. type: Bullet: '- '
 msgid ""
-"To unlock the Persistent Storage, enter your passphrase and click **Unlock**."
+"If a Persistent Storage is detected on the USB stick, enter your passphrase "
+"and click **Unlock Encryption** to unlock and activate your Persistent "
+"Storage."
 msgstr ""
-"Para desbloquear el Almacenamiento Persistente, ingresa tu contraseña y haz "
-"clic en **Desbloquear**."
+
+#. type: Plain text
+#, fuzzy, no-wrap
+#| msgid "[[!img persistence.png link=\"no\" alt=\"\"]]\n"
+msgid "  [[!img unlock_persistent_storage.png link=\"no\" alt=\"\"]]\n"
+msgstr "[[!img persistence.png link=\"no\" alt=\"\"]]\n"
 
 #. type: Plain text
 #, fuzzy
@@ -282,8 +288,7 @@ msgstr ""
 #| "To learn more about the Persistent Storage and create one, see our "
 #| "documentation on the [[Persistent Storage|first_steps/persistence]]."
 msgid ""
-"To learn more about the Persistent Storage, see our documentation on the "
-"[[Persistent Storage|persistent_storage]]."
+"See also our [[documentation on the Persistent Storage|persistent_storage]]."
 msgstr ""
 "Para aprender más sobre el Almacenamiento Persistente y crear uno, mira "
 "nuestra [[documentación sobre el Almacenamiento Persistente|persistence]]."
@@ -415,6 +420,27 @@ msgstr ""
 "<tr><td><span class=\"keycap\">Alt+S</td><td><span class=\"guilabel\">Lanzar Tails</td></tr>\n"
 "</table>\n"
 
+#, fuzzy
+#~| msgid ""
+#~| "If a [[Persistent Storage|first_steps/persistence]] is detected on the "
+#~| "USB stick, an additional section appears in the Welcome Screen below the "
+#~| "**Language & Region** section:"
+#~ msgid ""
+#~ "If a [[Persistent Storage|persistent_storage]] is detected on the USB "
+#~ "stick, an additional section appears in the Welcome Screen below the "
+#~ "**Language & Region** section:"
+#~ msgstr ""
+#~ "Si se detecta un [[Almacenamiento Persistente|first_steps/persistence]] "
+#~ "en la memoria USB, una sección adicional aparecerá en la Pantalla de "
+#~ "Bienvenida debajo de **Idioma y región**:"
+
+#~ msgid ""
+#~ "To unlock the Persistent Storage, enter your passphrase and click "
+#~ "**Unlock**."
+#~ msgstr ""
+#~ "Para desbloquear el Almacenamiento Persistente, ingresa tu contraseña y "
+#~ "haz clic en **Desbloquear**."
+
 #~ msgid ""
 #~ "Enable the ** *Unsafe Browser* ** to sign in to a network using a captive "
 #~ "portal before starting Tor."
@@ -524,45 +550,45 @@ msgstr ""
 
 #~ msgid ""
 #~ "<table>\n"
-#~ "<tr><td><span class=\"keycap\">Alt+L</span></td><td><span class=\"guilabel"
-#~ "\">Language</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Alt+K</span></td><td><span class=\"guilabel"
-#~ "\">Keyboard Layout</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Alt+F</span></td><td><span class=\"guilabel"
-#~ "\">Formats</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Alt+P</span></td><td><span class=\"guilabel"
-#~ "\">Encrypted Persistent Storage</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Alt+A</span></td><td><span class=\"guilabel"
-#~ "\">Additional Settings</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Ctrl+Shift+A</span></td><td><span class="
-#~ "\"guilabel\">Administration Password</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Ctrl+Shift+M</span></td><td><span class="
-#~ "\"guilabel\">MAC Address Spoofing</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Ctrl+Shift+N</span></td><td><span class="
-#~ "\"guilabel\">Network Configuration</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Alt+S</td><td><span class=\"guilabel"
-#~ "\">Start Tails</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Alt+L</span></td><td><span "
+#~ "class=\"guilabel\">Language</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Alt+K</span></td><td><span "
+#~ "class=\"guilabel\">Keyboard Layout</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Alt+F</span></td><td><span "
+#~ "class=\"guilabel\">Formats</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Alt+P</span></td><td><span "
+#~ "class=\"guilabel\">Encrypted Persistent Storage</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Alt+A</span></td><td><span "
+#~ "class=\"guilabel\">Additional Settings</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Ctrl+Shift+A</span></td><td><span "
+#~ "class=\"guilabel\">Administration Password</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Ctrl+Shift+M</span></td><td><span "
+#~ "class=\"guilabel\">MAC Address Spoofing</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Ctrl+Shift+N</span></td><td><span "
+#~ "class=\"guilabel\">Network Configuration</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Alt+S</td><td><span "
+#~ "class=\"guilabel\">Start Tails</td></tr>\n"
 #~ "</table>\n"
 #~ msgstr ""
 #~ "<table>\n"
-#~ "<tr><td><span class=\"keycap\">Alt+L</span></td><td><span class=\"guilabel"
-#~ "\">Idioma</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Alt+K</span></td><td><span class=\"guilabel"
-#~ "\">Plano de Teclado</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Alt+F</span></td><td><span class=\"guilabel"
-#~ "\">Formatos</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Alt+P</span></td><td><span class=\"guilabel"
-#~ "\">Almacenamiento cifrado persistente </td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Alt+A</span></td><td><span class=\"guilabel"
-#~ "\">Configuraciones adicionales</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Ctrl+Shift+A</span></td><td><span class="
-#~ "\"guilabel\">Contraseña de administración</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Ctrl+Shift+M</span></td><td><span class="
-#~ "\"guilabel\">Falsificación de la dirección MAC</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Ctrl+Shift+N</span></td><td><span class="
-#~ "\"guilabel\">Configuración de red</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Alt+S</td><td><span class=\"guilabel"
-#~ "\">Lanzar Tails</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Alt+L</span></td><td><span "
+#~ "class=\"guilabel\">Idioma</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Alt+K</span></td><td><span "
+#~ "class=\"guilabel\">Plano de Teclado</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Alt+F</span></td><td><span "
+#~ "class=\"guilabel\">Formatos</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Alt+P</span></td><td><span "
+#~ "class=\"guilabel\">Almacenamiento cifrado persistente </td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Alt+A</span></td><td><span "
+#~ "class=\"guilabel\">Configuraciones adicionales</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Ctrl+Shift+A</span></td><td><span "
+#~ "class=\"guilabel\">Contraseña de administración</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Ctrl+Shift+M</span></td><td><span "
+#~ "class=\"guilabel\">Falsificación de la dirección MAC</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Ctrl+Shift+N</span></td><td><span "
+#~ "class=\"guilabel\">Configuración de red</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Alt+S</td><td><span "
+#~ "class=\"guilabel\">Lanzar Tails</td></tr>\n"
 #~ "</table>\n"
 
 #~ msgid "Using the <span class=\"application\">Boot Loader Menu</span>\n"
@@ -658,12 +684,12 @@ msgstr ""
 #~ "<span class=\"application\">Escritorio GNOME</span>:\n"
 
 #~ msgid ""
-#~ "Here is a list of options that you can add to the <span class="
-#~ "\"application\">Boot\n"
+#~ "Here is a list of options that you can add to the <span "
+#~ "class=\"application\">Boot\n"
 #~ "Loader Menu</span>:\n"
 #~ msgstr ""
-#~ "Aquí hay una lista de opciones que puedes agregar al <span class="
-#~ "\"application\">Menú\n"
+#~ "Aquí hay una lista de opciones que puedes agregar al <span "
+#~ "class=\"application\">Menú\n"
 #~ "de Gestor de Arranque</span>:\n"
 
 #~ msgid ""
@@ -678,6 +704,6 @@ msgstr ""
 #~ "button.\n"
 #~ "Then click on the <span class=\"bold\">Forward</span> button.\n"
 #~ msgstr ""
-#~ "**Para definir más opciones**, haz click en el botón <span class=\"bold"
-#~ "\">Sí</span>.\n"
+#~ "**Para definir más opciones**, haz click en el botón <span "
+#~ "class=\"bold\">Sí</span>.\n"
 #~ "Luego haz click en el botón <span class=\"bold\">Avanzar</span>.\n"
diff --git a/wiki/src/doc/first_steps/welcome_screen.fr.po b/wiki/src/doc/first_steps/welcome_screen.fr.po
index 5a828e3d360..ecf2511bfb2 100644
--- a/wiki/src/doc/first_steps/welcome_screen.fr.po
+++ b/wiki/src/doc/first_steps/welcome_screen.fr.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tails\n"
 "Report-Msgid-Bugs-To: tails-l10n@boum.org\n"
-"POT-Creation-Date: 2023-03-15 18:33+0000\n"
+"POT-Creation-Date: 2023-03-18 14:36+0100\n"
 "PO-Revision-Date: 2023-02-08 20:28+0000\n"
 "Last-Translator: Chre <tor@renaudineau.org>\n"
 "Language-Team: Tails translators <tails@boum.org>\n"
@@ -40,8 +40,9 @@ msgstr ""
 "démarrage et ainsi modifier le fonctionnement de base de Tails."
 
 #. type: Plain text
-#, no-wrap
-msgid "[[!img welcome-screen.png link=no alt=\"Welcome to Tails!\"]]\n"
+#, fuzzy, no-wrap
+#| msgid "[[!img welcome-screen.png link=no alt=\"Welcome to Tails!\"]]\n"
+msgid "[[!img welcome_screen.png link=no alt=\"Welcome to Tails!\"]]\n"
 msgstr "[[!img welcome-screen.png link=no alt=\"Bienvenue dans Tails !\"]]\n"
 
 #. type: Plain text
@@ -246,30 +247,43 @@ msgstr "Stockage persistant"
 
 #. type: Plain text
 msgid ""
-"If a [[Persistent Storage|persistent_storage]] is detected on the USB stick, "
-"an additional section appears in the Welcome Screen below the **Language & "
-"Region** section:"
+"You can save some of your files and configuration in an encrypted "
+"[[Persistent Storage|persistent_storage]] on your Tails USB stick."
+msgstr ""
+
+#. type: Bullet: '- '
+msgid ""
+"If no Persistent Storage is detected on the USB stick, you can click the "
+"**Create Persistent Storage** button to automatically start the Persistent "
+"Storage settings after you start Tails and the desktop appears."
 msgstr ""
-"Si un [[stockage persistant chiffré|persistent_storage]] est détecté sur la "
-"clé USB, une section supplémentaire apparaît dans l'écran d'accueil sous la "
-"section **Langue et région** :"
 
 #. type: Plain text
-#, no-wrap
-msgid "[[!img persistence.png link=\"no\" alt=\"\"]]\n"
+#, fuzzy, no-wrap
+#| msgid "[[!img persistence.png link=\"no\" alt=\"\"]]\n"
+msgid "  [[!img create_persistent_storage.png link=\"no\" alt=\"\"]]\n"
 msgstr "[[!img persistence.png link=\"no\" alt=\"\"]]\n"
 
-#. type: Plain text
+#. type: Bullet: '- '
 msgid ""
-"To unlock the Persistent Storage, enter your passphrase and click **Unlock**."
+"If a Persistent Storage is detected on the USB stick, enter your passphrase "
+"and click **Unlock Encryption** to unlock and activate your Persistent "
+"Storage."
 msgstr ""
-"Pour déverrouiller le stockage persistant, saisissez votre phrase de passe "
-"et cliquez sur **Déverrouiller**."
 
 #. type: Plain text
+#, fuzzy, no-wrap
+#| msgid "[[!img persistence.png link=\"no\" alt=\"\"]]\n"
+msgid "  [[!img unlock_persistent_storage.png link=\"no\" alt=\"\"]]\n"
+msgstr "[[!img persistence.png link=\"no\" alt=\"\"]]\n"
+
+#. type: Plain text
+#, fuzzy
+#| msgid ""
+#| "To learn more about the Persistent Storage, see our documentation on the "
+#| "[[Persistent Storage|persistent_storage]]."
 msgid ""
-"To learn more about the Persistent Storage, see our documentation on the "
-"[[Persistent Storage|persistent_storage]]."
+"See also our [[documentation on the Persistent Storage|persistent_storage]]."
 msgstr ""
 "Pour en savoir plus sur le stockage persistant, consultez notre "
 "documentation sur le [[stockage persistant|persistent_storage]]."
@@ -403,6 +417,22 @@ msgstr ""
 "<tr><td><span class=\"keycap\">Alt+D</td><td><span class=\"guilabel\">Démarrer Tails</td></tr>\n"
 "</table>\n"
 
+#~ msgid ""
+#~ "If a [[Persistent Storage|persistent_storage]] is detected on the USB "
+#~ "stick, an additional section appears in the Welcome Screen below the "
+#~ "**Language & Region** section:"
+#~ msgstr ""
+#~ "Si un [[stockage persistant chiffré|persistent_storage]] est détecté sur "
+#~ "la clé USB, une section supplémentaire apparaît dans l'écran d'accueil "
+#~ "sous la section **Langue et région** :"
+
+#~ msgid ""
+#~ "To unlock the Persistent Storage, enter your passphrase and click "
+#~ "**Unlock**."
+#~ msgstr ""
+#~ "Pour déverrouiller le stockage persistant, saisissez votre phrase de "
+#~ "passe et cliquez sur **Déverrouiller**."
+
 #~ msgid ""
 #~ "Enable the ** *Unsafe Browser* ** to sign in to a network using a captive "
 #~ "portal before starting Tor."
@@ -501,45 +531,45 @@ msgstr ""
 
 #~ msgid ""
 #~ "<table>\n"
-#~ "<tr><td><span class=\"keycap\">Alt+L</span></td><td><span class=\"guilabel"
-#~ "\">Language</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Alt+K</span></td><td><span class=\"guilabel"
-#~ "\">Keyboard Layout</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Alt+F</span></td><td><span class=\"guilabel"
-#~ "\">Formats</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Alt+P</span></td><td><span class=\"guilabel"
-#~ "\">Encrypted Persistent Storage</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Alt+A</span></td><td><span class=\"guilabel"
-#~ "\">Additional Settings</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Ctrl+Shift+A</span></td><td><span class="
-#~ "\"guilabel\">Administration Password</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Ctrl+Shift+M</span></td><td><span class="
-#~ "\"guilabel\">MAC Address Spoofing</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Ctrl+Shift+N</span></td><td><span class="
-#~ "\"guilabel\">Network Configuration</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Alt+S</td><td><span class=\"guilabel"
-#~ "\">Start Tails</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Alt+L</span></td><td><span "
+#~ "class=\"guilabel\">Language</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Alt+K</span></td><td><span "
+#~ "class=\"guilabel\">Keyboard Layout</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Alt+F</span></td><td><span "
+#~ "class=\"guilabel\">Formats</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Alt+P</span></td><td><span "
+#~ "class=\"guilabel\">Encrypted Persistent Storage</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Alt+A</span></td><td><span "
+#~ "class=\"guilabel\">Additional Settings</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Ctrl+Shift+A</span></td><td><span "
+#~ "class=\"guilabel\">Administration Password</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Ctrl+Shift+M</span></td><td><span "
+#~ "class=\"guilabel\">MAC Address Spoofing</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Ctrl+Shift+N</span></td><td><span "
+#~ "class=\"guilabel\">Network Configuration</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Alt+S</td><td><span "
+#~ "class=\"guilabel\">Start Tails</td></tr>\n"
 #~ "</table>\n"
 #~ msgstr ""
 #~ "<table>\n"
-#~ "<tr><td><span class=\"keycap\">Alt+L</span></td><td><span class=\"guilabel"
-#~ "\">Langue</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Alt+C</span></td><td><span class=\"guilabel"
-#~ "\">Disposition du clavier</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Alt+F</span></td><td><span class=\"guilabel"
-#~ "\">Formats</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Alt+S</span></td><td><span class=\"guilabel"
-#~ "\">Stockage persistant chiffré</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Alt+P</span></td><td><span class=\"guilabel"
-#~ "\">Paramètres supplémentaires</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Ctrl+Shift+M</span></td><td><span class="
-#~ "\"guilabel\">Mot de passe d'administration</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Ctrl+Shift+U</span></td><td><span class="
-#~ "\"guilabel\">Usurpation d'adresse MAC</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Ctrl+Shift+R</span></td><td><span class="
-#~ "\"guilabel\">Configuration du réseau</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Alt+D</td><td><span class=\"guilabel"
-#~ "\">Démarrer Tails</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Alt+L</span></td><td><span "
+#~ "class=\"guilabel\">Langue</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Alt+C</span></td><td><span "
+#~ "class=\"guilabel\">Disposition du clavier</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Alt+F</span></td><td><span "
+#~ "class=\"guilabel\">Formats</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Alt+S</span></td><td><span "
+#~ "class=\"guilabel\">Stockage persistant chiffré</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Alt+P</span></td><td><span "
+#~ "class=\"guilabel\">Paramètres supplémentaires</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Ctrl+Shift+M</span></td><td><span "
+#~ "class=\"guilabel\">Mot de passe d'administration</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Ctrl+Shift+U</span></td><td><span "
+#~ "class=\"guilabel\">Usurpation d'adresse MAC</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Ctrl+Shift+R</span></td><td><span "
+#~ "class=\"guilabel\">Configuration du réseau</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Alt+D</td><td><span "
+#~ "class=\"guilabel\">Démarrer Tails</td></tr>\n"
 #~ "</table>\n"
 
 #~ msgid "Using the <span class=\"application\">Boot Loader Menu</span>\n"
@@ -577,10 +607,10 @@ msgstr ""
 #~ "<span class=\"application\">Boot Loader Menu</span> appears. A list of "
 #~ "boot options appears at the bottom of the screen."
 #~ msgstr ""
-#~ "Pour ajouter une option de démarrage, appuyez sur <span class=\"keycap"
-#~ "\">Tab</span> lorsque le <span class=\"application\">menu du chargeur "
-#~ "d’amorçage</span> apparaît. Une liste d'options de démarrage apparaît au "
-#~ "bas de l'écran."
+#~ "Pour ajouter une option de démarrage, appuyez sur <span "
+#~ "class=\"keycap\">Tab</span> lorsque le <span class=\"application\">menu "
+#~ "du chargeur d’amorçage</span> apparaît. Une liste d'options de démarrage "
+#~ "apparaît au bas de l'écran."
 
 #~ msgid ""
 #~ "[[!img boot-menu-with-options.png link=no alt=\"Black screen with Tails\n"
@@ -638,8 +668,8 @@ msgstr ""
 #~ msgid ""
 #~ "**To start Tails in languages other than English**, select the one you\n"
 #~ "want from the menu at the bottom of the screen. You can also adapt\n"
-#~ "your country and keyboard layout. When you do that, <span class="
-#~ "\"application\">Tails Greeter</span> itself\n"
+#~ "your country and keyboard layout. When you do that, <span "
+#~ "class=\"application\">Tails Greeter</span> itself\n"
 #~ "switches language.\n"
 #~ msgstr ""
 #~ "**Pour lancer Tails dans une autre langue que l'anglais**, sélectionner "
@@ -655,8 +685,8 @@ msgstr ""
 #~ "button.\n"
 #~ "Then click on the <span class=\"bold\">Forward</span> button.\n"
 #~ msgstr ""
-#~ "**Pour définir plus d'options**, cliquez sur le bouton <span class=\"bold"
-#~ "\">Oui</span>.\n"
+#~ "**Pour définir plus d'options**, cliquez sur le bouton <span "
+#~ "class=\"bold\">Oui</span>.\n"
 #~ "Cliquez ensuite sur le bouton <span class=\"bold\">Suivant</span>.\n"
 
 #~ msgid ""
@@ -672,12 +702,12 @@ msgstr ""
 #~ "  - [[Persistance chiffrée|doc/first_steps/persistence/use]]\n"
 
 #~ msgid ""
-#~ "Here is a list of options that you can add to the <span class="
-#~ "\"application\">Boot\n"
+#~ "Here is a list of options that you can add to the <span "
+#~ "class=\"application\">Boot\n"
 #~ "Loader Menu</span>:\n"
 #~ msgstr ""
-#~ "Voici une liste d'options que vous pouvez ajouter au <span class="
-#~ "\"application\">menu\n"
+#~ "Voici une liste d'options que vous pouvez ajouter au <span "
+#~ "class=\"application\">menu\n"
 #~ "du chargeur d’amorçage</span>:\n"
 
 #~ msgid "Problems booting?\n"
diff --git a/wiki/src/doc/first_steps/welcome_screen.it.po b/wiki/src/doc/first_steps/welcome_screen.it.po
index 70adf6eb7fb..60449bb7866 100644
--- a/wiki/src/doc/first_steps/welcome_screen.it.po
+++ b/wiki/src/doc/first_steps/welcome_screen.it.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tails italiano\n"
 "Report-Msgid-Bugs-To: tails-l10n@boum.org\n"
-"POT-Creation-Date: 2023-03-15 18:33+0000\n"
+"POT-Creation-Date: 2023-03-18 14:36+0100\n"
 "PO-Revision-Date: 2022-01-31 19:19+0000\n"
 "Last-Translator: _ignifugo <ignifugo@insicuri.net>\n"
 "Language-Team: ita <transitails@inventati.org>\n"
@@ -41,8 +41,9 @@ msgstr ""
 
 # Più opzioni? Pulsante Si/No e Login
 #. type: Plain text
-#, no-wrap
-msgid "[[!img welcome-screen.png link=no alt=\"Welcome to Tails!\"]]\n"
+#, fuzzy, no-wrap
+#| msgid "[[!img welcome-screen.png link=no alt=\"Welcome to Tails!\"]]\n"
+msgid "[[!img welcome_screen.png link=no alt=\"Welcome to Tails!\"]]\n"
 msgstr "[[!img welcome-screen.png link=no alt=\"Benvenuta in Tails!\"]]\n"
 
 #. type: Plain text
@@ -244,38 +245,40 @@ msgid "Persistent Storage"
 msgstr "Archivio Persistente"
 
 #. type: Plain text
-#, fuzzy
-#| msgid ""
-#| "If an [[encrypted persistence storage]] is detected on the USB stick, an\n"
-#| "additional section appears in <span class=\"application\">Tails\n"
-#| "Greeter</span> below the <span class=\"guilabel\">Language & Region</"
-#| "span>\n"
-#| "section:\n"
 msgid ""
-"If a [[Persistent Storage|persistent_storage]] is detected on the USB stick, "
-"an additional section appears in the Welcome Screen below the **Language & "
-"Region** section:"
+"You can save some of your files and configuration in an encrypted "
+"[[Persistent Storage|persistent_storage]] on your Tails USB stick."
+msgstr ""
+
+#. type: Bullet: '- '
+msgid ""
+"If no Persistent Storage is detected on the USB stick, you can click the "
+"**Create Persistent Storage** button to automatically start the Persistent "
+"Storage settings after you start Tails and the desktop appears."
 msgstr ""
-"Se una viene trovata un [[encrypted persistence storage]] all'interno di una "
-"chiavetta USB, una\n"
-"sezione aggiuntiva compare in <span class=\"application\">Tails\n"
-"Greeter</span> sotto l'opzione <span class=\"guilabel\">Language & Region</"
-"span>\n"
 
 #. type: Plain text
-#, no-wrap
-msgid "[[!img persistence.png link=\"no\" alt=\"\"]]\n"
+#, fuzzy, no-wrap
+#| msgid "[[!img persistence.png link=\"no\" alt=\"\"]]\n"
+msgid "  [[!img create_persistent_storage.png link=\"no\" alt=\"\"]]\n"
 msgstr "[[!img persistence.png link=\"no\" alt=\"\"]]\n"
 
-#. type: Plain text
+#. type: Bullet: '- '
 msgid ""
-"To unlock the Persistent Storage, enter your passphrase and click **Unlock**."
+"If a Persistent Storage is detected on the USB stick, enter your passphrase "
+"and click **Unlock Encryption** to unlock and activate your Persistent "
+"Storage."
 msgstr ""
 
+#. type: Plain text
+#, fuzzy, no-wrap
+#| msgid "[[!img persistence.png link=\"no\" alt=\"\"]]\n"
+msgid "  [[!img unlock_persistent_storage.png link=\"no\" alt=\"\"]]\n"
+msgstr "[[!img persistence.png link=\"no\" alt=\"\"]]\n"
+
 #. type: Plain text
 msgid ""
-"To learn more about the Persistent Storage, see our documentation on the "
-"[[Persistent Storage|persistent_storage]]."
+"See also our [[documentation on the Persistent Storage|persistent_storage]]."
 msgstr ""
 
 #. type: Plain text
@@ -426,6 +429,25 @@ msgstr ""
 "<tr><td><span class=\"keycap\">Alt+S</td><td><span class=\"guilabel\">Start Tails</td></tr>\n"
 "</table>\n"
 
+#, fuzzy
+#~| msgid ""
+#~| "If an [[encrypted persistence storage]] is detected on the USB stick, "
+#~| "an\n"
+#~| "additional section appears in <span class=\"application\">Tails\n"
+#~| "Greeter</span> below the <span class=\"guilabel\">Language & Region</"
+#~| "span>\n"
+#~| "section:\n"
+#~ msgid ""
+#~ "If a [[Persistent Storage|persistent_storage]] is detected on the USB "
+#~ "stick, an additional section appears in the Welcome Screen below the "
+#~ "**Language & Region** section:"
+#~ msgstr ""
+#~ "Se una viene trovata un [[encrypted persistence storage]] all'interno di "
+#~ "una chiavetta USB, una\n"
+#~ "sezione aggiuntiva compare in <span class=\"application\">Tails\n"
+#~ "Greeter</span> sotto l'opzione <span class=\"guilabel\">Language & "
+#~ "Region</span>\n"
+
 #, fuzzy
 #~| msgid ""
 #~| "Change the <span class=\"guilabel\">Network Configuration</span> to "
@@ -516,45 +538,45 @@ msgstr ""
 
 #~ msgid ""
 #~ "<table>\n"
-#~ "<tr><td><span class=\"keycap\">Alt+L</span></td><td><span class=\"guilabel"
-#~ "\">Language</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Alt+K</span></td><td><span class=\"guilabel"
-#~ "\">Keyboard Layout</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Alt+F</span></td><td><span class=\"guilabel"
-#~ "\">Formats</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Alt+P</span></td><td><span class=\"guilabel"
-#~ "\">Encrypted Persistent Storage</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Alt+A</span></td><td><span class=\"guilabel"
-#~ "\">Additional Settings</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Ctrl+Shift+A</span></td><td><span class="
-#~ "\"guilabel\">Administration Password</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Ctrl+Shift+M</span></td><td><span class="
-#~ "\"guilabel\">MAC Address Spoofing</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Ctrl+Shift+N</span></td><td><span class="
-#~ "\"guilabel\">Network Configuration</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Alt+S</td><td><span class=\"guilabel"
-#~ "\">Start Tails</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Alt+L</span></td><td><span "
+#~ "class=\"guilabel\">Language</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Alt+K</span></td><td><span "
+#~ "class=\"guilabel\">Keyboard Layout</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Alt+F</span></td><td><span "
+#~ "class=\"guilabel\">Formats</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Alt+P</span></td><td><span "
+#~ "class=\"guilabel\">Encrypted Persistent Storage</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Alt+A</span></td><td><span "
+#~ "class=\"guilabel\">Additional Settings</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Ctrl+Shift+A</span></td><td><span "
+#~ "class=\"guilabel\">Administration Password</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Ctrl+Shift+M</span></td><td><span "
+#~ "class=\"guilabel\">MAC Address Spoofing</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Ctrl+Shift+N</span></td><td><span "
+#~ "class=\"guilabel\">Network Configuration</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Alt+S</td><td><span "
+#~ "class=\"guilabel\">Start Tails</td></tr>\n"
 #~ "</table>\n"
 #~ msgstr ""
 #~ "<table>\n"
-#~ "<tr><td><span class=\"keycap\">Alt+L</span></td><td><span class=\"guilabel"
-#~ "\">Language</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Alt+K</span></td><td><span class=\"guilabel"
-#~ "\">Keyboard Layout</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Alt+F</span></td><td><span class=\"guilabel"
-#~ "\">Formats</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Alt+P</span></td><td><span class=\"guilabel"
-#~ "\">Encrypted Persistent Storage</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Alt+A</span></td><td><span class=\"guilabel"
-#~ "\">Additional Settings</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Ctrl+Shift+A</span></td><td><span class="
-#~ "\"guilabel\">Administration Password</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Ctrl+Shift+M</span></td><td><span class="
-#~ "\"guilabel\">MAC Address Spoofing</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Ctrl+Shift+N</span></td><td><span class="
-#~ "\"guilabel\">Network Configuration</td></tr>\n"
-#~ "<tr><td><span class=\"keycap\">Alt+S</td><td><span class=\"guilabel"
-#~ "\">Start Tails</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Alt+L</span></td><td><span "
+#~ "class=\"guilabel\">Language</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Alt+K</span></td><td><span "
+#~ "class=\"guilabel\">Keyboard Layout</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Alt+F</span></td><td><span "
+#~ "class=\"guilabel\">Formats</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Alt+P</span></td><td><span "
+#~ "class=\"guilabel\">Encrypted Persistent Storage</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Alt+A</span></td><td><span "
+#~ "class=\"guilabel\">Additional Settings</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Ctrl+Shift+A</span></td><td><span "
+#~ "class=\"guilabel\">Administration Password</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Ctrl+Shift+M</span></td><td><span "
+#~ "class=\"guilabel\">MAC Address Spoofing</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Ctrl+Shift+N</span></td><td><span "
+#~ "class=\"guilabel\">Network Configuration</td></tr>\n"
+#~ "<tr><td><span class=\"keycap\">Alt+S</td><td><span "
+#~ "class=\"guilabel\">Start Tails</td></tr>\n"
 #~ "</table>\n"
 
 #~ msgid ""
@@ -659,8 +681,8 @@ msgstr ""
 #~ msgid ""
 #~ "**To start Tails in languages other than English**, select the one you\n"
 #~ "want from the menu at the bottom of the screen. You can also adapt\n"
-#~ "your country and keyboard layout. When you do that, <span class="
-#~ "\"application\">Tails Greeter</span> itself\n"
+#~ "your country and keyboard layout. When you do that, <span "
+#~ "class=\"application\">Tails Greeter</span> itself\n"
 #~ "switches language.\n"
 #~ msgstr ""
 #~ "**Per avviare Tails in una lingua diversa dall'inglese**, seleziona "
@@ -675,8 +697,8 @@ msgstr ""
 #~ "button.\n"
 #~ "Then click on the <span class=\"bold\">Forward</span> button.\n"
 #~ msgstr ""
-#~ "**Per inserire più opzioni**, clicca sul pulsante <span class=\"bold"
-#~ "\">Sì</span>.\n"
+#~ "**Per inserire più opzioni**, clicca sul pulsante <span "
+#~ "class=\"bold\">Sì</span>.\n"
 #~ "Poi clicca sul pulsante <span class=\"bold\">Indietro</span>.\n"
 
 #~ msgid ""
@@ -693,12 +715,12 @@ msgstr ""
 
 #, fuzzy
 #~ msgid ""
-#~ "Here is a list of options that you can add to the <span class="
-#~ "\"application\">Boot\n"
+#~ "Here is a list of options that you can add to the <span "
+#~ "class=\"application\">Boot\n"
 #~ "Loader Menu</span>:\n"
 #~ msgstr ""
-#~ "Qui c'è una lista di opzioni che puoi aggiungere al <span class="
-#~ "\"application\">menù\n"
+#~ "Qui c'è una lista di opzioni che puoi aggiungere al <span "
+#~ "class=\"application\">menù\n"
 #~ "di avvio</span>:\n"
 
 #~ msgid "Problems booting?\n"
diff --git a/wiki/src/doc/first_steps/welcome_screen.pt.po b/wiki/src/doc/first_steps/welcome_screen.pt.po
index 8923efe62e3..24ae2194531 100644
--- a/wiki/src/doc/first_steps/welcome_screen.pt.po
+++ b/wiki/src/doc/first_steps/welcome_screen.pt.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: tails-l10n@boum.org\n"
-"POT-Creation-Date: 2023-03-15 18:33+0000\n"
+"POT-Creation-Date: 2023-03-18 14:36+0100\n"
 "PO-Revision-Date: 2022-06-15 01:07+0000\n"
 "Last-Translator: drebs <drebs@riseup.net>\n"
 "Language-Team: Portuguese <http://translate.tails.boum.org/projects/tails/"
@@ -41,8 +41,9 @@ msgstr ""
 "inicialização que alteram algumas das funções básicas do Tails."
 
 #. type: Plain text
-#, no-wrap
-msgid "[[!img welcome-screen.png link=no alt=\"Welcome to Tails!\"]]\n"
+#, fuzzy, no-wrap
+#| msgid "[[!img welcome-screen.png link=no alt=\"Welcome to Tails!\"]]\n"
+msgid "[[!img welcome_screen.png link=no alt=\"Welcome to Tails!\"]]\n"
 msgstr "[[!img welcome-screen.png link=no alt=\"Boas-vindas ao Tails!\"]]\n"
 
 #. type: Plain text
@@ -251,31 +252,36 @@ msgid "Persistent Storage"
 msgstr "Armazenamento Persistente"
 
 #. type: Plain text
-#, fuzzy
-#| msgid ""
-#| "If a [[Persistent Storage|first_steps/persistence]] is detected on the "
-#| "USB stick, an additional section appears in the Welcome Screen below the "
-#| "**Language & Region** section:"
 msgid ""
-"If a [[Persistent Storage|persistent_storage]] is detected on the USB stick, "
-"an additional section appears in the Welcome Screen below the **Language & "
-"Region** section:"
+"You can save some of your files and configuration in an encrypted "
+"[[Persistent Storage|persistent_storage]] on your Tails USB stick."
+msgstr ""
+
+#. type: Bullet: '- '
+msgid ""
+"If no Persistent Storage is detected on the USB stick, you can click the "
+"**Create Persistent Storage** button to automatically start the Persistent "
+"Storage settings after you start Tails and the desktop appears."
 msgstr ""
-"Se um [[Armazenamento Persistente|first_steps/persistence]] for detectado no "
-"pendrive USB, uma opção adicional aparecerá na Tela de Boas-vindas, abaixo "
-"da opção de **Idioma e região**:"
 
 #. type: Plain text
-#, no-wrap
-msgid "[[!img persistence.png link=\"no\" alt=\"\"]]\n"
+#, fuzzy, no-wrap
+#| msgid "[[!img persistence.png link=\"no\" alt=\"\"]]\n"
+msgid "  [[!img create_persistent_storage.png link=\"no\" alt=\"\"]]\n"
 msgstr "[[!img persistence.png link=\"no\" alt=\"\"]]\n"
 
-#. type: Plain text
+#. type: Bullet: '- '
 msgid ""
-"To unlock the Persistent Storage, enter your passphrase and click **Unlock**."
+"If a Persistent Storage is detected on the USB stick, enter your passphrase "
+"and click **Unlock Encryption** to unlock and activate your Persistent "
+"Storage."
 msgstr ""
-"Para desbloquear o Armazenamento Persistente, insira a sua senha e clique "
-"**Destravar**."
+
+#. type: Plain text
+#, fuzzy, no-wrap
+#| msgid "[[!img persistence.png link=\"no\" alt=\"\"]]\n"
+msgid "  [[!img unlock_persistent_storage.png link=\"no\" alt=\"\"]]\n"
+msgstr "[[!img persistence.png link=\"no\" alt=\"\"]]\n"
 
 #. type: Plain text
 #, fuzzy
@@ -283,8 +289,7 @@ msgstr ""
 #| "To learn more about the Persistent Storage and create one, see our "
 #| "documentation on the [[Persistent Storage|first_steps/persistence]]."
 msgid ""
-"To learn more about the Persistent Storage, see our documentation on the "
-"[[Persistent Storage|persistent_storage]]."
+"See also our [[documentation on the Persistent Storage|persistent_storage]]."
 msgstr ""
 "Para saber mais sobre o Armazenamento Persistente e como criar um, veja "
 "nossa documentação sobre o [[Armazenamento Persistente|first_steps/"
@@ -418,6 +423,27 @@ msgstr ""
 "<tr><td><span class=\"keycap\">Alt+S</td><td><span class=\"guilabel\">Iniciar Tails</td></tr>\n"
 "</table>\n"
 
+#, fuzzy
+#~| msgid ""
+#~| "If a [[Persistent Storage|first_steps/persistence]] is detected on the "
+#~| "USB stick, an additional section appears in the Welcome Screen below the "
+#~| "**Language & Region** section:"
+#~ msgid ""
+#~ "If a [[Persistent Storage|persistent_storage]] is detected on the USB "
+#~ "stick, an additional section appears in the Welcome Screen below the "
+#~ "**Language & Region** section:"
+#~ msgstr ""
+#~ "Se um [[Armazenamento Persistente|first_steps/persistence]] for detectado "
+#~ "no pendrive USB, uma opção adicional aparecerá na Tela de Boas-vindas, "
+#~ "abaixo da opção de **Idioma e região**:"
+
+#~ msgid ""
+#~ "To unlock the Persistent Storage, enter your passphrase and click "
+#~ "**Unlock**."
+#~ msgstr ""
+#~ "Para desbloquear o Armazenamento Persistente, insira a sua senha e clique "
+#~ "**Destravar**."
+
 #~ msgid ""
 #~ "Enable the ** *Unsafe Browser* ** to sign in to a network using a captive "
 #~ "portal before starting Tor."
@@ -538,8 +564,8 @@ msgstr ""
 #~ msgid ""
 #~ "**To start Tails in languages other than English**, select the one you\n"
 #~ "want from the menu at the bottom of the screen. You can also adapt\n"
-#~ "your country and keyboard layout. When you do that, <span class="
-#~ "\"application\">Tails Greeter</span> itself\n"
+#~ "your country and keyboard layout. When you do that, <span "
+#~ "class=\"application\">Tails Greeter</span> itself\n"
 #~ "switches language.\n"
 #~ msgstr ""
 #~ "**Para iniciar o Tails em outros idiomas que não inglês**, selecione o\n"
@@ -553,8 +579,8 @@ msgstr ""
 #~ "button.\n"
 #~ "Then click on the <span class=\"bold\">Forward</span> button.\n"
 #~ msgstr ""
-#~ "**Para configurar mais opções**, clique no botão <span class=\"bold"
-#~ "\">Yes</span>.\n"
+#~ "**Para configurar mais opções**, clique no botão <span "
+#~ "class=\"bold\">Yes</span>.\n"
 #~ "Em seguida clique no botão <span class=\"bold\">Forward</span>.\n"
 
 #, fuzzy
@@ -569,12 +595,12 @@ msgstr ""
 
 #, fuzzy
 #~ msgid ""
-#~ "Here is a list of options that you can add to the <span class="
-#~ "\"application\">Boot\n"
+#~ "Here is a list of options that you can add to the <span "
+#~ "class=\"application\">Boot\n"
 #~ "Loader Menu</span>:\n"
 #~ msgstr ""
-#~ "Aqui está uma lista de opções que você pode adicionar ao <span class="
-#~ "\"application\">menu\n"
+#~ "Aqui está uma lista de opções que você pode adicionar ao <span "
+#~ "class=\"application\">menu\n"
 #~ "de boot</span>:\n"
 
 #~ msgid "Problems booting?\n"
diff --git a/wiki/src/doc/first_steps/welcome_screen.ru.po b/wiki/src/doc/first_steps/welcome_screen.ru.po
index b07835c30de..37a7764a64b 100644
--- a/wiki/src/doc/first_steps/welcome_screen.ru.po
+++ b/wiki/src/doc/first_steps/welcome_screen.ru.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: tails-l10n@boum.org\n"
-"POT-Creation-Date: 2023-03-15 18:33+0000\n"
+"POT-Creation-Date: 2023-03-18 14:36+0100\n"
 "PO-Revision-Date: 2021-07-22 06:05+0000\n"
 "Last-Translator: dedmoroz <cj75300@gmail.com>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,8 +15,8 @@ msgstr ""
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
-"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
+"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
 "X-Generator: Weblate 3.11.3\n"
 
 #. type: Plain text
@@ -40,8 +40,9 @@ msgstr ""
 "настроек Tails по умолчанию."
 
 #. type: Plain text
-#, no-wrap
-msgid "[[!img welcome-screen.png link=no alt=\"Welcome to Tails!\"]]\n"
+#, fuzzy, no-wrap
+#| msgid "[[!img welcome-screen.png link=no alt=\"Welcome to Tails!\"]]\n"
+msgid "[[!img welcome_screen.png link=no alt=\"Welcome to Tails!\"]]\n"
 msgstr "[[!img welcome-screen.png link=no alt=\"Добро пожаловать в Tails!\"]]\n"
 
 #. type: Plain text
@@ -231,31 +232,36 @@ msgid "Persistent Storage"
 msgstr "Постоянное хранилище"
 
 #. type: Plain text
-#, fuzzy
-#| msgid ""
-#| "If a [[Persistent Storage|first_steps/persistence]] is detected on the "
-#| "USB stick, an additional section appears in the Welcome Screen below the "
-#| "**Language & Region** section:"
 msgid ""
-"If a [[Persistent Storage|persistent_storage]] is detected on the USB stick, "
-"an additional section appears in the Welcome Screen below the **Language & "
-"Region** section:"
+"You can save some of your files and configuration in an encrypted "
+"[[Persistent Storage|persistent_storage]] on your Tails USB stick."
+msgstr ""
+
+#. type: Bullet: '- '
+msgid ""
+"If no Persistent Storage is detected on the USB stick, you can click the "
+"**Create Persistent Storage** button to automatically start the Persistent "
+"Storage settings after you start Tails and the desktop appears."
 msgstr ""
-"Если на флешке обнаружено [[Постоянное хранилище|first_steps/persistence]], "
-"после настроек **языка и региона** на экране приветствия появится ещё одна "
-"строка:"
 
 #. type: Plain text
-#, no-wrap
-msgid "[[!img persistence.png link=\"no\" alt=\"\"]]\n"
+#, fuzzy, no-wrap
+#| msgid "[[!img persistence.png link=\"no\" alt=\"\"]]\n"
+msgid "  [[!img create_persistent_storage.png link=\"no\" alt=\"\"]]\n"
 msgstr "[[!img persistence.png link=\"no\" alt=\"\"]]\n"
 
-#. type: Plain text
+#. type: Bullet: '- '
 msgid ""
-"To unlock the Persistent Storage, enter your passphrase and click **Unlock**."
+"If a Persistent Storage is detected on the USB stick, enter your passphrase "
+"and click **Unlock Encryption** to unlock and activate your Persistent "
+"Storage."
 msgstr ""
-"Для разблокирования Постоянного хранилища введите свой пароль и нажмите "
-"**Unlock** (разблокировать)."
+
+#. type: Plain text
+#, fuzzy, no-wrap
+#| msgid "[[!img persistence.png link=\"no\" alt=\"\"]]\n"
+msgid "  [[!img unlock_persistent_storage.png link=\"no\" alt=\"\"]]\n"
+msgstr "[[!img persistence.png link=\"no\" alt=\"\"]]\n"
 
 #. type: Plain text
 #, fuzzy
@@ -265,8 +271,7 @@ msgstr ""
 #| "about the Persistent Storage, see our [[documentation on the Persistent "
 #| "Storage|persistence]]."
 msgid ""
-"To learn more about the Persistent Storage, see our documentation on the "
-"[[Persistent Storage|persistent_storage]]."
+"See also our [[documentation on the Persistent Storage|persistent_storage]]."
 msgstr ""
 "Для создания Постоянного хранилища см. [[наши инструкции|first_steps/"
 "persistence/configure]]. Подробнее о Постоянном хранилище можно прочесть [[в "
@@ -394,6 +399,27 @@ msgstr ""
 "<tr><td><span class=\"keycap\">Alt+S</td><td><span class=\"guilabel\">Start Tails</td></tr>\n"
 "</table>\n"
 
+#, fuzzy
+#~| msgid ""
+#~| "If a [[Persistent Storage|first_steps/persistence]] is detected on the "
+#~| "USB stick, an additional section appears in the Welcome Screen below the "
+#~| "**Language & Region** section:"
+#~ msgid ""
+#~ "If a [[Persistent Storage|persistent_storage]] is detected on the USB "
+#~ "stick, an additional section appears in the Welcome Screen below the "
+#~ "**Language & Region** section:"
+#~ msgstr ""
+#~ "Если на флешке обнаружено [[Постоянное хранилище|first_steps/"
+#~ "persistence]], после настроек **языка и региона** на экране приветствия "
+#~ "появится ещё одна строка:"
+
+#~ msgid ""
+#~ "To unlock the Persistent Storage, enter your passphrase and click "
+#~ "**Unlock**."
+#~ msgstr ""
+#~ "Для разблокирования Постоянного хранилища введите свой пароль и нажмите "
+#~ "**Unlock** (разблокировать)."
+
 #~ msgid ""
 #~ "Enable the ** *Unsafe Browser* ** to sign in to a network using a captive "
 #~ "portal before starting Tor."
@@ -512,8 +538,8 @@ msgstr ""
 #~ "other, and separate them by a <span class=\"keycap\">Space</span>."
 #~ msgstr ""
 #~ "Falls Sie mehr als eine Bootoption hinzufügen wollen, geben Sie eine nach "
-#~ "der anderen ein und trennen Sie diese jeweils durch ein <span class="
-#~ "\"keycap\">Leerzeichen</span>."
+#~ "der anderen ein und trennen Sie diese jeweils durch ein <span "
+#~ "class=\"keycap\">Leerzeichen</span>."
 
 #~ msgid "Then press <span class=\"keycap\">Enter</span> to start Tails."
 #~ msgstr ""
diff --git a/wiki/src/doc/persistent_storage.de.po b/wiki/src/doc/persistent_storage.de.po
index f9e32f1aad9..51aec0c3b53 100644
--- a/wiki/src/doc/persistent_storage.de.po
+++ b/wiki/src/doc/persistent_storage.de.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tails\n"
 "Report-Msgid-Bugs-To: tails-l10n@boum.org\n"
-"POT-Creation-Date: 2023-03-11 14:37+0000\n"
+"POT-Creation-Date: 2023-03-18 14:36+0100\n"
 "PO-Revision-Date: 2022-12-20 10:06+0000\n"
 "Last-Translator: xin <xin@riseup.net>\n"
 "Language-Team: Tails Translators <tails-l10n@boum.org>\n"
@@ -29,8 +29,8 @@ msgstr ""
 
 #. type: Plain text
 msgid ""
-"But you can save some of your files and configuration in a Persistent "
-"Storage on your Tails USB stick, for example:"
+"But you can save some of your files and configuration in an encrypted "
+"Persistent Storage on your Tails USB stick, for example:"
 msgstr ""
 
 #. type: Plain text
@@ -815,19 +815,19 @@ msgstr ""
 #~ "Choose <span class=\"menuchoice\"> <span class=\"guimenu\">Devices</"
 #~ "span>&nbsp;â–¸ <span class=\"guisubmenu\">Displays</span></span>."
 #~ msgstr ""
-#~ "Wählen Sie <span class=\"menuchoice\"> <span class=\"guimenu"
-#~ "\">Systemwerkzeuge</span>&nbsp;â–¸ <span class=\"guisubmenu"
-#~ "\">Einstellungen</span>&nbsp;â–¸ <span class=\"guimenuitem\">Bildschirme</"
-#~ "span></span>."
+#~ "Wählen Sie <span class=\"menuchoice\"> <span "
+#~ "class=\"guimenu\">Systemwerkzeuge</span>&nbsp;â–¸ <span "
+#~ "class=\"guisubmenu\">Einstellungen</span>&nbsp;â–¸ <span "
+#~ "class=\"guimenuitem\">Bildschirme</span></span>."
 
 #~ msgid "Configure your displays."
 #~ msgstr "Konfigurieren Sie Ihre Bildschirme."
 
 #, fuzzy
 #~ msgid ""
-#~ "Choose **Places**&nbsp;â–¸ **Dotfiles** to open the <span class=\"filename"
-#~ "\">/live/persistence/TailsData_unlocked/dotfiles</span> folder in the "
-#~ "<span class=\"application\">Files</span> browser."
+#~ "Choose **Places**&nbsp;â–¸ **Dotfiles** to open the <span "
+#~ "class=\"filename\">/live/persistence/TailsData_unlocked/dotfiles</span> "
+#~ "folder in the <span class=\"application\">Files</span> browser."
 #~ msgstr ""
 #~ "Öffnen Sie <span class=\"filename\">/live/persistence/TailsData_unlocked/"
 #~ "dotfiles</span> in der <span class=\"application\">Dateiverwaltung</span>."
@@ -852,8 +852,9 @@ msgstr ""
 
 #~ msgid ""
 #~ "Copy the <span class=\"filename\">.config/monitors.xml</span> file from "
-#~ "your <span class=\"filename\">Home</span> folder to <span class=\"filename"
-#~ "\">/live/persistence/TailsData_unlocked/dotfiles/.config</span>."
+#~ "your <span class=\"filename\">Home</span> folder to <span "
+#~ "class=\"filename\">/live/persistence/TailsData_unlocked/dotfiles/.config</"
+#~ "span>."
 #~ msgstr ""
 #~ "Kopieren Sie die Datei <span class=\"filename\">.config/monitors.xml</"
 #~ "span> aus Ihrem <span class=\"filename\">Home</span>-Ordner nach <span "
@@ -1005,9 +1006,9 @@ msgstr ""
 #~ "gespeichert werden. Nach einigen weiteren Funktionen wurde gefragt und "
 #~ "sie wurden akzeptiert, warten aber darauf, implementiert zu werden: "
 #~ "Browsererweiterungen, [[!tails_ticket 7148 desc=\"Hintergrundbilder\"]], "
-#~ "[[!tails_ticket 7625 desc=\"RSS Feeds\"]], [[!tails_ticket 7246 desc="
-#~ "\"standardmäßige Audiokarte\"]], [[!tails_ticket 5979 desc=\"Maus und "
-#~ "Touchpad Einstellungen\"]], etc. Lesen Sie für mehr Details die "
+#~ "[[!tails_ticket 7625 desc=\"RSS Feeds\"]], [[!tails_ticket 7246 "
+#~ "desc=\"standardmäßige Audiokarte\"]], [[!tails_ticket 5979 desc=\"Maus "
+#~ "und Touchpad Einstellungen\"]], etc. Lesen Sie für mehr Details die "
 #~ "[[dazugehörigen Tickets|https://redmine.tails.boum.org/code/projects/"
 #~ "tails/issues?query_id=122]]."
 
@@ -1057,8 +1058,8 @@ msgstr ""
 #~ "Dateien\n"
 #~ "in Unterordnern von <span class=\"filename\">dotfiles</span> werden "
 #~ "ebenfalls\n"
-#~ "in die entsprechenden Unterordner Ihres <span class=\"filename"
-#~ "\">Persönlichen Ordners</span>\n"
+#~ "in die entsprechenden Unterordner Ihres <span "
+#~ "class=\"filename\">Persönlichen Ordners</span>\n"
 #~ "verknüpft.\n"
 
 #~ msgid ""
@@ -1248,8 +1249,8 @@ msgstr ""
 #~ "Packages</span> features.\n"
 #~ msgstr ""
 #~ "Um diese Funktion zu nutzen, müssen Sie sowohl die Funktionen für <span\n"
-#~ "class=\"guilabel\">APT Listen</span> als auch für <span class=\"guilabel"
-#~ "\">APT\n"
+#~ "class=\"guilabel\">APT Listen</span> als auch für <span "
+#~ "class=\"guilabel\">APT\n"
 #~ "Pakete</span> aktivieren.\n"
 
 #~ msgid ""
diff --git a/wiki/src/doc/persistent_storage.es.po b/wiki/src/doc/persistent_storage.es.po
index 103e90a61e0..c55cbbd8642 100644
--- a/wiki/src/doc/persistent_storage.es.po
+++ b/wiki/src/doc/persistent_storage.es.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tails\n"
 "Report-Msgid-Bugs-To: tails-l10n@boum.org\n"
-"POT-Creation-Date: 2023-03-11 14:37+0000\n"
+"POT-Creation-Date: 2023-03-18 14:36+0100\n"
 "PO-Revision-Date: 2023-03-12 00:43+0000\n"
 "Last-Translator: xin <xin@riseup.net>\n"
 "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/"
@@ -29,8 +29,8 @@ msgstr ""
 
 #. type: Plain text
 msgid ""
-"But you can save some of your files and configuration in a Persistent "
-"Storage on your Tails USB stick, for example:"
+"But you can save some of your files and configuration in an encrypted "
+"Persistent Storage on your Tails USB stick, for example:"
 msgstr ""
 
 #. type: Plain text
@@ -954,9 +954,9 @@ msgstr ""
 #~ msgstr "Configura tus pantallas."
 
 #~ msgid ""
-#~ "Choose **Places**&nbsp;â–¸ **Dotfiles** to open the <span class=\"filename"
-#~ "\">/live/persistence/TailsData_unlocked/dotfiles</span> folder in the "
-#~ "<span class=\"application\">Files</span> browser."
+#~ "Choose **Places**&nbsp;â–¸ **Dotfiles** to open the <span "
+#~ "class=\"filename\">/live/persistence/TailsData_unlocked/dotfiles</span> "
+#~ "folder in the <span class=\"application\">Files</span> browser."
 #~ msgstr ""
 #~ "Elige **Lugares**&nbsp;â–¸ **Dotfiles** para abrir el directorio <span "
 #~ "class=\"filename\">/live/persistence/TailsData_unlocked/dotfiles</span> "
@@ -967,9 +967,9 @@ msgstr ""
 #~ "toggle\" class=\"symbolic\" link=\"no\"]]</span> button in the title bar "
 #~ "and choose <span class=\"guilabel\">Show Hidden Files</span>."
 #~ msgstr ""
-#~ "Haz click en el botón <span class=\"guimenu\">[[!img lib/pan-down.png alt="
-#~ "\"abre menú\" class=symbolic link=\"no\"]]</span> en la barra de título, "
-#~ "y elige <span class=\"guilabel\">Mostrar archivos ocultos</span>."
+#~ "Haz click en el botón <span class=\"guimenu\">[[!img lib/pan-down.png "
+#~ "alt=\"abre menú\" class=symbolic link=\"no\"]]</span> en la barra de "
+#~ "título, y elige <span class=\"guilabel\">Mostrar archivos ocultos</span>."
 
 #~ msgid ""
 #~ "Create a folder called <span class=\"filename\">.config</span> (<span "
@@ -980,12 +980,14 @@ msgstr ""
 
 #~ msgid ""
 #~ "Copy the <span class=\"filename\">.config/monitors.xml</span> file from "
-#~ "your <span class=\"filename\">Home</span> folder to <span class=\"filename"
-#~ "\">/live/persistence/TailsData_unlocked/dotfiles/.config</span>."
+#~ "your <span class=\"filename\">Home</span> folder to <span "
+#~ "class=\"filename\">/live/persistence/TailsData_unlocked/dotfiles/.config</"
+#~ "span>."
 #~ msgstr ""
 #~ "Copia el archivo <span class=\"filename\">.config/monitors.xml</span> de "
-#~ "tu directorio <span class=\"filename\">Home</span> a <span class="
-#~ "\"filename\">/live/persistence/TailsData_unlocked/dotfiles/.config</span>."
+#~ "tu directorio <span class=\"filename\">Home</span> a <span "
+#~ "class=\"filename\">/live/persistence/TailsData_unlocked/dotfiles/.config</"
+#~ "span>."
 
 #, no-wrap
 #~ msgid ""
@@ -1216,8 +1218,8 @@ msgstr ""
 #~ "archivos en\n"
 #~ "subdirectorios de  <span class=\"filename\">dotfiles</span> también serán "
 #~ "conectados\n"
-#~ "en el correspondiente subdirectorio de su directorio  <span class="
-#~ "\"filename\">Home\n"
+#~ "en el correspondiente subdirectorio de su directorio  <span "
+#~ "class=\"filename\">Home\n"
 #~ "</span>.\n"
 
 #~ msgid ""
@@ -1281,8 +1283,8 @@ msgstr ""
 #~ msgstr ""
 #~ "Para guardar contraseñas, por ejemplo, las contraseñas de conexiones "
 #~ "inalámbricas cifradas,\n"
-#~ "la [[funcionalidad de persistencia del <span class=\"application"
-#~ "\">Depósito de claves de\n"
+#~ "la [[funcionalidad de persistencia del <span "
+#~ "class=\"application\">Depósito de claves de\n"
 #~ "GNOME</span>|configure#gnome_keyring]] también debe ser activado.\n"
 
 #~ msgid "<a id=\"apt_packages\"></a>\n"
diff --git a/wiki/src/doc/persistent_storage.fr.po b/wiki/src/doc/persistent_storage.fr.po
index 6c3a56c06cc..ba51db83226 100644
--- a/wiki/src/doc/persistent_storage.fr.po
+++ b/wiki/src/doc/persistent_storage.fr.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tails\n"
 "Report-Msgid-Bugs-To: tails-l10n@boum.org\n"
-"POT-Creation-Date: 2023-03-11 14:37+0000\n"
+"POT-Creation-Date: 2023-03-18 14:36+0100\n"
 "PO-Revision-Date: 2023-03-12 19:28+0000\n"
 "Last-Translator: Chre <tor@renaudineau.org>\n"
 "Language-Team: Tails translators <tails@boum.org>\n"
@@ -29,8 +29,8 @@ msgstr ""
 
 #. type: Plain text
 msgid ""
-"But you can save some of your files and configuration in a Persistent "
-"Storage on your Tails USB stick, for example:"
+"But you can save some of your files and configuration in an encrypted "
+"Persistent Storage on your Tails USB stick, for example:"
 msgstr ""
 
 #. type: Plain text
@@ -128,12 +128,9 @@ msgid ""
 "   <a href=\"https://theintercept.com/2015/03/26/passphrases-can-memorize-attackers-cant-guess/\">See\n"
 "   this article about memorizable and secure passphrases.</a></p>\n"
 msgstr ""
-"   <p>Nous recommandons de choisir une phrase de passe longue composée de 5 "
-"à 7 mots aléatoires.\n"
-"   <a href=\"https://theintercept.com/2015/03/26/"
-"passphrases-can-memorize-attackers-cant-guess/\">Voir\n"
-"   cet article (en anglais) à propos des phrases de passe sûres et "
-"mémorisables.</a></p>\n"
+"   <p>Nous recommandons de choisir une phrase de passe longue composée de 5 à 7 mots aléatoires.\n"
+"   <a href=\"https://theintercept.com/2015/03/26/passphrases-can-memorize-attackers-cant-guess/\">Voir\n"
+"   cet article (en anglais) à propos des phrases de passe sûres et mémorisables.</a></p>\n"
 
 #. type: Plain text
 #, no-wrap
@@ -1009,17 +1006,17 @@ msgstr ""
 #~ "Choose <span class=\"menuchoice\"> <span class=\"guimenu\">Devices</"
 #~ "span>&nbsp;â–¸ <span class=\"guisubmenu\">Displays</span></span>."
 #~ msgstr ""
-#~ "Choisir <span class=\"menuchoice\"> <span class=\"guimenu"
-#~ "\">Périphériques</span>&nbsp;▸ <span class=\"guisubmenu\">Écrans</span></"
-#~ "span>."
+#~ "Choisir <span class=\"menuchoice\"> <span "
+#~ "class=\"guimenu\">Périphériques</span>&nbsp;▸ <span "
+#~ "class=\"guisubmenu\">Écrans</span></span>."
 
 #~ msgid "Configure your displays."
 #~ msgstr "Configurer vos écrans."
 
 #~ msgid ""
-#~ "Choose **Places**&nbsp;â–¸ **Dotfiles** to open the <span class=\"filename"
-#~ "\">/live/persistence/TailsData_unlocked/dotfiles</span> folder in the "
-#~ "<span class=\"application\">Files</span> browser."
+#~ "Choose **Places**&nbsp;â–¸ **Dotfiles** to open the <span "
+#~ "class=\"filename\">/live/persistence/TailsData_unlocked/dotfiles</span> "
+#~ "folder in the <span class=\"application\">Files</span> browser."
 #~ msgstr ""
 #~ "Choisir **Emplacements**&nbsp;â–¸ **Dotfiles** pour ouvrir le dossier <span "
 #~ "class=\"filename\">/live/persistence/TailsData_unlocked/dotfiles</span> "
@@ -1030,10 +1027,10 @@ msgstr ""
 #~ "toggle\" class=\"symbolic\" link=\"no\"]]</span> button in the title bar "
 #~ "and choose <span class=\"guilabel\">Show Hidden Files</span>."
 #~ msgstr ""
-#~ "Cliquer sur le bouton <span class=\"guimenu\">[[!img lib/pan-down.png alt="
-#~ "\"afficher menu\" class=\"symbolic\" link=\"no\"]]</span> dans la barre "
-#~ "de titre et choisissez <span class=\"guilabel\">Afficher les fichiers "
-#~ "cachés</span>."
+#~ "Cliquer sur le bouton <span class=\"guimenu\">[[!img lib/pan-down.png "
+#~ "alt=\"afficher menu\" class=\"symbolic\" link=\"no\"]]</span> dans la "
+#~ "barre de titre et choisissez <span class=\"guilabel\">Afficher les "
+#~ "fichiers cachés</span>."
 
 #~ msgid ""
 #~ "Create a folder called <span class=\"filename\">.config</span> (<span "
@@ -1044,8 +1041,9 @@ msgstr ""
 
 #~ msgid ""
 #~ "Copy the <span class=\"filename\">.config/monitors.xml</span> file from "
-#~ "your <span class=\"filename\">Home</span> folder to <span class=\"filename"
-#~ "\">/live/persistence/TailsData_unlocked/dotfiles/.config</span>."
+#~ "your <span class=\"filename\">Home</span> folder to <span "
+#~ "class=\"filename\">/live/persistence/TailsData_unlocked/dotfiles/.config</"
+#~ "span>."
 #~ msgstr ""
 #~ "Copier le fichier <span class=\"filename\">.config/monitors.xml</span> "
 #~ "depuis votre <span class=\"filename\">Dossier personnel</span> vers <span "
@@ -1231,8 +1229,8 @@ msgstr ""
 #~ "Seules les options listées ici peuvent actuellement être rendues "
 #~ "persistantes. D'autres options ont été demandées et acceptées, mais "
 #~ "attendent d'être implémentées : les extensions du navigateur, [[!"
-#~ "tails_ticket 7148 desc=\"le fond d'écran\"]], [[!tails_ticket 7246 desc="
-#~ "\"la carte son par défaut\"]], [[!tails_ticket 5979 desc=\"la "
+#~ "tails_ticket 7148 desc=\"le fond d'écran\"]], [[!tails_ticket 7246 "
+#~ "desc=\"la carte son par défaut\"]], [[!tails_ticket 5979 desc=\"la "
 #~ "configuration de la souris et du pavé tactile\"]], etc. Voir [[les "
 #~ "tickets correspondants|https://redmine.tails.boum.org/code/projects/tails/"
 #~ "issues?query_id=122]] pour plus de détails."
@@ -1347,8 +1345,8 @@ msgstr ""
 #~ msgstr ""
 #~ "Pour sauvegarder des mots de passe, tels que des mots de passe de "
 #~ "connexion sans-fil\n"
-#~ "chiffrée, l'option de persistance du [[<span class=\"application"
-#~ "\">trousseau de clés GNOME</span>\n"
+#~ "chiffrée, l'option de persistance du [[<span "
+#~ "class=\"application\">trousseau de clés GNOME</span>\n"
 #~ "|configure#gnome_keyring]] doit également être activée.\n"
 
 #~ msgid ""
@@ -1392,8 +1390,8 @@ msgstr ""
 #~ "span> feature as well.\n"
 #~ msgstr ""
 #~ "Si vous activez l'option <span class=\"guilabel\">Paquets APT</span>,\n"
-#~ " il est recommandé d'activer également l'option <span class=\"guilabel"
-#~ "\">Listes d'APT</span>.\n"
+#~ " il est recommandé d'activer également l'option <span "
+#~ "class=\"guilabel\">Listes d'APT</span>.\n"
 
 #~ msgid ""
 #~ "When this feature is activated, the lists of all the software packages "
@@ -1460,16 +1458,16 @@ msgstr ""
 #~ "1. The persistent volume is an encrypted partition protected by a "
 #~ "passphrase.\n"
 #~ "Specify a passphrase of your choice in both the\n"
-#~ "<span class=\"guilabel\">Passphrase</span> and <span class=\"guilabel"
-#~ "\">Verify\n"
+#~ "<span class=\"guilabel\">Passphrase</span> and <span "
+#~ "class=\"guilabel\">Verify\n"
 #~ "Passphrase</span> text boxes.\n"
 #~ msgstr ""
 #~ "1. Le volume persistant est une partition chiffrée protégée par une "
 #~ "phrase de passe.\n"
 #~ "Définissez une phrase de passe de votre choix dans les zones de texte "
 #~ "<span class\n"
-#~ "=\"guilabel\">Phrase de passe</span> et <span class=\"guilabel"
-#~ "\">Vérification de\n"
+#~ "=\"guilabel\">Phrase de passe</span> et <span "
+#~ "class=\"guilabel\">Vérification de\n"
 #~ "la phrase de passe</span>.\n"
 
 #~ msgid "Wait for the creation to finish."
@@ -1551,8 +1549,8 @@ msgstr ""
 #~ "Seules les options listées ici peuvent actuellement être rendues "
 #~ "persistantes. D'autres options ont été demandées et acceptées, mais "
 #~ "attendent d'être implémentées : les extensions du navigateur, [[!"
-#~ "tails_ticket 7148 desc=\"le fond d'écran\"]], [[!tails_ticket 7246 desc="
-#~ "\"la carte son par défaut\"]], [[!tails_ticket 5979 desc=\"la "
+#~ "tails_ticket 7148 desc=\"le fond d'écran\"]], [[!tails_ticket 7246 "
+#~ "desc=\"la carte son par défaut\"]], [[!tails_ticket 5979 desc=\"la "
 #~ "configuration de la souris et du pavé tactile\"]], etc. Voir [[les "
 #~ "tickets correspondants|https://redmine.tails.boum.org/code/projects/tails/"
 #~ "issues?query_id=122]] pour plus de détails."
@@ -1609,8 +1607,8 @@ msgstr ""
 #~ "    de fichiers avec les droits d'administration.\n"
 #~ "  </li>\n"
 #~ "  <li>\n"
-#~ "    Dans le gestionnaire de fichiers, naviguer jusqu'à <span class="
-#~ "\"filename\">\n"
+#~ "    Dans le gestionnaire de fichiers, naviguer jusqu'à <span "
+#~ "class=\"filename\">\n"
 #~ "    /live/persistence/TailsData_unlocked</span>.\n"
 #~ "  </li>\n"
 #~ "  <li>\n"
diff --git a/wiki/src/doc/persistent_storage.it.po b/wiki/src/doc/persistent_storage.it.po
index 3e83ec213ea..29000cc657c 100644
--- a/wiki/src/doc/persistent_storage.it.po
+++ b/wiki/src/doc/persistent_storage.it.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: tails-l10n@boum.org\n"
-"POT-Creation-Date: 2023-03-11 14:37+0000\n"
+"POT-Creation-Date: 2023-03-18 14:36+0100\n"
 "PO-Revision-Date: 2023-03-13 17:40+0000\n"
 "Last-Translator: xin <xin@riseup.net>\n"
 "Language-Team: ita <transitails@inventati.org>\n"
@@ -29,8 +29,8 @@ msgstr ""
 
 #. type: Plain text
 msgid ""
-"But you can save some of your files and configuration in a Persistent "
-"Storage on your Tails USB stick, for example:"
+"But you can save some of your files and configuration in an encrypted "
+"Persistent Storage on your Tails USB stick, for example:"
 msgstr ""
 
 #. type: Plain text
@@ -569,8 +569,8 @@ msgstr ""
 #~ "Quando la funzione Segnalibri del Browser è attivata, le modifiche "
 #~ "apportate ai segnalibri in\n"
 #~ "[[*Tor Browser*|doc/anonymous_internet/Tor_Browser]] vengono salvate in \n"
-#~ "nell'Archivio Persistente.  Questo non si applica a [[<span class="
-#~ "\"applicationi\">Browser non Sicuro</span>|doc/anonymous_internet/"
+#~ "nell'Archivio Persistente.  Questo non si applica a [[<span "
+#~ "class=\"applicationi\">Browser non Sicuro</span>|doc/anonymous_internet/"
 #~ "unsafe_browser]]."
 
 #, no-wrap
@@ -993,31 +993,32 @@ msgstr ""
 #~ "Choose <span class=\"menuchoice\"> <span class=\"guimenu\">Devices</"
 #~ "span>&nbsp;â–¸ <span class=\"guisubmenu\">Displays</span></span>."
 #~ msgstr ""
-#~ "Seleziona <span class=\"menuchoice\"> <span class=\"guimenu"
-#~ "\">Dispositivi</span>&nbsp;â–¸ <span class=\"guisubmenu\">Schermi</span></"
-#~ "span>."
+#~ "Seleziona <span class=\"menuchoice\"> <span "
+#~ "class=\"guimenu\">Dispositivi</span>&nbsp;â–¸ <span "
+#~ "class=\"guisubmenu\">Schermi</span></span>."
 
 #~ msgid "Configure your displays."
 #~ msgstr "Configura i tuoi schermi."
 
 #, fuzzy
 #~ msgid ""
-#~ "Choose **Places**&nbsp;â–¸ **Dotfiles** to open the <span class=\"filename"
-#~ "\">/live/persistence/TailsData_unlocked/dotfiles</span> folder in the "
-#~ "<span class=\"application\">Files</span> browser."
+#~ "Choose **Places**&nbsp;â–¸ **Dotfiles** to open the <span "
+#~ "class=\"filename\">/live/persistence/TailsData_unlocked/dotfiles</span> "
+#~ "folder in the <span class=\"application\">Files</span> browser."
 #~ msgstr ""
-#~ "Scegli **Places**&nbsp;â–¸ **Dotfiles** per aprire <span class=\"filename"
-#~ "\">/live/persistence/TailsData_unlocked/dotfiles</span> cartella nel "
-#~ "<span class=\"application\">File</span> browser."
+#~ "Scegli **Places**&nbsp;â–¸ **Dotfiles** per aprire <span "
+#~ "class=\"filename\">/live/persistence/TailsData_unlocked/dotfiles</span> "
+#~ "cartella nel <span class=\"application\">File</span> browser."
 
 #~ msgid ""
 #~ "Click on the <span class=\"guimenu\">[[!img lib/pan-down.png alt=\"menu "
 #~ "toggle\" class=\"symbolic\" link=\"no\"]]</span> button in the title bar "
 #~ "and choose <span class=\"guilabel\">Show Hidden Files</span>."
 #~ msgstr ""
-#~ "Fai clic sul bottone <span class=\"guimenu\">[[!img lib/pan-down.png alt="
-#~ "\"mostra menù\" class=\"symbolic\" link=\"no\"]]</span> nella barra del "
-#~ "titolo e seleziona <span class=\"guilabel\">Mostra file nascosti</span>."
+#~ "Fai clic sul bottone <span class=\"guimenu\">[[!img lib/pan-down.png "
+#~ "alt=\"mostra menù\" class=\"symbolic\" link=\"no\"]]</span> nella barra "
+#~ "del titolo e seleziona <span class=\"guilabel\">Mostra file nascosti</"
+#~ "span>."
 
 #~ msgid ""
 #~ "Create a folder called <span class=\"filename\">.config</span> (<span "
@@ -1028,8 +1029,9 @@ msgstr ""
 
 #~ msgid ""
 #~ "Copy the <span class=\"filename\">.config/monitors.xml</span> file from "
-#~ "your <span class=\"filename\">Home</span> folder to <span class=\"filename"
-#~ "\">/live/persistence/TailsData_unlocked/dotfiles/.config</span>."
+#~ "your <span class=\"filename\">Home</span> folder to <span "
+#~ "class=\"filename\">/live/persistence/TailsData_unlocked/dotfiles/.config</"
+#~ "span>."
 #~ msgstr ""
 #~ "Copia il file <span class=\"filename\">.config/monitors.xml</span> dalla "
 #~ "tua cartella <span class=\"filename\">Home</span> alla cartella <span "
@@ -1212,8 +1214,8 @@ msgstr ""
 #~ msgstr ""
 #~ "Solo le opzioni che sono elencate qui possono al momento essere rese "
 #~ "persistenti. Alcune altre opzioni sono state richieste e accettate, ma "
-#~ "stanno attendendo di essere implementate, [[!tails_ticket 7148 desc="
-#~ "\"wallpaper\"]], [[!tails_ticket 7625 desc=\"RSS feeds\"]], [[!"
+#~ "stanno attendendo di essere implementate, [[!tails_ticket 7148 "
+#~ "desc=\"wallpaper\"]], [[!tails_ticket 7625 desc=\"RSS feeds\"]], [[!"
 #~ "tails_ticket 7246 desc=\"default sound card\"]], [[!tails_ticket 5979 "
 #~ "desc=\"mouse and touchpad settings\"]], ecc. Guarda [[corresponding "
 #~ "tickets|https://labs.riseup.net/code/projects/tails/issues?query_id=122]] "
@@ -1264,8 +1266,8 @@ msgstr ""
 #~ "file nella\n"
 #~ "sottocartella di <span class=\"filename\">dotfiles</span> sono anch'essi "
 #~ "collegati \n"
-#~ "alla sottocartella corrispondente nella tua cartella di <span class="
-#~ "\"filename\">Home\n"
+#~ "alla sottocartella corrispondente nella tua cartella di <span "
+#~ "class=\"filename\">Home\n"
 #~ "</span>.\n"
 
 #~ msgid ""
@@ -1330,8 +1332,8 @@ msgstr ""
 #~ msgstr ""
 #~ "Per salvare le password, per esempio le password delle connessioni "
 #~ "wireless cifrate,\n"
-#~ "anche l' [[opzione persistente del <span class=\"application"
-#~ "\">portachiavi GNOME/span>|configure#gnome_keyring]]\n"
+#~ "anche l' [[opzione persistente del <span "
+#~ "class=\"application\">portachiavi GNOME/span>|configure#gnome_keyring]]\n"
 #~ "deve essere attivata.\n"
 #~ " \n"
 
@@ -1469,8 +1471,8 @@ msgstr ""
 #~ "1. The persistent volume is an encrypted partition protected by a "
 #~ "passphrase.\n"
 #~ "Specify a passphrase of your choice in both the\n"
-#~ "<span class=\"guilabel\">Passphrase</span> and <span class=\"guilabel"
-#~ "\">Verify\n"
+#~ "<span class=\"guilabel\">Passphrase</span> and <span "
+#~ "class=\"guilabel\">Verify\n"
 #~ "Passphrase</span> text boxes.\n"
 #~ msgstr ""
 #~ "1. Il volume persistente è una partizione cifrata protetta da una "
@@ -1544,8 +1546,8 @@ msgstr ""
 #~ "sono salvate nel volume persitente.\n"
 
 #~ msgid ""
-#~ "[[!inline pages=\"doc/anonymous_internet/claws_mail/persistence.bug\" raw="
-#~ "\"yes\"]]\n"
+#~ "[[!inline pages=\"doc/anonymous_internet/claws_mail/persistence.bug\" "
+#~ "raw=\"yes\"]]\n"
 #~ msgstr ""
 #~ "[[!inline pages=\"doc/anonymous_internet/claws_mail/persistence.bug.fr\" "
 #~ "raw=\"yes\"]]\n"
diff --git a/wiki/src/doc/persistent_storage.pt.po b/wiki/src/doc/persistent_storage.pt.po
index 3d422ea5192..131bed536ad 100644
--- a/wiki/src/doc/persistent_storage.pt.po
+++ b/wiki/src/doc/persistent_storage.pt.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: tails-l10n@boum.org\n"
-"POT-Creation-Date: 2023-03-11 14:37+0000\n"
+"POT-Creation-Date: 2023-03-18 14:36+0100\n"
 "PO-Revision-Date: 2022-12-20 18:06+0000\n"
 "Last-Translator: xin <xin@riseup.net>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -29,8 +29,8 @@ msgstr ""
 
 #. type: Plain text
 msgid ""
-"But you can save some of your files and configuration in a Persistent "
-"Storage on your Tails USB stick, for example:"
+"But you can save some of your files and configuration in an encrypted "
+"Persistent Storage on your Tails USB stick, for example:"
 msgstr ""
 
 #. type: Plain text
@@ -999,21 +999,21 @@ msgstr ""
 #~ msgstr "Configure seus monitores."
 
 #~ msgid ""
-#~ "Choose **Places**&nbsp;â–¸ **Dotfiles** to open the <span class=\"filename"
-#~ "\">/live/persistence/TailsData_unlocked/dotfiles</span> folder in the "
-#~ "<span class=\"application\">Files</span> browser."
+#~ "Choose **Places**&nbsp;â–¸ **Dotfiles** to open the <span "
+#~ "class=\"filename\">/live/persistence/TailsData_unlocked/dotfiles</span> "
+#~ "folder in the <span class=\"application\">Files</span> browser."
 #~ msgstr ""
-#~ "Escolha **Locais**&nbsp;â–¸ **Dotfiles** para abrir a pasta <span class="
-#~ "\"filename\">/live/persistence/TailsData_unlocked/dotfiles</span> no "
-#~ "gerenciador de <span class=\"application\">Arquivos</span>."
+#~ "Escolha **Locais**&nbsp;â–¸ **Dotfiles** para abrir a pasta <span "
+#~ "class=\"filename\">/live/persistence/TailsData_unlocked/dotfiles</span> "
+#~ "no gerenciador de <span class=\"application\">Arquivos</span>."
 
 #~ msgid ""
 #~ "Click on the <span class=\"guimenu\">[[!img lib/pan-down.png alt=\"menu "
 #~ "toggle\" class=\"symbolic\" link=\"no\"]]</span> button in the title bar "
 #~ "and choose <span class=\"guilabel\">Show Hidden Files</span>."
 #~ msgstr ""
-#~ "Clique no botão <span class=\"guimenu\">[[!img lib/pan-down.png alt="
-#~ "\"menu toggle\" class=\"symbolic\" link=\"no\"]]</span> na barra de "
+#~ "Clique no botão <span class=\"guimenu\">[[!img lib/pan-down.png "
+#~ "alt=\"menu toggle\" class=\"symbolic\" link=\"no\"]]</span> na barra de "
 #~ "título e selecione <span class=\"guilabel\">Mostrar arquivos ocultos</"
 #~ "span>."
 
@@ -1026,12 +1026,14 @@ msgstr ""
 
 #~ msgid ""
 #~ "Copy the <span class=\"filename\">.config/monitors.xml</span> file from "
-#~ "your <span class=\"filename\">Home</span> folder to <span class=\"filename"
-#~ "\">/live/persistence/TailsData_unlocked/dotfiles/.config</span>."
+#~ "your <span class=\"filename\">Home</span> folder to <span "
+#~ "class=\"filename\">/live/persistence/TailsData_unlocked/dotfiles/.config</"
+#~ "span>."
 #~ msgstr ""
 #~ "Copie o arquivo <span class=\"filename\">.config/monitors.xml</span> da "
-#~ "sua <span class=\"filename\">Pasta pessoal</span> para o <span class="
-#~ "\"filename\">/live/persistence/TailsData_unlocked/dotfiles/.config</span>."
+#~ "sua <span class=\"filename\">Pasta pessoal</span> para o <span "
+#~ "class=\"filename\">/live/persistence/TailsData_unlocked/dotfiles/.config</"
+#~ "span>."
 
 #, no-wrap
 #~ msgid ""
@@ -1227,8 +1229,8 @@ msgstr ""
 #~ "span>\n"
 #~ "são linkadas na <span class=\"filename\">Pasta Home</span> (arquivos nas\n"
 #~ "subpastas da pasta <span class=\"filename\">dotfiles</span> também são\n"
-#~ "linkadas na subpasta correspondente da sua <span class=\"filename"
-#~ "\">Pasta\n"
+#~ "linkadas na subpasta correspondente da sua <span "
+#~ "class=\"filename\">Pasta\n"
 #~ "Home</span>).\n"
 
 #~ msgid ""
@@ -1396,15 +1398,15 @@ msgstr ""
 #~ "1. The persistent volume is an encrypted partition protected by a "
 #~ "passphrase.\n"
 #~ "Specify a passphrase of your choice in both the\n"
-#~ "<span class=\"guilabel\">Passphrase</span> and <span class=\"guilabel"
-#~ "\">Verify\n"
+#~ "<span class=\"guilabel\">Passphrase</span> and <span "
+#~ "class=\"guilabel\">Verify\n"
 #~ "Passphrase</span> text boxes.\n"
 #~ msgstr ""
 #~ "1. O volume persistente é uma partição criptografada protegida por uma "
 #~ "senha.\n"
 #~ "Especifique uma senha de sua escolha nas caixas de texto\n"
-#~ "<span class=\"guilabel\">Senha</span> e <span class=\"guilabel"
-#~ "\">Verifique a senha</span>.\n"
+#~ "<span class=\"guilabel\">Senha</span> e <span "
+#~ "class=\"guilabel\">Verifique a senha</span>.\n"
 
 #~ msgid "Wait for the creation to finish."
 #~ msgstr "Espera que a criação termine."
@@ -1494,8 +1496,8 @@ msgstr ""
 #~ "  <span class=\"guimenu\">Arquivo</span>&nbsp;â–¸\n"
 #~ "  <span class=\"guimenu\">Adicionar caixa de email</span>&nbsp;â–¸\n"
 #~ "  <span class=\"guimenuitem\">MH...</span></span> e altere o local da "
-#~ "caixa de email de <span class=\"filename\">Mail</span> para <span class="
-#~ "\"filename\">.claws-mail/Mail</span>.</p>\n"
+#~ "caixa de email de <span class=\"filename\">Mail</span> para <span "
+#~ "class=\"filename\">.claws-mail/Mail</span>.</p>\n"
 
 #, fuzzy
 #~ msgid ""
diff --git a/wiki/src/doc/persistent_storage.ru.po b/wiki/src/doc/persistent_storage.ru.po
index 9cd170ee93b..dac0b83123b 100644
--- a/wiki/src/doc/persistent_storage.ru.po
+++ b/wiki/src/doc/persistent_storage.ru.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: tails-l10n@boum.org\n"
-"POT-Creation-Date: 2023-03-11 14:37+0000\n"
+"POT-Creation-Date: 2023-03-18 14:36+0100\n"
 "PO-Revision-Date: 2023-03-13 17:40+0000\n"
 "Last-Translator: xin <xin@riseup.net>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,8 +15,8 @@ msgstr ""
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
-"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
+"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
 "X-Generator: Weblate 4.9.1\n"
 
 #. type: Plain text
@@ -30,8 +30,8 @@ msgstr ""
 
 #. type: Plain text
 msgid ""
-"But you can save some of your files and configuration in a Persistent "
-"Storage on your Tails USB stick, for example:"
+"But you can save some of your files and configuration in an encrypted "
+"Persistent Storage on your Tails USB stick, for example:"
 msgstr ""
 
 #. type: Plain text
@@ -956,12 +956,12 @@ msgstr ""
 
 #, fuzzy
 #~ msgid ""
-#~ "Choose **Places**&nbsp;â–¸ **Dotfiles** to open the <span class=\"filename"
-#~ "\">/live/persistence/TailsData_unlocked/dotfiles</span> folder in the "
-#~ "<span class=\"application\">Files</span> browser."
+#~ "Choose **Places**&nbsp;â–¸ **Dotfiles** to open the <span "
+#~ "class=\"filename\">/live/persistence/TailsData_unlocked/dotfiles</span> "
+#~ "folder in the <span class=\"application\">Files</span> browser."
 #~ msgstr ""
-#~ "Выберите **Места**&nbsp;▸ **Dotfiles**, чтобы открыть папку <span class="
-#~ "\"filename\">/live/persistence/TailsData_unlocked/dotfiles</span> в "
+#~ "Выберите **Места**&nbsp;▸ **Dotfiles**, чтобы открыть папку <span "
+#~ "class=\"filename\">/live/persistence/TailsData_unlocked/dotfiles</span> в "
 #~ "менеджере <span class=\"application\">Файлы</span>."
 
 #~ msgid ""
@@ -982,12 +982,14 @@ msgstr ""
 
 #~ msgid ""
 #~ "Copy the <span class=\"filename\">.config/monitors.xml</span> file from "
-#~ "your <span class=\"filename\">Home</span> folder to <span class=\"filename"
-#~ "\">/live/persistence/TailsData_unlocked/dotfiles/.config</span>."
+#~ "your <span class=\"filename\">Home</span> folder to <span "
+#~ "class=\"filename\">/live/persistence/TailsData_unlocked/dotfiles/.config</"
+#~ "span>."
 #~ msgstr ""
 #~ "Скопируйте файл <span class=\"filename\">.config/monitors.xml</span> из "
-#~ "<span class=\"filename\">Домашней папки</span> в <span class=\"filename"
-#~ "\">/live/persistence/TailsData_unlocked/dotfiles/.config</span>."
+#~ "<span class=\"filename\">Домашней папки</span> в <span "
+#~ "class=\"filename\">/live/persistence/TailsData_unlocked/dotfiles/.config</"
+#~ "span>."
 
 #, no-wrap
 #~ msgid ""
@@ -1078,8 +1080,8 @@ msgstr ""
 
 #~ msgid "[[!meta title=\"Unlocking and using the Persistent Storage\"]]\n"
 #~ msgstr ""
-#~ "[[!meta title=\"Разблокирование и использование Постоянного хранилища"
-#~ "\"]]\n"
+#~ "[[!meta title=\"Разблокирование и использование Постоянного "
+#~ "хранилища\"]]\n"
 
 #~ msgid "[[!toc levels=1]]\n"
 #~ msgstr "[[!toc levels=1]]\n"
@@ -1111,9 +1113,9 @@ msgstr ""
 #~ "gespeichert werden. Nach einigen weiteren Funktionen wurde gefragt und "
 #~ "sie wurden akzeptiert, warten aber darauf, implementiert zu werden: "
 #~ "Browsererweiterungen, [[!tails_ticket 7148 desc=\"Hintergrundbilder\"]], "
-#~ "[[!tails_ticket 7625 desc=\"RSS Feeds\"]], [[!tails_ticket 7246 desc="
-#~ "\"standardmäßige Audiokarte\"]], [[!tails_ticket 5979 desc=\"Maus und "
-#~ "Touchpad Einstellungen\"]], etc. Lesen Sie für mehr Details die "
+#~ "[[!tails_ticket 7625 desc=\"RSS Feeds\"]], [[!tails_ticket 7246 "
+#~ "desc=\"standardmäßige Audiokarte\"]], [[!tails_ticket 5979 desc=\"Maus "
+#~ "und Touchpad Einstellungen\"]], etc. Lesen Sie für mehr Details die "
 #~ "[[dazugehörigen Tickets|https://redmine.tails.boum.org/code/projects/"
 #~ "tails/issues?query_id=122]]."
 
@@ -1163,8 +1165,8 @@ msgstr ""
 #~ "Dateien\n"
 #~ "in Unterordnern von <span class=\"filename\">dotfiles</span> werden "
 #~ "ebenfalls\n"
-#~ "in die entsprechenden Unterordner Ihres <span class=\"filename"
-#~ "\">Persönlichen Ordners</span>\n"
+#~ "in die entsprechenden Unterordner Ihres <span "
+#~ "class=\"filename\">Persönlichen Ordners</span>\n"
 #~ "verknüpft.\n"
 
 #~ msgid ""
@@ -1356,8 +1358,8 @@ msgstr ""
 #~ "Packages</span> features.\n"
 #~ msgstr ""
 #~ "Um diese Funktion zu nutzen, müssen Sie sowohl die Funktionen für <span\n"
-#~ "class=\"guilabel\">APT Listen</span> als auch für <span class=\"guilabel"
-#~ "\">APT\n"
+#~ "class=\"guilabel\">APT Listen</span> als auch für <span "
+#~ "class=\"guilabel\">APT\n"
 #~ "Pakete</span> aktivieren.\n"
 
 #~ msgid ""
@@ -1454,8 +1456,8 @@ msgstr ""
 #~ "2. Enter the passphrase of the persistent volume in the\n"
 #~ "<span class=\"guilabel\">Passphrase</span> text box.\n"
 #~ msgstr ""
-#~ "2. Введите пароль к Постоянному хранилищу в поле <span class=\"guilabel"
-#~ "\">Passphrase</span>.\n"
+#~ "2. Введите пароль к Постоянному хранилищу в поле <span "
+#~ "class=\"guilabel\">Passphrase</span>.\n"
 
 #~ msgid ""
 #~ "3. If you select the <span class=\"guilabel\">Read-Only</span> check box, "
diff --git a/wiki/src/doc/persistent_storage/additional_software.de.po b/wiki/src/doc/persistent_storage/additional_software.de.po
index f442c554ff5..1f0230643f7 100644
--- a/wiki/src/doc/persistent_storage/additional_software.de.po
+++ b/wiki/src/doc/persistent_storage/additional_software.de.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tails\n"
 "Report-Msgid-Bugs-To: tails-l10n@boum.org\n"
-"POT-Creation-Date: 2023-01-27 18:26+0100\n"
+"POT-Creation-Date: 2023-03-18 14:36+0100\n"
 "PO-Revision-Date: 2022-06-14 08:08+0000\n"
 "Last-Translator: Benjamin Held <Benjamin.Held@protonmail.com>\n"
 "Language-Team: Tails translators <tails@boum.org>\n"
@@ -104,8 +104,8 @@ msgstr ""
 
 #. type: Bullet: '     - '
 msgid ""
-"Search on titles and descriptions of packages with the <span class=\"bold"
-"\">Search</span> button."
+"Search on titles and descriptions of packages with the <span "
+"class=\"bold\">Search</span> button."
 msgstr ""
 
 #. type: Plain text
@@ -221,12 +221,6 @@ msgstr ""
 msgid "- [*Scribus*](https://www.scribus.net/), a page layout application."
 msgstr ""
 
-#. type: Plain text
-msgid ""
-"- [*Kazam*](https://launchpad.net/kazam), an application to record "
-"screencasts."
-msgstr ""
-
 #. type: Bullet: '- '
 msgid ""
 "[*Cheese*](https://wiki.gnome.org/Apps/Cheese), an application to take "
@@ -249,14 +243,16 @@ msgstr ""
 
 #. type: Bullet: '- '
 msgid ""
-"for <span class=\"application\">LibreOffice</span>: <span class=\"command"
-"\">libreoffice-l10n-<span class=\"command-placeholder\">lang</span></span>"
+"for <span class=\"application\">LibreOffice</span>: <span "
+"class=\"command\">libreoffice-l10n-<span class=\"command-placeholder\">lang</"
+"span></span>"
 msgstr ""
 
 #. type: Bullet: '- '
 msgid ""
-"for <span class=\"application\">Thunderbird</span>: <span class=\"command"
-"\">thunderbird-l10n-<span class=\"command-placeholder\">lang</span></span>"
+"for <span class=\"application\">Thunderbird</span>: <span "
+"class=\"command\">thunderbird-l10n-<span class=\"command-placeholder\">lang</"
+"span></span>"
 msgstr ""
 
 #. type: Plain text
@@ -505,8 +501,9 @@ msgstr ""
 
 #. type: Bullet: '    1. '
 msgid ""
-"Click the <span class=\"bold\">[[!img lib/window-close.png class=\"symbolic"
-"\" link=\"no\" alt=\"\"]]</span> to the right of the name of the package."
+"Click the <span class=\"bold\">[[!img lib/window-close.png "
+"class=\"symbolic\" link=\"no\" alt=\"\"]]</span> to the right of the name of "
+"the package."
 msgstr ""
 
 #. type: Bullet: '  - '
@@ -560,8 +557,8 @@ msgstr ""
 msgid ""
 "Choose <span class=\"menuchoice\"> <span class=\"guimenu\">Applications</"
 "span>&nbsp;â–¸ <span class=\"guisubmenu\">System Tools</span>&nbsp;â–¸ <span "
-"class=\"guimenuitem\">Root Terminal</span> </span> to open a <span class="
-"\"application\">Root Terminal</span>."
+"class=\"guimenuitem\">Root Terminal</span> </span> to open a <span "
+"class=\"application\">Root Terminal</span>."
 msgstr ""
 "Wählen Sie <span class=\"menuchoice\"> <span class=\"guimenu\">Anwendung</"
 "span>&nbsp;â–¸ <span class=\"guisubmenu\">Systemprogramme</span>&nbsp;â–¸ <span "
@@ -641,10 +638,10 @@ msgstr "       /etc/apt/sources.list.d\tsource=apt-sources.list.d,link\n"
 
 #. type: Bullet: '1. '
 msgid ""
-"Write your additional `sources.list` files in the <span class=\"filename"
-"\">apt-sources.list.d</span> folder. For example, to add the `non-free` "
-"sections of Debian 10 (Buster), backports, and security updates, you can "
-"create a file named <span class=\"filename\">/live/persistence/"
+"Write your additional `sources.list` files in the <span "
+"class=\"filename\">apt-sources.list.d</span> folder. For example, to add the "
+"`non-free` sections of Debian 10 (Buster), backports, and security updates, "
+"you can create a file named <span class=\"filename\">/live/persistence/"
 "TailsData_unlocked/apt-sources.list.d/non-free.list</span> with the "
 "following content:"
 msgstr ""
@@ -710,8 +707,8 @@ msgstr ""
 #~ msgstr ""
 #~ "Da Tails vergesslich ist, müssen alle zusätzlichen Softwarepakete in "
 #~ "jeder Arbeitssitzung neu installiert\n"
-#~ "werden. Benutzen Sie die dafür die [[Funktion für <span class=\"guilabel"
-#~ "\">Zusätzliche Softwarepakete</span> \n"
+#~ "werden. Benutzen Sie die dafür die [[Funktion für <span "
+#~ "class=\"guilabel\">Zusätzliche Softwarepakete</span> \n"
 #~ "des beständigen\n"
 #~ "Speicherbereichs|doc/first_steps/persistence/"
 #~ "configure#additional_software]], um die gleichen Softwarepakete "
@@ -794,8 +791,8 @@ msgstr ""
 #~ "Packages</span> features.\n"
 #~ msgstr ""
 #~ "Um diese Funktion zu nutzen, müssen Sie sowohl die Funktionen für <span\n"
-#~ "class=\"guilabel\">APT Listen</span> als auch für <span class=\"guilabel"
-#~ "\">APT\n"
+#~ "class=\"guilabel\">APT Listen</span> als auch für <span "
+#~ "class=\"guilabel\">APT\n"
 #~ "Pakete</span> aktivieren.\n"
 
 #~ msgid ""
diff --git a/wiki/src/doc/persistent_storage/additional_software.es.po b/wiki/src/doc/persistent_storage/additional_software.es.po
index fa8f6ce4f80..67b5cda05fb 100644
--- a/wiki/src/doc/persistent_storage/additional_software.es.po
+++ b/wiki/src/doc/persistent_storage/additional_software.es.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tails\n"
 "Report-Msgid-Bugs-To: tails-l10n@boum.org\n"
-"POT-Creation-Date: 2023-01-27 18:26+0100\n"
+"POT-Creation-Date: 2023-03-18 14:36+0100\n"
 "PO-Revision-Date: 2023-03-09 14:29+0000\n"
 "Last-Translator: xin <xin@riseup.net>\n"
 "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/"
@@ -102,8 +102,8 @@ msgstr ""
 
 #. type: Bullet: '     - '
 msgid ""
-"Search on titles and descriptions of packages with the <span class=\"bold"
-"\">Search</span> button."
+"Search on titles and descriptions of packages with the <span "
+"class=\"bold\">Search</span> button."
 msgstr ""
 
 #. type: Plain text
@@ -214,12 +214,6 @@ msgstr ""
 msgid "- [*Scribus*](https://www.scribus.net/), a page layout application."
 msgstr ""
 
-#. type: Plain text
-msgid ""
-"- [*Kazam*](https://launchpad.net/kazam), an application to record "
-"screencasts."
-msgstr ""
-
 #. type: Bullet: '- '
 msgid ""
 "[*Cheese*](https://wiki.gnome.org/Apps/Cheese), an application to take "
@@ -242,14 +236,16 @@ msgstr ""
 
 #. type: Bullet: '- '
 msgid ""
-"for <span class=\"application\">LibreOffice</span>: <span class=\"command"
-"\">libreoffice-l10n-<span class=\"command-placeholder\">lang</span></span>"
+"for <span class=\"application\">LibreOffice</span>: <span "
+"class=\"command\">libreoffice-l10n-<span class=\"command-placeholder\">lang</"
+"span></span>"
 msgstr ""
 
 #. type: Bullet: '- '
 msgid ""
-"for <span class=\"application\">Thunderbird</span>: <span class=\"command"
-"\">thunderbird-l10n-<span class=\"command-placeholder\">lang</span></span>"
+"for <span class=\"application\">Thunderbird</span>: <span "
+"class=\"command\">thunderbird-l10n-<span class=\"command-placeholder\">lang</"
+"span></span>"
 msgstr ""
 
 #. type: Plain text
@@ -498,8 +494,9 @@ msgstr ""
 
 #. type: Bullet: '    1. '
 msgid ""
-"Click the <span class=\"bold\">[[!img lib/window-close.png class=\"symbolic"
-"\" link=\"no\" alt=\"\"]]</span> to the right of the name of the package."
+"Click the <span class=\"bold\">[[!img lib/window-close.png "
+"class=\"symbolic\" link=\"no\" alt=\"\"]]</span> to the right of the name of "
+"the package."
 msgstr ""
 
 #. type: Bullet: '  - '
@@ -553,8 +550,8 @@ msgstr ""
 msgid ""
 "Choose <span class=\"menuchoice\"> <span class=\"guimenu\">Applications</"
 "span>&nbsp;â–¸ <span class=\"guisubmenu\">System Tools</span>&nbsp;â–¸ <span "
-"class=\"guimenuitem\">Root Terminal</span> </span> to open a <span class="
-"\"application\">Root Terminal</span>."
+"class=\"guimenuitem\">Root Terminal</span> </span> to open a <span "
+"class=\"application\">Root Terminal</span>."
 msgstr ""
 "Elige <span class=\"menuchoice\"> <span class=\"guimenu\">Aplicaciones</"
 "span>&nbsp;â–¸ <span class=\"guisubmenu\">Herramientas del sistema</span>&nbsp;"
@@ -654,15 +651,15 @@ msgstr "       /etc/apt/sources.list.d\tsource=apt-sources.list.d,link\n"
 
 #. type: Bullet: '1. '
 msgid ""
-"Write your additional `sources.list` files in the <span class=\"filename"
-"\">apt-sources.list.d</span> folder. For example, to add the `non-free` "
-"sections of Debian 10 (Buster), backports, and security updates, you can "
-"create a file named <span class=\"filename\">/live/persistence/"
+"Write your additional `sources.list` files in the <span "
+"class=\"filename\">apt-sources.list.d</span> folder. For example, to add the "
+"`non-free` sections of Debian 10 (Buster), backports, and security updates, "
+"you can create a file named <span class=\"filename\">/live/persistence/"
 "TailsData_unlocked/apt-sources.list.d/non-free.list</span> with the "
 "following content:"
 msgstr ""
-"Escribe tus archivos `sources.list` adicionales en el directorio <span class="
-"\"filename\">apt-sources.list.d</span>. Por ejemplo, para añadir las "
+"Escribe tus archivos `sources.list` adicionales en el directorio <span "
+"class=\"filename\">apt-sources.list.d</span>. Por ejemplo, para añadir las "
 "secciones `non-free` de Debian 10 (Buster), backports y updates de "
 "seguridad, puedes crear un archivo llamado <span class=\"filename\">/live/"
 "persistence/TailsData_unlocked/apt-sources.list.d/non-free.list</span> con "
diff --git a/wiki/src/doc/persistent_storage/additional_software.fr.po b/wiki/src/doc/persistent_storage/additional_software.fr.po
index 37db02ae427..32490480bac 100644
--- a/wiki/src/doc/persistent_storage/additional_software.fr.po
+++ b/wiki/src/doc/persistent_storage/additional_software.fr.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tails\n"
 "Report-Msgid-Bugs-To: tails-l10n@boum.org\n"
-"POT-Creation-Date: 2023-01-27 18:26+0100\n"
+"POT-Creation-Date: 2023-03-18 14:36+0100\n"
 "PO-Revision-Date: 2023-02-09 20:27+0000\n"
 "Last-Translator: Chre <tor@renaudineau.org>\n"
 "Language-Team: Tails translators <tails@boum.org>\n"
@@ -98,8 +98,8 @@ msgstr "Parcourir les paquets par sections depuis la barre latérale gauche."
 
 #. type: Bullet: '     - '
 msgid ""
-"Search on titles and descriptions of packages with the <span class=\"bold"
-"\">Search</span> button."
+"Search on titles and descriptions of packages with the <span "
+"class=\"bold\">Search</span> button."
 msgstr ""
 "Chercher dans les titres et les descriptions des paquets avec le bouton "
 "<span class=\"bold\">Rechercher</span>."
@@ -222,14 +222,6 @@ msgstr "- [*Pitivi*](https://www.pitivi.org/), un éditeur vidéo."
 msgid "- [*Scribus*](https://www.scribus.net/), a page layout application."
 msgstr "- [*Scribus*](https://www.scribus.net/), un logiciel de mise en page."
 
-#. type: Plain text
-msgid ""
-"- [*Kazam*](https://launchpad.net/kazam), an application to record "
-"screencasts."
-msgstr ""
-"- [*Kazam*](https://launchpad.net/kazam), une application pour enregistrer "
-"des captures vidéo de l'écran."
-
 #. type: Bullet: '- '
 msgid ""
 "[*Cheese*](https://wiki.gnome.org/Apps/Cheese), an application to take "
@@ -256,19 +248,23 @@ msgstr "Packs de langue"
 
 #. type: Bullet: '- '
 msgid ""
-"for <span class=\"application\">LibreOffice</span>: <span class=\"command"
-"\">libreoffice-l10n-<span class=\"command-placeholder\">lang</span></span>"
+"for <span class=\"application\">LibreOffice</span>: <span "
+"class=\"command\">libreoffice-l10n-<span class=\"command-placeholder\">lang</"
+"span></span>"
 msgstr ""
-"pour <span class=\"application\">LibreOffice</span> : <span class=\"command"
-"\">libreoffice-l10n-<span class=\"command-placeholder\">lang</span></span>"
+"pour <span class=\"application\">LibreOffice</span> : <span "
+"class=\"command\">libreoffice-l10n-<span class=\"command-placeholder\">lang</"
+"span></span>"
 
 #. type: Bullet: '- '
 msgid ""
-"for <span class=\"application\">Thunderbird</span>: <span class=\"command"
-"\">thunderbird-l10n-<span class=\"command-placeholder\">lang</span></span>"
+"for <span class=\"application\">Thunderbird</span>: <span "
+"class=\"command\">thunderbird-l10n-<span class=\"command-placeholder\">lang</"
+"span></span>"
 msgstr ""
-"pour <span class=\"application\">Thunderbird</span> : <span class=\"command"
-"\">thunderbird-l10n-<span class=\"command-placeholder\">lang</span></span>"
+"pour <span class=\"application\">Thunderbird</span> : <span "
+"class=\"command\">thunderbird-l10n-<span class=\"command-placeholder\">lang</"
+"span></span>"
 
 #. type: Plain text
 #, no-wrap
@@ -353,8 +349,8 @@ msgid ""
 "Installation</span>."
 msgstr ""
 "Faites un clic droit (sur Mac, cliquez avec deux doigts) sur le nom du "
-"paquet dans les résultats de recherche et choisissez <span class="
-"\"guimenuitem\">Sélectionner pour installation</span>."
+"paquet dans les résultats de recherche et choisissez <span "
+"class=\"guimenuitem\">Sélectionner pour installation</span>."
 
 #. type: Bullet: '1. '
 msgid ""
@@ -413,8 +409,8 @@ msgid ""
 "Install the package using *Synaptic* or the <span class=\"command\">apt</"
 "span> command."
 msgstr ""
-"Installez le paquet en utilisant *Synaptic* ou la commande <span class="
-"\"command\">apt</span>."
+"Installez le paquet en utilisant *Synaptic* ou la commande <span "
+"class=\"command\">apt</span>."
 
 #. type: Bullet: '1. '
 msgid ""
@@ -563,11 +559,12 @@ msgstr ""
 
 #. type: Bullet: '    1. '
 msgid ""
-"Click the <span class=\"bold\">[[!img lib/window-close.png class=\"symbolic"
-"\" link=\"no\" alt=\"\"]]</span> to the right of the name of the package."
+"Click the <span class=\"bold\">[[!img lib/window-close.png "
+"class=\"symbolic\" link=\"no\" alt=\"\"]]</span> to the right of the name of "
+"the package."
 msgstr ""
-"Cliquez sur le bouton <span class=\"bold\">[[!img lib/window-close.png class="
-"\"symbolic\" link=\"no\" alt=\"\"]]</span> à droite du nom du paquet."
+"Cliquez sur le bouton <span class=\"bold\">[[!img lib/window-close.png "
+"class=\"symbolic\" link=\"no\" alt=\"\"]]</span> à droite du nom du paquet."
 
 #. type: Bullet: '  - '
 msgid "Using <span class=\"application\">Synaptic</span>:"
@@ -580,8 +577,8 @@ msgid ""
 "span>."
 msgstr ""
 "Faites un clic droit (sur Mac, cliquez avec deux doigts) sur le nom du "
-"paquet dans les résultats de recherche et choisissez <span class="
-"\"guimenuitem\">Sélectionner pour suppression</span>."
+"paquet dans les résultats de recherche et choisissez <span "
+"class=\"guimenuitem\">Sélectionner pour suppression</span>."
 
 #. type: Bullet: '    1. '
 msgid "Click <span class=\"bold\">Apply</span> to remove the package."
@@ -625,8 +622,8 @@ msgstr ""
 msgid ""
 "Choose <span class=\"menuchoice\"> <span class=\"guimenu\">Applications</"
 "span>&nbsp;â–¸ <span class=\"guisubmenu\">System Tools</span>&nbsp;â–¸ <span "
-"class=\"guimenuitem\">Root Terminal</span> </span> to open a <span class="
-"\"application\">Root Terminal</span>."
+"class=\"guimenuitem\">Root Terminal</span> </span> to open a <span "
+"class=\"application\">Root Terminal</span>."
 msgstr ""
 "Choisir <span class=\"menuchoice\"> <span class=\"guimenu\">Applications</"
 "span>&nbsp;▸ <span class=\"guisubmenu\">Outils système</span>&nbsp;▸ <span "
@@ -715,10 +712,10 @@ msgstr "       /etc/apt/sources.list.d\tsource=apt-sources.list.d,link\n"
 
 #. type: Bullet: '1. '
 msgid ""
-"Write your additional `sources.list` files in the <span class=\"filename"
-"\">apt-sources.list.d</span> folder. For example, to add the `non-free` "
-"sections of Debian 10 (Buster), backports, and security updates, you can "
-"create a file named <span class=\"filename\">/live/persistence/"
+"Write your additional `sources.list` files in the <span "
+"class=\"filename\">apt-sources.list.d</span> folder. For example, to add the "
+"`non-free` sections of Debian 10 (Buster), backports, and security updates, "
+"you can create a file named <span class=\"filename\">/live/persistence/"
 "TailsData_unlocked/apt-sources.list.d/non-free.list</span> with the "
 "following content:"
 msgstr ""
@@ -771,6 +768,13 @@ msgstr ""
 msgid "Restart Tails to apply the changes."
 msgstr "Redémarrez Tails pour appliquer les changements."
 
+#~ msgid ""
+#~ "- [*Kazam*](https://launchpad.net/kazam), an application to record "
+#~ "screencasts."
+#~ msgstr ""
+#~ "- [*Kazam*](https://launchpad.net/kazam), une application pour "
+#~ "enregistrer des captures vidéo de l'écran."
+
 #, no-wrap
 #~ msgid "   [[!img additional_software/add-additional-software.png link=\"no\" alt=\"\"]]\n"
 #~ msgstr "   [[!img additional_software/add-additional-software.png link=\"no\" alt=\"\"]]\n"
@@ -792,8 +796,8 @@ msgstr "Redémarrez Tails pour appliquer les changements."
 #~ "Software</span> persistence feature|persistence/"
 #~ "configure#additional_software]].\n"
 #~ msgstr ""
-#~ "Pour ce faire, vous devez activer l'option de persistance [[<span class="
-#~ "\"guilabel\">Logiciels\n"
+#~ "Pour ce faire, vous devez activer l'option de persistance [[<span "
+#~ "class=\"guilabel\">Logiciels\n"
 #~ "additionnels</span>|persistence/configure#additional_software]].\n"
 
 #~ msgid ""
@@ -803,8 +807,8 @@ msgstr "Redémarrez Tails pour appliquer les changements."
 #~ "want to install this package\n"
 #~ "every time you start Tails in the future.\n"
 #~ msgstr ""
-#~ "Après qu'un paquet a été installé avec <span class=\"application"
-#~ "\">Synaptic</span> ou\n"
+#~ "Après qu'un paquet a été installé avec <span "
+#~ "class=\"application\">Synaptic</span> ou\n"
 #~ "<span class=\"command\">apt</span>, une notification apparaît pour "
 #~ "demander si vous voulez à l'avenir installer ce paquet\n"
 #~ "à chaque fois que vous démarrez Tails.\n"
@@ -919,8 +923,8 @@ msgstr "Redémarrez Tails pour appliquer les changements."
 #~ "Packages</span> features.\n"
 #~ msgstr ""
 #~ "Pour utiliser cette option, vous devez activer la persistance des <span\n"
-#~ "class=\"guilabel\">Listes d'APT</span> et des <span class=\"guilabel"
-#~ "\">Paquets APT</span>.\n"
+#~ "class=\"guilabel\">Listes d'APT</span> et des <span "
+#~ "class=\"guilabel\">Paquets APT</span>.\n"
 
 #~ msgid ""
 #~ "If you are offline and your additional software packages don't install, "
diff --git a/wiki/src/doc/persistent_storage/additional_software.it.po b/wiki/src/doc/persistent_storage/additional_software.it.po
index e0e34431b15..751a35409bd 100644
--- a/wiki/src/doc/persistent_storage/additional_software.it.po
+++ b/wiki/src/doc/persistent_storage/additional_software.it.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: tails-l10n@boum.org\n"
-"POT-Creation-Date: 2023-01-27 18:26+0100\n"
+"POT-Creation-Date: 2023-03-18 14:36+0100\n"
 "PO-Revision-Date: 2023-03-13 17:35+0000\n"
 "Last-Translator: xin <xin@riseup.net>\n"
 "Language-Team: ita <transitails@inventati.org>\n"
@@ -100,8 +100,8 @@ msgstr "Sfogliare i pacchetti per sezioni dalla barra laterale sinistra."
 
 #. type: Bullet: '     - '
 msgid ""
-"Search on titles and descriptions of packages with the <span class=\"bold"
-"\">Search</span> button."
+"Search on titles and descriptions of packages with the <span "
+"class=\"bold\">Search</span> button."
 msgstr ""
 
 #. type: Plain text
@@ -215,12 +215,6 @@ msgstr ""
 msgid "- [*Scribus*](https://www.scribus.net/), a page layout application."
 msgstr ""
 
-#. type: Plain text
-msgid ""
-"- [*Kazam*](https://launchpad.net/kazam), an application to record "
-"screencasts."
-msgstr ""
-
 #. type: Bullet: '- '
 msgid ""
 "[*Cheese*](https://wiki.gnome.org/Apps/Cheese), an application to take "
@@ -243,19 +237,23 @@ msgstr ""
 
 #. type: Bullet: '- '
 msgid ""
-"for <span class=\"application\">LibreOffice</span>: <span class=\"command"
-"\">libreoffice-l10n-<span class=\"command-placeholder\">lang</span></span>"
+"for <span class=\"application\">LibreOffice</span>: <span "
+"class=\"command\">libreoffice-l10n-<span class=\"command-placeholder\">lang</"
+"span></span>"
 msgstr ""
-"per <span class=\"application\">LibreOffice</span>: <span class=\"command"
-"\">libreoffice-l10n-<span class=\"command-placeholder\">lang</span></span>"
+"per <span class=\"application\">LibreOffice</span>: <span "
+"class=\"command\">libreoffice-l10n-<span class=\"command-placeholder\">lang</"
+"span></span>"
 
 #. type: Bullet: '- '
 msgid ""
-"for <span class=\"application\">Thunderbird</span>: <span class=\"command"
-"\">thunderbird-l10n-<span class=\"command-placeholder\">lang</span></span>"
+"for <span class=\"application\">Thunderbird</span>: <span "
+"class=\"command\">thunderbird-l10n-<span class=\"command-placeholder\">lang</"
+"span></span>"
 msgstr ""
-"per <span class=\"application\">Thunderbird</span>: <span class=\"command"
-"\">thunderbird-l10n-<span class=\"command-placeholder\">lang</span></span>"
+"per <span class=\"application\">Thunderbird</span>: <span "
+"class=\"command\">thunderbird-l10n-<span class=\"command-placeholder\">lang</"
+"span></span>"
 
 #. type: Plain text
 #, no-wrap
@@ -341,8 +339,8 @@ msgid ""
 "Installation</span>."
 msgstr ""
 "Fai clic con il tasto destro (su Mac, fai clic con due dita) sul nome del "
-"pacchetto nei risultati di ricerca e seleziona <span class=\"guimenuitem"
-"\">Installa</span>."
+"pacchetto nei risultati di ricerca e seleziona <span "
+"class=\"guimenuitem\">Installa</span>."
 
 #. type: Bullet: '1. '
 msgid ""
@@ -524,8 +522,9 @@ msgstr ""
 
 #. type: Bullet: '    1. '
 msgid ""
-"Click the <span class=\"bold\">[[!img lib/window-close.png class=\"symbolic"
-"\" link=\"no\" alt=\"\"]]</span> to the right of the name of the package."
+"Click the <span class=\"bold\">[[!img lib/window-close.png "
+"class=\"symbolic\" link=\"no\" alt=\"\"]]</span> to the right of the name of "
+"the package."
 msgstr ""
 
 #. type: Bullet: '  - '
@@ -539,8 +538,8 @@ msgid ""
 "span>."
 msgstr ""
 "Fai clic con il tasto destro (su Mac, fai clic con due dita) sul nome del "
-"pacchetto nei risultati di ricerca e seleziona <span class=\"guimenuitem"
-"\">Rimuovi</span>."
+"pacchetto nei risultati di ricerca e seleziona <span "
+"class=\"guimenuitem\">Rimuovi</span>."
 
 #. type: Bullet: '    1. '
 msgid "Click <span class=\"bold\">Apply</span> to remove the package."
@@ -581,13 +580,13 @@ msgstr ""
 #| msgid ""
 #| "Choose <span class=\"menuchoice\"> <span class=\"guimenu\">Applications</"
 #| "span>&nbsp;â–¸ <span class=\"guisubmenu\">System Tools</span>&nbsp;â–¸ <span "
-#| "class=\"guimenuitem\">Root Terminal</span> </span> to open a <span class="
-#| "\"application\">Root Terminal</span>."
+#| "class=\"guimenuitem\">Root Terminal</span> </span> to open a <span "
+#| "class=\"application\">Root Terminal</span>."
 msgid ""
 "Choose <span class=\"menuchoice\"> <span class=\"guimenu\">Applications</"
 "span>&nbsp;â–¸ <span class=\"guisubmenu\">System Tools</span>&nbsp;â–¸ <span "
-"class=\"guimenuitem\">Root Terminal</span> </span> to open a <span class="
-"\"application\">Root Terminal</span>."
+"class=\"guimenuitem\">Root Terminal</span> </span> to open a <span "
+"class=\"application\">Root Terminal</span>."
 msgstr ""
 "Seleziona <span class=\"menuchoice\"> <span class=\"guimenu\">Applicazioni</"
 "span>&nbsp;â–¸ <span class=\"guisubmenu\">Strumenti di sistema</span>&nbsp;â–¸ "
@@ -674,15 +673,15 @@ msgstr "       /etc/apt/sources.list.d\tsource=apt-sources.list.d,link\n"
 
 #. type: Bullet: '1. '
 msgid ""
-"Write your additional `sources.list` files in the <span class=\"filename"
-"\">apt-sources.list.d</span> folder. For example, to add the `non-free` "
-"sections of Debian 10 (Buster), backports, and security updates, you can "
-"create a file named <span class=\"filename\">/live/persistence/"
+"Write your additional `sources.list` files in the <span "
+"class=\"filename\">apt-sources.list.d</span> folder. For example, to add the "
+"`non-free` sections of Debian 10 (Buster), backports, and security updates, "
+"you can create a file named <span class=\"filename\">/live/persistence/"
 "TailsData_unlocked/apt-sources.list.d/non-free.list</span> with the "
 "following content:"
 msgstr ""
-"Scrivi i tuoi file `sources.list` supplementari nella cartella <span class="
-"\"filename\">apt-sources.list.d</span>. Ad esempio, per aggiungere le "
+"Scrivi i tuoi file `sources.list` supplementari nella cartella <span "
+"class=\"filename\">apt-sources.list.d</span>. Ad esempio, per aggiungere le "
 "sezioni `non-free` di Debian 10 (Buster), dei backport e degli aggiornamenti "
 "di sicurezza, puoi creare un file chiamato <span class=\"filename\">/live/"
 "persistence/TailsData_unlocked/apt-sources.list.d/non-free.list</span> con "
diff --git a/wiki/src/doc/persistent_storage/additional_software.pt.po b/wiki/src/doc/persistent_storage/additional_software.pt.po
index 743fd32f57e..660182e4fb0 100644
--- a/wiki/src/doc/persistent_storage/additional_software.pt.po
+++ b/wiki/src/doc/persistent_storage/additional_software.pt.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: tails-l10n@boum.org\n"
-"POT-Creation-Date: 2023-01-27 18:26+0100\n"
+"POT-Creation-Date: 2023-03-18 14:36+0100\n"
 "PO-Revision-Date: 2020-11-03 23:32+0000\n"
 "Last-Translator: drebs <drebs@riseup.net>\n"
 "Language-Team: Portuguese <http://translate.tails.boum.org/projects/tails/"
@@ -85,8 +85,8 @@ msgstr ""
 
 #. type: Bullet: '     - '
 msgid ""
-"Search on titles and descriptions of packages with the <span class=\"bold"
-"\">Search</span> button."
+"Search on titles and descriptions of packages with the <span "
+"class=\"bold\">Search</span> button."
 msgstr ""
 
 #. type: Plain text
@@ -187,12 +187,6 @@ msgstr ""
 msgid "- [*Scribus*](https://www.scribus.net/), a page layout application."
 msgstr ""
 
-#. type: Plain text
-msgid ""
-"- [*Kazam*](https://launchpad.net/kazam), an application to record "
-"screencasts."
-msgstr ""
-
 #. type: Bullet: '- '
 msgid ""
 "[*Cheese*](https://wiki.gnome.org/Apps/Cheese), an application to take "
@@ -215,14 +209,16 @@ msgstr ""
 
 #. type: Bullet: '- '
 msgid ""
-"for <span class=\"application\">LibreOffice</span>: <span class=\"command"
-"\">libreoffice-l10n-<span class=\"command-placeholder\">lang</span></span>"
+"for <span class=\"application\">LibreOffice</span>: <span "
+"class=\"command\">libreoffice-l10n-<span class=\"command-placeholder\">lang</"
+"span></span>"
 msgstr ""
 
 #. type: Bullet: '- '
 msgid ""
-"for <span class=\"application\">Thunderbird</span>: <span class=\"command"
-"\">thunderbird-l10n-<span class=\"command-placeholder\">lang</span></span>"
+"for <span class=\"application\">Thunderbird</span>: <span "
+"class=\"command\">thunderbird-l10n-<span class=\"command-placeholder\">lang</"
+"span></span>"
 msgstr ""
 
 #. type: Plain text
@@ -449,8 +445,9 @@ msgstr ""
 
 #. type: Bullet: '    1. '
 msgid ""
-"Click the <span class=\"bold\">[[!img lib/window-close.png class=\"symbolic"
-"\" link=\"no\" alt=\"\"]]</span> to the right of the name of the package."
+"Click the <span class=\"bold\">[[!img lib/window-close.png "
+"class=\"symbolic\" link=\"no\" alt=\"\"]]</span> to the right of the name of "
+"the package."
 msgstr ""
 
 #. type: Bullet: '  - '
@@ -499,8 +496,8 @@ msgstr ""
 msgid ""
 "Choose <span class=\"menuchoice\"> <span class=\"guimenu\">Applications</"
 "span>&nbsp;â–¸ <span class=\"guisubmenu\">System Tools</span>&nbsp;â–¸ <span "
-"class=\"guimenuitem\">Root Terminal</span> </span> to open a <span class="
-"\"application\">Root Terminal</span>."
+"class=\"guimenuitem\">Root Terminal</span> </span> to open a <span "
+"class=\"application\">Root Terminal</span>."
 msgstr ""
 
 #. type: Bullet: '1. '
@@ -570,10 +567,10 @@ msgstr "       /etc/apt/sources.list.d\tsource=apt-sources.list.d,link\n"
 
 #. type: Bullet: '1. '
 msgid ""
-"Write your additional `sources.list` files in the <span class=\"filename"
-"\">apt-sources.list.d</span> folder. For example, to add the `non-free` "
-"sections of Debian 10 (Buster), backports, and security updates, you can "
-"create a file named <span class=\"filename\">/live/persistence/"
+"Write your additional `sources.list` files in the <span "
+"class=\"filename\">apt-sources.list.d</span> folder. For example, to add the "
+"`non-free` sections of Debian 10 (Buster), backports, and security updates, "
+"you can create a file named <span class=\"filename\">/live/persistence/"
 "TailsData_unlocked/apt-sources.list.d/non-free.list</span> with the "
 "following content:"
 msgstr ""
@@ -645,8 +642,8 @@ msgstr ""
 #~ msgstr ""
 #~ "Para usar esta funcionalidade, você precisa habilitar ambas as "
 #~ "funcionalidades\n"
-#~ "<span class=\"guilabel\">Listas APT</span> e <span class=\"guilabel"
-#~ "\">Pacotes\n"
+#~ "<span class=\"guilabel\">Listas APT</span> e <span "
+#~ "class=\"guilabel\">Pacotes\n"
 #~ "APT</span>.\n"
 
 #~ msgid ""
diff --git a/wiki/src/doc/persistent_storage/additional_software.ru.po b/wiki/src/doc/persistent_storage/additional_software.ru.po
index e3dca6d19d6..b5222b881cf 100644
--- a/wiki/src/doc/persistent_storage/additional_software.ru.po
+++ b/wiki/src/doc/persistent_storage/additional_software.ru.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: tails-l10n@boum.org\n"
-"POT-Creation-Date: 2023-01-27 18:26+0100\n"
+"POT-Creation-Date: 2023-03-18 14:36+0100\n"
 "PO-Revision-Date: 2021-12-24 19:20+0000\n"
 "Last-Translator: dedmoroz <cj75300@gmail.com>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,8 +15,8 @@ msgstr ""
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
-"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
+"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
 "X-Generator: Weblate 3.11.3\n"
 
 #. type: Plain text
@@ -82,8 +82,8 @@ msgid ""
 "class=\"guimenuitem\">Synaptic Package Manager</span></span>."
 msgstr ""
 "Выберите <span class=\"menuchoice\"> <span class=\"guimenu\">Приложения</"
-"span>&nbsp;▸ <span class=\"guisubmenu\">Системные</span>&nbsp;▸ <span class="
-"\"guimenuitem\">Менеджер пакетов Synaptic</span></span>."
+"span>&nbsp;▸ <span class=\"guisubmenu\">Системные</span>&nbsp;▸ <span "
+"class=\"guimenuitem\">Менеджер пакетов Synaptic</span></span>."
 
 #. type: Bullet: '  1. '
 msgid ""
@@ -103,8 +103,8 @@ msgstr "выбрать из пакетов в левой панели;"
 
 #. type: Bullet: '     - '
 msgid ""
-"Search on titles and descriptions of packages with the <span class=\"bold"
-"\">Search</span> button."
+"Search on titles and descriptions of packages with the <span "
+"class=\"bold\">Search</span> button."
 msgstr ""
 "поискать интересующий пакет по названию и описанию с помощью  кнопки <span "
 "class=\"bold\">Поиск</span>."
@@ -222,12 +222,6 @@ msgstr ""
 msgid "- [*Scribus*](https://www.scribus.net/), a page layout application."
 msgstr ""
 
-#. type: Plain text
-msgid ""
-"- [*Kazam*](https://launchpad.net/kazam), an application to record "
-"screencasts."
-msgstr ""
-
 #. type: Bullet: '- '
 msgid ""
 "[*Cheese*](https://wiki.gnome.org/Apps/Cheese), an application to take "
@@ -250,19 +244,23 @@ msgstr "Языковые пакеты"
 
 #. type: Bullet: '- '
 msgid ""
-"for <span class=\"application\">LibreOffice</span>: <span class=\"command"
-"\">libreoffice-l10n-<span class=\"command-placeholder\">lang</span></span>"
+"for <span class=\"application\">LibreOffice</span>: <span "
+"class=\"command\">libreoffice-l10n-<span class=\"command-placeholder\">lang</"
+"span></span>"
 msgstr ""
-"Для <span class=\"application\">LibreOffice</span>: <span class=\"command"
-"\">libreoffice-l10n-<span class=\"command-placeholder\">lang</span></span>"
+"Для <span class=\"application\">LibreOffice</span>: <span "
+"class=\"command\">libreoffice-l10n-<span class=\"command-placeholder\">lang</"
+"span></span>"
 
 #. type: Bullet: '- '
 msgid ""
-"for <span class=\"application\">Thunderbird</span>: <span class=\"command"
-"\">thunderbird-l10n-<span class=\"command-placeholder\">lang</span></span>"
+"for <span class=\"application\">Thunderbird</span>: <span "
+"class=\"command\">thunderbird-l10n-<span class=\"command-placeholder\">lang</"
+"span></span>"
 msgstr ""
-"Для <span class=\"application\">Thunderbird</span>: <span class=\"command"
-"\">thunderbird-l10n-<span class=\"command-placeholder\">lang</span></span>"
+"Для <span class=\"application\">Thunderbird</span>: <span "
+"class=\"command\">thunderbird-l10n-<span class=\"command-placeholder\">lang</"
+"span></span>"
 
 #. type: Plain text
 #, no-wrap
@@ -355,8 +353,8 @@ msgid ""
 "Installation</span>."
 msgstr ""
 "Щёлкните правой кнопкой мыши (на компьютере Mac щёлкните двумя пальцами) по "
-"названию пакета в результатах поиска и выберите <span class=\"guimenuitem"
-"\">Отметить для установки</span>."
+"названию пакета в результатах поиска и выберите <span "
+"class=\"guimenuitem\">Отметить для установки</span>."
 
 #. type: Bullet: '1. '
 msgid ""
@@ -418,8 +416,8 @@ msgid ""
 "Install the package using *Synaptic* or the <span class=\"command\">apt</"
 "span> command."
 msgstr ""
-"Установите нужный пакет с помощью *Synaptic* или команды <span class="
-"\"command\">apt</span>."
+"Установите нужный пакет с помощью *Synaptic* или команды <span "
+"class=\"command\">apt</span>."
 
 #. type: Bullet: '1. '
 msgid ""
@@ -576,13 +574,14 @@ msgid ""
 "class=\"guimenuitem\">Additional Software</span></span>."
 msgstr ""
 "Выберите <span class=\"menuchoice\"> <span class=\"guimenu\">Приложения</"
-"span>&nbsp;▸ <span class=\"guisubmenu\">Системные</span>&nbsp;▸ <span class="
-"\"guimenuitem\">Additional Software</span></span>."
+"span>&nbsp;▸ <span class=\"guisubmenu\">Системные</span>&nbsp;▸ <span "
+"class=\"guimenuitem\">Additional Software</span></span>."
 
 #. type: Bullet: '    1. '
 msgid ""
-"Click the <span class=\"bold\">[[!img lib/window-close.png class=\"symbolic"
-"\" link=\"no\" alt=\"\"]]</span> to the right of the name of the package."
+"Click the <span class=\"bold\">[[!img lib/window-close.png "
+"class=\"symbolic\" link=\"no\" alt=\"\"]]</span> to the right of the name of "
+"the package."
 msgstr ""
 "Нажмите <span class=\"bold\">[[!img lib/window-close.png class=\"symbolic\" "
 "link=\"no\" alt=\"\"]]</span> справа от названия пакета."
@@ -608,8 +607,8 @@ msgstr "Нажмите <span class=\"bold\">Применить</span> для у
 #. type: Bullet: '  - '
 msgid "From the command line using <span class=\"application\">apt</span>."
 msgstr ""
-"Можно также удалить пакет из командной строки, используя <span class="
-"\"application\">apt</span>."
+"Можно также удалить пакет из командной строки, используя <span "
+"class=\"application\">apt</span>."
 
 #. type: Plain text
 #, no-wrap
@@ -644,18 +643,18 @@ msgstr ""
 #| msgid ""
 #| "Choose <span class=\"menuchoice\"> <span class=\"guimenu\">Applications</"
 #| "span>&nbsp;â–¸ <span class=\"guisubmenu\">System Tools</span>&nbsp;â–¸ <span "
-#| "class=\"guimenuitem\">Root Terminal</span> </span> to open a <span class="
-#| "\"application\">Root Terminal</span>."
+#| "class=\"guimenuitem\">Root Terminal</span> </span> to open a <span "
+#| "class=\"application\">Root Terminal</span>."
 msgid ""
 "Choose <span class=\"menuchoice\"> <span class=\"guimenu\">Applications</"
 "span>&nbsp;â–¸ <span class=\"guisubmenu\">System Tools</span>&nbsp;â–¸ <span "
-"class=\"guimenuitem\">Root Terminal</span> </span> to open a <span class="
-"\"application\">Root Terminal</span>."
+"class=\"guimenuitem\">Root Terminal</span> </span> to open a <span "
+"class=\"application\">Root Terminal</span>."
 msgstr ""
 "Выберите <span class=\"menuchoice\"> <span class=\"guimenu\">Приложения</"
-"span>&nbsp;▸ <span class=\"guisubmenu\">Системные</span>&nbsp;▸ <span class="
-"\"guimenuitem\">Root Terminal</span> </span>. Откроется <span class="
-"\"application\">Root Terminal</span>."
+"span>&nbsp;▸ <span class=\"guisubmenu\">Системные</span>&nbsp;▸ <span "
+"class=\"guimenuitem\">Root Terminal</span> </span>. Откроется <span "
+"class=\"application\">Root Terminal</span>."
 
 #. type: Bullet: '1. '
 msgid "Execute the following command:"
@@ -732,19 +731,19 @@ msgstr "       /etc/apt/sources.list.d\tsource=apt-sources.list.d,link\n"
 
 #. type: Bullet: '1. '
 msgid ""
-"Write your additional `sources.list` files in the <span class=\"filename"
-"\">apt-sources.list.d</span> folder. For example, to add the `non-free` "
-"sections of Debian 10 (Buster), backports, and security updates, you can "
-"create a file named <span class=\"filename\">/live/persistence/"
+"Write your additional `sources.list` files in the <span "
+"class=\"filename\">apt-sources.list.d</span> folder. For example, to add the "
+"`non-free` sections of Debian 10 (Buster), backports, and security updates, "
+"you can create a file named <span class=\"filename\">/live/persistence/"
 "TailsData_unlocked/apt-sources.list.d/non-free.list</span> with the "
 "following content:"
 msgstr ""
-"Сохраните ваши дополнительные файлы `sources.list` в папке <span class="
-"\"filename\">apt-sources.list.d</span>. Например, чтобы добавить разделы "
-"`non-free` Debian 10 (Buster), резервные копии и обновления для системы "
-"безопасности, вы можете создать файл с именем <span class=\"filename\">/live/"
-"persistence/TailsData_unlocked/apt-sources.list.d/non-free.list</span> со "
-"следующим содержимым:"
+"Сохраните ваши дополнительные файлы `sources.list` в папке <span "
+"class=\"filename\">apt-sources.list.d</span>. Например, чтобы добавить "
+"разделы `non-free` Debian 10 (Buster), резервные копии и обновления для "
+"системы безопасности, вы можете создать файл с именем <span "
+"class=\"filename\">/live/persistence/TailsData_unlocked/apt-sources.list.d/"
+"non-free.list</span> со следующим содержимым:"
 
 #. type: Plain text
 #, no-wrap
diff --git a/wiki/src/doc/persistent_storage/use.de.po b/wiki/src/doc/persistent_storage/use.de.po
index 4c799e59e08..283db159678 100644
--- a/wiki/src/doc/persistent_storage/use.de.po
+++ b/wiki/src/doc/persistent_storage/use.de.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: tails-l10n@boum.org\n"
-"POT-Creation-Date: 2023-01-27 18:26+0100\n"
+"POT-Creation-Date: 2023-03-18 14:36+0100\n"
 "PO-Revision-Date: 2023-03-11 11:30+0000\n"
 "Last-Translator: xin <xin@riseup.net>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -19,62 +19,54 @@ msgstr ""
 "X-Generator: Weblate 4.9.1\n"
 
 #. type: Plain text
-#, markdown-text, no-wrap
+#, no-wrap
 msgid "[[!meta title=\"Unlocking and using the Persistent Storage\"]]\n"
 msgstr ""
 
 #. type: Plain text
-#, markdown-text
-msgid "To unlock your Persistent Storage and use the data that is stored in it:"
+msgid ""
+"To unlock your Persistent Storage and use the data that is stored in it:"
 msgstr ""
 
 #. type: Bullet: '1. '
-#, markdown-text
 msgid ""
 "When starting Tails, in the **Persistent Storage** section of the [[Welcome "
 "Screen|first_steps/welcome_screen]], enter your passphrase and click "
-"**Unlock**."
+"**Unlock Encryption**."
 msgstr ""
 
 #. type: Plain text
-#, markdown-text, no-wrap
-msgid ""
-"   [[!img first_steps/welcome_screen/persistence.png link=\"no\" "
-"alt=\"\"]]\n"
-msgstr ""
-"   [[!img first_steps/welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n"
+#, fuzzy, no-wrap
+#| msgid "   [[!img first_steps/welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n"
+msgid "   [[!img first_steps/welcome_screen/unlock_persistent_storage.png link=\"no\" alt=\"\"]]\n"
+msgstr "   [[!img first_steps/welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n"
 
 #. type: Bullet: '1. '
-#, markdown-text
 msgid "Start Tails."
 msgstr ""
 
 #. type: Bullet: '1. '
-#, markdown-text
 msgid ""
 "The data corresponding to each feature of the Persistent Storage that is "
 "turned on is automatically available. For example:"
 msgstr ""
 
 #. type: Bullet: '   - '
-#, markdown-text
 msgid ""
 "Your personal files in the *Persistent* folder are accessible from "
-"**Places**&nbsp;â–¸ **Persistent**, if the [[Persistent "
-"Folder|configure#persistent_folder]] feature is turned on."
+"**Places**&nbsp;â–¸ **Persistent**, if the [[Persistent Folder|"
+"configure#persistent_folder]] feature is turned on."
 msgstr ""
 
 #. type: Bullet: '   - '
-#, markdown-text
 msgid ""
 "Your persistent bookmarks are available in *Tor Browser*, if the [[Tor "
 "Browser Bookmarks|configure#bookmarks]] feature is turned on."
 msgstr ""
 
 #. type: Bullet: '   - '
-#, markdown-text
 msgid ""
 "Your [[Additional Software|additional_software]] packages are automatically "
-"installed when starting Tails, if the [[Additional "
-"Software|configure#additional_software]] feature is turned on."
+"installed when starting Tails, if the [[Additional Software|"
+"configure#additional_software]] feature is turned on."
 msgstr ""
diff --git a/wiki/src/doc/persistent_storage/use.es.po b/wiki/src/doc/persistent_storage/use.es.po
index 1cad8a2557b..a1fb68b32a9 100644
--- a/wiki/src/doc/persistent_storage/use.es.po
+++ b/wiki/src/doc/persistent_storage/use.es.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: tails-l10n@boum.org\n"
-"POT-Creation-Date: 2023-01-27 18:26+0100\n"
+"POT-Creation-Date: 2023-03-18 14:36+0100\n"
 "PO-Revision-Date: 2023-03-11 11:30+0000\n"
 "Last-Translator: xin <xin@riseup.net>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -19,62 +19,54 @@ msgstr ""
 "X-Generator: Weblate 4.9.1\n"
 
 #. type: Plain text
-#, markdown-text, no-wrap
+#, no-wrap
 msgid "[[!meta title=\"Unlocking and using the Persistent Storage\"]]\n"
 msgstr ""
 
 #. type: Plain text
-#, markdown-text
-msgid "To unlock your Persistent Storage and use the data that is stored in it:"
+msgid ""
+"To unlock your Persistent Storage and use the data that is stored in it:"
 msgstr ""
 
 #. type: Bullet: '1. '
-#, markdown-text
 msgid ""
 "When starting Tails, in the **Persistent Storage** section of the [[Welcome "
 "Screen|first_steps/welcome_screen]], enter your passphrase and click "
-"**Unlock**."
+"**Unlock Encryption**."
 msgstr ""
 
 #. type: Plain text
-#, markdown-text, no-wrap
-msgid ""
-"   [[!img first_steps/welcome_screen/persistence.png link=\"no\" "
-"alt=\"\"]]\n"
-msgstr ""
-"   [[!img first_steps/welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n"
+#, fuzzy, no-wrap
+#| msgid "   [[!img first_steps/welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n"
+msgid "   [[!img first_steps/welcome_screen/unlock_persistent_storage.png link=\"no\" alt=\"\"]]\n"
+msgstr "   [[!img first_steps/welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n"
 
 #. type: Bullet: '1. '
-#, markdown-text
 msgid "Start Tails."
 msgstr ""
 
 #. type: Bullet: '1. '
-#, markdown-text
 msgid ""
 "The data corresponding to each feature of the Persistent Storage that is "
 "turned on is automatically available. For example:"
 msgstr ""
 
 #. type: Bullet: '   - '
-#, markdown-text
 msgid ""
 "Your personal files in the *Persistent* folder are accessible from "
-"**Places**&nbsp;â–¸ **Persistent**, if the [[Persistent "
-"Folder|configure#persistent_folder]] feature is turned on."
+"**Places**&nbsp;â–¸ **Persistent**, if the [[Persistent Folder|"
+"configure#persistent_folder]] feature is turned on."
 msgstr ""
 
 #. type: Bullet: '   - '
-#, markdown-text
 msgid ""
 "Your persistent bookmarks are available in *Tor Browser*, if the [[Tor "
 "Browser Bookmarks|configure#bookmarks]] feature is turned on."
 msgstr ""
 
 #. type: Bullet: '   - '
-#, markdown-text
 msgid ""
 "Your [[Additional Software|additional_software]] packages are automatically "
-"installed when starting Tails, if the [[Additional "
-"Software|configure#additional_software]] feature is turned on."
+"installed when starting Tails, if the [[Additional Software|"
+"configure#additional_software]] feature is turned on."
 msgstr ""
diff --git a/wiki/src/doc/persistent_storage/use.fr.po b/wiki/src/doc/persistent_storage/use.fr.po
index 9654da88b3b..4dd8bfda318 100644
--- a/wiki/src/doc/persistent_storage/use.fr.po
+++ b/wiki/src/doc/persistent_storage/use.fr.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: tails-l10n@boum.org\n"
-"POT-Creation-Date: 2023-01-27 18:26+0100\n"
+"POT-Creation-Date: 2023-03-18 14:36+0100\n"
 "PO-Revision-Date: 2023-03-12 21:28+0000\n"
 "Last-Translator: Chre <tor@renaudineau.org>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -19,70 +19,67 @@ msgstr ""
 "X-Generator: Weblate 4.9.1\n"
 
 #. type: Plain text
-#, markdown-text, no-wrap
+#, no-wrap
 msgid "[[!meta title=\"Unlocking and using the Persistent Storage\"]]\n"
 msgstr "[[!meta title=\"Déverrouiller et utiliser le stockage persistant\"]]\n"
 
 #. type: Plain text
-#, markdown-text
-msgid "To unlock your Persistent Storage and use the data that is stored in it:"
+msgid ""
+"To unlock your Persistent Storage and use the data that is stored in it:"
 msgstr ""
 "Pour déverrouiller votre stockage persistant et utiliser les données qui "
 "sont stockées dessus :"
 
 #. type: Bullet: '1. '
-#, markdown-text
+#, fuzzy
+#| msgid ""
+#| "When starting Tails, in the **Persistent Storage** section of the "
+#| "[[Welcome Screen|first_steps/welcome_screen]], enter your passphrase and "
+#| "click **Unlock**."
 msgid ""
 "When starting Tails, in the **Persistent Storage** section of the [[Welcome "
 "Screen|first_steps/welcome_screen]], enter your passphrase and click "
-"**Unlock**."
+"**Unlock Encryption**."
 msgstr ""
 "Au démarrage de Tails, dans la section **Stockage persistant chiffré** de "
 "l'[[Écran de bienvenue|first_steps/welcome_screen]], entrez votre phrase de "
 "passe et cliquez sur **Déverrouiller**."
 
 #. type: Plain text
-#, markdown-text, no-wrap
-msgid ""
-"   [[!img first_steps/welcome_screen/persistence.png link=\"no\" "
-"alt=\"\"]]\n"
-msgstr ""
-"   [[!img first_steps/welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n"
+#, fuzzy, no-wrap
+#| msgid "   [[!img first_steps/welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n"
+msgid "   [[!img first_steps/welcome_screen/unlock_persistent_storage.png link=\"no\" alt=\"\"]]\n"
+msgstr "   [[!img first_steps/welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n"
 
 #. type: Bullet: '1. '
-#, markdown-text
 msgid "Start Tails."
 msgstr "Démarrer Tails."
 
 #. type: Bullet: '1. '
-#, markdown-text
 msgid ""
 "The data corresponding to each feature of the Persistent Storage that is "
 "turned on is automatically available. For example:"
 msgstr ""
 
 #. type: Bullet: '   - '
-#, markdown-text
 msgid ""
 "Your personal files in the *Persistent* folder are accessible from "
-"**Places**&nbsp;â–¸ **Persistent**, if the [[Persistent "
-"Folder|configure#persistent_folder]] feature is turned on."
+"**Places**&nbsp;â–¸ **Persistent**, if the [[Persistent Folder|"
+"configure#persistent_folder]] feature is turned on."
 msgstr ""
 
 #. type: Bullet: '   - '
-#, markdown-text
 msgid ""
 "Your persistent bookmarks are available in *Tor Browser*, if the [[Tor "
 "Browser Bookmarks|configure#bookmarks]] feature is turned on."
 msgstr ""
 
 #. type: Bullet: '   - '
-#, markdown-text
 msgid ""
 "Your [[Additional Software|additional_software]] packages are automatically "
-"installed when starting Tails, if the [[Additional "
-"Software|configure#additional_software]] feature is turned on."
+"installed when starting Tails, if the [[Additional Software|"
+"configure#additional_software]] feature is turned on."
 msgstr ""
 "Vos paquets [[logiciels supplémentaires|additional_software]] sont "
-"automatiquement installés lors du démarrage de Tails, si la fonctionnalité [["
-"logiciels supplémentaires|configure#additional_software]] est activée."
+"automatiquement installés lors du démarrage de Tails, si la fonctionnalité "
+"[[logiciels supplémentaires|configure#additional_software]] est activée."
diff --git a/wiki/src/doc/persistent_storage/use.it.po b/wiki/src/doc/persistent_storage/use.it.po
index 49b136ebc81..43b5e32875c 100644
--- a/wiki/src/doc/persistent_storage/use.it.po
+++ b/wiki/src/doc/persistent_storage/use.it.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: tails-l10n@boum.org\n"
-"POT-Creation-Date: 2023-01-27 18:26+0100\n"
+"POT-Creation-Date: 2023-03-18 14:36+0100\n"
 "PO-Revision-Date: 2023-03-11 11:30+0000\n"
 "Last-Translator: xin <xin@riseup.net>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -19,62 +19,54 @@ msgstr ""
 "X-Generator: Weblate 4.9.1\n"
 
 #. type: Plain text
-#, markdown-text, no-wrap
+#, no-wrap
 msgid "[[!meta title=\"Unlocking and using the Persistent Storage\"]]\n"
 msgstr ""
 
 #. type: Plain text
-#, markdown-text
-msgid "To unlock your Persistent Storage and use the data that is stored in it:"
+msgid ""
+"To unlock your Persistent Storage and use the data that is stored in it:"
 msgstr ""
 
 #. type: Bullet: '1. '
-#, markdown-text
 msgid ""
 "When starting Tails, in the **Persistent Storage** section of the [[Welcome "
 "Screen|first_steps/welcome_screen]], enter your passphrase and click "
-"**Unlock**."
+"**Unlock Encryption**."
 msgstr ""
 
 #. type: Plain text
-#, markdown-text, no-wrap
-msgid ""
-"   [[!img first_steps/welcome_screen/persistence.png link=\"no\" "
-"alt=\"\"]]\n"
-msgstr ""
-"   [[!img first_steps/welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n"
+#, fuzzy, no-wrap
+#| msgid "   [[!img first_steps/welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n"
+msgid "   [[!img first_steps/welcome_screen/unlock_persistent_storage.png link=\"no\" alt=\"\"]]\n"
+msgstr "   [[!img first_steps/welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n"
 
 #. type: Bullet: '1. '
-#, markdown-text
 msgid "Start Tails."
 msgstr ""
 
 #. type: Bullet: '1. '
-#, markdown-text
 msgid ""
 "The data corresponding to each feature of the Persistent Storage that is "
 "turned on is automatically available. For example:"
 msgstr ""
 
 #. type: Bullet: '   - '
-#, markdown-text
 msgid ""
 "Your personal files in the *Persistent* folder are accessible from "
-"**Places**&nbsp;â–¸ **Persistent**, if the [[Persistent "
-"Folder|configure#persistent_folder]] feature is turned on."
+"**Places**&nbsp;â–¸ **Persistent**, if the [[Persistent Folder|"
+"configure#persistent_folder]] feature is turned on."
 msgstr ""
 
 #. type: Bullet: '   - '
-#, markdown-text
 msgid ""
 "Your persistent bookmarks are available in *Tor Browser*, if the [[Tor "
 "Browser Bookmarks|configure#bookmarks]] feature is turned on."
 msgstr ""
 
 #. type: Bullet: '   - '
-#, markdown-text
 msgid ""
 "Your [[Additional Software|additional_software]] packages are automatically "
-"installed when starting Tails, if the [[Additional "
-"Software|configure#additional_software]] feature is turned on."
+"installed when starting Tails, if the [[Additional Software|"
+"configure#additional_software]] feature is turned on."
 msgstr ""
diff --git a/wiki/src/doc/persistent_storage/use.pt.po b/wiki/src/doc/persistent_storage/use.pt.po
index 147e5f363a5..fde4fe3c1c7 100644
--- a/wiki/src/doc/persistent_storage/use.pt.po
+++ b/wiki/src/doc/persistent_storage/use.pt.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: tails-l10n@boum.org\n"
-"POT-Creation-Date: 2023-01-27 18:26+0100\n"
+"POT-Creation-Date: 2023-03-18 14:36+0100\n"
 "PO-Revision-Date: 2023-03-11 11:30+0000\n"
 "Last-Translator: xin <xin@riseup.net>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -19,62 +19,54 @@ msgstr ""
 "X-Generator: Weblate 4.9.1\n"
 
 #. type: Plain text
-#, markdown-text, no-wrap
+#, no-wrap
 msgid "[[!meta title=\"Unlocking and using the Persistent Storage\"]]\n"
 msgstr ""
 
 #. type: Plain text
-#, markdown-text
-msgid "To unlock your Persistent Storage and use the data that is stored in it:"
+msgid ""
+"To unlock your Persistent Storage and use the data that is stored in it:"
 msgstr ""
 
 #. type: Bullet: '1. '
-#, markdown-text
 msgid ""
 "When starting Tails, in the **Persistent Storage** section of the [[Welcome "
 "Screen|first_steps/welcome_screen]], enter your passphrase and click "
-"**Unlock**."
+"**Unlock Encryption**."
 msgstr ""
 
 #. type: Plain text
-#, markdown-text, no-wrap
-msgid ""
-"   [[!img first_steps/welcome_screen/persistence.png link=\"no\" "
-"alt=\"\"]]\n"
-msgstr ""
-"   [[!img first_steps/welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n"
+#, fuzzy, no-wrap
+#| msgid "   [[!img first_steps/welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n"
+msgid "   [[!img first_steps/welcome_screen/unlock_persistent_storage.png link=\"no\" alt=\"\"]]\n"
+msgstr "   [[!img first_steps/welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n"
 
 #. type: Bullet: '1. '
-#, markdown-text
 msgid "Start Tails."
 msgstr ""
 
 #. type: Bullet: '1. '
-#, markdown-text
 msgid ""
 "The data corresponding to each feature of the Persistent Storage that is "
 "turned on is automatically available. For example:"
 msgstr ""
 
 #. type: Bullet: '   - '
-#, markdown-text
 msgid ""
 "Your personal files in the *Persistent* folder are accessible from "
-"**Places**&nbsp;â–¸ **Persistent**, if the [[Persistent "
-"Folder|configure#persistent_folder]] feature is turned on."
+"**Places**&nbsp;â–¸ **Persistent**, if the [[Persistent Folder|"
+"configure#persistent_folder]] feature is turned on."
 msgstr ""
 
 #. type: Bullet: '   - '
-#, markdown-text
 msgid ""
 "Your persistent bookmarks are available in *Tor Browser*, if the [[Tor "
 "Browser Bookmarks|configure#bookmarks]] feature is turned on."
 msgstr ""
 
 #. type: Bullet: '   - '
-#, markdown-text
 msgid ""
 "Your [[Additional Software|additional_software]] packages are automatically "
-"installed when starting Tails, if the [[Additional "
-"Software|configure#additional_software]] feature is turned on."
+"installed when starting Tails, if the [[Additional Software|"
+"configure#additional_software]] feature is turned on."
 msgstr ""
diff --git a/wiki/src/doc/persistent_storage/use.ru.po b/wiki/src/doc/persistent_storage/use.ru.po
index 8cff4e341e0..2a9ad5d8649 100644
--- a/wiki/src/doc/persistent_storage/use.ru.po
+++ b/wiki/src/doc/persistent_storage/use.ru.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: tails-l10n@boum.org\n"
-"POT-Creation-Date: 2023-01-27 18:26+0100\n"
+"POT-Creation-Date: 2023-03-18 14:36+0100\n"
 "PO-Revision-Date: 2023-03-11 11:30+0000\n"
 "Last-Translator: xin <xin@riseup.net>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,67 +15,59 @@ msgstr ""
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
-"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
+"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
 "X-Generator: Weblate 4.9.1\n"
 
 #. type: Plain text
-#, markdown-text, no-wrap
+#, no-wrap
 msgid "[[!meta title=\"Unlocking and using the Persistent Storage\"]]\n"
 msgstr ""
 
 #. type: Plain text
-#, markdown-text
-msgid "To unlock your Persistent Storage and use the data that is stored in it:"
+msgid ""
+"To unlock your Persistent Storage and use the data that is stored in it:"
 msgstr ""
 
 #. type: Bullet: '1. '
-#, markdown-text
 msgid ""
 "When starting Tails, in the **Persistent Storage** section of the [[Welcome "
 "Screen|first_steps/welcome_screen]], enter your passphrase and click "
-"**Unlock**."
+"**Unlock Encryption**."
 msgstr ""
 
 #. type: Plain text
-#, markdown-text, no-wrap
-msgid ""
-"   [[!img first_steps/welcome_screen/persistence.png link=\"no\" "
-"alt=\"\"]]\n"
-msgstr ""
-"   [[!img first_steps/welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n"
+#, fuzzy, no-wrap
+#| msgid "   [[!img first_steps/welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n"
+msgid "   [[!img first_steps/welcome_screen/unlock_persistent_storage.png link=\"no\" alt=\"\"]]\n"
+msgstr "   [[!img first_steps/welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n"
 
 #. type: Bullet: '1. '
-#, markdown-text
 msgid "Start Tails."
 msgstr ""
 
 #. type: Bullet: '1. '
-#, markdown-text
 msgid ""
 "The data corresponding to each feature of the Persistent Storage that is "
 "turned on is automatically available. For example:"
 msgstr ""
 
 #. type: Bullet: '   - '
-#, markdown-text
 msgid ""
 "Your personal files in the *Persistent* folder are accessible from "
-"**Places**&nbsp;â–¸ **Persistent**, if the [[Persistent "
-"Folder|configure#persistent_folder]] feature is turned on."
+"**Places**&nbsp;â–¸ **Persistent**, if the [[Persistent Folder|"
+"configure#persistent_folder]] feature is turned on."
 msgstr ""
 
 #. type: Bullet: '   - '
-#, markdown-text
 msgid ""
 "Your persistent bookmarks are available in *Tor Browser*, if the [[Tor "
 "Browser Bookmarks|configure#bookmarks]] feature is turned on."
 msgstr ""
 
 #. type: Bullet: '   - '
-#, markdown-text
 msgid ""
 "Your [[Additional Software|additional_software]] packages are automatically "
-"installed when starting Tails, if the [[Additional "
-"Software|configure#additional_software]] feature is turned on."
+"installed when starting Tails, if the [[Additional Software|"
+"configure#additional_software]] feature is turned on."
 msgstr ""
diff --git a/wiki/src/doc/sensitive_documents.index.de.po b/wiki/src/doc/sensitive_documents.index.de.po
index 6b55151a57b..16d08d560ca 100644
--- a/wiki/src/doc/sensitive_documents.index.de.po
+++ b/wiki/src/doc/sensitive_documents.index.de.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
-"POT-Creation-Date: 2023-01-27 18:26+0100\n"
+"POT-Creation-Date: 2023-03-18 14:36+0100\n"
 "PO-Revision-Date: 2016-02-15 01:25+0100\n"
 "Last-Translator: Tails translators <tails@boum.org>\n"
 "Language-Team: \n"
@@ -51,3 +51,13 @@ msgstr "[[!traillink Multimedia|sensitive_documents/sound_and_video]]"
 msgid "[[Printing and scanning|sensitive_documents/printing_and_scanning]]"
 msgstr ""
 "[[!traillink  Drucken_und_Scannen|sensitive_documents/printing_and_scanning]]"
+
+#. type: Bullet: '  - '
+#, fuzzy
+#| msgid ""
+#| "[[!traillink Printing_and_scanning|sensitive_documents/"
+#| "printing_and_scanning]]"
+msgid ""
+"[[Screenshot and screencast|sensitive_documents/screenshot_and_screencast]]"
+msgstr ""
+"[[!traillink  Drucken_und_Scannen|sensitive_documents/printing_and_scanning]]"
diff --git a/wiki/src/doc/sensitive_documents.index.es.po b/wiki/src/doc/sensitive_documents.index.es.po
index 517c86f6c56..b9dac0c897a 100644
--- a/wiki/src/doc/sensitive_documents.index.es.po
+++ b/wiki/src/doc/sensitive_documents.index.es.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tails\n"
 "Report-Msgid-Bugs-To: tails-l10n@boum.org\n"
-"POT-Creation-Date: 2023-01-27 18:26+0100\n"
+"POT-Creation-Date: 2023-03-18 14:36+0100\n"
 "PO-Revision-Date: 2018-02-09 21:32+0000\n"
 "Last-Translator: Weblate Admin <admin@example.com>\n"
 "Language-Team: Spanish <https://translate.tails.boum.org/projects/tails/"
@@ -53,3 +53,13 @@ msgstr "[[!traillink Audio_y_video|sensitive_documents/sound_and_video]]"
 msgid "[[Printing and scanning|sensitive_documents/printing_and_scanning]]"
 msgstr ""
 "[[!traillink Imprimir_y_escanear|sensitive_documents/printing_and_scanning]]"
+
+#. type: Bullet: '  - '
+#, fuzzy
+#| msgid ""
+#| "[[!traillink Printing_and_scanning|sensitive_documents/"
+#| "printing_and_scanning]]"
+msgid ""
+"[[Screenshot and screencast|sensitive_documents/screenshot_and_screencast]]"
+msgstr ""
+"[[!traillink Imprimir_y_escanear|sensitive_documents/printing_and_scanning]]"
diff --git a/wiki/src/doc/sensitive_documents.index.fr.po b/wiki/src/doc/sensitive_documents.index.fr.po
index 399af47c488..c0cc527f84a 100644
--- a/wiki/src/doc/sensitive_documents.index.fr.po
+++ b/wiki/src/doc/sensitive_documents.index.fr.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tails\n"
 "Report-Msgid-Bugs-To: tails-l10n@boum.org\n"
-"POT-Creation-Date: 2023-01-27 18:26+0100\n"
+"POT-Creation-Date: 2023-03-18 14:36+0100\n"
 "PO-Revision-Date: 2023-02-08 10:28+0000\n"
 "Last-Translator: xin <xin@riseup.net>\n"
 "Language-Team: Tails translators <tails@boum.org>\n"
@@ -38,6 +38,13 @@ msgstr "[[Son et vidéo|sensitive_documents/sound_and_video]]"
 msgid "[[Printing and scanning|sensitive_documents/printing_and_scanning]]"
 msgstr "[[Imprimer et scanner|sensitive_documents/printing_and_scanning]]"
 
+#. type: Bullet: '  - '
+#, fuzzy
+#| msgid "[[Printing and scanning|sensitive_documents/printing_and_scanning]]"
+msgid ""
+"[[Screenshot and screencast|sensitive_documents/screenshot_and_screencast]]"
+msgstr "[[Imprimer et scanner|sensitive_documents/printing_and_scanning]]"
+
 #~ msgid ""
 #~ "[[!traillink Desktop_publishing|sensitive_documents/desktop_publishing]]"
 #~ msgstr ""
diff --git a/wiki/src/doc/sensitive_documents.index.it.po b/wiki/src/doc/sensitive_documents.index.it.po
index 9b9be128bf3..4c97a975445 100644
--- a/wiki/src/doc/sensitive_documents.index.it.po
+++ b/wiki/src/doc/sensitive_documents.index.it.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
-"POT-Creation-Date: 2023-01-27 18:26+0100\n"
+"POT-Creation-Date: 2023-03-18 14:36+0100\n"
 "PO-Revision-Date: 2017-07-09 01:12+0000\n"
 "Last-Translator: \n"
 "Language-Team: ita <transitails@inventati.org>\n"
@@ -51,3 +51,13 @@ msgstr "[[!traillink Suoni_e_video|sensitive_documents/sound_and_video]]"
 msgid "[[Printing and scanning|sensitive_documents/printing_and_scanning]]"
 msgstr ""
 "[[!traillink Stampa_e_scansione|sensitive_documents/printing_and_scanning]]"
+
+#. type: Bullet: '  - '
+#, fuzzy
+#| msgid ""
+#| "[[!traillink Printing_and_scanning|sensitive_documents/"
+#| "printing_and_scanning]]"
+msgid ""
+"[[Screenshot and screencast|sensitive_documents/screenshot_and_screencast]]"
+msgstr ""
+"[[!traillink Stampa_e_scansione|sensitive_documents/printing_and_scanning]]"
diff --git a/wiki/src/doc/sensitive_documents.index.pt.po b/wiki/src/doc/sensitive_documents.index.pt.po
index d588792f591..8262a78aaf3 100644
--- a/wiki/src/doc/sensitive_documents.index.pt.po
+++ b/wiki/src/doc/sensitive_documents.index.pt.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: tails-l10n@boum.org\n"
-"POT-Creation-Date: 2023-01-27 18:26+0100\n"
+"POT-Creation-Date: 2023-03-18 14:36+0100\n"
 "PO-Revision-Date: 2022-06-11 12:40+0000\n"
 "Last-Translator: drebs <drebs@riseup.net>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -57,6 +57,17 @@ msgstr ""
 "[[!traillink Imprimindo_e_escaneando|sensitive_documents/"
 "printing_and_scanning]]"
 
+#. type: Bullet: '  - '
+#, fuzzy
+#| msgid ""
+#| "[[!traillink Printing_and_scanning|sensitive_documents/"
+#| "printing_and_scanning]]"
+msgid ""
+"[[Screenshot and screencast|sensitive_documents/screenshot_and_screencast]]"
+msgstr ""
+"[[!traillink Imprimindo_e_escaneando|sensitive_documents/"
+"printing_and_scanning]]"
+
 #~ msgid ""
 #~ "[[!traillink Desktop_publishing|sensitive_documents/desktop_publishing]]"
 #~ msgstr "[[!traillink Editoração|sensitive_documents/desktop_publishing]]"
diff --git a/wiki/src/doc/sensitive_documents.index.ru.po b/wiki/src/doc/sensitive_documents.index.ru.po
index 4ee83c1d606..bd055f47535 100644
--- a/wiki/src/doc/sensitive_documents.index.ru.po
+++ b/wiki/src/doc/sensitive_documents.index.ru.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: tails-l10n@boum.org\n"
-"POT-Creation-Date: 2023-01-27 18:26+0100\n"
+"POT-Creation-Date: 2023-03-18 14:36+0100\n"
 "PO-Revision-Date: 2021-12-24 19:25+0000\n"
 "Last-Translator: Алексей Коломенцев <Themanwhosoldtheworld2021@gmail.com>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,8 +15,8 @@ msgstr ""
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
-"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
+"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
 "X-Generator: Weblate 3.11.3\n"
 
 #. type: Bullet: '  - '
@@ -56,3 +56,14 @@ msgid "[[Printing and scanning|sensitive_documents/printing_and_scanning]]"
 msgstr ""
 "[[!traillink Печать_и_сканирование|sensitive_documents/"
 "printing_and_scanning]]"
+
+#. type: Bullet: '  - '
+#, fuzzy
+#| msgid ""
+#| "[[!traillink Printing_and_scanning|sensitive_documents/"
+#| "printing_and_scanning]]"
+msgid ""
+"[[Screenshot and screencast|sensitive_documents/screenshot_and_screencast]]"
+msgstr ""
+"[[!traillink Печать_и_сканирование|sensitive_documents/"
+"printing_and_scanning]]"
diff --git a/wiki/src/doc/sensitive_documents/screenshot_and_screencast.de.po b/wiki/src/doc/sensitive_documents/screenshot_and_screencast.de.po
new file mode 100644
index 00000000000..616f87df1fa
--- /dev/null
+++ b/wiki/src/doc/sensitive_documents/screenshot_and_screencast.de.po
@@ -0,0 +1,100 @@
+# SOME DESCRIPTIVE TITLE
+# Copyright (C) YEAR Free Software Foundation, Inc.
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2023-03-18 14:36+0100\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "[[!meta title=\"Screenshot and screencast\"]]\n"
+msgstr ""
+
+#. type: Title =
+#, markdown-text, no-wrap
+msgid "Taking a screenshot"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid ""
+"To take a screenshot of the entire screen, part of the screen, or a single "
+"window choose **Applications**&nbsp;â–¸ **Screenhost**."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid ""
+"You can also press the **PrtScn** key of the keyboard to take a screenshot "
+"of the entire screen instantaneously. The screenshot is saved in "
+"**Places**&nbsp;â–¸ **Pictures**."
+msgstr ""
+
+#. type: Title =
+#, markdown-text, no-wrap
+msgid "Recording a screencast"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid "To take a screencast:"
+msgstr ""
+
+#. type: Bullet: '1. '
+#, markdown-text
+msgid "Press the key combination **Ctrl+Alt+Shift+R**."
+msgstr ""
+
+#. type: Bullet: '1. '
+#, markdown-text
+msgid ""
+"A red dot appears in the system menu near the top-right corner of the "
+"desktop when recording starts."
+msgstr ""
+
+#. type: Bullet: '1. '
+#, markdown-text
+msgid "Press again the key combination **Ctrl+Alt+Shift+R** to stop the screencast."
+msgstr ""
+
+#. type: Bullet: '1. '
+#, markdown-text
+msgid "The video is saved in **Places**&nbsp;â–¸ **Videos**."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "<div class=\"bug\">\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid ""
+"<p>Unfortunately, this screencast has no sound and more complete "
+"applications\n"
+"like <i>Kazam</i> stopped working in Tails 5.8 (December 2022). Tails 6.0 "
+"(mid\n"
+"2023) should integrate better screencast features. ([[!tails_ticket "
+"19441]])<p>\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "<p>Until then, you can record the sound with <i>Sound Recorder</i>.</p>\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "</div>\n"
+msgstr ""
diff --git a/wiki/src/doc/sensitive_documents/screenshot_and_screencast.es.po b/wiki/src/doc/sensitive_documents/screenshot_and_screencast.es.po
new file mode 100644
index 00000000000..616f87df1fa
--- /dev/null
+++ b/wiki/src/doc/sensitive_documents/screenshot_and_screencast.es.po
@@ -0,0 +1,100 @@
+# SOME DESCRIPTIVE TITLE
+# Copyright (C) YEAR Free Software Foundation, Inc.
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2023-03-18 14:36+0100\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "[[!meta title=\"Screenshot and screencast\"]]\n"
+msgstr ""
+
+#. type: Title =
+#, markdown-text, no-wrap
+msgid "Taking a screenshot"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid ""
+"To take a screenshot of the entire screen, part of the screen, or a single "
+"window choose **Applications**&nbsp;â–¸ **Screenhost**."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid ""
+"You can also press the **PrtScn** key of the keyboard to take a screenshot "
+"of the entire screen instantaneously. The screenshot is saved in "
+"**Places**&nbsp;â–¸ **Pictures**."
+msgstr ""
+
+#. type: Title =
+#, markdown-text, no-wrap
+msgid "Recording a screencast"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid "To take a screencast:"
+msgstr ""
+
+#. type: Bullet: '1. '
+#, markdown-text
+msgid "Press the key combination **Ctrl+Alt+Shift+R**."
+msgstr ""
+
+#. type: Bullet: '1. '
+#, markdown-text
+msgid ""
+"A red dot appears in the system menu near the top-right corner of the "
+"desktop when recording starts."
+msgstr ""
+
+#. type: Bullet: '1. '
+#, markdown-text
+msgid "Press again the key combination **Ctrl+Alt+Shift+R** to stop the screencast."
+msgstr ""
+
+#. type: Bullet: '1. '
+#, markdown-text
+msgid "The video is saved in **Places**&nbsp;â–¸ **Videos**."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "<div class=\"bug\">\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid ""
+"<p>Unfortunately, this screencast has no sound and more complete "
+"applications\n"
+"like <i>Kazam</i> stopped working in Tails 5.8 (December 2022). Tails 6.0 "
+"(mid\n"
+"2023) should integrate better screencast features. ([[!tails_ticket "
+"19441]])<p>\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "<p>Until then, you can record the sound with <i>Sound Recorder</i>.</p>\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "</div>\n"
+msgstr ""
diff --git a/wiki/src/doc/sensitive_documents/screenshot_and_screencast.fr.po b/wiki/src/doc/sensitive_documents/screenshot_and_screencast.fr.po
new file mode 100644
index 00000000000..616f87df1fa
--- /dev/null
+++ b/wiki/src/doc/sensitive_documents/screenshot_and_screencast.fr.po
@@ -0,0 +1,100 @@
+# SOME DESCRIPTIVE TITLE
+# Copyright (C) YEAR Free Software Foundation, Inc.
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2023-03-18 14:36+0100\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "[[!meta title=\"Screenshot and screencast\"]]\n"
+msgstr ""
+
+#. type: Title =
+#, markdown-text, no-wrap
+msgid "Taking a screenshot"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid ""
+"To take a screenshot of the entire screen, part of the screen, or a single "
+"window choose **Applications**&nbsp;â–¸ **Screenhost**."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid ""
+"You can also press the **PrtScn** key of the keyboard to take a screenshot "
+"of the entire screen instantaneously. The screenshot is saved in "
+"**Places**&nbsp;â–¸ **Pictures**."
+msgstr ""
+
+#. type: Title =
+#, markdown-text, no-wrap
+msgid "Recording a screencast"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid "To take a screencast:"
+msgstr ""
+
+#. type: Bullet: '1. '
+#, markdown-text
+msgid "Press the key combination **Ctrl+Alt+Shift+R**."
+msgstr ""
+
+#. type: Bullet: '1. '
+#, markdown-text
+msgid ""
+"A red dot appears in the system menu near the top-right corner of the "
+"desktop when recording starts."
+msgstr ""
+
+#. type: Bullet: '1. '
+#, markdown-text
+msgid "Press again the key combination **Ctrl+Alt+Shift+R** to stop the screencast."
+msgstr ""
+
+#. type: Bullet: '1. '
+#, markdown-text
+msgid "The video is saved in **Places**&nbsp;â–¸ **Videos**."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "<div class=\"bug\">\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid ""
+"<p>Unfortunately, this screencast has no sound and more complete "
+"applications\n"
+"like <i>Kazam</i> stopped working in Tails 5.8 (December 2022). Tails 6.0 "
+"(mid\n"
+"2023) should integrate better screencast features. ([[!tails_ticket "
+"19441]])<p>\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "<p>Until then, you can record the sound with <i>Sound Recorder</i>.</p>\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "</div>\n"
+msgstr ""
diff --git a/wiki/src/doc/sensitive_documents/screenshot_and_screencast.it.po b/wiki/src/doc/sensitive_documents/screenshot_and_screencast.it.po
new file mode 100644
index 00000000000..616f87df1fa
--- /dev/null
+++ b/wiki/src/doc/sensitive_documents/screenshot_and_screencast.it.po
@@ -0,0 +1,100 @@
+# SOME DESCRIPTIVE TITLE
+# Copyright (C) YEAR Free Software Foundation, Inc.
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2023-03-18 14:36+0100\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "[[!meta title=\"Screenshot and screencast\"]]\n"
+msgstr ""
+
+#. type: Title =
+#, markdown-text, no-wrap
+msgid "Taking a screenshot"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid ""
+"To take a screenshot of the entire screen, part of the screen, or a single "
+"window choose **Applications**&nbsp;â–¸ **Screenhost**."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid ""
+"You can also press the **PrtScn** key of the keyboard to take a screenshot "
+"of the entire screen instantaneously. The screenshot is saved in "
+"**Places**&nbsp;â–¸ **Pictures**."
+msgstr ""
+
+#. type: Title =
+#, markdown-text, no-wrap
+msgid "Recording a screencast"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid "To take a screencast:"
+msgstr ""
+
+#. type: Bullet: '1. '
+#, markdown-text
+msgid "Press the key combination **Ctrl+Alt+Shift+R**."
+msgstr ""
+
+#. type: Bullet: '1. '
+#, markdown-text
+msgid ""
+"A red dot appears in the system menu near the top-right corner of the "
+"desktop when recording starts."
+msgstr ""
+
+#. type: Bullet: '1. '
+#, markdown-text
+msgid "Press again the key combination **Ctrl+Alt+Shift+R** to stop the screencast."
+msgstr ""
+
+#. type: Bullet: '1. '
+#, markdown-text
+msgid "The video is saved in **Places**&nbsp;â–¸ **Videos**."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "<div class=\"bug\">\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid ""
+"<p>Unfortunately, this screencast has no sound and more complete "
+"applications\n"
+"like <i>Kazam</i> stopped working in Tails 5.8 (December 2022). Tails 6.0 "
+"(mid\n"
+"2023) should integrate better screencast features. ([[!tails_ticket "
+"19441]])<p>\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "<p>Until then, you can record the sound with <i>Sound Recorder</i>.</p>\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "</div>\n"
+msgstr ""
diff --git a/wiki/src/doc/sensitive_documents/screenshot_and_screencast.pt.po b/wiki/src/doc/sensitive_documents/screenshot_and_screencast.pt.po
new file mode 100644
index 00000000000..616f87df1fa
--- /dev/null
+++ b/wiki/src/doc/sensitive_documents/screenshot_and_screencast.pt.po
@@ -0,0 +1,100 @@
+# SOME DESCRIPTIVE TITLE
+# Copyright (C) YEAR Free Software Foundation, Inc.
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2023-03-18 14:36+0100\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "[[!meta title=\"Screenshot and screencast\"]]\n"
+msgstr ""
+
+#. type: Title =
+#, markdown-text, no-wrap
+msgid "Taking a screenshot"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid ""
+"To take a screenshot of the entire screen, part of the screen, or a single "
+"window choose **Applications**&nbsp;â–¸ **Screenhost**."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid ""
+"You can also press the **PrtScn** key of the keyboard to take a screenshot "
+"of the entire screen instantaneously. The screenshot is saved in "
+"**Places**&nbsp;â–¸ **Pictures**."
+msgstr ""
+
+#. type: Title =
+#, markdown-text, no-wrap
+msgid "Recording a screencast"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid "To take a screencast:"
+msgstr ""
+
+#. type: Bullet: '1. '
+#, markdown-text
+msgid "Press the key combination **Ctrl+Alt+Shift+R**."
+msgstr ""
+
+#. type: Bullet: '1. '
+#, markdown-text
+msgid ""
+"A red dot appears in the system menu near the top-right corner of the "
+"desktop when recording starts."
+msgstr ""
+
+#. type: Bullet: '1. '
+#, markdown-text
+msgid "Press again the key combination **Ctrl+Alt+Shift+R** to stop the screencast."
+msgstr ""
+
+#. type: Bullet: '1. '
+#, markdown-text
+msgid "The video is saved in **Places**&nbsp;â–¸ **Videos**."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "<div class=\"bug\">\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid ""
+"<p>Unfortunately, this screencast has no sound and more complete "
+"applications\n"
+"like <i>Kazam</i> stopped working in Tails 5.8 (December 2022). Tails 6.0 "
+"(mid\n"
+"2023) should integrate better screencast features. ([[!tails_ticket "
+"19441]])<p>\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "<p>Until then, you can record the sound with <i>Sound Recorder</i>.</p>\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "</div>\n"
+msgstr ""
diff --git a/wiki/src/doc/sensitive_documents/screenshot_and_screencast.ru.po b/wiki/src/doc/sensitive_documents/screenshot_and_screencast.ru.po
new file mode 100644
index 00000000000..616f87df1fa
--- /dev/null
+++ b/wiki/src/doc/sensitive_documents/screenshot_and_screencast.ru.po
@@ -0,0 +1,100 @@
+# SOME DESCRIPTIVE TITLE
+# Copyright (C) YEAR Free Software Foundation, Inc.
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2023-03-18 14:36+0100\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "[[!meta title=\"Screenshot and screencast\"]]\n"
+msgstr ""
+
+#. type: Title =
+#, markdown-text, no-wrap
+msgid "Taking a screenshot"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid ""
+"To take a screenshot of the entire screen, part of the screen, or a single "
+"window choose **Applications**&nbsp;â–¸ **Screenhost**."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid ""
+"You can also press the **PrtScn** key of the keyboard to take a screenshot "
+"of the entire screen instantaneously. The screenshot is saved in "
+"**Places**&nbsp;â–¸ **Pictures**."
+msgstr ""
+
+#. type: Title =
+#, markdown-text, no-wrap
+msgid "Recording a screencast"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid "To take a screencast:"
+msgstr ""
+
+#. type: Bullet: '1. '
+#, markdown-text
+msgid "Press the key combination **Ctrl+Alt+Shift+R**."
+msgstr ""
+
+#. type: Bullet: '1. '
+#, markdown-text
+msgid ""
+"A red dot appears in the system menu near the top-right corner of the "
+"desktop when recording starts."
+msgstr ""
+
+#. type: Bullet: '1. '
+#, markdown-text
+msgid "Press again the key combination **Ctrl+Alt+Shift+R** to stop the screencast."
+msgstr ""
+
+#. type: Bullet: '1. '
+#, markdown-text
+msgid "The video is saved in **Places**&nbsp;â–¸ **Videos**."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "<div class=\"bug\">\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid ""
+"<p>Unfortunately, this screencast has no sound and more complete "
+"applications\n"
+"like <i>Kazam</i> stopped working in Tails 5.8 (December 2022). Tails 6.0 "
+"(mid\n"
+"2023) should integrate better screencast features. ([[!tails_ticket "
+"19441]])<p>\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "<p>Until then, you can record the sound with <i>Sound Recorder</i>.</p>\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "</div>\n"
+msgstr ""
diff --git a/wiki/src/install/inc/steps/restart_first_time.inline.de.po b/wiki/src/install/inc/steps/restart_first_time.inline.de.po
index 4227863d000..71d84afea95 100644
--- a/wiki/src/install/inc/steps/restart_first_time.inline.de.po
+++ b/wiki/src/install/inc/steps/restart_first_time.inline.de.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: tails-l10n@boum.org\n"
-"POT-Creation-Date: 2022-08-30 21:51+0000\n"
+"POT-Creation-Date: 2023-03-18 14:36+0100\n"
 "PO-Revision-Date: 2023-03-11 19:28+0000\n"
 "Last-Translator: xin <xin@riseup.net>\n"
 "Language-Team: \n"
@@ -40,10 +40,8 @@ msgid ""
 "  <source src=\"https://tails.boum.org/install/inc/success/install.mp4\" type=\"video/mp4\" />\n"
 "</video>\n"
 msgstr ""
-"<video autoplay loop muted width=\"200\" height=\"200\" poster=\"https"
-"://tails.boum.org/install/inc/success/install.png\">\n"
-"  <source src=\"https://tails.boum.org/install/inc/success/install.mp4\" "
-"type=\"video/mp4\" />\n"
+"<video autoplay loop muted width=\"200\" height=\"200\" poster=\"https://tails.boum.org/install/inc/success/install.png\">\n"
+"  <source src=\"https://tails.boum.org/install/inc/success/install.mp4\" type=\"video/mp4\" />\n"
 "</video>\n"
 
 #. type: Plain text
@@ -119,79 +117,57 @@ msgstr ""
 #. type: Plain text
 #, no-wrap
 msgid "     [[!img install/inc/qrcodes/tails_boum_org_install_windows_back_1.png class=\"windows\" link=\"no\" alt=\"\"]]\n"
-msgstr ""
-"     [[!img install/inc/qrcodes/tails_boum_org_install_windows_back_1.png "
-"class=\"windows\" link=\"no\" alt=\"\"]]\n"
+msgstr "     [[!img install/inc/qrcodes/tails_boum_org_install_windows_back_1.png class=\"windows\" link=\"no\" alt=\"\"]]\n"
 
 #. type: Plain text
 #, no-wrap
 msgid "     [[!img install/inc/qrcodes/tails_boum_org_install_mac_back_1.png class=\"mac\" link=\"no\" alt=\"\"]]\n"
-msgstr ""
-"     [[!img install/inc/qrcodes/tails_boum_org_install_mac_back_1.png class="
-"\"mac\" link=\"no\" alt=\"\"]]\n"
+msgstr "     [[!img install/inc/qrcodes/tails_boum_org_install_mac_back_1.png class=\"mac\" link=\"no\" alt=\"\"]]\n"
 
 #. type: Plain text
 #, no-wrap
 msgid "     [[!img install/inc/qrcodes/tails_boum_org_install_linux_back_1.png class=\"linux\" link=\"no\" alt=\"\"]]\n"
-msgstr ""
-"     [[!img install/inc/qrcodes/tails_boum_org_install_linux_back_1.png "
-"class=\"linux\" link=\"no\" alt=\"\"]]\n"
+msgstr "     [[!img install/inc/qrcodes/tails_boum_org_install_linux_back_1.png class=\"linux\" link=\"no\" alt=\"\"]]\n"
 
 #. type: Plain text
 #, no-wrap
 msgid "     [[!img install/inc/qrcodes/tails_boum_org_install_expert_back_1.png class=\"expert\" link=\"no\" alt=\"\"]]\n"
-msgstr ""
-"     [[!img install/inc/qrcodes/tails_boum_org_install_expert_back_1.png "
-"class=\"expert\" link=\"no\" alt=\"\"]]\n"
+msgstr "     [[!img install/inc/qrcodes/tails_boum_org_install_expert_back_1.png class=\"expert\" link=\"no\" alt=\"\"]]\n"
 
 #. type: Plain text
 #, no-wrap
 msgid "     [[!img install/inc/qrcodes/tails_boum_org_install_clone_pc_back_1.png class=\"pc-clone\" link=\"no\" alt=\"\"]]\n"
-msgstr ""
-"     [[!img install/inc/qrcodes/tails_boum_org_install_clone_pc_back_1.png "
-"class=\"pc-clone\" link=\"no\" alt=\"\"]]\n"
+msgstr "     [[!img install/inc/qrcodes/tails_boum_org_install_clone_pc_back_1.png class=\"pc-clone\" link=\"no\" alt=\"\"]]\n"
 
 #. type: Plain text
 #, no-wrap
 msgid "     [[!img install/inc/qrcodes/tails_boum_org_install_clone_mac_back_1.png class=\"mac-clone\" link=\"no\" alt=\"\"]]\n"
-msgstr ""
-"     [[!img install/inc/qrcodes/tails_boum_org_install_clone_mac_back_1.png "
-"class=\"mac-clone\" link=\"no\" alt=\"\"]]\n"
+msgstr "     [[!img install/inc/qrcodes/tails_boum_org_install_clone_mac_back_1.png class=\"mac-clone\" link=\"no\" alt=\"\"]]\n"
 
 #. type: Plain text
 #, no-wrap
 msgid "     [[!img install/inc/qrcodes/tails_boum_org_upgrade_tails_back_1.png class=\"upgrade-tails\" link=\"no\" alt=\"\"]]\n"
-msgstr ""
-"     [[!img install/inc/qrcodes/tails_boum_org_upgrade_tails_back_1.png class"
-"=\"upgrade-tails\" link=\"no\" alt=\"\"]]\n"
+msgstr "     [[!img install/inc/qrcodes/tails_boum_org_upgrade_tails_back_1.png class=\"upgrade-tails\" link=\"no\" alt=\"\"]]\n"
 
 #. type: Plain text
 #, no-wrap
 msgid "     [[!img install/inc/qrcodes/tails_boum_org_upgrade_windows_back_1.png class=\"upgrade-windows\" link=\"no\" alt=\"\"]]\n"
-msgstr ""
-"     [[!img install/inc/qrcodes/tails_boum_org_upgrade_windows_back_1.png "
-"class=\"upgrade-windows\" link=\"no\" alt=\"\"]]\n"
+msgstr "     [[!img install/inc/qrcodes/tails_boum_org_upgrade_windows_back_1.png class=\"upgrade-windows\" link=\"no\" alt=\"\"]]\n"
 
 #. type: Plain text
 #, no-wrap
 msgid "     [[!img install/inc/qrcodes/tails_boum_org_upgrade_mac_back_1.png class=\"upgrade-mac\" link=\"no\" alt=\"\"]]\n"
-msgstr ""
-"     [[!img install/inc/qrcodes/tails_boum_org_upgrade_mac_back_1.png class"
-"=\"upgrade-mac\" link=\"no\" alt=\"\"]]\n"
+msgstr "     [[!img install/inc/qrcodes/tails_boum_org_upgrade_mac_back_1.png class=\"upgrade-mac\" link=\"no\" alt=\"\"]]\n"
 
 #. type: Plain text
 #, no-wrap
 msgid "     [[!img install/inc/qrcodes/tails_boum_org_upgrade_linux_back_1.png class=\"upgrade-linux\" link=\"no\" alt=\"\"]]\n"
-msgstr ""
-"     [[!img install/inc/qrcodes/tails_boum_org_upgrade_linux_back_1.png class"
-"=\"upgrade-linux\" link=\"no\" alt=\"\"]]\n"
+msgstr "     [[!img install/inc/qrcodes/tails_boum_org_upgrade_linux_back_1.png class=\"upgrade-linux\" link=\"no\" alt=\"\"]]\n"
 
 #. type: Plain text
 #, no-wrap
 msgid "     [[!img install/inc/qrcodes/tails_boum_org_upgrade_clone_back_1.png class=\"upgrade-clone\" link=\"no\" alt=\"\"]]\n"
-msgstr ""
-"     [[!img install/inc/qrcodes/tails_boum_org_upgrade_clone_back_1.png class"
-"=\"upgrade-clone\" link=\"no\" alt=\"\"]]\n"
+msgstr "     [[!img install/inc/qrcodes/tails_boum_org_upgrade_clone_back_1.png class=\"upgrade-clone\" link=\"no\" alt=\"\"]]\n"
 
 #. type: Bullet: '   - '
 #, fuzzy
@@ -317,9 +293,7 @@ msgstr "<div class=\"mac mac-clone upgrade-mac\">\n"
 #. type: Plain text
 #, no-wrap
 msgid "[[!inline pages=\"install/inc/steps/mac_startup_disks.inline\" raw=\"yes\" sort=\"age\"]]\n"
-msgstr ""
-"[[!inline pages=\"install/inc/steps/mac_startup_disks.inline.de\" raw=\"yes\""
-" sort=\"age\"]]\n"
+msgstr "[[!inline pages=\"install/inc/steps/mac_startup_disks.inline.de\" raw=\"yes\" sort=\"age\"]]\n"
 
 #. type: Plain text
 #, no-wrap
@@ -467,7 +441,7 @@ msgstr ""
 #. type: Plain text
 #, fuzzy, no-wrap
 #| msgid "   [[!img doc/first_steps/welcome_screen/tails-greeter-welcome-to-tails.png link=\"no\"]]\n"
-msgid "   [[!img doc/first_steps/welcome_screen/welcome-screen.png link=\"no\" alt=\"Welcome to Tails!\"]]\n"
+msgid "   [[!img doc/first_steps/welcome_screen/welcome_screen.png link=\"no\" alt=\"Welcome to Tails!\"]]\n"
 msgstr "   [[!img doc/first_steps/welcome_screen/tails-greeter-welcome-to-tails.png link=\"no\"]]\n"
 
 #. type: Plain text
@@ -593,8 +567,8 @@ msgstr "   [[!img install/inc/screenshots/desktop.png link=\"no\"]]\n"
 #~ "   The following section applies if the Boot Loader appears but not\n"
 #~ "   the Welcome Screen when starting Tails.\n"
 #~ msgstr ""
-#~ "   Der folgende Abschnitt trifft zu, wenn das Menü <span class=\"guilabel"
-#~ "\">Boot Tails</span>, aber nicht\n"
+#~ "   Der folgende Abschnitt trifft zu, wenn das Menü <span "
+#~ "class=\"guilabel\">Boot Tails</span>, aber nicht\n"
 #~ "   der <span class=\"application\">Tails Greeter</span> beim Start von "
 #~ "Tails erscheint.\n"
 
@@ -637,8 +611,8 @@ msgstr "   [[!img install/inc/screenshots/desktop.png link=\"no\"]]\n"
 #~ "link=\"no\" alt=\"GRUB with a list of\n"
 #~ "           options starting with 'setparams Tails'\"]]\n"
 #~ msgstr ""
-#~ "      [[!img doc/advanced_topics/boot_options/grub-with-options.png link="
-#~ "\"no\"]]\n"
+#~ "      [[!img doc/advanced_topics/boot_options/grub-with-options.png "
+#~ "link=\"no\"]]\n"
 
 #~ msgid ""
 #~ "Press the <span class=\"keycap\">Backspace</span> key several times to "
@@ -702,8 +676,8 @@ msgstr "   [[!img install/inc/screenshots/desktop.png link=\"no\"]]\n"
 #~ msgid ""
 #~ "           [[!img doc/advanced_topics/boot_options/syslinux-with-options."
 #~ "png link=\"no\" alt=\"SYSLINUX with\n"
-#~ "           a list of options starting with '/live/vmlinuz' at the bottom"
-#~ "\"]]\n"
+#~ "           a list of options starting with '/live/vmlinuz' at the "
+#~ "bottom\"]]\n"
 #~ msgstr ""
 #~ "      [[!img doc/advanced_topics/boot_options/syslinux-with-options.png "
 #~ "link=\"no\"]]\n"
@@ -734,21 +708,23 @@ msgstr "   [[!img install/inc/screenshots/desktop.png link=\"no\"]]\n"
 #~ "Menu</span>, another screen called <span class=\"application\">Tails "
 #~ "Greeter</span> appears."
 #~ msgstr ""
-#~ "   Der folgende Abschnitt trifft zu, wenn das Menü <span class=\"guilabel"
-#~ "\">Boot Tails</span>, aber nicht\n"
+#~ "   Der folgende Abschnitt trifft zu, wenn das Menü <span "
+#~ "class=\"guilabel\">Boot Tails</span>, aber nicht\n"
 #~ "   der <span class=\"application\">Tails Greeter</span> beim Start von "
 #~ "Tails erscheint.\n"
 
 #~ msgid ""
 #~ "If the error message is <span class=\"code\">/bin/sh: can't access tty; "
-#~ "job control turned off</span> followed by <span class=\"code"
-#~ "\">(initramfs)</span>, then try removing the <span class=\"code\">live-"
-#~ "media=removable</span> option from the boot command line."
+#~ "job control turned off</span> followed by <span "
+#~ "class=\"code\">(initramfs)</span>, then try removing the <span "
+#~ "class=\"code\">live-media=removable</span> option from the boot command "
+#~ "line."
 #~ msgstr ""
 #~ "Wenn die Fehlermeldung <span class=\"code\">/bin/sh: can't access tty; "
-#~ "job control turned off</span> gefolgt von <span class=\"code"
-#~ "\">(initramfs)</span> ist, versuchen Sie die Option <span class=\"code"
-#~ "\">live-media=removable</span> von der Boot-Kommandozeile zu entfernen."
+#~ "job control turned off</span> gefolgt von <span "
+#~ "class=\"code\">(initramfs)</span> ist, versuchen Sie die Option <span "
+#~ "class=\"code\">live-media=removable</span> von der Boot-Kommandozeile zu "
+#~ "entfernen."
 
 #, fuzzy
 #~| msgid ""
@@ -831,9 +807,9 @@ msgstr "   [[!img install/inc/screenshots/desktop.png link=\"no\"]]\n"
 #~ "1. <p>\n"
 #~ "     <span class=\"mac-dvd\">Stellen Sie sicher, dass die DVD in den "
 #~ "Computer eingelegt ist.</span>\n"
-#~ "     <span class=\"usb\">Lassen Sie den <span class=\"windows linux mac"
-#~ "\">ersten</span> USB-Stick angeschlossen und starten Sie den Computer neu."
-#~ "</span>\n"
+#~ "     <span class=\"usb\">Lassen Sie den <span class=\"windows linux "
+#~ "mac\">ersten</span> USB-Stick angeschlossen und starten Sie den Computer "
+#~ "neu.</span>\n"
 #~ "   </p>\n"
 #~ "   <p class=\"mac-dvd clone upgrade-tails\">Fahren Sie den Computer "
 #~ "herunter.</p>\n"
@@ -862,9 +838,10 @@ msgstr "   [[!img install/inc/screenshots/desktop.png link=\"no\"]]\n"
 #~ "Loader Menu</span> appears and Tails starts automatically after 4 seconds."
 #~ "</p>"
 #~ msgstr ""
-#~ "Wenn der Computer Tails startet, erscheint das Menü <span class=\"guilabel"
-#~ "\">Boot Tails</span>. Wählen Sie <span class=\"guilabel\">Live</span> aus "
-#~ "und drücken Sie <span class=\"keycap\">Enter</span>."
+#~ "Wenn der Computer Tails startet, erscheint das Menü <span "
+#~ "class=\"guilabel\">Boot Tails</span>. Wählen Sie <span "
+#~ "class=\"guilabel\">Live</span> aus und drücken Sie <span "
+#~ "class=\"keycap\">Enter</span>."
 
 #, fuzzy
 #~| msgid ""
@@ -935,8 +912,8 @@ msgstr "   [[!img install/inc/screenshots/desktop.png link=\"no\"]]\n"
 #~ "Loader Menu</span>\n"
 #~ "   does not appear when starting on a USB stick.\n"
 #~ msgstr ""
-#~ "   Der folgende Abschnitt trifft zu, wenn das Menü <span class=\"guilabel"
-#~ "\">Boot Tails</span>, aber nicht\n"
+#~ "   Der folgende Abschnitt trifft zu, wenn das Menü <span "
+#~ "class=\"guilabel\">Boot Tails</span>, aber nicht\n"
 #~ "   der <span class=\"application\">Tails Greeter</span> beim Start von "
 #~ "Tails erscheint.\n"
 
@@ -966,21 +943,21 @@ msgstr "   [[!img install/inc/screenshots/desktop.png link=\"no\"]]\n"
 
 #, fuzzy
 #~| msgid ""
-#~| "     [[!img install/inc/screenshots/tails_boot_menu.png link=\"no\" alt="
-#~| "\"Black screen with Tails artwork. 'Boot menu' with two options 'Live' "
-#~| "and 'Live (failsafe)'.\"]]\n"
+#~| "     [[!img install/inc/screenshots/tails_boot_menu.png link=\"no\" "
+#~| "alt=\"Black screen with Tails artwork. 'Boot menu' with two options "
+#~| "'Live' and 'Live (failsafe)'.\"]]\n"
 #~ msgid ""
-#~ "     [[!img install/inc/screenshots/tails_boot_menu.png link=\"no\" alt="
-#~ "\"Black screen with Tails artwork. Boot Loader Menu with two options "
+#~ "     [[!img install/inc/screenshots/tails_boot_menu.png link=\"no\" "
+#~ "alt=\"Black screen with Tails artwork. Boot Loader Menu with two options "
 #~ "'Tails' and 'Tails (Troubleshooting Mode)'.\"]]\n"
 #~ msgstr ""
-#~ "     [[!img install/inc/screenshots/tails_boot_menu.png link=\"no\" alt="
-#~ "\"Schwarzer Bildschirm mit Tails-Hintergrund. 'Boot-Menü' mit den "
+#~ "     [[!img install/inc/screenshots/tails_boot_menu.png link=\"no\" "
+#~ "alt=\"Schwarzer Bildschirm mit Tails-Hintergrund. 'Boot-Menü' mit den "
 #~ "Optionen 'Live' und 'Live (failsafe)'.\"]]\n"
 
 #~ msgid ""
-#~ "After 30&ndash;60 seconds, another screen called <span class=\"application"
-#~ "\">Tails Greeter</span> appears."
+#~ "After 30&ndash;60 seconds, another screen called <span "
+#~ "class=\"application\">Tails Greeter</span> appears."
 #~ msgstr ""
 #~ "Nach 30&ndash;60 Sekunden erscheint eine andere Bildschirmansicht, die "
 #~ "<span class=\"application\">Tails Greeter</span> genannt wird."
diff --git a/wiki/src/install/inc/steps/restart_first_time.inline.es.po b/wiki/src/install/inc/steps/restart_first_time.inline.es.po
index f173fda22df..c2c2ba95c84 100644
--- a/wiki/src/install/inc/steps/restart_first_time.inline.es.po
+++ b/wiki/src/install/inc/steps/restart_first_time.inline.es.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: tails-l10n@boum.org\n"
-"POT-Creation-Date: 2022-08-30 21:51+0000\n"
+"POT-Creation-Date: 2023-03-18 14:36+0100\n"
 "PO-Revision-Date: 2023-03-11 19:29+0000\n"
 "Last-Translator: xin <xin@riseup.net>\n"
 "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/"
@@ -40,10 +40,8 @@ msgid ""
 "  <source src=\"https://tails.boum.org/install/inc/success/install.mp4\" type=\"video/mp4\" />\n"
 "</video>\n"
 msgstr ""
-"<video autoplay loop muted width=\"200\" height=\"200\" poster=\"https"
-"://tails.boum.org/install/inc/success/install.png\">\n"
-"  <source src=\"https://tails.boum.org/install/inc/success/install.mp4\" "
-"type=\"video/mp4\" />\n"
+"<video autoplay loop muted width=\"200\" height=\"200\" poster=\"https://tails.boum.org/install/inc/success/install.png\">\n"
+"  <source src=\"https://tails.boum.org/install/inc/success/install.mp4\" type=\"video/mp4\" />\n"
 "</video>\n"
 
 #. type: Plain text
@@ -442,8 +440,9 @@ msgstr ""
 "Bienvenida."
 
 #. type: Plain text
-#, no-wrap
-msgid "   [[!img doc/first_steps/welcome_screen/welcome-screen.png link=\"no\" alt=\"Welcome to Tails!\"]]\n"
+#, fuzzy, no-wrap
+#| msgid "   [[!img doc/first_steps/welcome_screen/welcome-screen.png link=\"no\" alt=\"Welcome to Tails!\"]]\n"
+msgid "   [[!img doc/first_steps/welcome_screen/welcome_screen.png link=\"no\" alt=\"Welcome to Tails!\"]]\n"
 msgstr "   [[!img doc/first_steps/welcome_screen/welcome-screen.png link=\"no\" alt=\"¡Bienvenido a Tails!\"]]\n"
 
 #. type: Plain text
@@ -607,9 +606,9 @@ msgstr "   [[!img install/inc/screenshots/desktop.png link=\"no\" alt=\"Escritor
 #~ "link=\"no\" alt=\"GRUB with a list of\n"
 #~ "           options starting with 'setparams Tails'\"]]\n"
 #~ msgstr ""
-#~ "      [[!img doc/advanced_topics/boot_options/grub-with-options.png link="
-#~ "\"no\" alt=\"Pantalla negra con el logo de Tails y una lista de opciones "
-#~ "de arranque\"]]\n"
+#~ "      [[!img doc/advanced_topics/boot_options/grub-with-options.png "
+#~ "link=\"no\" alt=\"Pantalla negra con el logo de Tails y una lista de "
+#~ "opciones de arranque\"]]\n"
 
 #~ msgid ""
 #~ "Press the <span class=\"keycap\">Backspace</span> key several times to "
@@ -658,8 +657,8 @@ msgstr "   [[!img install/inc/screenshots/desktop.png link=\"no\" alt=\"Escritor
 #~ msgid ""
 #~ "           [[!img doc/advanced_topics/boot_options/syslinux-with-options."
 #~ "png link=\"no\" alt=\"SYSLINUX with\n"
-#~ "           a list of options starting with '/live/vmlinuz' at the bottom"
-#~ "\"]]\n"
+#~ "           a list of options starting with '/live/vmlinuz' at the "
+#~ "bottom\"]]\n"
 #~ msgstr ""
 #~ "      [[!img doc/advanced_topics/boot_options/syslinux-with-options.png "
 #~ "link=\"no\" alt=\"Pantalla negra con el logo de Tails y una lista de "
@@ -699,28 +698,29 @@ msgstr "   [[!img install/inc/screenshots/desktop.png link=\"no\" alt=\"Escritor
 #~ "Greeter</span> appears."
 #~ msgstr ""
 #~ "Uno o dos minutos después del <span class=\"application\">Menú de "
-#~ "cargador de arranque</span>, aparece otra pantalla titulada <span class="
-#~ "\"application\">Tails Greeter</span>."
+#~ "cargador de arranque</span>, aparece otra pantalla titulada <span "
+#~ "class=\"application\">Tails Greeter</span>."
 
 #~ msgid ""
-#~ "If Tails previously failed to start and displayed the <span class=\"code"
-#~ "\">Probing EDD (edd=off to disable)...</span> error, then type `edd=off` "
-#~ "to add this option to the command line."
+#~ "If Tails previously failed to start and displayed the <span "
+#~ "class=\"code\">Probing EDD (edd=off to disable)...</span> error, then "
+#~ "type `edd=off` to add this option to the command line."
 #~ msgstr ""
-#~ "Si Tails falló previamente al iniciar y mostró el error <span class=\"code"
-#~ "\">Probing EDD (edd=off to disable)...</span>, escribe `edd=off` para "
-#~ "agregar esta opción a la línea de comandos."
+#~ "Si Tails falló previamente al iniciar y mostró el error <span "
+#~ "class=\"code\">Probing EDD (edd=off to disable)...</span>, escribe "
+#~ "`edd=off` para agregar esta opción a la línea de comandos."
 
 #~ msgid ""
 #~ "If the error message is <span class=\"code\">/bin/sh: can't access tty; "
-#~ "job control turned off</span> followed by <span class=\"code"
-#~ "\">(initramfs)</span>, then try removing the <span class=\"code\">live-"
-#~ "media=removable</span> option from the boot command line."
+#~ "job control turned off</span> followed by <span "
+#~ "class=\"code\">(initramfs)</span>, then try removing the <span "
+#~ "class=\"code\">live-media=removable</span> option from the boot command "
+#~ "line."
 #~ msgstr ""
 #~ "si el mensaje de error es <span class=\"code\">/bin/sh: can't access tty; "
-#~ "job control turned off</span> seguido de <span class=\"code"
-#~ "\">(initramfs)</span>, puedes intentar quitar la opción <span class=\"code"
-#~ "\">live-media=removable</span> de la línea de arranque."
+#~ "job control turned off</span> seguido de <span "
+#~ "class=\"code\">(initramfs)</span>, puedes intentar quitar la opción <span "
+#~ "class=\"code\">live-media=removable</span> de la línea de arranque."
 
 #, fuzzy
 #~ msgid ""
@@ -797,9 +797,9 @@ msgstr "   [[!img install/inc/screenshots/desktop.png link=\"no\" alt=\"Escritor
 #~ "Loader Menu</span> appears and Tails starts automatically after 4 seconds."
 #~ "</p>"
 #~ msgstr ""
-#~ "Si la computadora inicia en Tails, aparecerá el <span class=\"application"
-#~ "\">Boot Loader Menu</span> y Tails arranca automaticamente después de 4 "
-#~ "segundos.</p>"
+#~ "Si la computadora inicia en Tails, aparecerá el <span "
+#~ "class=\"application\">Boot Loader Menu</span> y Tails arranca "
+#~ "automaticamente después de 4 segundos.</p>"
 
 #, fuzzy
 #~ msgid ""
@@ -870,17 +870,17 @@ msgstr "   [[!img install/inc/screenshots/desktop.png link=\"no\" alt=\"Escritor
 #~ "   </div>\n"
 
 #~ msgid ""
-#~ "     [[!img install/inc/screenshots/tails_boot_menu.png link=\"no\" alt="
-#~ "\"Black screen with Tails artwork. Boot Loader Menu with two options "
+#~ "     [[!img install/inc/screenshots/tails_boot_menu.png link=\"no\" "
+#~ "alt=\"Black screen with Tails artwork. Boot Loader Menu with two options "
 #~ "'Tails' and 'Tails (Troubleshooting Mode)'.\"]]\n"
 #~ msgstr ""
-#~ "     [[!img install/inc/screenshots/tails_boot_menu.png link=\"no\" alt="
-#~ "\"Pantalla negra con el logo de Tails. Menú de arranque con dos opciones "
-#~ "'Tails' y 'Tails (Modo seguro)'.\"]]\n"
+#~ "     [[!img install/inc/screenshots/tails_boot_menu.png link=\"no\" "
+#~ "alt=\"Pantalla negra con el logo de Tails. Menú de arranque con dos "
+#~ "opciones 'Tails' y 'Tails (Modo seguro)'.\"]]\n"
 
 #~ msgid ""
-#~ "After 30&ndash;60 seconds, another screen called <span class=\"application"
-#~ "\">Tails Greeter</span> appears."
+#~ "After 30&ndash;60 seconds, another screen called <span "
+#~ "class=\"application\">Tails Greeter</span> appears."
 #~ msgstr ""
-#~ "Después de 30&ndash;60 segundos aparece otra pantalla llamada <span class="
-#~ "\"application\">Tails Greeter</span>."
+#~ "Después de 30&ndash;60 segundos aparece otra pantalla llamada <span "
+#~ "class=\"application\">Tails Greeter</span>."
diff --git a/wiki/src/install/inc/steps/restart_first_time.inline.fr.po b/wiki/src/install/inc/steps/restart_first_time.inline.fr.po
index 64a9d940f88..3bacbc67e33 100644
--- a/wiki/src/install/inc/steps/restart_first_time.inline.fr.po
+++ b/wiki/src/install/inc/steps/restart_first_time.inline.fr.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tails\n"
 "Report-Msgid-Bugs-To: tails-l10n@boum.org\n"
-"POT-Creation-Date: 2022-08-30 21:51+0000\n"
+"POT-Creation-Date: 2023-03-18 14:36+0100\n"
 "PO-Revision-Date: 2023-01-03 12:17+0000\n"
 "Last-Translator: Chre <tor@renaudineau.org>\n"
 "Language-Team: Tails translators <tails@boum.org>\n"
@@ -40,10 +40,8 @@ msgid ""
 "  <source src=\"https://tails.boum.org/install/inc/success/install.mp4\" type=\"video/mp4\" />\n"
 "</video>\n"
 msgstr ""
-"<video autoplay loop muted width=\"200\" height=\"200\" poster=\"https"
-"://tails.boum.org/install/inc/success/install.png\">\n"
-"  <source src=\"https://tails.boum.org/install/inc/success/install.mp4\" "
-"type=\"video/mp4\" />\n"
+"<video autoplay loop muted width=\"200\" height=\"200\" poster=\"https://tails.boum.org/install/inc/success/install.png\">\n"
+"  <source src=\"https://tails.boum.org/install/inc/success/install.mp4\" type=\"video/mp4\" />\n"
 "</video>\n"
 
 #. type: Plain text
@@ -63,9 +61,7 @@ msgstr "  <p>Vous avez installé Tails sur votre clé USB.</p>\n"
 #. type: Plain text
 #, no-wrap
 msgid "  <p>In the next step, you will make your computer start on this USB stick.</p>\n"
-msgstr ""
-"  <p>À la prochaine étape, vous pouvez faire démarrer votre ordinateur sur "
-"cette clé USB.</p>\n"
+msgstr "  <p>À la prochaine étape, vous pouvez faire démarrer votre ordinateur sur cette clé USB.</p>\n"
 
 #. type: Plain text
 #, no-wrap
@@ -73,8 +69,7 @@ msgid ""
 "  <p>Tails might not work on your computer, so good luck!</p>\n"
 "</div>\n"
 msgstr ""
-"  <p>Tails pourrait ne pas marcher sur votre ordinateur, alors bonne chance "
-"!</p>\n"
+"  <p>Tails pourrait ne pas marcher sur votre ordinateur, alors bonne chance !</p>\n"
 "</div>\n"
 
 #. type: Plain text
@@ -293,8 +288,7 @@ msgid ""
 "</li>\n"
 msgstr ""
 "<li class=\"windows upgrade-windows\">\n"
-"<p>Si aucun menu de démarrage n'apparaît, consultez les [[instructions "
-"relatives au démarrage de Tails à l'aide de la touche menu de\n"
+"<p>Si aucun menu de démarrage n'apparaît, consultez les [[instructions relatives au démarrage de Tails à l'aide de la touche menu de\n"
 "démarrage|doc/first_steps/start/pc#boot-menu-key]].</p>\n"
 "</li>\n"
 
@@ -307,10 +301,8 @@ msgid ""
 "all|doc/first_steps/start/pc#not-at-all]].</p>\n"
 "</li>\n"
 msgstr ""
-"<li class=\"linux expert pc-clone upgrade-clone upgrade-tails upgrade-linux\""
-">\n"
-"<p>Si aucune des touches du menu de démarrage de la technique précédente ne "
-"fonctionnent,\n"
+"<li class=\"linux expert pc-clone upgrade-clone upgrade-tails upgrade-linux\">\n"
+"<p>Si aucune des touches du menu de démarrage de la technique précédente ne fonctionnent,\n"
 "consultez les [[instructions de dépannage : Tails ne démarre pas\n"
 "du tout|doc/first_steps/start/pc#not-at-all]].</p>\n"
 "</li>\n"
@@ -323,12 +315,9 @@ msgid ""
 "wait a few minutes and try again. Some USB sticks need some rest after installing.</p>\n"
 "</li>\n"
 msgstr ""
-"<li class=\"windows upgrade-windows linux expert pc-clone upgrade-clone "
-"upgrade-tails upgrade-linux\">\n"
-"<p>Si le menu de démarrage apparaît mais que votre clé USB n'est pas listée "
-"dans le menu de démarrage :\n"
-"attendre quelques minutes et réessayer. Certaines clés USB peuvent avoir "
-"besoin de repos après l'installation.</p>\n"
+"<li class=\"windows upgrade-windows linux expert pc-clone upgrade-clone upgrade-tails upgrade-linux\">\n"
+"<p>Si le menu de démarrage apparaît mais que votre clé USB n'est pas listée dans le menu de démarrage :\n"
+"attendre quelques minutes et réessayer. Certaines clés USB peuvent avoir besoin de repos après l'installation.</p>\n"
 "</li>\n"
 
 #. type: Plain text
@@ -448,8 +437,9 @@ msgstr ""
 "l'Écran de bienvenue apparaît."
 
 #. type: Plain text
-#, no-wrap
-msgid "   [[!img doc/first_steps/welcome_screen/welcome-screen.png link=\"no\" alt=\"Welcome to Tails!\"]]\n"
+#, fuzzy, no-wrap
+#| msgid "   [[!img doc/first_steps/welcome_screen/welcome-screen.png link=\"no\" alt=\"Welcome to Tails!\"]]\n"
+msgid "   [[!img doc/first_steps/welcome_screen/welcome_screen.png link=\"no\" alt=\"Welcome to Tails!\"]]\n"
 msgstr "   [[!img doc/first_steps/welcome_screen/welcome-screen.png link=\"no\" alt=\"Bienvenue dans Tails !\"]]\n"
 
 #. type: Plain text
@@ -460,8 +450,7 @@ msgid ""
 "Click <span class=\"bold\">Start Tails</span>.\n"
 msgstr ""
 "1. Dans l'Écran de bienvenue, sélectionnez votre langue et\n"
-"votre disposition de clavier dans la section <span class=\"guilabel\""
-">Language & Region</span>.\n"
+"votre disposition de clavier dans la section <span class=\"guilabel\">Language & Region</span>.\n"
 "Cliquez sur <span class=\"bold\">Démarrer Tails</span>.\n"
 
 #. type: Plain text
@@ -472,8 +461,7 @@ msgid ""
 "   </div>\n"
 msgstr ""
 "   <div class=\"bug mac upgrade-mac\">\n"
-"   <p>Si votre clavier ou pavé tactile ne fonctionne pas, essayez d'utiliser "
-"un clavier ou une souris USB :</p>\n"
+"   <p>Si votre clavier ou pavé tactile ne fonctionne pas, essayez d'utiliser un clavier ou une souris USB :</p>\n"
 "</div>\n"
 
 #. type: Bullet: '1. '
@@ -659,9 +647,9 @@ msgstr "   [[!img install/inc/screenshots/desktop.png link=\"no\" alt=\"Bureau T
 #~ "link=\"no\" alt=\"GRUB with a list of\n"
 #~ "           options starting with 'setparams Tails'\"]]\n"
 #~ msgstr ""
-#~ "      [[!img doc/advanced_topics/boot_options/grub-with-options.png link="
-#~ "\"no\" alt=\"Écran noir avec le logo de Tails et la liste des options de "
-#~ "démarrage\"]]\n"
+#~ "      [[!img doc/advanced_topics/boot_options/grub-with-options.png "
+#~ "link=\"no\" alt=\"Écran noir avec le logo de Tails et la liste des "
+#~ "options de démarrage\"]]\n"
 
 #~ msgid ""
 #~ "Press the <span class=\"keycap\">Backspace</span> key several times to "
@@ -724,8 +712,8 @@ msgstr "   [[!img install/inc/screenshots/desktop.png link=\"no\" alt=\"Bureau T
 #~ msgid ""
 #~ "           [[!img doc/advanced_topics/boot_options/syslinux-with-options."
 #~ "png link=\"no\" alt=\"SYSLINUX with\n"
-#~ "           a list of options starting with '/live/vmlinuz' at the bottom"
-#~ "\"]]\n"
+#~ "           a list of options starting with '/live/vmlinuz' at the "
+#~ "bottom\"]]\n"
 #~ msgstr ""
 #~ "      [[!img doc/advanced_topics/boot_options/syslinux-with-options.png "
 #~ "link=\"no\" alt=\"Écran noir avec le logo de Tails et la liste des "
@@ -751,13 +739,13 @@ msgstr "   [[!img install/inc/screenshots/desktop.png link=\"no\" alt=\"Bureau T
 #~ "Greeter</span> appears."
 #~ msgstr ""
 #~ "Une à deux minutes après le <span class=\"application\">menu du chargeur "
-#~ "d’amorçage</span>, un autre écran appelé <span class=\"application"
-#~ "\">Tails Greeter</span> apparaît."
+#~ "d’amorçage</span>, un autre écran appelé <span "
+#~ "class=\"application\">Tails Greeter</span> apparaît."
 
 #~ msgid ""
-#~ "If Tails previously failed to start and displayed the <span class=\"code"
-#~ "\">Probing EDD (edd=off to disable)...</span> error, then type `edd=off` "
-#~ "to add this option to the command line."
+#~ "If Tails previously failed to start and displayed the <span "
+#~ "class=\"code\">Probing EDD (edd=off to disable)...</span> error, then "
+#~ "type `edd=off` to add this option to the command line."
 #~ msgstr ""
 #~ "Si Tails a échoué précédemment lors du démarrage en affichant l'erreur "
 #~ "<span class=\"code\">Probing EDD (edd=off to disable)...</span>, alors "
@@ -765,14 +753,16 @@ msgstr "   [[!img install/inc/screenshots/desktop.png link=\"no\" alt=\"Bureau T
 
 #~ msgid ""
 #~ "If the error message is <span class=\"code\">/bin/sh: can't access tty; "
-#~ "job control turned off</span> followed by <span class=\"code"
-#~ "\">(initramfs)</span>, then try removing the <span class=\"code\">live-"
-#~ "media=removable</span> option from the boot command line."
+#~ "job control turned off</span> followed by <span "
+#~ "class=\"code\">(initramfs)</span>, then try removing the <span "
+#~ "class=\"code\">live-media=removable</span> option from the boot command "
+#~ "line."
 #~ msgstr ""
 #~ "Si le message d'erreur est <span class=\"code\">/bin/sh: can't access "
-#~ "tty; job control turned off</span> suivi de <span class=\"code"
-#~ "\">(initramfs)</span>, alors essayez d'enlever l'option <span class=\"code"
-#~ "\">live-media=removable</span> de la ligne de commande de démarrage."
+#~ "tty; job control turned off</span> suivi de <span "
+#~ "class=\"code\">(initramfs)</span>, alors essayez d'enlever l'option <span "
+#~ "class=\"code\">live-media=removable</span> de la ligne de commande de "
+#~ "démarrage."
 
 #, fuzzy
 #~| msgid ""
diff --git a/wiki/src/install/inc/steps/restart_first_time.inline.it.po b/wiki/src/install/inc/steps/restart_first_time.inline.it.po
index c3d88965ebd..dfa5086f0d5 100644
--- a/wiki/src/install/inc/steps/restart_first_time.inline.it.po
+++ b/wiki/src/install/inc/steps/restart_first_time.inline.it.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: tails-l10n@boum.org\n"
-"POT-Creation-Date: 2022-08-30 21:51+0000\n"
+"POT-Creation-Date: 2023-03-18 14:36+0100\n"
 "PO-Revision-Date: 2023-03-15 23:28+0000\n"
 "Last-Translator: _ignifugo <ignifugo@insicuri.net>\n"
 "Language-Team: ita <transitails@inventati.org>\n"
@@ -40,10 +40,8 @@ msgid ""
 "  <source src=\"https://tails.boum.org/install/inc/success/install.mp4\" type=\"video/mp4\" />\n"
 "</video>\n"
 msgstr ""
-"<video autoplay loop muted width=\"200\" height=\"200\" poster=\"https"
-"://tails.boum.org/install/inc/success/install.png\">\n"
-"  <source src=\"https://tails.boum.org/install/inc/success/install.mp4\" "
-"type=\"video/mp4\" />\n"
+"<video autoplay loop muted width=\"200\" height=\"200\" poster=\"https://tails.boum.org/install/inc/success/install.png\">\n"
+"  <source src=\"https://tails.boum.org/install/inc/success/install.mp4\" type=\"video/mp4\" />\n"
 "</video>\n"
 
 #. type: Plain text
@@ -71,8 +69,7 @@ msgid ""
 "  <p>Tails might not work on your computer, so good luck!</p>\n"
 "</div>\n"
 msgstr ""
-"  <p>Tails potrebbe non funzionare sul tuo computer, quindi buona "
-"fortuna!</p>\n"
+"  <p>Tails potrebbe non funzionare sul tuo computer, quindi buona fortuna!</p>\n"
 "</div>\n"
 
 #. type: Plain text
@@ -90,9 +87,7 @@ msgstr "<div class=\"note clone\">\n"
 msgid ""
 "<p>If you already started on the other Tails, go directly to step 3:\n"
 "<a href=\"#verify-other\">Verify that the other Tails is up-to-date</a>.</p>\n"
-msgstr ""
-"<p>Se hai già iniziato con l'altro Tails, passa direttamente al punto 3:<a "
-"href=\"#verify-other\">Verifica che l'altro Tails sia aggiornato</a>.</p>\n"
+msgstr "<p>Se hai già iniziato con l'altro Tails, passa direttamente al punto 3:<a href=\"#verify-other\">Verifica che l'altro Tails sia aggiornato</a>.</p>\n"
 
 #. type: Plain text
 #, no-wrap
@@ -119,79 +114,57 @@ msgstr "Scansiona questo codice QR sul tuo smartphone o tablet:"
 #. type: Plain text
 #, no-wrap
 msgid "     [[!img install/inc/qrcodes/tails_boum_org_install_windows_back_1.png class=\"windows\" link=\"no\" alt=\"\"]]\n"
-msgstr ""
-"     [[!img install/inc/qrcodes/tails_boum_org_install_win_dows_back_1.png "
-"class=\"windows\" link=\"no\" alt=\"\"]]\n"
+msgstr "     [[!img install/inc/qrcodes/tails_boum_org_install_win_dows_back_1.png class=\"windows\" link=\"no\" alt=\"\"]]\n"
 
 #. type: Plain text
 #, no-wrap
 msgid "     [[!img install/inc/qrcodes/tails_boum_org_install_mac_back_1.png class=\"mac\" link=\"no\" alt=\"\"]]\n"
-msgstr ""
-"     [[!img install/inc/qrcodes/tails_boum_org_install_mac_back_1.png class="
-"\"mac\" link=\"no\" alt=\"\"]]\n"
+msgstr "     [[!img install/inc/qrcodes/tails_boum_org_install_mac_back_1.png class=\"mac\" link=\"no\" alt=\"\"]]\n"
 
 #. type: Plain text
 #, no-wrap
 msgid "     [[!img install/inc/qrcodes/tails_boum_org_install_linux_back_1.png class=\"linux\" link=\"no\" alt=\"\"]]\n"
-msgstr ""
-"     [[!img install/inc/qrcodes/tails_boum_org_install_linux_back_1.png "
-"class=\"linux\" link=\"no\" alt=\"\"]]\n"
+msgstr "     [[!img install/inc/qrcodes/tails_boum_org_install_linux_back_1.png class=\"linux\" link=\"no\" alt=\"\"]]\n"
 
 #. type: Plain text
 #, no-wrap
 msgid "     [[!img install/inc/qrcodes/tails_boum_org_install_expert_back_1.png class=\"expert\" link=\"no\" alt=\"\"]]\n"
-msgstr ""
-"     [[!img install/inc/qrcodes/tails_boum_org_install_expert_back_1.png "
-"class=\"expert\" link=\"no\" alt=\"\"]]\n"
+msgstr "     [[!img install/inc/qrcodes/tails_boum_org_install_expert_back_1.png class=\"expert\" link=\"no\" alt=\"\"]]\n"
 
 #. type: Plain text
 #, no-wrap
 msgid "     [[!img install/inc/qrcodes/tails_boum_org_install_clone_pc_back_1.png class=\"pc-clone\" link=\"no\" alt=\"\"]]\n"
-msgstr ""
-"     [[!img install/inc/qrcodes/tails_boum_org_install_clone_pc_back_1.png "
-"class=\"pc-clone\" link=\"no\" alt=\"\"]]\n"
+msgstr "     [[!img install/inc/qrcodes/tails_boum_org_install_clone_pc_back_1.png class=\"pc-clone\" link=\"no\" alt=\"\"]]\n"
 
 #. type: Plain text
 #, no-wrap
 msgid "     [[!img install/inc/qrcodes/tails_boum_org_install_clone_mac_back_1.png class=\"mac-clone\" link=\"no\" alt=\"\"]]\n"
-msgstr ""
-"     [[!img install/inc/qrcodes/tails_boum_org_install_mac_clone_back_1.png "
-"class=\"mac-clone qrcode\" link=\"no\" alt=\"\"]]\n"
+msgstr "     [[!img install/inc/qrcodes/tails_boum_org_install_mac_clone_back_1.png class=\"mac-clone qrcode\" link=\"no\" alt=\"\"]]\n"
 
 #. type: Plain text
 #, no-wrap
 msgid "     [[!img install/inc/qrcodes/tails_boum_org_upgrade_tails_back_1.png class=\"upgrade-tails\" link=\"no\" alt=\"\"]]\n"
-msgstr ""
-"     [[!img install/inc/qrcodes/tails_boum_org_upgrade_tails_back_1.png class"
-"=\"upgrade-tails qrcode\" link=\"no\" alt=\"\"]]\n"
+msgstr "     [[!img install/inc/qrcodes/tails_boum_org_upgrade_tails_back_1.png class=\"upgrade-tails qrcode\" link=\"no\" alt=\"\"]]\n"
 
 #. type: Plain text
 #, no-wrap
 msgid "     [[!img install/inc/qrcodes/tails_boum_org_upgrade_windows_back_1.png class=\"upgrade-windows\" link=\"no\" alt=\"\"]]\n"
-msgstr ""
-"     [[!img install/inc/qrcodes/tails_boum_org_upgrade_windows_back_1.png "
-"class=\"upgrade-windows qrcode\" link=\"no\" alt=\"\"]]\n"
+msgstr "     [[!img install/inc/qrcodes/tails_boum_org_upgrade_windows_back_1.png class=\"upgrade-windows qrcode\" link=\"no\" alt=\"\"]]\n"
 
 #. type: Plain text
 #, no-wrap
 msgid "     [[!img install/inc/qrcodes/tails_boum_org_upgrade_mac_back_1.png class=\"upgrade-mac\" link=\"no\" alt=\"\"]]\n"
-msgstr ""
-"     [[!img install/inc/qrcodes/tails_boum_org_upgrade_mac_back_1.png class"
-"=\"upgrade-mac\" link=\"no\" alt=\"\"]]\n"
+msgstr "     [[!img install/inc/qrcodes/tails_boum_org_upgrade_mac_back_1.png class=\"upgrade-mac\" link=\"no\" alt=\"\"]]\n"
 
 #. type: Plain text
 #, no-wrap
 msgid "     [[!img install/inc/qrcodes/tails_boum_org_upgrade_linux_back_1.png class=\"upgrade-linux\" link=\"no\" alt=\"\"]]\n"
-msgstr ""
-"     [[!img install/inc/qrcodes/tails_boum_org_upgrade_linux_back_1.png class"
-"=\"upgrade-linux\" link=\"no\" alt=\"\"]]\n"
+msgstr "     [[!img install/inc/qrcodes/tails_boum_org_upgrade_linux_back_1.png class=\"upgrade-linux\" link=\"no\" alt=\"\"]]\n"
 
 #. type: Plain text
 #, no-wrap
 msgid "     [[!img install/inc/qrcodes/tails_boum_org_upgrade_clone_back_1.png class=\"upgrade-clone\" link=\"no\" alt=\"\"]]\n"
-msgstr ""
-"     [[!img install/inc/qrcodes/tails_boum_org_upgrade_clone_back_1.png class"
-"=\"upgrade-clone\" link=\"no\" alt=\"\"]]\n"
+msgstr "     [[!img install/inc/qrcodes/tails_boum_org_upgrade_clone_back_1.png class=\"upgrade-clone\" link=\"no\" alt=\"\"]]\n"
 
 #. type: Bullet: '   - '
 msgid "Print these instructions on paper."
@@ -216,28 +189,17 @@ msgid ""
 "     <span class=\"command upgrade-linux\">`https://tails.boum.org/upgrade/linux?back=1`</span>\n"
 "     <span class=\"command upgrade-clone\">`https://tails.boum.org/upgrade/clone?back=1`</span>\n"
 msgstr ""
-"     <span class=\"command windows\">`https://tails.boum.org/install/"
-"windows?back=1`</span>\n"
-"     <span class=\"command mac\">`https://tails.boum.org/install/"
-"mac?back=1`</span>\n"
-"     <span class=\"command linux\">`https://tails.boum.org/install/"
-"linux?back=1`</span>\n"
-"     <span class=\"command expert\">`https://tails.boum.org/install/"
-"expert?back=1`</span>\n"
-"     <span class=\"command pc-clone\">`https://tails.boum.org/install/clone/"
-"pc?back=1`</span>\n"
-"     <span class=\"command mac-clone\">`https://tails.boum.org/install/clone/"
-"mac?back=1`</span>\n"
-"     <span class=\"command upgrade-tails\">`https://tails.boum.org/upgrade/"
-"tails?back=1`</span>\n"
-"     <span class=\"command upgrade-windows\">`https://tails.boum.org/upgrade/"
-"windows?back=1`</span>\n"
-"     <span class=\"command upgrade-mac\">`https://tails.boum.org/upgrade/"
-"mac?back=1`</span>\n"
-"     <span class=\"command upgrade-linux\">`https://tails.boum.org/upgrade/"
-"linux?back=1`</span>\n"
-"     <span class=\"command upgrade-clone\">`https://tails.boum.org/upgrade/"
-"clone?back=1`</span>\n"
+"     <span class=\"command windows\">`https://tails.boum.org/install/windows?back=1`</span>\n"
+"     <span class=\"command mac\">`https://tails.boum.org/install/mac?back=1`</span>\n"
+"     <span class=\"command linux\">`https://tails.boum.org/install/linux?back=1`</span>\n"
+"     <span class=\"command expert\">`https://tails.boum.org/install/expert?back=1`</span>\n"
+"     <span class=\"command pc-clone\">`https://tails.boum.org/install/clone/pc?back=1`</span>\n"
+"     <span class=\"command mac-clone\">`https://tails.boum.org/install/clone/mac?back=1`</span>\n"
+"     <span class=\"command upgrade-tails\">`https://tails.boum.org/upgrade/tails?back=1`</span>\n"
+"     <span class=\"command upgrade-windows\">`https://tails.boum.org/upgrade/windows?back=1`</span>\n"
+"     <span class=\"command upgrade-mac\">`https://tails.boum.org/upgrade/mac?back=1`</span>\n"
+"     <span class=\"command upgrade-linux\">`https://tails.boum.org/upgrade/linux?back=1`</span>\n"
+"     <span class=\"command upgrade-clone\">`https://tails.boum.org/upgrade/clone?back=1`</span>\n"
 
 #. type: Plain text
 #, no-wrap
@@ -246,11 +208,9 @@ msgid ""
 "<h1 id=\"other\" class=\"step clone\">Restart on the other Tails</h1>\n"
 "<h1 id=\"restart\" class=\"step windows linux mac expert\">Restart on your Tails USB stick</h1>\n"
 msgstr ""
-"<h1 id=\"intermediary\" class=\"step upgrade-tails upgrade-os\">Riavvia "
-"sulla Tails intermediaria</h1>\n"
+"<h1 id=\"intermediary\" class=\"step upgrade-tails upgrade-os\">Riavvia sulla Tails intermediaria</h1>\n"
 "<h1 id=\"other\" class=\"step clone\">Riavvia su un altra Tails</h1>\n"
-"<h1 id=\"restart\" class=\"step windows linux mac expert\">Riavvia sulla tua "
-"chiavetta USB Tails</h1>\n"
+"<h1 id=\"restart\" class=\"step windows linux mac expert\">Riavvia sulla tua chiavetta USB Tails</h1>\n"
 
 #. type: Plain text
 #, no-wrap
@@ -260,23 +220,17 @@ msgstr "<div class=\"step-image\">\n"
 #. type: Plain text
 #, no-wrap
 msgid "[[!img install/inc/infography/restart-on-tails.png link=\"no\" class=\"windows linux mac expert\" alt=\"\"]]\n"
-msgstr ""
-"[[!img install/inc/infography/restart-on-tails.png link=\"no\" class="
-"\"windows linux mac expert\" alt=\"\"]]\n"
+msgstr "[[!img install/inc/infography/restart-on-tails.png link=\"no\" class=\"windows linux mac expert\" alt=\"\"]]\n"
 
 #. type: Plain text
 #, no-wrap
 msgid "[[!img install/inc/infography/restart-on-other-tails.png link=\"no\" class=\"clone upgrade-os\" alt=\"\"]]\n"
-msgstr ""
-"[[!img install/inc/infography/restart-on-other-tails.png link=\"no\" class="
-"\"clone upgrade-os\" alt=\"\"]]\n"
+msgstr "[[!img install/inc/infography/restart-on-other-tails.png link=\"no\" class=\"clone upgrade-os\" alt=\"\"]]\n"
 
 #. type: Plain text
 #, no-wrap
 msgid "[[!img install/inc/infography/restart-on-upgrade-usb.png link=\"no\" class=\"upgrade-tails\" alt=\"\"]]\n"
-msgstr ""
-"[[!img install/inc/infography/restart-on-upgrade-usb.png link=\"no\" class"
-"=\"upgrade-tails\" alt=]]\n"
+msgstr "[[!img install/inc/infography/restart-on-upgrade-usb.png link=\"no\" class=\"upgrade-tails\" alt=]]\n"
 
 #. type: Plain text
 #, no-wrap
@@ -296,9 +250,7 @@ msgstr "[[!inline pages=\"install/inc/steps/windows_boot_menu.inline.it\" raw=\"
 #. type: Plain text
 #, no-wrap
 msgid "<div class=\"linux expert pc-clone upgrade-clone upgrade-tails upgrade-linux\">\n"
-msgstr ""
-"<div class=\"linux expert pc-clone upgrade-clone upgrade-tails upgrade-"
-"linux\">\n"
+msgstr "<div class=\"linux expert pc-clone upgrade-clone upgrade-tails upgrade-linux\">\n"
 
 #. type: Plain text
 #, no-wrap
@@ -313,9 +265,7 @@ msgstr "<div class=\"mac mac-clone upgrade-mac\">\n"
 #. type: Plain text
 #, no-wrap
 msgid "[[!inline pages=\"install/inc/steps/mac_startup_disks.inline\" raw=\"yes\" sort=\"age\"]]\n"
-msgstr ""
-"[[!inline pages=\"install/inc/steps/mac_startup_disks.inline.it\" raw=\"yes\""
-" sort=\"age\"]]\n"
+msgstr "[[!inline pages=\"install/inc/steps/mac_startup_disks.inline.it\" raw=\"yes\" sort=\"age\"]]\n"
 
 #. type: Plain text
 #, no-wrap
@@ -336,10 +286,8 @@ msgid ""
 "</li>\n"
 msgstr ""
 "<li class=\"windows upgrade-windows\">\n"
-"<p>Se non appare il menu di avvio, fai riferimento alle [[istruzioni per "
-"l'avvio di Tails con\n"
-"il tasto del menu di avvio|doc/first_steps/start/pc#boot-menu-key]].</p></li>"
-"\n"
+"<p>Se non appare il menu di avvio, fai riferimento alle [[istruzioni per l'avvio di Tails con\n"
+"il tasto del menu di avvio|doc/first_steps/start/pc#boot-menu-key]].</p></li>\n"
 
 #. type: Plain text
 #, no-wrap
@@ -350,12 +298,9 @@ msgid ""
 "all|doc/first_steps/start/pc#not-at-all]].</p>\n"
 "</li>\n"
 msgstr ""
-"<li class=\"linux expert pc-clone upgrade-clone upgrade-tails upgrade-linux\""
-">\n"
-"<p>Se nessuno dei possibili tasti del menu di avvio della procedura usata "
-"precedentemente funziona,\n"
-"fai riferimento alle [[istruzioni per la risoluzione dei problemi di Tails "
-"che non si avvia affatto|doc/first_steps/start/pc#not-at-all]].</p>\n"
+"<li class=\"linux expert pc-clone upgrade-clone upgrade-tails upgrade-linux\">\n"
+"<p>Se nessuno dei possibili tasti del menu di avvio della procedura usata precedentemente funziona,\n"
+"fai riferimento alle [[istruzioni per la risoluzione dei problemi di Tails che non si avvia affatto|doc/first_steps/start/pc#not-at-all]].</p>\n"
 "</li>\n"
 
 #. type: Plain text
@@ -366,12 +311,9 @@ msgid ""
 "wait a few minutes and try again. Some USB sticks need some rest after installing.</p>\n"
 "</li>\n"
 msgstr ""
-"<li class=\"windows upgrade-windows linux expert pc-clone upgrade-clone "
-"upgrade-tails upgrade-linux\">\n"
-"<p>Se appare il menu di avvio ma la tua  chiavetta USB non è elencata nel "
-"menu di avvio,\n"
-"attendi qualche minuto e riprova. Alcune chiavette USB hanno bisogno di "
-"fermarsi dopo l'installazione.</p>\n"
+"<li class=\"windows upgrade-windows linux expert pc-clone upgrade-clone upgrade-tails upgrade-linux\">\n"
+"<p>Se appare il menu di avvio ma la tua  chiavetta USB non è elencata nel menu di avvio,\n"
+"attendi qualche minuto e riprova. Alcune chiavette USB hanno bisogno di fermarsi dopo l'installazione.</p>\n"
 "</li>\n"
 
 #. type: Plain text
@@ -382,18 +324,13 @@ msgid ""
 "<p class=\"mac mac-clone upgrade-mac\">If your USB stick appears in the list of startup disks but the Boot Loader does not appear:</p>\n"
 msgstr ""
 "<li>\n"
-"<p class=\"windows upgrade-windows linux expert pc-clone upgrade-clone "
-"upgrade-tails upgrade-linux\">Se la chiavetta USB è elencata nel menu di "
-"avvio ma il Boot Loader non appare:</p>\n"
-"<p class=\"mac mac-clone upgrade-mac\">Se la tua chiavetta USB è elencata "
-"nel menu di avvio ma il Boot Loader non appare:</p>\n"
+"<p class=\"windows upgrade-windows linux expert pc-clone upgrade-clone upgrade-tails upgrade-linux\">Se la chiavetta USB è elencata nel menu di avvio ma il Boot Loader non appare:</p>\n"
+"<p class=\"mac mac-clone upgrade-mac\">Se la tua chiavetta USB è elencata nel menu di avvio ma il Boot Loader non appare:</p>\n"
 
 #. type: Plain text
 #, no-wrap
 msgid "[[!inline pages=\"install/inc/steps/basic_troubleshooting.inline\" raw=\"yes\" sort=\"age\"]]\n"
-msgstr ""
-"[[!inline pages=\"install/inc/steps/basic_troubleshooting.inline.it\" raw="
-"\"yes\" sort=\"age\"]]\n"
+msgstr "[[!inline pages=\"install/inc/steps/basic_troubleshooting.inline.it\" raw=\"yes\" sort=\"age\"]]\n"
 
 #. type: Plain text
 #, no-wrap
@@ -401,8 +338,7 @@ msgid ""
 "<p>If your computer still does not display the Boot Loader, it might currently be impossible to start Tails on your computer.</p>\n"
 "</li>\n"
 msgstr ""
-"<p>Se il tuo computer non visualizza ancora il Boot Loader, potrebbe essere "
-"impossibile avviare Tails sul tuo computer.</p>\n"
+"<p>Se il tuo computer non visualizza ancora il Boot Loader, potrebbe essere impossibile avviare Tails sul tuo computer.</p>\n"
 "</li>\n"
 
 #. type: Plain text
@@ -418,10 +354,7 @@ msgstr ""
 "<li>\n"
 "<p>Se appare il Boot Loader ma Tails non si avvia dopo il Boot Loader,\n"
 "fai riferimento a\n"
-"<span class=\"windows upgrade-windows linux expert pc-clone upgrade-clone "
-"upgrade-tails upgrade-linux\">[[la sezione sulla risoluzione dei problemi "
-"relativi al mancato avvio di Tails dopo il Boot Loader|doc/first_steps/start/"
-"mac#not-entirely]].</span></p>\n"
+"<span class=\"windows upgrade-windows linux expert pc-clone upgrade-clone upgrade-tails upgrade-linux\">[[la sezione sulla risoluzione dei problemi relativi al mancato avvio di Tails dopo il Boot Loader|doc/first_steps/start/mac#not-entirely]].</span></p>\n"
 "</li>\n"
 
 #. type: Plain text
@@ -441,11 +374,8 @@ msgid ""
 "</div>\n"
 msgstr ""
 "<div class=\"tip windows upgrade-windows\">\n"
-"<p>L'avvio del computer tramite un tasto del menu di avvio può essere più "
-"rapido rispetto all'avvio\n"
-"del computer prima con Windows e poi con Tails. Ti consigliamo di imparare "
-"come [[avviare Tails usando il tasto del menu di avvio|doc/first_steps/start/"
-"pc#boot-menu-key]] se usi Tails\n"
+"<p>L'avvio del computer tramite un tasto del menu di avvio può essere più rapido rispetto all'avvio\n"
+"del computer prima con Windows e poi con Tails. Ti consigliamo di imparare come [[avviare Tails usando il tasto del menu di avvio|doc/first_steps/start/pc#boot-menu-key]] se usi Tails\n"
 "regolarmente</p>\n"
 "</div>\n"
 
@@ -462,26 +392,19 @@ msgid ""
 "working with Linux, and thus Tails. PC hardware tends to be more open and work\n"
 "better with Linux.</p>\n"
 msgstr ""
-"<p>Per Apple non  è prioritario collaborare con i progetti di Software "
-"Libero. Sul loro\n"
-"hardware più recente per gli sviluppatori di Software Libero è molto "
-"difficile di solito farci funzionare\n"
-"Linux e quindi Tails. L'hardware dei PC tende a essere più aperto e a "
-"funzionare meglio con Linux.</p>\n"
+"<p>Per Apple non  è prioritario collaborare con i progetti di Software Libero. Sul loro\n"
+"hardware più recente per gli sviluppatori di Software Libero è molto difficile di solito farci funzionare\n"
+"Linux e quindi Tails. L'hardware dei PC tende a essere più aperto e a funzionare meglio con Linux.</p>\n"
 
 #. type: Plain text
 #, no-wrap
 msgid "<h1 id=\"tails\" class=\"step windows linux mac\">Welcome to Tails!</h1>\n"
-msgstr ""
-"<h1 id=\"tails\" class=\"step windows linux mac\">Buon inizio con Tails!</h1>"
-"\n"
+msgstr "<h1 id=\"tails\" class=\"step windows linux mac\">Buon inizio con Tails!</h1>\n"
 
 #. type: Plain text
 #, no-wrap
 msgid "<div class=\"step-image\">[[!img install/inc/infography/tails.png link=\"no\" alt=\"\"]]</div>\n"
-msgstr ""
-"<div class=\"step-image\">[[!img install/inc/infography/tails.png link=\"no\""
-" alt=\"\"]]</div>\n"
+msgstr "<div class=\"step-image\">[[!img install/inc/infography/tails.png link=\"no\" alt=\"\"]]</div>\n"
 
 #. type: Plain text
 #, no-wrap
@@ -490,7 +413,8 @@ msgstr "<h2 class=\"clone upgrade\">Avvio di Tails</h2>\n"
 
 #. type: Bullet: '1. '
 msgid "After the Boot Menu, a loading screen appears."
-msgstr "Dopo il menu di avvio, viene visualizzata una schermata di caricamento."
+msgstr ""
+"Dopo il menu di avvio, viene visualizzata una schermata di caricamento."
 
 #. type: Plain text
 #, no-wrap
@@ -506,11 +430,10 @@ msgstr ""
 "caricamento, viene visualizzata la schermata di Buon inizio con Tails."
 
 #. type: Plain text
-#, no-wrap
-msgid "   [[!img doc/first_steps/welcome_screen/welcome-screen.png link=\"no\" alt=\"Welcome to Tails!\"]]\n"
-msgstr ""
-"   [[!img doc/first_steps/welcome_screen/welcome-screen.png link=\"no\" alt="
-"\"Buon inizio con Tails!\"]]\n"
+#, fuzzy, no-wrap
+#| msgid "   [[!img doc/first_steps/welcome_screen/welcome-screen.png link=\"no\" alt=\"Welcome to Tails!\"]]\n"
+msgid "   [[!img doc/first_steps/welcome_screen/welcome_screen.png link=\"no\" alt=\"Welcome to Tails!\"]]\n"
+msgstr "   [[!img doc/first_steps/welcome_screen/welcome-screen.png link=\"no\" alt=\"Buon inizio con Tails!\"]]\n"
 
 #. type: Plain text
 #, no-wrap
@@ -531,8 +454,7 @@ msgid ""
 "   </div>\n"
 msgstr ""
 "   <div class=\"bug mac upgrade-mac\">\n"
-"   <p>ISe la tastiera o il touchpad non funzionano, prova a utilizzare una "
-"tastiera o un mouse USB.</p>\n"
+"   <p>ISe la tastiera o il touchpad non funzionano, prova a utilizzare una tastiera o un mouse USB.</p>\n"
 "   </div>\n"
 
 #. type: Bullet: '1. '
@@ -649,8 +571,8 @@ msgstr "   [[!img install/inc/screenshots/desktop.png link=\"no\" alt=\"Desktop
 #~ "   The following section applies if the Boot Loader appears but not\n"
 #~ "   the Welcome Screen when starting Tails.\n"
 #~ msgstr ""
-#~ "   La seguente sessione si applica a quando il menù <span class=\"guilabel"
-#~ "\">Avvia Tails</span> compare, ma non il\n"
+#~ "   La seguente sessione si applica a quando il menù <span "
+#~ "class=\"guilabel\">Avvia Tails</span> compare, ma non il\n"
 #~ "   <span class=\"application\">Tails Greeter</span> quando si avvia "
 #~ "Tails.\n"
 
@@ -691,8 +613,8 @@ msgstr "   [[!img install/inc/screenshots/desktop.png link=\"no\" alt=\"Desktop
 #~ "link=\"no\" alt=\"GRUB with a list of\n"
 #~ "           options starting with 'setparams Tails'\"]]\n"
 #~ msgstr ""
-#~ "   [[!img doc/advanced_topics/boot_options/grub-with-options.png link=\"no"
-#~ "\"]]\n"
+#~ "   [[!img doc/advanced_topics/boot_options/grub-with-options.png "
+#~ "link=\"no\"]]\n"
 
 #~ msgid ""
 #~ "Press the <span class=\"keycap\">Backspace</span> key several times to "
@@ -753,11 +675,11 @@ msgstr "   [[!img install/inc/screenshots/desktop.png link=\"no\" alt=\"Desktop
 #~ msgid ""
 #~ "           [[!img doc/advanced_topics/boot_options/syslinux-with-options."
 #~ "png link=\"no\" alt=\"SYSLINUX with\n"
-#~ "           a list of options starting with '/live/vmlinuz' at the bottom"
-#~ "\"]]\n"
+#~ "           a list of options starting with '/live/vmlinuz' at the "
+#~ "bottom\"]]\n"
 #~ msgstr ""
-#~ "   [[!img doc/advanced_topics/boot_options/syslinux-with-options.png link="
-#~ "\"no\"]]\n"
+#~ "   [[!img doc/advanced_topics/boot_options/syslinux-with-options.png "
+#~ "link=\"no\"]]\n"
 
 #, fuzzy
 #~| msgid "Type `debug nosplash` to add these options to the command line."
@@ -784,21 +706,22 @@ msgstr "   [[!img install/inc/screenshots/desktop.png link=\"no\" alt=\"Desktop
 #~ "Menu</span>, another screen called <span class=\"application\">Tails "
 #~ "Greeter</span> appears."
 #~ msgstr ""
-#~ "   La seguente sessione si applica a quando il menù <span class=\"guilabel"
-#~ "\">Avvia Tails</span> compare, ma non il\n"
+#~ "   La seguente sessione si applica a quando il menù <span "
+#~ "class=\"guilabel\">Avvia Tails</span> compare, ma non il\n"
 #~ "   <span class=\"application\">Tails Greeter</span> quando si avvia "
 #~ "Tails.\n"
 
 #~ msgid ""
 #~ "If the error message is <span class=\"code\">/bin/sh: can't access tty; "
-#~ "job control turned off</span> followed by <span class=\"code"
-#~ "\">(initramfs)</span>, then try removing the <span class=\"code\">live-"
-#~ "media=removable</span> option from the boot command line."
+#~ "job control turned off</span> followed by <span "
+#~ "class=\"code\">(initramfs)</span>, then try removing the <span "
+#~ "class=\"code\">live-media=removable</span> option from the boot command "
+#~ "line."
 #~ msgstr ""
 #~ "Se il messaggio d'errore è <span class=\"code\">/bin/sh: can't access "
-#~ "tty; job control turned off</span> seguito da <span class=\"code"
-#~ "\">(initramfs)</span>, prova a rimuovere l'opzione <span class=\"code"
-#~ "\">live-media=removable</span> dalla riga di comando d'avvio."
+#~ "tty; job control turned off</span> seguito da <span "
+#~ "class=\"code\">(initramfs)</span>, prova a rimuovere l'opzione <span "
+#~ "class=\"code\">live-media=removable</span> dalla riga di comando d'avvio."
 
 #, fuzzy
 #~| msgid ""
diff --git a/wiki/src/install/inc/steps/restart_first_time.inline.pt.po b/wiki/src/install/inc/steps/restart_first_time.inline.pt.po
index b635d7a4752..ee500e735b2 100644
--- a/wiki/src/install/inc/steps/restart_first_time.inline.pt.po
+++ b/wiki/src/install/inc/steps/restart_first_time.inline.pt.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: tails-l10n@boum.org\n"
-"POT-Creation-Date: 2022-08-30 21:51+0000\n"
+"POT-Creation-Date: 2023-03-18 14:36+0100\n"
 "PO-Revision-Date: 2022-10-10 16:39+0000\n"
 "Last-Translator: drebs <drebs@riseup.net>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -288,8 +288,7 @@ msgid ""
 "</li>\n"
 msgstr ""
 "<li class=\"windows upgrade-windows\">\n"
-"<p>Se nenhum menu de boot aparecer, consulte as [[Instruções sobre como "
-"iniciar o Tails usando a tecla do Menu de\n"
+"<p>Se nenhum menu de boot aparecer, consulte as [[Instruções sobre como iniciar o Tails usando a tecla do Menu de\n"
 "Boot|doc/first_steps/start/pc#boot-menu-key]].</p>\n"
 "</li>\n"
 
@@ -302,12 +301,9 @@ msgid ""
 "all|doc/first_steps/start/pc#not-at-all]].</p>\n"
 "</li>\n"
 msgstr ""
-"<li class=\"linux expert pc-clone upgrade-clone upgrade-tails upgrade-linux\""
-">\n"
-"<p>Se nenhuma das possíveis teclas de Menu de Boot da técnica anterior "
-"funcionou, consulte as\n"
-"[[instruções de resolução de problemas para quando o Tails não inicia de "
-"jeito\n"
+"<li class=\"linux expert pc-clone upgrade-clone upgrade-tails upgrade-linux\">\n"
+"<p>Se nenhuma das possíveis teclas de Menu de Boot da técnica anterior funcionou, consulte as\n"
+"[[instruções de resolução de problemas para quando o Tails não inicia de jeito\n"
 "nenhum|doc/first_steps/start/pc#not-at-all]].</p>\n"
 "</li>\n"
 
@@ -319,12 +315,9 @@ msgid ""
 "wait a few minutes and try again. Some USB sticks need some rest after installing.</p>\n"
 "</li>\n"
 msgstr ""
-"<li class=\"windows upgrade-windows linux expert pc-clone upgrade-clone "
-"upgrade-tails upgrade-linux\">\n"
-"<p>Se o Menu de Boot aparece mas seu pendrive USB não é listado no Menu de "
-"Boot,\n"
-"aguarde alguns minutos e tente novamente. Alguns pendrives USB precisam "
-"descansar um pouco depois da instalação.</p>\n"
+"<li class=\"windows upgrade-windows linux expert pc-clone upgrade-clone upgrade-tails upgrade-linux\">\n"
+"<p>Se o Menu de Boot aparece mas seu pendrive USB não é listado no Menu de Boot,\n"
+"aguarde alguns minutos e tente novamente. Alguns pendrives USB precisam descansar um pouco depois da instalação.</p>\n"
 "</li>\n"
 
 #. type: Plain text
@@ -444,8 +437,9 @@ msgstr ""
 "de Boas-vindas aparecerá."
 
 #. type: Plain text
-#, no-wrap
-msgid "   [[!img doc/first_steps/welcome_screen/welcome-screen.png link=\"no\" alt=\"Welcome to Tails!\"]]\n"
+#, fuzzy, no-wrap
+#| msgid "   [[!img doc/first_steps/welcome_screen/welcome-screen.png link=\"no\" alt=\"Welcome to Tails!\"]]\n"
+msgid "   [[!img doc/first_steps/welcome_screen/welcome_screen.png link=\"no\" alt=\"Welcome to Tails!\"]]\n"
 msgstr "   [[!img doc/first_steps/welcome_screen/welcome-screen.png link=\"no\" alt=\"Boas vindas a Tails!\"]]\n"
 
 #. type: Plain text
diff --git a/wiki/src/install/inc/steps/restart_first_time.inline.ru.po b/wiki/src/install/inc/steps/restart_first_time.inline.ru.po
index 9ee8937d173..66cb3ab2c58 100644
--- a/wiki/src/install/inc/steps/restart_first_time.inline.ru.po
+++ b/wiki/src/install/inc/steps/restart_first_time.inline.ru.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: tails-l10n@boum.org\n"
-"POT-Creation-Date: 2022-08-30 21:51+0000\n"
+"POT-Creation-Date: 2023-03-18 14:36+0100\n"
 "PO-Revision-Date: 2023-03-11 19:30+0000\n"
 "Last-Translator: xin <xin@riseup.net>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,8 +15,8 @@ msgstr ""
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
-"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
+"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
 "X-Generator: Weblate 4.9.1\n"
 
 #. type: Plain text
@@ -41,10 +41,8 @@ msgid ""
 "  <source src=\"https://tails.boum.org/install/inc/success/install.mp4\" type=\"video/mp4\" />\n"
 "</video>\n"
 msgstr ""
-"<video autoplay loop muted width=\"200\" height=\"200\" poster=\"https"
-"://tails.boum.org/install/inc/success/install.png\">\n"
-"  <source src=\"https://tails.boum.org/install/inc/success/install.mp4\" "
-"type=\"video/mp4\" />\n"
+"<video autoplay loop muted width=\"200\" height=\"200\" poster=\"https://tails.boum.org/install/inc/success/install.png\">\n"
+"  <source src=\"https://tails.boum.org/install/inc/success/install.mp4\" type=\"video/mp4\" />\n"
 "</video>\n"
 
 #. type: Plain text
@@ -126,79 +124,57 @@ msgstr ""
 #. type: Plain text
 #, no-wrap
 msgid "     [[!img install/inc/qrcodes/tails_boum_org_install_windows_back_1.png class=\"windows\" link=\"no\" alt=\"\"]]\n"
-msgstr ""
-"     [[!img install/inc/qrcodes/tails_boum_org_install_windows_back_1.png "
-"class=\"windows\" link=\"no\" alt=\"\"]]\n"
+msgstr "     [[!img install/inc/qrcodes/tails_boum_org_install_windows_back_1.png class=\"windows\" link=\"no\" alt=\"\"]]\n"
 
 #. type: Plain text
 #, no-wrap
 msgid "     [[!img install/inc/qrcodes/tails_boum_org_install_mac_back_1.png class=\"mac\" link=\"no\" alt=\"\"]]\n"
-msgstr ""
-"     [[!img install/inc/qrcodes/tails_boum_org_install_mac_back_1.png class="
-"\"mac\" link=\"no\" alt=\"\"]]\n"
+msgstr "     [[!img install/inc/qrcodes/tails_boum_org_install_mac_back_1.png class=\"mac\" link=\"no\" alt=\"\"]]\n"
 
 #. type: Plain text
 #, no-wrap
 msgid "     [[!img install/inc/qrcodes/tails_boum_org_install_linux_back_1.png class=\"linux\" link=\"no\" alt=\"\"]]\n"
-msgstr ""
-"     [[!img install/inc/qrcodes/tails_boum_org_install_linux_back_1.png "
-"class=\"linux\" link=\"no\" alt=\"\"]]\n"
+msgstr "     [[!img install/inc/qrcodes/tails_boum_org_install_linux_back_1.png class=\"linux\" link=\"no\" alt=\"\"]]\n"
 
 #. type: Plain text
 #, no-wrap
 msgid "     [[!img install/inc/qrcodes/tails_boum_org_install_expert_back_1.png class=\"expert\" link=\"no\" alt=\"\"]]\n"
-msgstr ""
-"     [[!img install/inc/qrcodes/tails_boum_org_install_expert_back_1.png "
-"class=\"expert\" link=\"no\" alt=\"\"]]\n"
+msgstr "     [[!img install/inc/qrcodes/tails_boum_org_install_expert_back_1.png class=\"expert\" link=\"no\" alt=\"\"]]\n"
 
 #. type: Plain text
 #, no-wrap
 msgid "     [[!img install/inc/qrcodes/tails_boum_org_install_clone_pc_back_1.png class=\"pc-clone\" link=\"no\" alt=\"\"]]\n"
-msgstr ""
-"     [[!img install/inc/qrcodes/tails_boum_org_install_clone_pc_back_1.png "
-"class=\"pc-clone\" link=\"no\" alt=\"\"]]\n"
+msgstr "     [[!img install/inc/qrcodes/tails_boum_org_install_clone_pc_back_1.png class=\"pc-clone\" link=\"no\" alt=\"\"]]\n"
 
 #. type: Plain text
 #, no-wrap
 msgid "     [[!img install/inc/qrcodes/tails_boum_org_install_clone_mac_back_1.png class=\"mac-clone\" link=\"no\" alt=\"\"]]\n"
-msgstr ""
-"     [[!img install/inc/qrcodes/tails_boum_org_install_clone_mac_back_1.png "
-"class=\"mac-clone\" link=\"no\" alt=\"\"]]\n"
+msgstr "     [[!img install/inc/qrcodes/tails_boum_org_install_clone_mac_back_1.png class=\"mac-clone\" link=\"no\" alt=\"\"]]\n"
 
 #. type: Plain text
 #, no-wrap
 msgid "     [[!img install/inc/qrcodes/tails_boum_org_upgrade_tails_back_1.png class=\"upgrade-tails\" link=\"no\" alt=\"\"]]\n"
-msgstr ""
-"     [[!img install/inc/qrcodes/tails_boum_org_upgrade_tails_back_1.png class"
-"=\"upgrade-tails\" link=\"no\" alt=\"\"]]\n"
+msgstr "     [[!img install/inc/qrcodes/tails_boum_org_upgrade_tails_back_1.png class=\"upgrade-tails\" link=\"no\" alt=\"\"]]\n"
 
 #. type: Plain text
 #, no-wrap
 msgid "     [[!img install/inc/qrcodes/tails_boum_org_upgrade_windows_back_1.png class=\"upgrade-windows\" link=\"no\" alt=\"\"]]\n"
-msgstr ""
-"     [[!img install/inc/qrcodes/tails_boum_org_upgrade_windows_back_1.png "
-"class=\"upgrade-windows\" link=\"no\" alt=\"\"]]\n"
+msgstr "     [[!img install/inc/qrcodes/tails_boum_org_upgrade_windows_back_1.png class=\"upgrade-windows\" link=\"no\" alt=\"\"]]\n"
 
 #. type: Plain text
 #, no-wrap
 msgid "     [[!img install/inc/qrcodes/tails_boum_org_upgrade_mac_back_1.png class=\"upgrade-mac\" link=\"no\" alt=\"\"]]\n"
-msgstr ""
-"     [[!img install/inc/qrcodes/tails_boum_org_upgrade_mac_back_1.png class"
-"=\"upgrade-mac\" link=\"no\" alt=\"\"]]\n"
+msgstr "     [[!img install/inc/qrcodes/tails_boum_org_upgrade_mac_back_1.png class=\"upgrade-mac\" link=\"no\" alt=\"\"]]\n"
 
 #. type: Plain text
 #, no-wrap
 msgid "     [[!img install/inc/qrcodes/tails_boum_org_upgrade_linux_back_1.png class=\"upgrade-linux\" link=\"no\" alt=\"\"]]\n"
-msgstr ""
-"     [[!img install/inc/qrcodes/tails_boum_org_upgrade_linux_back_1.png class"
-"=\"upgrade-linux\" link=\"no\" alt=\"\"]]\n"
+msgstr "     [[!img install/inc/qrcodes/tails_boum_org_upgrade_linux_back_1.png class=\"upgrade-linux\" link=\"no\" alt=\"\"]]\n"
 
 #. type: Plain text
 #, no-wrap
 msgid "     [[!img install/inc/qrcodes/tails_boum_org_upgrade_clone_back_1.png class=\"upgrade-clone\" link=\"no\" alt=\"\"]]\n"
-msgstr ""
-"     [[!img install/inc/qrcodes/tails_boum_org_upgrade_clone_back_1.png class"
-"=\"upgrade-clone\" link=\"no\" alt=\"\"]]\n"
+msgstr "     [[!img install/inc/qrcodes/tails_boum_org_upgrade_clone_back_1.png class=\"upgrade-clone\" link=\"no\" alt=\"\"]]\n"
 
 #. type: Bullet: '   - '
 #, fuzzy
@@ -515,8 +491,9 @@ msgid ""
 msgstr "Через минуту или две после загрузчика появится экран приветствия."
 
 #. type: Plain text
-#, no-wrap
-msgid "   [[!img doc/first_steps/welcome_screen/welcome-screen.png link=\"no\" alt=\"Welcome to Tails!\"]]\n"
+#, fuzzy, no-wrap
+#| msgid "   [[!img doc/first_steps/welcome_screen/welcome-screen.png link=\"no\" alt=\"Welcome to Tails!\"]]\n"
+msgid "   [[!img doc/first_steps/welcome_screen/welcome_screen.png link=\"no\" alt=\"Welcome to Tails!\"]]\n"
 msgstr "   [[!img doc/first_steps/welcome_screen/welcome-screen.png link=\"no\" alt=\"Добро пожаловать в Tails!\"]]\n"
 
 #. type: Plain text
@@ -729,8 +706,8 @@ msgstr "   [[!img install/inc/screenshots/desktop.png link=\"no\" alt=\"Рабо
 #~ "   The following section applies if the Boot Loader appears but not\n"
 #~ "   the Welcome Screen when starting Tails.\n"
 #~ msgstr ""
-#~ "   Der folgende Abschnitt trifft zu, wenn das Menü <span class=\"guilabel"
-#~ "\">Boot Tails</span>, aber nicht\n"
+#~ "   Der folgende Abschnitt trifft zu, wenn das Menü <span "
+#~ "class=\"guilabel\">Boot Tails</span>, aber nicht\n"
 #~ "   der <span class=\"application\">Tails Greeter</span> beim Start von "
 #~ "Tails erscheint.\n"
 
@@ -740,15 +717,15 @@ msgstr "   [[!img install/inc/screenshots/desktop.png link=\"no\" alt=\"Рабо
 #~ "link=\"no\" alt=\"GRUB with a list of\n"
 #~ "           options starting with 'setparams Tails'\"]]\n"
 #~ msgstr ""
-#~ "      [[!img doc/advanced_topics/boot_options/grub-with-options.png link="
-#~ "\"no\"]]\n"
+#~ "      [[!img doc/advanced_topics/boot_options/grub-with-options.png "
+#~ "link=\"no\"]]\n"
 
 #, fuzzy
 #~ msgid ""
 #~ "           [[!img doc/advanced_topics/boot_options/syslinux-with-options."
 #~ "png link=\"no\" alt=\"SYSLINUX with\n"
-#~ "           a list of options starting with '/live/vmlinuz' at the bottom"
-#~ "\"]]\n"
+#~ "           a list of options starting with '/live/vmlinuz' at the "
+#~ "bottom\"]]\n"
 #~ msgstr ""
 #~ "      [[!img doc/advanced_topics/boot_options/syslinux-with-options.png "
 #~ "link=\"no\"]]\n"
@@ -759,21 +736,23 @@ msgstr "   [[!img install/inc/screenshots/desktop.png link=\"no\" alt=\"Рабо
 #~ "Menu</span>, another screen called <span class=\"application\">Tails "
 #~ "Greeter</span> appears."
 #~ msgstr ""
-#~ "   Der folgende Abschnitt trifft zu, wenn das Menü <span class=\"guilabel"
-#~ "\">Boot Tails</span>, aber nicht\n"
+#~ "   Der folgende Abschnitt trifft zu, wenn das Menü <span "
+#~ "class=\"guilabel\">Boot Tails</span>, aber nicht\n"
 #~ "   der <span class=\"application\">Tails Greeter</span> beim Start von "
 #~ "Tails erscheint.\n"
 
 #~ msgid ""
 #~ "If the error message is <span class=\"code\">/bin/sh: can't access tty; "
-#~ "job control turned off</span> followed by <span class=\"code"
-#~ "\">(initramfs)</span>, then try removing the <span class=\"code\">live-"
-#~ "media=removable</span> option from the boot command line."
+#~ "job control turned off</span> followed by <span "
+#~ "class=\"code\">(initramfs)</span>, then try removing the <span "
+#~ "class=\"code\">live-media=removable</span> option from the boot command "
+#~ "line."
 #~ msgstr ""
 #~ "Wenn die Fehlermeldung <span class=\"code\">/bin/sh: can't access tty; "
-#~ "job control turned off</span> gefolgt von <span class=\"code"
-#~ "\">(initramfs)</span> ist, versuchen Sie die Option <span class=\"code"
-#~ "\">live-media=removable</span> von der Boot-Kommandozeile zu entfernen."
+#~ "job control turned off</span> gefolgt von <span "
+#~ "class=\"code\">(initramfs)</span> ist, versuchen Sie die Option <span "
+#~ "class=\"code\">live-media=removable</span> von der Boot-Kommandozeile zu "
+#~ "entfernen."
 
 #, fuzzy
 #~ msgid ""
@@ -832,9 +811,9 @@ msgstr "   [[!img install/inc/screenshots/desktop.png link=\"no\" alt=\"Рабо
 #~ "1. <p>\n"
 #~ "     <span class=\"mac-dvd\">Stellen Sie sicher, dass die DVD in den "
 #~ "Computer eingelegt ist.</span>\n"
-#~ "     <span class=\"usb\">Lassen Sie den <span class=\"windows linux mac"
-#~ "\">ersten</span> USB-Stick angeschlossen und starten Sie den Computer neu."
-#~ "</span>\n"
+#~ "     <span class=\"usb\">Lassen Sie den <span class=\"windows linux "
+#~ "mac\">ersten</span> USB-Stick angeschlossen und starten Sie den Computer "
+#~ "neu.</span>\n"
 #~ "   </p>\n"
 #~ "   <p class=\"mac-dvd clone upgrade-tails\">Fahren Sie den Computer "
 #~ "herunter.</p>\n"
@@ -860,9 +839,10 @@ msgstr "   [[!img install/inc/screenshots/desktop.png link=\"no\" alt=\"Рабо
 #~ "Loader Menu</span> appears and Tails starts automatically after 4 seconds."
 #~ "</p>"
 #~ msgstr ""
-#~ "Wenn der Computer Tails startet, erscheint das Menü <span class=\"guilabel"
-#~ "\">Boot Tails</span>. Wählen Sie <span class=\"guilabel\">Live</span> aus "
-#~ "und drücken Sie <span class=\"keycap\">Enter</span>."
+#~ "Wenn der Computer Tails startet, erscheint das Menü <span "
+#~ "class=\"guilabel\">Boot Tails</span>. Wählen Sie <span "
+#~ "class=\"guilabel\">Live</span> aus und drücken Sie <span "
+#~ "class=\"keycap\">Enter</span>."
 
 #, fuzzy
 #~ msgid ""
@@ -913,8 +893,8 @@ msgstr "   [[!img install/inc/screenshots/desktop.png link=\"no\" alt=\"Рабо
 #~ "Loader Menu</span>\n"
 #~ "   does not appear when starting on a USB stick.\n"
 #~ msgstr ""
-#~ "   Der folgende Abschnitt trifft zu, wenn das Menü <span class=\"guilabel"
-#~ "\">Boot Tails</span>, aber nicht\n"
+#~ "   Der folgende Abschnitt trifft zu, wenn das Menü <span "
+#~ "class=\"guilabel\">Boot Tails</span>, aber nicht\n"
 #~ "   der <span class=\"application\">Tails Greeter</span> beim Start von "
 #~ "Tails erscheint.\n"
 
@@ -937,17 +917,17 @@ msgstr "   [[!img install/inc/screenshots/desktop.png link=\"no\" alt=\"Рабо
 
 #, fuzzy
 #~ msgid ""
-#~ "     [[!img install/inc/screenshots/tails_boot_menu.png link=\"no\" alt="
-#~ "\"Black screen with Tails artwork. Boot Loader Menu with two options "
+#~ "     [[!img install/inc/screenshots/tails_boot_menu.png link=\"no\" "
+#~ "alt=\"Black screen with Tails artwork. Boot Loader Menu with two options "
 #~ "'Tails' and 'Tails (Troubleshooting Mode)'.\"]]\n"
 #~ msgstr ""
-#~ "     [[!img install/inc/screenshots/tails_boot_menu.png link=\"no\" alt="
-#~ "\"Schwarzer Bildschirm mit Tails-Hintergrund. 'Boot-Menü' mit den "
+#~ "     [[!img install/inc/screenshots/tails_boot_menu.png link=\"no\" "
+#~ "alt=\"Schwarzer Bildschirm mit Tails-Hintergrund. 'Boot-Menü' mit den "
 #~ "Optionen 'Live' und 'Live (failsafe)'.\"]]\n"
 
 #~ msgid ""
-#~ "After 30&ndash;60 seconds, another screen called <span class=\"application"
-#~ "\">Tails Greeter</span> appears."
+#~ "After 30&ndash;60 seconds, another screen called <span "
+#~ "class=\"application\">Tails Greeter</span> appears."
 #~ msgstr ""
 #~ "Nach 30&ndash;60 Sekunden erscheint eine andere Bildschirmansicht, die "
 #~ "<span class=\"application\">Tails Greeter</span> genannt wird."
diff --git a/wiki/src/news/version_4.1.de.po b/wiki/src/news/version_4.1.de.po
index 49fcd6fe076..6620fc3fe39 100644
--- a/wiki/src/news/version_4.1.de.po
+++ b/wiki/src/news/version_4.1.de.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2022-05-01 16:20+0200\n"
+"POT-Creation-Date: 2023-03-18 14:36+0100\n"
 "PO-Revision-Date: 2022-12-20 01:06+0000\n"
 "Last-Translator: xin <xin@riseup.net>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -118,11 +118,6 @@ msgid ""
 "tails_ticket 17177]])"
 msgstr ""
 
-#. type: Plain text
-#, no-wrap
-msgid "  [[!img doc/first_steps/welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n"
-msgstr ""
-
 #. type: Bullet: '- '
 msgid ""
 "Fix the display of the troubleshooting error when GDM fails to start.  ([[!"
@@ -149,11 +144,11 @@ msgstr ""
 
 #. type: Plain text
 msgid ""
-"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog"
-"\"]]."
+"For more details, read our [[!tails_gitweb debian/changelog "
+"desc=\"changelog\"]]."
 msgstr ""
-"Lesen Sie für mehr Details unser [[!tails_gitweb debian/changelog desc="
-"\"Änderungsprotokoll\"]]."
+"Lesen Sie für mehr Details unser [[!tails_gitweb debian/changelog "
+"desc=\"Änderungsprotokoll\"]]."
 
 #. type: Plain text
 #, no-wrap
diff --git a/wiki/src/news/version_4.1.es.po b/wiki/src/news/version_4.1.es.po
index c5a290875b1..9f300b0047d 100644
--- a/wiki/src/news/version_4.1.es.po
+++ b/wiki/src/news/version_4.1.es.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2022-05-01 16:20+0200\n"
+"POT-Creation-Date: 2023-03-18 14:36+0100\n"
 "PO-Revision-Date: 2022-12-29 18:17+0000\n"
 "Last-Translator: cacukin <cacukin@cryptolab.net>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -118,11 +118,6 @@ msgid ""
 "tails_ticket 17177]])"
 msgstr ""
 
-#. type: Plain text
-#, no-wrap
-msgid "  [[!img doc/first_steps/welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n"
-msgstr ""
-
 #. type: Bullet: '- '
 msgid ""
 "Fix the display of the troubleshooting error when GDM fails to start.  ([[!"
@@ -149,11 +144,11 @@ msgstr ""
 
 #. type: Plain text
 msgid ""
-"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog"
-"\"]]."
+"For more details, read our [[!tails_gitweb debian/changelog "
+"desc=\"changelog\"]]."
 msgstr ""
-"Para más detalles, lee nuestro [[!tails_gitweb debian/changelog desc="
-"\"changelog\"]]."
+"Para más detalles, lee nuestro [[!tails_gitweb debian/changelog "
+"desc=\"changelog\"]]."
 
 #. type: Plain text
 #, no-wrap
diff --git a/wiki/src/news/version_4.1.fr.po b/wiki/src/news/version_4.1.fr.po
index efef33c2193..c69ad778766 100644
--- a/wiki/src/news/version_4.1.fr.po
+++ b/wiki/src/news/version_4.1.fr.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2022-05-01 16:20+0200\n"
+"POT-Creation-Date: 2023-03-18 14:36+0100\n"
 "PO-Revision-Date: 2022-12-19 14:06+0000\n"
 "Last-Translator: xin <xin@riseup.net>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -79,8 +79,7 @@ msgid ""
 "  configuration and adapt\n"
 "  your Tails to this change.</p>\n"
 msgstr ""
-"  <p>Si vous avez des clés GnuPG stockées dans le stockage persistant avant "
-"Tails\n"
+"  <p>Si vous avez des clés GnuPG stockées dans le stockage persistant avant Tails\n"
 "  4.1, vous devez mettre à jour la configuration du serveur de clés\n"
 "  OpenPGP et adapter\n"
 "  votre Tails à ce changement.</p>\n"
@@ -141,11 +140,6 @@ msgstr ""
 "Retour de la case à cocher **Afficher la phrase de passe** dans *Tails "
 "Greeter*. ([[!tails_ticket 17177]])"
 
-#. type: Plain text
-#, no-wrap
-msgid "  [[!img doc/first_steps/welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n"
-msgstr "  [[!img doc/first_steps/welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n"
-
 #. type: Bullet: '- '
 msgid ""
 "Fix the display of the troubleshooting error when GDM fails to start.  ([[!"
@@ -179,11 +173,11 @@ msgstr ""
 
 #. type: Plain text
 msgid ""
-"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog"
-"\"]]."
+"For more details, read our [[!tails_gitweb debian/changelog "
+"desc=\"changelog\"]]."
 msgstr ""
-"Pour plus de détails, lisez notre [[!tails_gitweb debian/changelog desc="
-"\"liste des changements\"]]."
+"Pour plus de détails, lisez notre [[!tails_gitweb debian/changelog "
+"desc=\"liste des changements\"]]."
 
 #. type: Plain text
 #, no-wrap
@@ -212,8 +206,7 @@ msgstr "Obtenir Tails 4.1"
 #. type: Title ##
 #, no-wrap
 msgid "To upgrade your Tails USB stick and keep your persistent storage"
-msgstr ""
-"Pour mettre à jour votre clé USB Tails et conserver votre stockage persistant"
+msgstr "Pour mettre à jour votre clé USB Tails et conserver votre stockage persistant"
 
 #. type: Plain text
 msgid "- Automatic upgrades are available from 4.0 to 4.1."
@@ -299,3 +292,7 @@ msgid ""
 "Tails|contribute]] (<a href=\"https://tails.boum.org/donate/?r=4.1\">donating</a> is only one of\n"
 "them). Come [[talk to us|about/contact#tails-dev]]!\n"
 msgstr "Nous avons besoin de votre aide et il y a de nombreuses manières de [[contribuer à Tails|contribute]] (<a href=\"https://tails.boum.org/donate/?r=4.1\">faire un don</a> est seulement l'une d'entre elles). Venez [[discuter avec nous|about/contact#tails-dev]] !\n"
+
+#, no-wrap
+#~ msgid "  [[!img doc/first_steps/welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n"
+#~ msgstr "  [[!img doc/first_steps/welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n"
diff --git a/wiki/src/news/version_4.1.it.po b/wiki/src/news/version_4.1.it.po
index 58239ec0f64..45ee6959735 100644
--- a/wiki/src/news/version_4.1.it.po
+++ b/wiki/src/news/version_4.1.it.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2022-05-01 16:20+0200\n"
+"POT-Creation-Date: 2023-03-18 14:36+0100\n"
 "PO-Revision-Date: 2023-03-15 23:28+0000\n"
 "Last-Translator: _ignifugo <ignifugo@insicuri.net>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -118,11 +118,6 @@ msgid ""
 "tails_ticket 17177]])"
 msgstr ""
 
-#. type: Plain text
-#, no-wrap
-msgid "  [[!img doc/first_steps/welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n"
-msgstr ""
-
 #. type: Bullet: '- '
 msgid ""
 "Fix the display of the troubleshooting error when GDM fails to start.  ([[!"
@@ -149,8 +144,8 @@ msgstr ""
 
 #. type: Plain text
 msgid ""
-"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog"
-"\"]]."
+"For more details, read our [[!tails_gitweb debian/changelog "
+"desc=\"changelog\"]]."
 msgstr ""
 "Per ulteriori dettagli, leggi il nostro [[!tails_gitweb debian/changelog "
 "desc=\"changelog\"]]."
@@ -220,9 +215,7 @@ msgstr "[[Installa da Linux|install/linux]]"
 #. type: Plain text
 #, no-wrap
 msgid "<div class=\"caution\"><p>All the data on this USB stick will be lost.</p></div>\n"
-msgstr ""
-"<div class=\"caution\"><p>Tutti i dati su questa chiavetta USB verranno "
-"persi.</p></div>\n"
+msgstr "<div class=\"caution\"><p>Tutti i dati su questa chiavetta USB verranno persi.</p></div>\n"
 
 #. type: Title ##
 #, no-wrap
diff --git a/wiki/src/news/version_4.1.pt.po b/wiki/src/news/version_4.1.pt.po
index 6cb0e613f3e..187b5631e68 100644
--- a/wiki/src/news/version_4.1.pt.po
+++ b/wiki/src/news/version_4.1.pt.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2022-05-01 16:20+0200\n"
+"POT-Creation-Date: 2023-03-18 14:36+0100\n"
 "PO-Revision-Date: 2023-03-10 12:29+0000\n"
 "Last-Translator: xin <xin@riseup.net>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -118,11 +118,6 @@ msgid ""
 "tails_ticket 17177]])"
 msgstr ""
 
-#. type: Plain text
-#, no-wrap
-msgid "  [[!img doc/first_steps/welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n"
-msgstr ""
-
 #. type: Bullet: '- '
 msgid ""
 "Fix the display of the troubleshooting error when GDM fails to start.  ([[!"
@@ -149,11 +144,11 @@ msgstr ""
 
 #. type: Plain text
 msgid ""
-"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog"
-"\"]]."
+"For more details, read our [[!tails_gitweb debian/changelog "
+"desc=\"changelog\"]]."
 msgstr ""
-"Para mais detalhes, leia nosso  [[!tails_gitweb debian/changelog desc="
-"\"changelog\"]]."
+"Para mais detalhes, leia nosso  [[!tails_gitweb debian/changelog "
+"desc=\"changelog\"]]."
 
 #. type: Plain text
 #, no-wrap
diff --git a/wiki/src/news/version_4.1.ru.po b/wiki/src/news/version_4.1.ru.po
index e0c3f70e9b7..2d61586b206 100644
--- a/wiki/src/news/version_4.1.ru.po
+++ b/wiki/src/news/version_4.1.ru.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2022-05-01 16:20+0200\n"
+"POT-Creation-Date: 2023-03-18 14:36+0100\n"
 "PO-Revision-Date: 2021-07-19 20:05+0000\n"
 "Last-Translator: dedmoroz <cj75300@gmail.com>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14,8 +14,8 @@ msgstr ""
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
-"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
+"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
 "X-Generator: Weblate 3.11.3\n"
 
 #. type: Plain text
@@ -119,11 +119,6 @@ msgid ""
 "tails_ticket 17177]])"
 msgstr ""
 
-#. type: Plain text
-#, no-wrap
-msgid "  [[!img doc/first_steps/welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n"
-msgstr ""
-
 #. type: Bullet: '- '
 msgid ""
 "Fix the display of the troubleshooting error when GDM fails to start.  ([[!"
@@ -150,8 +145,8 @@ msgstr ""
 
 #. type: Plain text
 msgid ""
-"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog"
-"\"]]."
+"For more details, read our [[!tails_gitweb debian/changelog "
+"desc=\"changelog\"]]."
 msgstr ""
 
 #. type: Plain text
-- 
GitLab


From c4842b713674746b3a14addfda02b0cde4780365 Mon Sep 17 00:00:00 2001
From: intrigeri <intrigeri@boum.org>
Date: Sat, 18 Mar 2023 14:33:27 +0000
Subject: [PATCH 175/187] Ensure we generate valid changelogs

---
 bin/update-changelog | 1 +
 1 file changed, 1 insertion(+)

diff --git a/bin/update-changelog b/bin/update-changelog
index 15e60ccf68c..c7318520580 100755
--- a/bin/update-changelog
+++ b/bin/update-changelog
@@ -18,4 +18,5 @@ with open('debian/changelog', 'w') as f:
     f.write(subprocess.check_output(
         ['bin/generate-changelog', '--version', args.version]
     ).decode('utf-8'))
+    f.write("\n")
     changelog_minus_first_entry.write_to_open_file(f)
-- 
GitLab


From 3003e2814a828a9566c93c526518bda0b028d644 Mon Sep 17 00:00:00 2001
From: intrigeri <intrigeri@boum.org>
Date: Sat, 18 Mar 2023 14:33:35 +0000
Subject: [PATCH 176/187] Fix changelog syntax

---
 debian/changelog | 1 +
 1 file changed, 1 insertion(+)

diff --git a/debian/changelog b/debian/changelog
index 5032c46c08c..04abaae5527 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -242,6 +242,7 @@ tails (5.11) UNRELEASED; urgency=medium
       - Enable non-free-firmware archive area for distributions that support it
 
  -- Tails developers <tails@boum.org>  Sat, 18 Mar 2023 13:21:19 +0000
+
 tails (5.10) unstable; urgency=medium
 
   * Upgrade Tor Browser to 12.0.3-build1 (tails/tails!1046)
-- 
GitLab


From c2f661f182297ca547956554381d95c9f299b63b Mon Sep 17 00:00:00 2001
From: intrigeri <intrigeri@boum.org>
Date: Sat, 18 Mar 2023 15:20:55 +0000
Subject: [PATCH 177/187] Updating SquashFS sort file

---
 config/binary_rootfs/squashfs.sort | 9829 ++++++++++++++--------------
 1 file changed, 4918 insertions(+), 4911 deletions(-)

diff --git a/config/binary_rootfs/squashfs.sort b/config/binary_rootfs/squashfs.sort
index 579a6fb2a81..e56619ce07b 100644
--- a/config/binary_rootfs/squashfs.sort
+++ b/config/binary_rootfs/squashfs.sort
@@ -1,46 +1,46 @@
-bin/cat                                                              32767
+bin/sed                                                              32767
 etc/ld.so.cache                                                      32766
-bin/sed                                                              32765
+bin/cat                                                              32765
 bin/dash                                                             32764
 bin/uname                                                            32763
-bin/mkdir                                                            32762
-bin/touch                                                            32761
-bin/udevadm                                                          32760
-etc/udev/udev.conf                                                   32759
-bin/egrep                                                            32758
-bin/grep                                                             32757
-etc/laptop-mode/conf.d/ac97-powersave.conf                           32756
-etc/laptop-mode/conf.d/auto-hibernate.conf                           32755
-etc/laptop-mode/conf.d/battery-level-polling.conf                    32754
-etc/laptop-mode/conf.d/bluetooth.conf                                32753
-etc/laptop-mode/conf.d/configuration-file-control.conf               32752
-etc/laptop-mode/conf.d/cpufreq.conf                                  32751
-etc/laptop-mode/conf.d/cpuhotplug.conf                               32750
-etc/laptop-mode/conf.d/dpms-standby.conf                             32749
-etc/laptop-mode/conf.d/eee-superhe.conf                              32748
-etc/laptop-mode/conf.d/ethernet.conf                                 32747
-etc/laptop-mode/conf.d/exec-commands.conf                            32746
-etc/laptop-mode/conf.d/hal-polling.conf                              32745
-etc/laptop-mode/conf.d/intel-hda-powersave.conf                      32744
-etc/laptop-mode/conf.d/intel-sata-powermgmt.conf                     32743
-etc/laptop-mode/conf.d/intel_pstate.conf                             32742
-etc/laptop-mode/conf.d/kbd-backlight.conf                            32741
-etc/laptop-mode/conf.d/lcd-brightness.conf                           32740
-etc/laptop-mode/conf.d/nmi-watchdog.conf                             32739
-etc/laptop-mode/conf.d/nouveau.conf                                  32738
-etc/laptop-mode/conf.d/pcie-aspm.conf                                32737
-etc/laptop-mode/conf.d/radeon-dpm.conf                               32736
-etc/laptop-mode/conf.d/runtime-pm.conf                               32735
-etc/laptop-mode/conf.d/sched-mc-power-savings.conf                   32734
-etc/laptop-mode/conf.d/sched-smt-power-savings.conf                  32733
-etc/laptop-mode/conf.d/start-stop-programs.conf                      32732
-etc/laptop-mode/conf.d/terminal-blanking.conf                        32731
-etc/laptop-mode/conf.d/vgaswitcheroo.conf                            32730
-etc/laptop-mode/conf.d/video-out.conf                                32729
-etc/laptop-mode/conf.d/wireless-ipw-power.conf                       32728
-etc/laptop-mode/conf.d/wireless-iwl-power.conf                       32727
-etc/laptop-mode/conf.d/wireless-power.conf                           32726
-etc/laptop-mode/laptop-mode.conf                                     32725
+etc/laptop-mode/conf.d/ac97-powersave.conf                           32762
+etc/laptop-mode/conf.d/auto-hibernate.conf                           32761
+etc/laptop-mode/conf.d/battery-level-polling.conf                    32760
+etc/laptop-mode/conf.d/bluetooth.conf                                32759
+etc/laptop-mode/conf.d/configuration-file-control.conf               32758
+etc/laptop-mode/conf.d/cpufreq.conf                                  32757
+etc/laptop-mode/conf.d/cpuhotplug.conf                               32756
+etc/laptop-mode/conf.d/dpms-standby.conf                             32755
+etc/laptop-mode/conf.d/eee-superhe.conf                              32754
+etc/laptop-mode/conf.d/ethernet.conf                                 32753
+etc/laptop-mode/conf.d/exec-commands.conf                            32752
+etc/laptop-mode/conf.d/hal-polling.conf                              32751
+etc/laptop-mode/conf.d/intel-hda-powersave.conf                      32750
+etc/laptop-mode/conf.d/intel-sata-powermgmt.conf                     32749
+etc/laptop-mode/conf.d/intel_pstate.conf                             32748
+etc/laptop-mode/conf.d/kbd-backlight.conf                            32747
+etc/laptop-mode/conf.d/lcd-brightness.conf                           32746
+etc/laptop-mode/conf.d/nmi-watchdog.conf                             32745
+etc/laptop-mode/conf.d/nouveau.conf                                  32744
+etc/laptop-mode/conf.d/pcie-aspm.conf                                32743
+etc/laptop-mode/conf.d/radeon-dpm.conf                               32742
+etc/laptop-mode/conf.d/runtime-pm.conf                               32741
+etc/laptop-mode/conf.d/sched-mc-power-savings.conf                   32740
+etc/laptop-mode/conf.d/sched-smt-power-savings.conf                  32739
+etc/laptop-mode/conf.d/start-stop-programs.conf                      32738
+etc/laptop-mode/conf.d/terminal-blanking.conf                        32737
+etc/laptop-mode/conf.d/vgaswitcheroo.conf                            32736
+etc/laptop-mode/conf.d/video-out.conf                                32735
+etc/laptop-mode/conf.d/wireless-ipw-power.conf                       32734
+etc/laptop-mode/conf.d/wireless-iwl-power.conf                       32733
+etc/laptop-mode/conf.d/wireless-power.conf                           32732
+etc/laptop-mode/laptop-mode.conf                                     32731
+bin/mkdir                                                            32730
+bin/touch                                                            32729
+bin/udevadm                                                          32728
+etc/udev/udev.conf                                                   32727
+bin/egrep                                                            32726
+bin/grep                                                             32725
 bin/df                                                               32724
 bin/readlink                                                         32723
 etc/bilibop/bilibop.conf                                             32722
@@ -296,7 +296,7 @@ lib/live/config/0150-keyboard-configuration                          32398
 lib/live/config/1000-remount-procfs                                  32397
 bin/mount                                                            32396
 etc/fstab                                                            32395
-lib/live/config/1020-gnome-panel-data                                32394
+lib/live/config/1020-gnome-panel-data                                32392
 lib/live/config/1030-gnome-power-manager                             32391
 usr/bin/sudo                                                         32390
 lib/x86_64-linux-gnu/libutil-2.31.so                                 32389
@@ -313,382 +313,379 @@ etc/sudoers.d/zzz_boot_profile                                       32379
 etc/sudoers.d/zzz_gdm                                                32378
 etc/sudoers.d/zzz_gdm-fallback                                       32377
 etc/sudoers.d/zzz_get_date                                           32376
-etc/sudoers.d/zzz_gnome-shell-environment                            32375
-etc/sudoers.d/zzz_halt                                               32374
-etc/sudoers.d/zzz_onioncircuits                                      32373
-etc/sudoers.d/zzz_tails-additional-software                          32372
-etc/sudoers.d/zzz_tails-backup                                       32371
-etc/sudoers.d/zzz_tails-debugging-info                               32370
-etc/sudoers.d/zzz_tbb                                                32369
-etc/sudoers.d/zzz_tca                                                32368
-etc/sudoers.d/zzz_tps-frontend                                       32367
-etc/sudoers.d/zzz_unsafe-browser                                     32366
-etc/sudoers.d/zzz_upgrade                                            32365
-etc/host.conf                                                        32364
-etc/resolv.conf                                                      32363
-etc/pam.d/sudo                                                       32362
-etc/pam.d/common-session-noninteractive                              32361
-lib/live/config/1040-gnome-screensaver                               32359
-lib/live/config/1050-kaboom                                          32358
-lib/live/config/1060-kde-services                                    32357
-lib/live/config/1080-policykit                                       32356
-lib/live/config/1090-ssl-cert                                        32355
-usr/sbin/make-ssl-cert                                               32354
-bin/bash                                                             32353
-lib/x86_64-linux-gnu/libtinfo.so.6.2                                 32352
-usr/bin/basename                                                     32351
-bin/mktemp                                                           32350
-usr/share/ssl-cert/ssleay.cnf                                        32349
-usr/bin/openssl                                                      32348
-usr/lib/x86_64-linux-gnu/libssl.so.1.1                               32347
-usr/lib/x86_64-linux-gnu/libcrypto.so.1.1                            32346
-etc/ssl/openssl.cnf                                                  32345
-usr/bin/dirname                                                      32342
-lib/live/config/1110-anacron                                         32340
-lib/live/config/1120-util-linux                                      32339
-lib/live/config/1130-login                                           32337
-lib/live/config/1140-xserver-xorg                                    32333
-lib/live/config/1160-openssh-server                                  32332
-lib/live/config/1170-xfce4-panel                                     32331
-lib/live/config/1180-xscreensaver                                    32330
-lib/live/config/1190-broadcom-sta                                    32329
-lib/live/config/1500-reconfigure-APT                                 32328
-lib/live/config/1600-undivert-APT                                    32300
-usr/bin/dpkg-divert                                                  32299
-lib/live/config/2000-aesthetics                                      32294
-lib/live/config/2000-import-gnupg-key                                32293
-usr/bin/gpg                                                          32291
-usr/lib/x86_64-linux-gnu/libsqlite3.so.0.8.6                         32290
-lib/x86_64-linux-gnu/libreadline.so.8.1                              32289
-usr/lib/x86_64-linux-gnu/libassuan.so.0.8.3                          32288
-usr/share/doc/tails/website/tails-accounting.key                     32287
-usr/bin/gpg-agent                                                    32286
-usr/lib/x86_64-linux-gnu/libnpth.so.0.1.2                            32285
-usr/share/doc/tails/website/tails-board.key                          32284
-usr/share/doc/tails/website/tails-bugs.key                           32283
-usr/share/doc/tails/website/tails-email.key                          32282
-usr/share/doc/tails/website/tails-foundations.key                    32281
-usr/share/doc/tails/website/tails-fundraising.key                    32280
-usr/share/doc/tails/website/tails-mirrors.key                        32279
-usr/share/doc/tails/website/tails-press.key                          32278
-usr/share/doc/tails/website/tails-signing-minimal.key                32277
-usr/share/doc/tails/website/tails-signing.key                        32276
-usr/share/doc/tails/website/tails-sysadmins.key                      32275
-usr/share/doc/tails/website/tails-weblate.key                        32274
-lib/live/config/2030-systemd                                         32267
-bin/systemd-machine-id-setup                                         32266
-lib/systemd/libsystemd-shared-247.so                                 32265
-lib/x86_64-linux-gnu/libcap.so.2.44                                  32264
-usr/lib/x86_64-linux-gnu/libip4tc.so.2.0.0                           32263
-usr/lib/x86_64-linux-gnu/libkmod.so.2.3.6                            32262
-lib/x86_64-linux-gnu/librt-2.31.so                                   32261
-usr/lib/x86_64-linux-gnu/libseccomp.so.2.5.1                         32260
-etc/machine-id                                                       32259
-bin/journalctl                                                       32258
-usr/lib/systemd/catalog/systemd.be.catalog                           32257
-usr/lib/systemd/catalog/systemd.be@latin.catalog                     32256
-usr/lib/systemd/catalog/systemd.bg.catalog                           32255
-usr/lib/systemd/catalog/systemd.catalog                              32254
-usr/lib/systemd/catalog/systemd.de.catalog                           32253
-usr/lib/systemd/catalog/systemd.fr.catalog                           32252
-usr/lib/systemd/catalog/systemd.it.catalog                           32251
-usr/lib/systemd/catalog/systemd.pl.catalog                           32250
-usr/lib/systemd/catalog/systemd.pt_BR.catalog                        32249
-usr/lib/systemd/catalog/systemd.ru.catalog                           32248
-usr/lib/systemd/catalog/systemd.zh_CN.catalog                        32247
-usr/lib/systemd/catalog/systemd.zh_TW.catalog                        32246
-lib/live/config/7000-debug                                           32244
-lib/live/config/8000-rootpw                                          32243
-lib/live/config/9000-hosts-file                                      32242
-etc/live/config.d/hostname.conf                                      32241
-lib/live/config/9980-permissions                                     32240
-lib/live/config/9990-hooks                                           32238
-lib/live/config/9995-nss-systemd                                     32237
-lib/live/config/9999-unset-user-account-comment                      32236
-etc/adjtime                                                          32233
-usr/libexec/accounts-daemon                                          32231
-etc/default/cron                                                     32230
-usr/sbin/alsactl                                                     32229
-usr/lib/x86_64-linux-gnu/libasound.so.2.0.0                          32227
-usr/share/alsa/alsa.conf                                             32225
-usr/lib/x86_64-linux-gnu/libpolkit-gobject-1.so.0.0.0                32224
-usr/share/alsa/alsa.conf.d/10-rate-lav.conf                          32223
-usr/share/alsa/alsa.conf.d/10-samplerate.conf                        32222
-usr/share/alsa/alsa.conf.d/10-speexrate.conf                         32221
-usr/share/alsa/alsa.conf.d/50-arcam-av-ctl.conf                      32220
-usr/share/alsa/alsa.conf.d/50-jack.conf                              32219
-usr/share/alsa/alsa.conf.d/50-oss.conf                               32218
-usr/share/alsa/alsa.conf.d/50-pulseaudio.conf                        32217
-usr/share/alsa/alsa.conf.d/60-a52-encoder.conf                       32216
-usr/share/alsa/alsa.conf.d/60-upmix.conf                             32215
-usr/share/alsa/alsa.conf.d/60-vdownmix.conf                          32214
-usr/share/alsa/alsa.conf.d/98-usb-stream.conf                        32213
-usr/share/alsa/alsa.conf.d/pulse.conf                                32212
-etc/asound.conf                                                      32211
-usr/lib/x86_64-linux-gnu/alsa-lib/libasound_module_conf_pulse.so     32210
-usr/lib/x86_64-linux-gnu/libpulse.so.0.23.0                          32209
-usr/lib/x86_64-linux-gnu/pulseaudio/libpulsecommon-14.2.so           32208
-lib/x86_64-linux-gnu/libdbus-1.so.3.19.15                            32207
-usr/lib/x86_64-linux-gnu/libxcb.so.1.1.0                             32206
-usr/lib/x86_64-linux-gnu/libsystemd.so.0.30.0                        32205
-usr/lib/x86_64-linux-gnu/libwrap.so.0.7.6                            32204
-usr/lib/x86_64-linux-gnu/libsndfile.so.1.0.31                        32203
-usr/lib/x86_64-linux-gnu/libasyncns.so.0.3.1                         32202
-usr/lib/x86_64-linux-gnu/libXau.so.6.0.0                             32201
-usr/lib/x86_64-linux-gnu/libXdmcp.so.6.0.0                           32200
-usr/lib/x86_64-linux-gnu/libFLAC.so.8.3.0                            32199
-usr/lib/x86_64-linux-gnu/libvorbis.so.0.4.9                          32198
-usr/lib/x86_64-linux-gnu/libvorbisenc.so.2.0.12                      32197
-usr/lib/x86_64-linux-gnu/libopus.so.0.8.0                            32196
-usr/lib/x86_64-linux-gnu/libogg.so.0.8.4                             32195
-usr/lib/x86_64-linux-gnu/libbsd.so.0.11.3                            32194
-usr/lib/x86_64-linux-gnu/libmd.so.0.0.4                              32193
-etc/pulse/client.conf                                                32192
-usr/share/alsa/init/00main                                           32191
-usr/share/alsa/init/hda                                              32190
-usr/bin/dbus-daemon                                                  32189
-usr/share/alsa/init/default                                          32188
-usr/sbin/cron                                                        32185
-lib/x86_64-linux-gnu/libexpat.so.1.6.12                              32184
-usr/lib/x86_64-linux-gnu/libapparmor.so.1.6.3                        32183
-etc/crontab                                                          32181
-usr/share/dbus-1/system.conf                                         32178
-usr/sbin/memlockd                                                    32175
-usr/libexec/polkitd                                                  32174
-usr/local/lib/initramfs-restore                                      32173
-etc/init.d/rng-tools-debian                                          32172
-etc/memlockd.cfg                                                     32168
-lib/init/vars.sh                                                     32166
+etc/sudoers.d/zzz_halt                                               32375
+etc/sudoers.d/zzz_onioncircuits                                      32374
+etc/sudoers.d/zzz_tails-additional-software                          32373
+etc/sudoers.d/zzz_tails-backup                                       32372
+etc/sudoers.d/zzz_tails-debugging-info                               32371
+etc/sudoers.d/zzz_tbb                                                32370
+etc/sudoers.d/zzz_tca                                                32369
+etc/sudoers.d/zzz_tps-frontend                                       32368
+etc/sudoers.d/zzz_unsafe-browser                                     32367
+etc/sudoers.d/zzz_upgrade                                            32366
+etc/host.conf                                                        32365
+etc/resolv.conf                                                      32364
+etc/pam.d/sudo                                                       32363
+etc/pam.d/common-session-noninteractive                              32362
+lib/live/config/1040-gnome-screensaver                               32360
+lib/live/config/1050-kaboom                                          32359
+lib/live/config/1060-kde-services                                    32358
+lib/live/config/1080-policykit                                       32357
+lib/live/config/1090-ssl-cert                                        32356
+usr/sbin/make-ssl-cert                                               32355
+bin/bash                                                             32354
+lib/x86_64-linux-gnu/libtinfo.so.6.2                                 32353
+usr/bin/basename                                                     32352
+bin/mktemp                                                           32351
+usr/share/ssl-cert/ssleay.cnf                                        32350
+usr/bin/openssl                                                      32349
+usr/lib/x86_64-linux-gnu/libssl.so.1.1                               32348
+usr/lib/x86_64-linux-gnu/libcrypto.so.1.1                            32347
+etc/ssl/openssl.cnf                                                  32346
+usr/bin/dirname                                                      32343
+lib/live/config/1110-anacron                                         32341
+lib/live/config/1120-util-linux                                      32340
+lib/live/config/1130-login                                           32338
+lib/live/config/1140-xserver-xorg                                    32334
+lib/live/config/1160-openssh-server                                  32333
+lib/live/config/1170-xfce4-panel                                     32332
+lib/live/config/1180-xscreensaver                                    32331
+lib/live/config/1190-broadcom-sta                                    32330
+lib/live/config/1500-reconfigure-APT                                 32329
+lib/live/config/1600-undivert-APT                                    32296
+usr/bin/dpkg-divert                                                  32295
+lib/live/config/2000-aesthetics                                      32290
+lib/live/config/2000-import-gnupg-key                                32289
+usr/bin/gpg                                                          32287
+usr/lib/x86_64-linux-gnu/libsqlite3.so.0.8.6                         32286
+lib/x86_64-linux-gnu/libreadline.so.8.1                              32285
+usr/lib/x86_64-linux-gnu/libassuan.so.0.8.3                          32284
+usr/share/doc/tails/website/tails-accounting.key                     32283
+usr/bin/gpg-agent                                                    32282
+usr/lib/x86_64-linux-gnu/libnpth.so.0.1.2                            32281
+usr/share/doc/tails/website/tails-board.key                          32280
+usr/share/doc/tails/website/tails-bugs.key                           32279
+usr/share/doc/tails/website/tails-email.key                          32278
+usr/share/doc/tails/website/tails-foundations.key                    32277
+usr/share/doc/tails/website/tails-fundraising.key                    32276
+usr/share/doc/tails/website/tails-mirrors.key                        32275
+usr/share/doc/tails/website/tails-press.key                          32274
+usr/share/doc/tails/website/tails-signing-minimal.key                32273
+usr/share/doc/tails/website/tails-signing.key                        32272
+usr/share/doc/tails/website/tails-sysadmins.key                      32271
+usr/share/doc/tails/website/tails-weblate.key                        32270
+lib/live/config/2030-systemd                                         32263
+bin/systemd-machine-id-setup                                         32262
+lib/systemd/libsystemd-shared-247.so                                 32261
+lib/x86_64-linux-gnu/libcap.so.2.44                                  32260
+usr/lib/x86_64-linux-gnu/libip4tc.so.2.0.0                           32259
+usr/lib/x86_64-linux-gnu/libkmod.so.2.3.6                            32258
+lib/x86_64-linux-gnu/librt-2.31.so                                   32257
+usr/lib/x86_64-linux-gnu/libseccomp.so.2.5.1                         32256
+etc/machine-id                                                       32255
+bin/journalctl                                                       32254
+usr/lib/systemd/catalog/systemd.be.catalog                           32253
+usr/lib/systemd/catalog/systemd.be@latin.catalog                     32252
+usr/lib/systemd/catalog/systemd.bg.catalog                           32251
+usr/lib/systemd/catalog/systemd.catalog                              32250
+usr/lib/systemd/catalog/systemd.de.catalog                           32249
+usr/lib/systemd/catalog/systemd.fr.catalog                           32248
+usr/lib/systemd/catalog/systemd.it.catalog                           32247
+usr/lib/systemd/catalog/systemd.pl.catalog                           32246
+usr/lib/systemd/catalog/systemd.pt_BR.catalog                        32245
+usr/lib/systemd/catalog/systemd.ru.catalog                           32244
+usr/lib/systemd/catalog/systemd.zh_CN.catalog                        32243
+usr/lib/systemd/catalog/systemd.zh_TW.catalog                        32242
+lib/live/config/7000-debug                                           32240
+lib/live/config/8000-rootpw                                          32239
+lib/live/config/9000-hosts-file                                      32238
+etc/live/config.d/hostname.conf                                      32237
+lib/live/config/9980-permissions                                     32236
+lib/live/config/9990-hooks                                           32234
+lib/live/config/9995-nss-systemd                                     32233
+lib/live/config/9999-unset-user-account-comment                      32232
+etc/adjtime                                                          32229
+usr/libexec/accounts-daemon                                          32227
+usr/sbin/alsactl                                                     32225
+usr/lib/x86_64-linux-gnu/libasound.so.2.0.0                          32224
+usr/share/alsa/alsa.conf                                             32222
+etc/default/cron                                                     32221
+usr/share/alsa/alsa.conf.d/10-rate-lav.conf                          32220
+usr/share/alsa/alsa.conf.d/10-samplerate.conf                        32219
+usr/share/alsa/alsa.conf.d/10-speexrate.conf                         32218
+usr/share/alsa/alsa.conf.d/50-arcam-av-ctl.conf                      32217
+usr/share/alsa/alsa.conf.d/50-jack.conf                              32216
+usr/share/alsa/alsa.conf.d/50-oss.conf                               32215
+usr/share/alsa/alsa.conf.d/50-pulseaudio.conf                        32214
+usr/share/alsa/alsa.conf.d/60-a52-encoder.conf                       32213
+usr/share/alsa/alsa.conf.d/60-upmix.conf                             32212
+usr/share/alsa/alsa.conf.d/60-vdownmix.conf                          32211
+usr/share/alsa/alsa.conf.d/98-usb-stream.conf                        32210
+usr/share/alsa/alsa.conf.d/pulse.conf                                32209
+etc/asound.conf                                                      32208
+usr/lib/x86_64-linux-gnu/alsa-lib/libasound_module_conf_pulse.so     32207
+usr/lib/x86_64-linux-gnu/libpulse.so.0.23.0                          32206
+usr/lib/x86_64-linux-gnu/libpolkit-gobject-1.so.0.0.0                32205
+usr/lib/x86_64-linux-gnu/pulseaudio/libpulsecommon-14.2.so           32204
+lib/x86_64-linux-gnu/libdbus-1.so.3.19.15                            32203
+usr/lib/x86_64-linux-gnu/libxcb.so.1.1.0                             32202
+usr/lib/x86_64-linux-gnu/libsystemd.so.0.30.0                        32201
+usr/lib/x86_64-linux-gnu/libwrap.so.0.7.6                            32200
+usr/lib/x86_64-linux-gnu/libsndfile.so.1.0.31                        32199
+usr/lib/x86_64-linux-gnu/libasyncns.so.0.3.1                         32198
+usr/lib/x86_64-linux-gnu/libXau.so.6.0.0                             32197
+usr/lib/x86_64-linux-gnu/libXdmcp.so.6.0.0                           32196
+usr/lib/x86_64-linux-gnu/libFLAC.so.8.3.0                            32195
+usr/lib/x86_64-linux-gnu/libvorbis.so.0.4.9                          32194
+usr/lib/x86_64-linux-gnu/libvorbisenc.so.2.0.12                      32193
+usr/lib/x86_64-linux-gnu/libopus.so.0.8.0                            32192
+usr/lib/x86_64-linux-gnu/libogg.so.0.8.4                             32191
+usr/lib/x86_64-linux-gnu/libbsd.so.0.11.3                            32190
+usr/lib/x86_64-linux-gnu/libmd.so.0.0.4                              32189
+etc/pulse/client.conf                                                32188
+usr/share/alsa/init/00main                                           32187
+usr/share/alsa/init/hda                                              32186
+usr/share/alsa/init/default                                          32185
+usr/bin/dbus-daemon                                                  32183
+usr/local/lib/initramfs-restore                                      32177
+etc/init.d/rng-tools-debian                                          32175
+usr/sbin/cron                                                        32174
+usr/sbin/memlockd                                                    32173
+etc/crontab                                                          32171
+etc/memlockd.cfg                                                     32170
+etc/cron.d/e2scrub_all                                               32169
+lib/init/vars.sh                                                     32167
 usr/bin/ldd                                                          32165
-usr/local/bin/tails-get-bootinfo                                     32164
-usr/local/lib/tails-create-netns                                     32162
-bin/true                                                             32159
-usr/lib/x86_64-linux-gnu/libnss_systemd.so.2                         32158
-usr/bin/env                                                          32157
-usr/bin/python3.9                                                    32156
-usr/share/dbus-1/system.d/nm-dispatcher.conf                         32154
-usr/libexec/udisks2/udisksd                                          32151
-bin/kmod                                                             32150
-lib/modprobe.d/aliases.conf                                          32149
-etc/modprobe.d/all-net-blacklist.conf                                32148
-etc/modprobe.d/amd64-microcode-blacklist.conf                        32147
-lib/modprobe.d/fbdev-blacklist.conf                                  32146
-etc/modprobe.d/intel-microcode-blacklist.conf                        32145
-lib/modules/6.0.0-0.deb11.6-amd64/modules.softdep                    32144
-etc/modprobe.d/no-bluetooth.conf                                     32143
-etc/modprobe.d/no-conntrack-helper.conf                              32142
-etc/modprobe.d/no-mei.conf                                           32141
-etc/modprobe.d/no-n-hdlc.conf                                        32140
-etc/modprobe.d/no-pc-speaker.conf                                    32139
-lib/modprobe.d/systemd.conf                                          32138
-etc/modprobe.d/uncommon-network-protocols.conf                       32137
-lib/modules/6.0.0-0.deb11.6-amd64/modules.dep.bin                    32136
-lib/modules/6.0.0-0.deb11.6-amd64/modules.alias.bin                  32135
-lib/modules/6.0.0-0.deb11.6-amd64/modules.symbols.bin                32134
-lib/modules/6.0.0-0.deb11.6-amd64/modules.builtin.alias.bin          32133
-lib/modules/6.0.0-0.deb11.6-amd64/modules.builtin.bin                32132
-sbin/wpa_supplicant                                                  32113
-usr/bin/install                                                      32110
-bin/echo                                                             32106
-lib/lsb/init-functions                                               32105
-bin/run-parts                                                        32104
-usr/sbin/laptop_mode                                                 32103
-usr/lib/x86_64-linux-gnu/libgudev-1.0.so.0.3.0                       32102
-usr/lib/x86_64-linux-gnu/libblockdev.so.2.0.0                        32101
-lib/lsb/init-functions.d/00-verbose                                  32098
-lib/lsb/init-functions.d/40-systemd                                  32097
-etc/cron.d/e2scrub_all                                               32096
-usr/bin/unmkinitramfs                                                32095
-usr/share/dbus-1/system.d/org.freedesktop.Accounts.conf              32093
-usr/lib/x86_64-linux-gnu/libbd_utils.so.2.1.0                        32092
-bin/kill                                                             32090
-usr/bin/tor                                                          32089
-lib/systemd/systemd-logind                                           32088
-lib/x86_64-linux-gnu/libnl-3.so.200.26.0                             32087
-lib/x86_64-linux-gnu/libnl-genl-3.so.200.26.0                        32086
-usr/lib/x86_64-linux-gnu/libnl-route-3.so.200.26.0                   32085
-usr/lib/x86_64-linux-gnu/libpcsclite.so.1.0.0                        32084
-usr/lib/x86_64-linux-gnu/libatasmart.so.4.0.5                        32082
-usr/lib/x86_64-linux-gnu/libuuid.so.1.3.0                            32081
-usr/lib/x86_64-linux-gnu/libudisks2.so.0.0.0                         32080
-usr/bin/getopt                                                       32079
-usr/local/lib/tails-set-wireless-devices-state                       32078
-lib/systemd/system-preset/90-systemd.preset                          32077
-lib/lsb/init-functions.d/99-plymouth                                 32076
-usr/bin/plymouth                                                     32075
-usr/lib/x86_64-linux-gnu/libply.so.5.0.0                             32074
-usr/lib/x86_64-linux-gnu/libudev.so.1.7.0                            32072
+lib/lsb/init-functions                                               32164
+bin/run-parts                                                        32163
+usr/local/lib/tails-create-netns                                     32158
+bin/true                                                             32156
+lib/lsb/init-functions.d/00-verbose                                  32155
+lib/lsb/init-functions.d/40-systemd                                  32154
+usr/libexec/udisks2/udisksd                                          32150
+usr/libexec/polkitd                                                  32149
+lib/x86_64-linux-gnu/libexpat.so.1.6.12                              32148
+usr/bin/install                                                      32147
+bin/kmod                                                             32145
+sbin/wpa_supplicant                                                  32144
+usr/lib/x86_64-linux-gnu/libapparmor.so.1.6.3                        32143
+etc/default/zramswap                                                 32140
+bin/echo                                                             32139
+lib/modprobe.d/aliases.conf                                          32138
+etc/modprobe.d/all-net-blacklist.conf                                32137
+etc/modprobe.d/amd64-microcode-blacklist.conf                        32136
+lib/modprobe.d/fbdev-blacklist.conf                                  32135
+etc/modprobe.d/intel-microcode-blacklist.conf                        32134
+lib/modules/6.1.0-5-amd64/modules.softdep                            32133
+etc/modprobe.d/no-bluetooth.conf                                     32132
+etc/modprobe.d/no-conntrack-helper.conf                              32131
+etc/modprobe.d/no-mei.conf                                           32130
+etc/modprobe.d/no-n-hdlc.conf                                        32129
+etc/modprobe.d/no-pc-speaker.conf                                    32128
+lib/modprobe.d/systemd.conf                                          32127
+etc/modprobe.d/uncommon-network-protocols.conf                       32126
+lib/modules/6.1.0-5-amd64/modules.dep.bin                            32125
+lib/modules/6.1.0-5-amd64/modules.alias.bin                          32124
+lib/modules/6.1.0-5-amd64/modules.symbols.bin                        32123
+lib/modules/6.1.0-5-amd64/modules.builtin.alias.bin                  32122
+lib/modules/6.1.0-5-amd64/modules.builtin.bin                        32121
+usr/lib/x86_64-linux-gnu/libgudev-1.0.so.0.3.0                       32119
+usr/lib/x86_64-linux-gnu/libblockdev.so.2.0.0                        32118
+usr/share/dbus-1/system.conf                                         32117
+usr/sbin/zramswap                                                    32114
+usr/local/bin/tails-get-bootinfo                                     32113
+usr/bin/env                                                          32112
+usr/bin/python3.9                                                    32111
+lib/systemd/system-preset/90-systemd.preset                          32109
+lib/lsb/init-functions.d/99-plymouth                                 32108
+usr/local/lib/tails-set-wireless-devices-state                       32107
+usr/bin/tor                                                          32105
+usr/bin/plymouth                                                     32099
+usr/lib/x86_64-linux-gnu/libply.so.5.0.0                             32098
+usr/sbin/laptop_mode                                                 32092
+etc/default/rng-tools-debian                                         32088
+usr/lib/x86_64-linux-gnu/libbd_utils.so.2.1.0                        32087
+lib/systemd/systemd-logind                                           32085
+usr/lib/x86_64-linux-gnu/libnss_systemd.so.2                         32081
+usr/lib/x86_64-linux-gnu/libatasmart.so.4.0.5                        32078
+usr/bin/logger                                                       32077
+bin/kill                                                             32076
+etc/systemd/logind.conf                                              32074
+usr/share/dbus-1/system.d/nm-dispatcher.conf                         32073
+usr/lib/systemd/logind.conf.d/lower-NAutoVTs.conf                    32072
 lib/x86_64-linux-gnu/libprocps.so.8.0.3                              32071
-sbin/e2scrub_all                                                     32070
-etc/default/rng-tools-debian                                         32069
-usr/share/dbus-1/system.d/org.freedesktop.ColorManager.conf          32068
-bin/dd                                                               32066
-bin/ip                                                               32065
-usr/lib/x86_64-linux-gnu/libbpf.so.0.3.0                             32064
-usr/lib/x86_64-linux-gnu/libelf-0.183.so                             32063
-usr/lib/x86_64-linux-gnu/libmnl.so.0.2.0                             32062
-bin/loginctl                                                         32061
-usr/share/dbus-1/system.d/org.freedesktop.NetworkManager.conf        32059
-usr/share/dbus-1/system.d/org.freedesktop.PolicyKit1.conf            32058
-usr/share/dbus-1/system.d/org.freedesktop.UDisks2.conf               32057
-usr/share/dbus-1/system.d/org.freedesktop.UPower.conf                32056
-usr/share/dbus-1/system.d/org.freedesktop.bolt.conf                  32055
-usr/share/dbus-1/system.d/org.freedesktop.hostname1.conf             32054
-usr/share/dbus-1/system.d/org.freedesktop.locale1.conf               32053
-usr/share/dbus-1/system.d/org.freedesktop.login1.conf                32052
-usr/share/dbus-1/system.d/org.freedesktop.network1.conf              32051
-etc/systemd/logind.conf                                              32050
-usr/lib/systemd/logind.conf.d/lower-NAutoVTs.conf                    32049
-usr/share/dbus-1/system.d/org.freedesktop.resolve1.conf              32048
-usr/share/dbus-1/system.d/org.freedesktop.systemd1.conf              32047
-usr/share/dbus-1/system.d/org.freedesktop.timedate1.conf             32046
-usr/share/dbus-1/system.d/org.freedesktop.timesync1.conf             32045
-usr/share/dbus-1/system.d/org.kde.kf5auth.conf                       32044
-bin/ls                                                               32043
-etc/dbus-1/system.d/avahi-dbus.conf                                  32042
-usr/bin/logger                                                       32041
-usr/bin/flock                                                        32040
-usr/lib/x86_64-linux-gnu/libevent-2.1.so.7.0.1                       32039
-etc/dbus-1/system.d/com.hp.hplip.conf                                32038
-etc/dbus-1/system.d/com.redhat.NewPrinterNotification.conf           32037
-etc/dbus-1/system.d/com.redhat.PrinterDriversInstaller.conf          32036
-etc/dbus-1/system.d/gdm.conf                                         32035
-etc/dbus-1/system.d/org.boum.tails.PersistentStorage.conf            32033
-etc/dbus-1/system.d/org.freedesktop.ModemManager1.conf               32032
-etc/dbus-1/system.d/org.linuxtv.Zbar.conf                            32031
-etc/dbus-1/system.d/org.opensuse.CupsPkHelper.Mechanism.conf         32030
-etc/dbus-1/system.d/pulseaudio-system.conf                           32029
-etc/dbus-1/system.d/wpa_supplicant.conf                              32028
-usr/local/share/dbus-1/system-services/org.boum.tails.PersistentStorage.service 32027
-usr/share/dbus-1/system-services/com.hp.hplip.service                32026
-usr/share/dbus-1/system-services/fi.w1.wpa_supplicant1.service       32025
-usr/share/dbus-1/system-services/org.freedesktop.Accounts.service    32024
-lib/udev/ifupdown-hotplug                                            32021
-sbin/ifup                                                            32020
-etc/network/interfaces                                               32019
-usr/share/dbus-1/system-services/org.freedesktop.Avahi.service       32018
-usr/share/dbus-1/system-services/org.freedesktop.ColorManager.service 32017
-usr/share/dbus-1/system-services/org.freedesktop.ModemManager1.service 32016
-usr/share/dbus-1/system-services/org.freedesktop.PolicyKit1.service  32013
-usr/share/dbus-1/system-services/org.freedesktop.UDisks2.service     32012
-usr/share/dbus-1/system-services/org.freedesktop.UPower.service      32011
-usr/share/dbus-1/system-services/org.freedesktop.bolt.service        32010
-usr/share/dbus-1/system-services/org.freedesktop.hostname1.service   32009
-usr/share/dbus-1/system-services/org.freedesktop.locale1.service     32008
-usr/share/dbus-1/system-services/org.freedesktop.login1.service      32007
-usr/share/dbus-1/system-services/org.freedesktop.network1.service    32006
-usr/share/dbus-1/system-services/org.freedesktop.nm_dispatcher.service 32005
-usr/share/dbus-1/system-services/org.freedesktop.resolve1.service    32004
-usr/share/dbus-1/system-services/org.freedesktop.systemd1.service    32003
-usr/share/dbus-1/system-services/org.freedesktop.timedate1.service   32002
-usr/share/dbus-1/system-services/org.freedesktop.timesync1.service   32001
-lib/systemd/systemd-sysctl                                           32000
-usr/share/dbus-1/system-services/org.opensuse.CupsPkHelper.Mechanism.service 31999
-etc/libblockdev/conf.d/00-default.cfg                                31998
-usr/lib/x86_64-linux-gnu/libbd_swap.so.2.0.0                         31997
-usr/lib/x86_64-linux-gnu/libbd_loop.so.2.0.0                         31996
-usr/lib/sysctl.d/30-tracker.conf                                     31995
-usr/lib/sysctl.d/50-bubblewrap.conf                                  31994
-usr/lib/sysctl.d/50-pid-max.conf                                     31993
-etc/sysctl.conf                                                      31992
-etc/sysctl.d/bpf_jit_harden.conf                                     31991
-etc/sysctl.d/disable_ipv6.conf                                       31990
-etc/sysctl.d/fs_protected.conf                                       31989
-etc/sysctl.d/kexec.conf                                              31988
-etc/sysctl.d/kptr_restrict.conf                                      31987
-etc/sysctl.d/mmap_aslr.conf                                          31986
-etc/sysctl.d/pmtud.conf                                              31985
-usr/lib/sysctl.d/protect-links.conf                                  31984
-etc/sysctl.d/ptrace_scope.conf                                       31983
-etc/sysctl.d/tty_line_disciplines.conf                               31982
-etc/sysctl.d/unprivileged_bpf.conf                                   31981
-etc/sysctl.d/unprivileged_userfaultfd.conf                           31980
-usr/lib/x86_64-linux-gnu/gio/modules/giomodule.cache                 31978
-usr/lib/x86_64-linux-gnu/gio/modules/libgvfsdbus.so                  31977
-usr/lib/x86_64-linux-gnu/gvfs/libgvfscommon.so                       31976
-etc/shells                                                           31975
-var/log/wtmp                                                         31974
-etc/gdm3/daemon.conf                                                 31973
-lib/x86_64-linux-gnu/libgcc_s.so.1                                   31971
-usr/lib/x86_64-linux-gnu/libbd_crypto.so.2.0.0                       31970
-lib/x86_64-linux-gnu/libcryptsetup.so.12.6.0                         31969
-usr/share/tor/tor-service-defaults-torrc                             31968
-usr/lib/x86_64-linux-gnu/libnss3.so                                  31966
-usr/bin/tr                                                           31963
-usr/lib/x86_64-linux-gnu/libsmime3.so                                31961
-usr/share/laptop-mode-tools/modules/ac97-powersave                   31960
-usr/lib/x86_64-linux-gnu/libvolume_key.so.1.2.3                      31959
-usr/sbin/ModemManager                                                31958
-lib/x86_64-linux-gnu/libdevmapper.so.1.02.1                          31957
-etc/e2scrub.conf                                                     31956
-usr/lib/x86_64-linux-gnu/libargon2.so.1                              31955
-usr/lib/x86_64-linux-gnu/libjson-c.so.5.1.0                          31954
-usr/share/laptop-mode-tools/modules/battery-level-polling            31952
-usr/sbin/xtables-legacy-multi                                        31943
-usr/lib/x86_64-linux-gnu/libip6tc.so.2.0.0                           31942
-usr/lib/x86_64-linux-gnu/libxtables.so.12.4.0                        31941
-usr/lib/x86_64-linux-gnu/xtables/libipt_REJECT.so                    31940
-usr/lib/x86_64-linux-gnu/libnssutil3.so                              31938
-usr/lib/x86_64-linux-gnu/libmm-glib.so.0.6.0                         31923
-usr/lib/x86_64-linux-gnu/libqmi-glib.so.5.7.0                        31922
-sbin/sysctl                                                          31921
-bin/sleep                                                            31920
-usr/sbin/logrotate                                                   31919
-usr/share/laptop-mode-tools/modules/bluetooth                        31916
-usr/lib/x86_64-linux-gnu/libpopt.so.0.0.1                            31915
-bin/umount                                                           31914
-usr/share/tor/geoip                                                  31913
-usr/share/laptop-mode-tools/modules/configuration-file-control       31912
-lib/systemd/system/tails-remove-overlayfs-dirs.service               31911
-usr/lib/x86_64-linux-gnu/libplc4.so                                  31910
-usr/lib/x86_64-linux-gnu/libmbim-glib.so.4.5.0                       31909
-usr/share/laptop-mode-tools/modules/cpufreq                          31908
-lib/systemd/system-shutdown/tails                                    31907
-lib/systemd/systemd-shutdown                                         31906
-usr/lib/x86_64-linux-gnu/xtables/libipt_MASQUERADE.so                31905
-usr/lib/x86_64-linux-gnu/libplds4.so                                 31904
-usr/lib/x86_64-linux-gnu/libnspr4.so                                 31903
-usr/bin/eject                                                        31902
-etc/logrotate.conf                                                   31901
-usr/lib/x86_64-linux-gnu/libgpgme.so.11.23.0                         31900
-usr/lib/x86_64-linux-gnu/ModemManager/libmm-shared-xmm.so            31899
-usr/share/laptop-mode-tools/modules/cpuhotplug                       31898
-usr/lib/x86_64-linux-gnu/libbd_part.so.2.0.0                         31897
-usr/lib/x86_64-linux-gnu/libbd_part_err.so.2.0.0                     31896
-lib/x86_64-linux-gnu/libparted.so.2.0.3                              31895
-usr/lib/x86_64-linux-gnu/ModemManager/libmm-shared-telit.so          31894
-usr/lib/x86_64-linux-gnu/ModemManager/libmm-shared-sierra.so         31893
-usr/lib/x86_64-linux-gnu/ModemManager/libmm-shared-option.so         31892
-usr/lib/x86_64-linux-gnu/ModemManager/libmm-shared-novatel.so        31891
-usr/lib/x86_64-linux-gnu/ModemManager/libmm-shared-icera.so          31890
-usr/lib/x86_64-linux-gnu/ModemManager/libmm-shared-foxconn.so        31889
-usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-zte.so            31888
-usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-x22x.so           31887
-usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-wavecom.so        31886
-usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-via.so            31885
-usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-ublox.so          31884
-usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-tplink.so         31883
-usr/bin/pgrep                                                        31882
-usr/share/laptop-mode-tools/modules/dpms-standby                     31881
-usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-thuraya.so        31880
-usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-telit.so          31879
-usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-simtech.so        31878
-usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-sierra.so         31877
-usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-sierra-legacy.so  31876
-usr/share/laptop-mode-tools/modules/eee-superhe                      31875
-usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-samsung.so        31874
-usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-quectel.so        31873
-usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-pantech.so        31872
-usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-option.so         31871
-usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-option-hso.so     31870
-usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-novatel.so        31869
-usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-novatel-lte.so    31868
-usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-nokia.so          31867
-usr/sbin/dmidecode                                                   31862
-usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-nokia-icera.so    31861
-usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-mtk.so            31860
-usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-motorola.so       31859
-usr/share/tor/geoip6                                                 31858
+usr/bin/unmkinitramfs                                                32070
+usr/bin/getopt                                                       32069
+usr/share/dbus-1/system.d/org.freedesktop.Accounts.conf              32068
+bin/loginctl                                                         32066
+usr/bin/flock                                                        32065
+usr/lib/x86_64-linux-gnu/libuuid.so.1.3.0                            32063
+usr/share/dbus-1/system.d/org.freedesktop.ColorManager.conf          32062
+sbin/e2scrub_all                                                     32061
+usr/lib/x86_64-linux-gnu/libudisks2.so.0.0.0                         32060
+lib/x86_64-linux-gnu/libnl-3.so.200.26.0                             32059
+lib/x86_64-linux-gnu/libnl-genl-3.so.200.26.0                        32058
+usr/lib/x86_64-linux-gnu/libnl-route-3.so.200.26.0                   32057
+lib/modules/6.1.0-5-amd64/kernel/mm/zsmalloc.ko                      32056
+usr/lib/x86_64-linux-gnu/libpcsclite.so.1.0.0                        32055
+bin/dd                                                               32053
+usr/lib/x86_64-linux-gnu/libudev.so.1.7.0                            32052
+etc/e2scrub.conf                                                     32051
+usr/lib/x86_64-linux-gnu/libevent-2.1.so.7.0.1                       32050
+bin/ls                                                               32029
+lib/modules/6.1.0-5-amd64/kernel/drivers/block/zram/zram.ko          32028
+usr/bin/tr                                                           32025
+usr/share/dbus-1/system.d/org.freedesktop.NetworkManager.conf        32024
+usr/share/plymouth/themes/text/text.plymouth                         32022
+usr/share/dbus-1/system.d/org.freedesktop.PolicyKit1.conf            32019
+usr/share/dbus-1/system.d/org.freedesktop.UDisks2.conf               32018
+usr/share/dbus-1/system.d/org.freedesktop.UPower.conf                32017
+usr/share/dbus-1/system.d/org.freedesktop.bolt.conf                  32016
+usr/share/dbus-1/system.d/org.freedesktop.hostname1.conf             32015
+usr/share/dbus-1/system.d/org.freedesktop.locale1.conf               32014
+usr/share/dbus-1/system.d/org.freedesktop.login1.conf                32013
+usr/share/dbus-1/system.d/org.freedesktop.network1.conf              32012
+lib/x86_64-linux-gnu/libgcc_s.so.1                                   32011
+usr/share/laptop-mode-tools/modules/ac97-powersave                   32010
+usr/share/dbus-1/system.d/org.freedesktop.resolve1.conf              32009
+lib/modules/6.1.0-5-amd64/kernel/lib/lz4/lz4_compress.ko             32008
+usr/share/laptop-mode-tools/modules/battery-level-polling            32007
+lib/modules/6.1.0-5-amd64/kernel/crypto/lz4.ko                       32006
+usr/share/dbus-1/system.d/org.freedesktop.systemd1.conf              32005
+usr/share/dbus-1/system.d/org.freedesktop.timedate1.conf             32004
+usr/share/dbus-1/system.d/org.freedesktop.timesync1.conf             32003
+usr/share/dbus-1/system.d/org.kde.kf5auth.conf                       32002
+etc/dbus-1/system.d/avahi-dbus.conf                                  32001
+etc/dbus-1/system.d/com.hp.hplip.conf                                32000
+usr/share/tor/tor-service-defaults-torrc                             31999
+etc/dbus-1/system.d/com.redhat.NewPrinterNotification.conf           31998
+etc/dbus-1/system.d/com.redhat.PrinterDriversInstaller.conf          31997
+etc/dbus-1/system.d/gdm.conf                                         31996
+etc/dbus-1/system.d/org.boum.tails.PersistentStorage.conf            31995
+etc/dbus-1/system.d/org.freedesktop.ModemManager1.conf               31994
+etc/dbus-1/system.d/org.linuxtv.Zbar.conf                            31993
+etc/dbus-1/system.d/org.opensuse.CupsPkHelper.Mechanism.conf         31992
+etc/dbus-1/system.d/pulseaudio-system.conf                           31991
+etc/dbus-1/system.d/wpa_supplicant.conf                              31990
+bin/ip                                                               31989
+usr/local/share/dbus-1/system-services/org.boum.tails.PersistentStorage.service 31988
+usr/lib/x86_64-linux-gnu/libbpf.so.0.3.0                             31987
+usr/lib/x86_64-linux-gnu/libelf-0.183.so                             31986
+usr/lib/x86_64-linux-gnu/libmnl.so.0.2.0                             31985
+usr/share/dbus-1/system-services/com.hp.hplip.service                31984
+usr/share/dbus-1/system-services/fi.w1.wpa_supplicant1.service       31983
+usr/share/dbus-1/system-services/org.freedesktop.Accounts.service    31982
+usr/share/dbus-1/system-services/org.freedesktop.Avahi.service       31981
+usr/share/dbus-1/system-services/org.freedesktop.ColorManager.service 31980
+usr/share/dbus-1/system-services/org.freedesktop.ModemManager1.service 31979
+usr/share/dbus-1/system-services/org.freedesktop.PolicyKit1.service  31978
+usr/share/dbus-1/system-services/org.freedesktop.UDisks2.service     31977
+usr/share/dbus-1/system-services/org.freedesktop.UPower.service      31976
+usr/share/dbus-1/system-services/org.freedesktop.bolt.service        31975
+usr/share/dbus-1/system-services/org.freedesktop.hostname1.service   31974
+usr/share/dbus-1/system-services/org.freedesktop.locale1.service     31973
+usr/share/dbus-1/system-services/org.freedesktop.login1.service      31972
+usr/share/dbus-1/system-services/org.freedesktop.network1.service    31971
+usr/share/dbus-1/system-services/org.freedesktop.nm_dispatcher.service 31970
+usr/share/dbus-1/system-services/org.freedesktop.resolve1.service    31969
+usr/share/dbus-1/system-services/org.freedesktop.systemd1.service    31968
+usr/share/dbus-1/system-services/org.freedesktop.timedate1.service   31967
+usr/share/dbus-1/system-services/org.freedesktop.timesync1.service   31966
+usr/share/dbus-1/system-services/org.opensuse.CupsPkHelper.Mechanism.service 31965
+usr/share/laptop-mode-tools/modules/bluetooth                        31964
+usr/lib/x86_64-linux-gnu/gio/modules/giomodule.cache                 31963
+usr/lib/x86_64-linux-gnu/gio/modules/libgvfsdbus.so                  31962
+usr/lib/x86_64-linux-gnu/gvfs/libgvfscommon.so                       31961
+etc/shells                                                           31959
+var/log/wtmp                                                         31958
+sbin/mkswap                                                          31957
+etc/libblockdev/conf.d/00-default.cfg                                31956
+etc/gdm3/daemon.conf                                                 31955
+sbin/swapon.tails                                                    31953
+usr/share/laptop-mode-tools/modules/configuration-file-control       31948
+usr/lib/x86_64-linux-gnu/libbd_swap.so.2.0.0                         31947
+lib/udev/ifupdown-hotplug                                            31946
+sbin/ifup                                                            31945
+etc/network/interfaces                                               31944
+usr/sbin/ModemManager                                                31943
+usr/lib/x86_64-linux-gnu/libbd_loop.so.2.0.0                         31942
+usr/lib/x86_64-linux-gnu/libbd_crypto.so.2.0.0                       31941
+usr/share/laptop-mode-tools/modules/cpufreq                          31940
+bin/sleep                                                            31938
+lib/x86_64-linux-gnu/libcryptsetup.so.12.6.0                         31937
+sbin/swapon.distrib                                                  31936
+usr/lib/x86_64-linux-gnu/libsmartcols.so.1.1.0                       31935
+usr/lib/x86_64-linux-gnu/libmm-glib.so.0.6.0                         31934
+usr/lib/x86_64-linux-gnu/libqmi-glib.so.5.7.0                        31933
+usr/lib/x86_64-linux-gnu/libnss3.so                                  31932
+lib/systemd/systemd-sysctl                                           31931
+usr/share/laptop-mode-tools/modules/cpuhotplug                       31930
+usr/lib/sysctl.d/30-tracker.conf                                     31929
+usr/lib/sysctl.d/50-bubblewrap.conf                                  31928
+usr/lib/sysctl.d/50-pid-max.conf                                     31927
+etc/sysctl.conf                                                      31926
+etc/sysctl.d/bpf_jit_harden.conf                                     31925
+etc/sysctl.d/disable_ipv6.conf                                       31924
+etc/sysctl.d/fs_protected.conf                                       31923
+etc/sysctl.d/kexec.conf                                              31922
+etc/sysctl.d/kptr_restrict.conf                                      31921
+etc/sysctl.d/mmap_aslr.conf                                          31920
+etc/sysctl.d/pmtud.conf                                              31919
+usr/lib/sysctl.d/protect-links.conf                                  31918
+etc/sysctl.d/ptrace_scope.conf                                       31917
+etc/sysctl.d/tty_line_disciplines.conf                               31916
+etc/sysctl.d/unprivileged_bpf.conf                                   31915
+etc/sysctl.d/unprivileged_userfaultfd.conf                           31914
+usr/share/tor/geoip                                                  31910
+usr/share/laptop-mode-tools/modules/dpms-standby                     31908
+lib/systemd/system/blockdev@.target                                  31906
+usr/sbin/xtables-legacy-multi                                        31905
+usr/lib/x86_64-linux-gnu/libip6tc.so.2.0.0                           31904
+usr/lib/x86_64-linux-gnu/libxtables.so.12.4.0                        31903
+usr/lib/x86_64-linux-gnu/xtables/libipt_REJECT.so                    31902
+sbin/sysctl                                                          31900
+usr/share/laptop-mode-tools/modules/eee-superhe                      31899
+usr/lib/x86_64-linux-gnu/libmbim-glib.so.4.5.0                       31898
+bin/umount                                                           31897
+usr/lib/x86_64-linux-gnu/libsmime3.so                                31896
+lib/systemd/system/tails-remove-overlayfs-dirs.service               31895
+lib/systemd/system-shutdown/tails                                    31894
+lib/systemd/systemd-shutdown                                         31893
+usr/lib/x86_64-linux-gnu/ModemManager/libmm-shared-xmm.so            31892
+usr/lib/x86_64-linux-gnu/libvolume_key.so.1.2.3                      31891
+lib/x86_64-linux-gnu/libdevmapper.so.1.02.1                          31890
+usr/lib/x86_64-linux-gnu/ModemManager/libmm-shared-telit.so          31889
+usr/lib/x86_64-linux-gnu/ModemManager/libmm-shared-sierra.so         31888
+usr/lib/x86_64-linux-gnu/ModemManager/libmm-shared-option.so         31887
+usr/lib/x86_64-linux-gnu/ModemManager/libmm-shared-novatel.so        31886
+usr/lib/x86_64-linux-gnu/ModemManager/libmm-shared-icera.so          31885
+usr/share/laptop-mode-tools/modules/ethernet                         31884
+usr/lib/x86_64-linux-gnu/libargon2.so.1                              31883
+usr/sbin/logrotate                                                   31882
+usr/lib/x86_64-linux-gnu/ModemManager/libmm-shared-foxconn.so        31881
+usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-zte.so            31880
+usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-x22x.so           31879
+usr/bin/eject                                                        31878
+usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-wavecom.so        31877
+usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-via.so            31876
+usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-ublox.so          31875
+usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-tplink.so         31874
+usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-thuraya.so        31873
+usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-telit.so          31872
+usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-simtech.so        31871
+usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-sierra.so         31870
+usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-sierra-legacy.so  31869
+usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-samsung.so        31868
+usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-quectel.so        31867
+usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-pantech.so        31866
+usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-option.so         31865
+usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-option-hso.so     31864
+usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-novatel.so        31863
+usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-novatel-lte.so    31862
+usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-nokia.so          31861
+usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-nokia-icera.so    31860
+usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-mtk.so            31859
+usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-motorola.so       31858
 usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-longcheer.so      31857
 usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-linktop.so        31856
 usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-iridium.so        31855
@@ -696,1607 +693,1614 @@ usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-huawei.so         31854
 usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-haier.so          31853
 usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-generic.so        31852
 usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-foxconn.so        31851
-usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-fibocom.so        31850
-usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-ericsson-mbm.so   31849
-usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-dlink.so          31848
-usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-dell.so           31847
-usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-cinterion.so      31846
-usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-broadmobi.so      31845
-usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-anydata.so        31844
-usr/lib/x86_64-linux-gnu/libbd_fs.so.2.0.0                           31843
-lib/x86_64-linux-gnu/libparted-fs-resize.so.0.0.3                    31842
-etc/udisks2/udisks2.conf                                             31841
-usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-altair-lte.so     31829
-usr/share/laptop-mode-tools/modules/ethernet                         31787
-usr/local/sbin/udev-watchdog                                         31786
-usr/share/laptop-mode-tools/modules/exec-commands                    31753
-usr/share/laptop-mode-tools/modules/hal-polling                      31734
-usr/share/laptop-mode-tools/modules/hdparm                           31733
-usr/share/laptop-mode-tools/modules/intel-hda-powersave              31732
-usr/share/laptop-mode-tools/modules/intel-sata-powermgmt             31731
-etc/logrotate.d/alternatives                                         31730
-usr/share/laptop-mode-tools/modules/intel_pstate                     31725
-usr/share/laptop-mode-tools/modules/kbd-backlight                    31724
-usr/share/laptop-mode-tools/modules/laptop-mode                      31721
-sbin/blockdev                                                        31720
-usr/share/laptop-mode-tools/modules/lcd-brightness                   31719
-bin/cpio                                                             31718
-usr/share/laptop-mode-tools/modules/nmi-watchdog                     31717
-etc/logrotate.d/apt                                                  31716
-etc/logrotate.d/bootlog                                              31715
-etc/logrotate.d/btmp                                                 31714
-etc/logrotate.d/cups-daemon                                          31713
-etc/logrotate.d/dpkg                                                 31712
-etc/logrotate.d/macchanger                                           31711
-etc/logrotate.d/ppp                                                  31710
-etc/logrotate.d/sane-utils                                           31709
-usr/share/laptop-mode-tools/modules/nouveau                          31708
-etc/logrotate.d/speech-dispatcher                                    31706
-etc/logrotate.d/tor                                                  31705
-etc/logrotate.d/wtmp                                                 31704
-usr/local/lib/tor_wait_until_bootstrapped                            31703
-usr/share/laptop-mode-tools/modules/pcie-aspm                        31700
-usr/share/laptop-mode-tools/modules/radeon-dpm                       31699
-usr/lib/python3.9/argparse.py                                        31698
-usr/share/laptop-mode-tools/modules/runtime-pm                       31695
-usr/share/laptop-mode-tools/modules/sched-mc-power-savings           31685
-usr/lib/python3.9/gettext.py                                         31677
-usr/lib/python3/dist-packages/stem/__init__.py                       31675
-usr/lib/python3/dist-packages/stem/util/__init__.py                  31670
-usr/lib/python3/dist-packages/stem/prereq.py                         31668
-usr/lib/python3.9/hashlib.py                                         31667
-usr/lib/python3.9/lib-dynload/_hashlib.cpython-39-x86_64-linux-gnu.so 31666
-usr/share/laptop-mode-tools/modules/sched-smt-power-savings          31665
-usr/lib/python3.9/inspect.py                                         31664
-usr/share/laptop-mode-tools/modules/start-stop-programs              31663
-usr/lib/python3.9/ast.py                                             31661
-usr/share/laptop-mode-tools/modules/syslog-conf                      31660
-usr/lib/python3.9/dis.py                                             31658
-usr/lib/python3.9/opcode.py                                          31657
-usr/share/laptop-mode-tools/modules/terminal-blanking                31656
-usr/lib/python3.9/lib-dynload/_opcode.cpython-39-x86_64-linux-gnu.so 31655
-usr/lib/python3.9/importlib/__init__.py                              31653
-usr/lib/python3.9/importlib/machinery.py                             31651
-usr/lib/python3.9/platform.py                                        31650
-usr/share/laptop-mode-tools/modules/vgaswitcheroo                    31647
-usr/lib/python3/dist-packages/stem/util/enum.py                      31643
-usr/lib/python3/dist-packages/stem/util/str_tools.py                 31642
-usr/lib/python3.9/base64.py                                          31641
-usr/lib/python3/dist-packages/stem/util/connection.py                31635
-usr/share/laptop-mode-tools/modules/video-out                        31633
-usr/lib/python3/dist-packages/stem/util/proc.py                      31632
-usr/lib/python3/dist-packages/stem/util/log.py                       31631
-usr/lib/python3/dist-packages/stem/util/system.py                    31627
-usr/lib/python3.9/lib-dynload/_ctypes.cpython-39-x86_64-linux-gnu.so 31625
-usr/lib/python3.9/lib-dynload/_bz2.cpython-39-x86_64-linux-gnu.so    31618
-usr/lib/python3.9/lib-dynload/_lzma.cpython-39-x86_64-linux-gnu.so   31616
-usr/lib/python3.9/mimetypes.py                                       31612
-usr/share/laptop-mode-tools/modules/wireless-ipw-power               31611
-usr/lib/python3.9/urllib/__init__.py                                 31609
-usr/lib/python3.9/urllib/parse.py                                    31608
-usr/lib/python3.9/multiprocessing/__init__.py                        31606
-usr/lib/python3.9/multiprocessing/context.py                         31605
-usr/lib/python3.9/multiprocessing/process.py                         31604
-usr/share/laptop-mode-tools/modules/wireless-iwl-power               31603
-usr/lib/python3.9/multiprocessing/reduction.py                       31602
-usr/lib/python3.9/pickle.py                                          31601
-usr/share/laptop-mode-tools/modules/wireless-power                   31600
-usr/lib/python3.9/_compat_pickle.py                                  31599
-sbin/iw                                                              31598
-usr/lib/python3.9/tarfile.py                                         31597
-etc/iproute2/group                                                   31596
-usr/lib/python3.9/copy.py                                            31595
-usr/lib/python3/dist-packages/stem/util/conf.py                      31594
-usr/lib/python3.9/urllib/request.py                                  31593
-usr/lib/python3.9/email/__init__.py                                  31592
-usr/lib/python3.9/http/__init__.py                                   31591
-usr/lib/python3.9/http/client.py                                     31590
-usr/lib/python3.9/email/parser.py                                    31589
-usr/lib/python3.9/email/feedparser.py                                31588
-usr/lib/python3.9/email/errors.py                                    31587
-usr/lib/python3.9/email/_policybase.py                               31586
-usr/lib/python3.9/email/header.py                                    31585
-usr/lib/python3.9/email/quoprimime.py                                31584
-usr/lib/python3.9/email/base64mime.py                                31583
-usr/lib/python3.9/email/charset.py                                   31582
-etc/protocols                                                        31581
-usr/lib/x86_64-linux-gnu/xtables/libxt_tcp.so                        31580
-usr/lib/x86_64-linux-gnu/xtables/libipt_DNAT.so                      31579
-usr/lib/python3.9/email/encoders.py                                  31578
-usr/lib/python3.9/quopri.py                                          31577
-usr/lib/python3.9/email/utils.py                                     31576
-usr/lib/python3.9/email/_parseaddr.py                                31575
-usr/lib/python3.9/calendar.py                                        31574
-usr/lib/python3.9/email/message.py                                   31572
-usr/lib/python3.9/uu.py                                              31571
-usr/lib/python3.9/email/_encoded_words.py                            31570
-usr/lib/python3.9/email/iterators.py                                 31569
-usr/lib/python3.9/ssl.py                                             31568
-usr/lib/python3.9/lib-dynload/_ssl.cpython-39-x86_64-linux-gnu.so    31567
-usr/lib/python3.9/urllib/error.py                                    31566
-usr/lib/python3.9/urllib/response.py                                 31565
-usr/lib/python3/dist-packages/stem/connection.py                     31564
-usr/lib/python3.9/getpass.py                                         31563
-usr/lib/python3.9/lib-dynload/termios.cpython-39-x86_64-linux-gnu.so 31562
-usr/lib/python3.9/hmac.py                                            31561
-usr/lib/python3/dist-packages/stem/control.py                        31560
-usr/lib/python3.9/queue.py                                           31559
-usr/lib/python3.9/lib-dynload/_queue.cpython-39-x86_64-linux-gnu.so  31558
-usr/lib/python3/dist-packages/stem/descriptor/__init__.py            31557
-usr/lib/python3/dist-packages/stem/descriptor/bandwidth_file.py      31556
-usr/lib/python3/dist-packages/stem/descriptor/extrainfo_descriptor.py 31555
-usr/lib/python3/dist-packages/stem/descriptor/hidden_service.py      31554
-usr/lib/python3/dist-packages/stem/client/__init__.py                31553
-usr/lib/python3/dist-packages/stem/client/cell.py                    31552
-usr/lib/python3/dist-packages/stem/client/datatype.py                31551
-usr/lib/python3/dist-packages/stem/socket.py                         31550
-usr/lib/python3.9/__future__.py                                      31549
-usr/lib/python3/dist-packages/stem/response/__init__.py              31548
-usr/lib/python3/dist-packages/stem/descriptor/certificate.py         31547
-usr/lib/python3/dist-packages/stem/descriptor/server_descriptor.py   31546
-usr/lib/python3/dist-packages/stem/exit_policy.py                    31545
-usr/lib/python3/dist-packages/stem/util/tor_tools.py                 31544
-usr/lib/python3/dist-packages/stem/version.py                        31543
-usr/lib/python3/dist-packages/stem/descriptor/router_status_entry.py 31541
-usr/lib/python3/dist-packages/cryptography/__init__.py               31540
-usr/lib/python3/dist-packages/cryptography/__about__.py              31539
-usr/lib/python3/dist-packages/cryptography/utils.py                  31538
-usr/lib/python3/dist-packages/cryptography/hazmat/__init__.py        31537
-usr/lib/python3/dist-packages/cryptography/hazmat/backends/__init__.py 31536
-usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/__init__.py 31535
-usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/backend.py 31534
-usr/lib/python3/dist-packages/six.py                                 31533
-usr/lib/python3.9/importlib/util.py                                  31532
-usr/lib/python3.9/importlib/abc.py                                   31531
-usr/lib/python3.9/typing.py                                          31530
-usr/lib/python3/dist-packages/cryptography/x509/__init__.py          31529
-usr/lib/python3/dist-packages/cryptography/x509/certificate_transparency.py 31528
-usr/lib/python3/dist-packages/cryptography/x509/base.py              31527
-usr/lib/python3/dist-packages/cryptography/hazmat/primitives/__init__.py 31526
-usr/lib/python3/dist-packages/cryptography/hazmat/primitives/asymmetric/__init__.py 31525
-usr/lib/python3/dist-packages/cryptography/hazmat/primitives/asymmetric/dsa.py 31524
-usr/lib/python3/dist-packages/cryptography/hazmat/primitives/asymmetric/ec.py 31523
-usr/lib/python3/dist-packages/cryptography/hazmat/_oid.py            31522
-usr/lib/python3/dist-packages/cryptography/hazmat/primitives/asymmetric/ed25519.py 31521
-usr/lib/python3/dist-packages/cryptography/exceptions.py             31520
-usr/lib/python3/dist-packages/cryptography/hazmat/primitives/asymmetric/ed448.py 31519
-usr/lib/python3/dist-packages/cryptography/hazmat/primitives/asymmetric/rsa.py 31518
-usr/lib/python3/dist-packages/cryptography/hazmat/backends/interfaces.py 31517
-usr/lib/python3/dist-packages/cryptography/x509/extensions.py        31516
-usr/lib/python3.9/ipaddress.py                                       31515
-usr/lib/python3/dist-packages/cryptography/hazmat/_der.py            31514
-usr/lib/python3/dist-packages/cryptography/hazmat/primitives/constant_time.py 31513
-usr/lib/python3/dist-packages/cryptography/hazmat/primitives/serialization/__init__.py 31512
-usr/lib/python3/dist-packages/cryptography/hazmat/primitives/serialization/base.py 31511
-usr/lib/python3/dist-packages/cryptography/hazmat/primitives/serialization/ssh.py 31510
-usr/lib/python3/dist-packages/cryptography/hazmat/primitives/ciphers/__init__.py 31509
-usr/lib/python3/dist-packages/cryptography/hazmat/primitives/ciphers/base.py 31508
-usr/lib/python3/dist-packages/cryptography/hazmat/primitives/ciphers/modes.py 31507
-usr/lib/python3/dist-packages/cryptography/hazmat/primitives/ciphers/algorithms.py 31506
-usr/lib/python3/dist-packages/cryptography/x509/general_name.py      31505
-usr/lib/python3/dist-packages/cryptography/x509/name.py              31504
-usr/lib/python3/dist-packages/cryptography/x509/oid.py               31503
-usr/lib/python3/dist-packages/cryptography/hazmat/primitives/hashes.py 31502
-usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/aead.py 31501
-usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/ciphers.py 31500
-usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/cmac.py 31499
-usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/decode_asn1.py 31498
-usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/dh.py 31497
-usr/lib/python3/dist-packages/cryptography/hazmat/primitives/asymmetric/dh.py 31496
-usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/dsa.py 31495
-usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/utils.py 31494
-usr/lib/python3/dist-packages/cryptography/hazmat/primitives/asymmetric/utils.py 31493
-usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/ec.py 31492
-usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/ed25519.py 31491
-usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/ed448.py 31490
-usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/encode_asn1.py 31489
-usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/hashes.py 31488
-usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/hmac.py 31487
-usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/ocsp.py 31486
-usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/x509.py 31485
-usr/lib/python3/dist-packages/cryptography/x509/ocsp.py              31484
-usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/poly1305.py 31483
-usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/rsa.py 31482
-usr/local/sbin/tails-add-session-firewall-rule                       31481
-usr/lib/python3/dist-packages/cryptography/hazmat/primitives/asymmetric/padding.py 31480
-usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/x25519.py 31479
-usr/lib/python3/dist-packages/cryptography/hazmat/primitives/asymmetric/x25519.py 31478
-usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/x448.py 31477
-usr/lib/python3/dist-packages/cryptography/hazmat/primitives/asymmetric/x448.py 31476
-usr/lib/python3/dist-packages/cryptography/hazmat/bindings/__init__.py 31475
-usr/lib/python3/dist-packages/cryptography/hazmat/bindings/openssl/__init__.py 31474
-usr/lib/python3/dist-packages/cryptography/hazmat/bindings/openssl/binding.py 31473
-usr/lib/x86_64-linux-gnu/xtables/libxt_standard.so                   31472
-usr/lib/x86_64-linux-gnu/xtables/libxt_conntrack.so                  31471
-usr/lib/python3/dist-packages/cryptography/hazmat/bindings/_openssl.abi3.so 31470
-usr/sbin/cupsd                                                       31469
-usr/lib/x86_64-linux-gnu/libpaper.so.1.1.2                           31468
-usr/lib/x86_64-linux-gnu/libavahi-common.so.3.5.4                    31467
-usr/lib/x86_64-linux-gnu/libavahi-client.so.3.2.9                    31466
-usr/lib/x86_64-linux-gnu/libcups.so.2                                31463
-usr/lib/x86_64-linux-gnu/libgnutls.so.30.29.1                        31462
-usr/lib/python3/dist-packages/_cffi_backend.cpython-39-x86_64-linux-gnu.so 31460
-lib/systemd/systemd-user-sessions                                    31459
-usr/lib/python3/dist-packages/cryptography/hazmat/bindings/openssl/_conditional.py 31458
-usr/lib/python3/dist-packages/cryptography/hazmat/primitives/kdf/__init__.py 31457
-usr/lib/python3/dist-packages/cryptography/hazmat/primitives/kdf/scrypt.py 31456
-usr/lib/python3/dist-packages/cryptography/hazmat/primitives/serialization/pkcs7.py 31455
-usr/local/lib/onion-grater                                           31454
-usr/lib/python3/dist-packages/stem/descriptor/microdescriptor.py     31453
-usr/lib/python3/dist-packages/stem/descriptor/networkstatus.py       31452
-usr/lib/python3/dist-packages/stem/descriptor/tordnsel.py            31451
-usr/lib/python3/dist-packages/stem/descriptor/reader.py              31450
-usr/lib/python3/dist-packages/stem/response/events.py                31449
-usr/lib/x86_64-linux-gnu/libp11-kit.so.0.3.0                         31448
-usr/share/gdm/generate-config                                        31447
-usr/lib/python3/dist-packages/stem/response/add_onion.py             31444
-usr/lib/python3/dist-packages/stem/response/authchallenge.py         31443
-usr/lib/python3/dist-packages/stem/response/getinfo.py               31442
-usr/lib/python3/dist-packages/stem/response/getconf.py               31441
-usr/lib/python3/dist-packages/stem/response/mapaddress.py            31440
-usr/lib/x86_64-linux-gnu/libidn2.so.0.3.7                            31438
-usr/lib/x86_64-linux-gnu/libunistring.so.2.1.0                       31437
-usr/lib/python3/dist-packages/stem/response/protocolinfo.py          31436
-usr/lib/python3.9/socketserver.py                                    31435
-usr/bin/dconf                                                        31434
-usr/lib/python3.9/textwrap.py                                        31433
-usr/lib/x86_64-linux-gnu/libtasn1.so.6.6.0                           31432
-usr/lib/x86_64-linux-gnu/libnettle.so.8.4                            31431
-usr/lib/x86_64-linux-gnu/libhogweed.so.6.4                           31430
-usr/lib/x86_64-linux-gnu/libgmp.so.10.4.1                            31429
-usr/lib/x86_64-linux-gnu/libdconf.so.1.0.0                           31428
-etc/gdm3/greeter.dconf-defaults                                      31427
-usr/share/gdm/dconf/50-tails                                         31426
-usr/share/gdm/dconf/00-upstream-settings                             31425
-usr/share/gdm/dconf/locks/00-upstream-settings-locks                 31424
-etc/cups/cups-files.conf                                             31422
+usr/share/laptop-mode-tools/modules/exec-commands                    31850
+usr/lib/x86_64-linux-gnu/libjson-c.so.5.1.0                          31849
+usr/lib/x86_64-linux-gnu/libnssutil3.so                              31848
+usr/lib/x86_64-linux-gnu/libplc4.so                                  31847
+usr/lib/x86_64-linux-gnu/libplds4.so                                 31846
+usr/lib/x86_64-linux-gnu/libnspr4.so                                 31845
+usr/lib/x86_64-linux-gnu/libgpgme.so.11.23.0                         31844
+usr/bin/pgrep                                                        31843
+usr/lib/x86_64-linux-gnu/libpopt.so.0.0.1                            31842
+usr/lib/x86_64-linux-gnu/xtables/libipt_MASQUERADE.so                31841
+usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-fibocom.so        31840
+usr/local/sbin/udev-watchdog                                         31839
+usr/lib/x86_64-linux-gnu/libbd_part.so.2.0.0                         31838
+usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-ericsson-mbm.so   31837
+usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-dlink.so          31836
+usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-dell.so           31835
+usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-cinterion.so      31834
+usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-broadmobi.so      31833
+usr/share/laptop-mode-tools/modules/hal-polling                      31832
+usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-anydata.so        31831
+usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-altair-lte.so     31830
+usr/lib/x86_64-linux-gnu/libbd_part_err.so.2.0.0                     31829
+lib/x86_64-linux-gnu/libparted.so.2.0.3                              31828
+usr/sbin/dmidecode                                                   31827
+usr/lib/x86_64-linux-gnu/libbd_fs.so.2.0.0                           31755
+lib/x86_64-linux-gnu/libparted-fs-resize.so.0.0.3                    31754
+etc/udisks2/udisks2.conf                                             31753
+usr/share/laptop-mode-tools/modules/hdparm                           31724
+usr/share/laptop-mode-tools/modules/intel-hda-powersave              31722
+usr/share/laptop-mode-tools/modules/intel-sata-powermgmt             31717
+usr/share/tor/geoip6                                                 31716
+usr/share/laptop-mode-tools/modules/intel_pstate                     31713
+usr/share/laptop-mode-tools/modules/kbd-backlight                    31712
+usr/share/laptop-mode-tools/modules/laptop-mode                      31711
+sbin/blockdev                                                        31710
+usr/share/laptop-mode-tools/modules/lcd-brightness                   31709
+usr/share/laptop-mode-tools/modules/nmi-watchdog                     31708
+usr/share/laptop-mode-tools/modules/nouveau                          31707
+bin/cpio                                                             31706
+usr/share/laptop-mode-tools/modules/pcie-aspm                        31705
+usr/share/laptop-mode-tools/modules/radeon-dpm                       31704
+etc/logrotate.conf                                                   31699
+usr/share/laptop-mode-tools/modules/runtime-pm                       31698
+usr/share/laptop-mode-tools/modules/sched-mc-power-savings           31697
+usr/share/laptop-mode-tools/modules/sched-smt-power-savings          31694
+usr/share/laptop-mode-tools/modules/start-stop-programs              31693
+etc/logrotate.d/alternatives                                         31691
+usr/share/laptop-mode-tools/modules/syslog-conf                      31690
+usr/share/laptop-mode-tools/modules/terminal-blanking                31689
+usr/share/laptop-mode-tools/modules/vgaswitcheroo                    31688
+etc/logrotate.d/apt                                                  31684
+etc/logrotate.d/bootlog                                              31683
+etc/logrotate.d/btmp                                                 31682
+etc/logrotate.d/cups-daemon                                          31681
+etc/logrotate.d/dpkg                                                 31680
+etc/logrotate.d/macchanger                                           31679
+etc/logrotate.d/ppp                                                  31678
+etc/logrotate.d/sane-utils                                           31677
+etc/logrotate.d/speech-dispatcher                                    31676
+etc/logrotate.d/tor                                                  31675
+etc/logrotate.d/wtmp                                                 31672
+usr/local/lib/tor_wait_until_bootstrapped                            31671
+usr/share/laptop-mode-tools/modules/video-out                        31668
+usr/lib/python3.9/argparse.py                                        31667
+usr/share/laptop-mode-tools/modules/wireless-ipw-power               31665
+usr/lib/python3.9/gettext.py                                         31650
+usr/share/laptop-mode-tools/modules/wireless-iwl-power               31649
+usr/lib/python3/dist-packages/stem/__init__.py                       31648
+usr/lib/python3/dist-packages/stem/util/__init__.py                  31643
+usr/lib/python3/dist-packages/stem/prereq.py                         31641
+usr/lib/python3.9/hashlib.py                                         31640
+usr/lib/python3.9/lib-dynload/_hashlib.cpython-39-x86_64-linux-gnu.so 31639
+usr/lib/python3.9/inspect.py                                         31638
+usr/share/laptop-mode-tools/modules/wireless-power                   31637
+sbin/iw                                                              31636
+usr/lib/python3.9/ast.py                                             31635
+usr/lib/python3.9/dis.py                                             31633
+usr/lib/python3.9/opcode.py                                          31632
+usr/lib/python3.9/lib-dynload/_opcode.cpython-39-x86_64-linux-gnu.so 31631
+usr/lib/python3.9/importlib/__init__.py                              31629
+usr/lib/python3.9/importlib/machinery.py                             31627
+usr/lib/python3.9/platform.py                                        31626
+usr/lib/python3/dist-packages/stem/util/enum.py                      31616
+usr/lib/python3/dist-packages/stem/util/str_tools.py                 31615
+usr/lib/python3.9/base64.py                                          31614
+usr/lib/python3/dist-packages/stem/util/connection.py                31612
+usr/lib/python3/dist-packages/stem/util/proc.py                      31608
+usr/lib/python3/dist-packages/stem/util/log.py                       31607
+usr/lib/python3/dist-packages/stem/util/system.py                    31603
+usr/lib/python3.9/lib-dynload/_ctypes.cpython-39-x86_64-linux-gnu.so 31601
+usr/lib/python3.9/lib-dynload/_bz2.cpython-39-x86_64-linux-gnu.so    31594
+usr/lib/python3.9/lib-dynload/_lzma.cpython-39-x86_64-linux-gnu.so   31592
+usr/lib/python3.9/mimetypes.py                                       31588
+usr/lib/python3.9/urllib/__init__.py                                 31587
+usr/lib/python3.9/urllib/parse.py                                    31586
+usr/lib/python3.9/multiprocessing/__init__.py                        31585
+usr/lib/python3.9/multiprocessing/context.py                         31584
+usr/lib/python3.9/multiprocessing/process.py                         31583
+usr/lib/python3.9/multiprocessing/reduction.py                       31582
+usr/lib/python3.9/pickle.py                                          31581
+usr/lib/python3.9/_compat_pickle.py                                  31580
+usr/lib/python3.9/tarfile.py                                         31579
+etc/iproute2/group                                                   31578
+usr/lib/python3.9/copy.py                                            31577
+usr/lib/python3/dist-packages/stem/util/conf.py                      31576
+usr/lib/python3.9/urllib/request.py                                  31575
+usr/lib/python3.9/email/__init__.py                                  31574
+usr/lib/python3.9/http/__init__.py                                   31573
+usr/lib/python3.9/http/client.py                                     31572
+usr/lib/python3.9/email/parser.py                                    31571
+usr/lib/python3.9/email/feedparser.py                                31570
+usr/lib/python3.9/email/errors.py                                    31569
+usr/lib/python3.9/email/_policybase.py                               31568
+usr/lib/python3.9/email/header.py                                    31567
+usr/lib/python3.9/email/quoprimime.py                                31566
+usr/lib/python3.9/email/base64mime.py                                31565
+usr/lib/python3.9/email/charset.py                                   31564
+usr/lib/python3.9/email/encoders.py                                  31563
+usr/lib/python3.9/quopri.py                                          31562
+usr/lib/python3.9/email/utils.py                                     31561
+usr/lib/python3.9/email/_parseaddr.py                                31560
+usr/lib/python3.9/calendar.py                                        31559
+usr/lib/python3.9/email/message.py                                   31557
+usr/lib/python3.9/uu.py                                              31556
+etc/protocols                                                        31555
+usr/lib/x86_64-linux-gnu/xtables/libxt_tcp.so                        31554
+usr/lib/python3.9/email/_encoded_words.py                            31553
+usr/lib/x86_64-linux-gnu/xtables/libipt_DNAT.so                      31552
+usr/lib/python3.9/email/iterators.py                                 31551
+usr/lib/python3.9/ssl.py                                             31550
+usr/lib/python3.9/lib-dynload/_ssl.cpython-39-x86_64-linux-gnu.so    31549
+usr/lib/python3.9/urllib/error.py                                    31548
+usr/lib/python3.9/urllib/response.py                                 31547
+usr/lib/python3/dist-packages/stem/connection.py                     31546
+usr/lib/python3.9/getpass.py                                         31545
+usr/lib/python3.9/lib-dynload/termios.cpython-39-x86_64-linux-gnu.so 31544
+usr/lib/python3.9/hmac.py                                            31543
+usr/lib/python3/dist-packages/stem/control.py                        31542
+usr/lib/python3.9/queue.py                                           31541
+usr/lib/python3.9/lib-dynload/_queue.cpython-39-x86_64-linux-gnu.so  31540
+usr/lib/python3/dist-packages/stem/descriptor/__init__.py            31539
+usr/lib/python3/dist-packages/stem/descriptor/bandwidth_file.py      31538
+usr/lib/python3/dist-packages/stem/descriptor/extrainfo_descriptor.py 31536
+usr/lib/python3/dist-packages/stem/descriptor/hidden_service.py      31535
+usr/lib/python3/dist-packages/stem/client/__init__.py                31534
+usr/lib/python3/dist-packages/stem/client/cell.py                    31533
+usr/lib/python3/dist-packages/stem/client/datatype.py                31532
+usr/lib/python3/dist-packages/stem/socket.py                         31531
+usr/lib/python3.9/__future__.py                                      31530
+usr/lib/python3/dist-packages/stem/response/__init__.py              31529
+usr/lib/python3/dist-packages/stem/descriptor/certificate.py         31528
+usr/lib/python3/dist-packages/stem/descriptor/server_descriptor.py   31527
+usr/lib/python3/dist-packages/stem/exit_policy.py                    31526
+usr/lib/python3/dist-packages/stem/util/tor_tools.py                 31525
+usr/lib/python3/dist-packages/stem/version.py                        31524
+usr/lib/python3/dist-packages/stem/descriptor/router_status_entry.py 31523
+usr/lib/python3/dist-packages/cryptography/__init__.py               31522
+usr/lib/python3/dist-packages/cryptography/__about__.py              31521
+usr/lib/python3/dist-packages/cryptography/utils.py                  31520
+usr/lib/python3/dist-packages/cryptography/hazmat/__init__.py        31519
+usr/lib/python3/dist-packages/cryptography/hazmat/backends/__init__.py 31518
+usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/__init__.py 31517
+usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/backend.py 31516
+usr/lib/python3/dist-packages/six.py                                 31515
+usr/lib/python3.9/importlib/util.py                                  31514
+usr/lib/python3.9/importlib/abc.py                                   31513
+usr/lib/python3.9/typing.py                                          31512
+usr/lib/python3/dist-packages/cryptography/x509/__init__.py          31511
+usr/lib/python3/dist-packages/cryptography/x509/certificate_transparency.py 31510
+usr/lib/python3/dist-packages/cryptography/x509/base.py              31509
+usr/lib/python3/dist-packages/cryptography/hazmat/primitives/__init__.py 31508
+usr/lib/python3/dist-packages/cryptography/hazmat/primitives/asymmetric/__init__.py 31507
+usr/lib/python3/dist-packages/cryptography/hazmat/primitives/asymmetric/dsa.py 31506
+usr/lib/python3/dist-packages/cryptography/hazmat/primitives/asymmetric/ec.py 31505
+usr/lib/python3/dist-packages/cryptography/hazmat/_oid.py            31504
+usr/lib/python3/dist-packages/cryptography/hazmat/primitives/asymmetric/ed25519.py 31503
+usr/lib/python3/dist-packages/cryptography/exceptions.py             31502
+usr/lib/python3/dist-packages/cryptography/hazmat/primitives/asymmetric/ed448.py 31501
+usr/lib/python3/dist-packages/cryptography/hazmat/primitives/asymmetric/rsa.py 31500
+usr/lib/python3/dist-packages/cryptography/hazmat/backends/interfaces.py 31499
+usr/lib/python3/dist-packages/cryptography/x509/extensions.py        31498
+usr/local/sbin/tails-add-session-firewall-rule                       31497
+usr/lib/x86_64-linux-gnu/xtables/libxt_standard.so                   31496
+usr/lib/python3.9/ipaddress.py                                       31495
+usr/lib/python3/dist-packages/cryptography/hazmat/_der.py            31494
+usr/lib/x86_64-linux-gnu/xtables/libxt_conntrack.so                  31493
+usr/lib/python3/dist-packages/cryptography/hazmat/primitives/constant_time.py 31492
+usr/lib/python3/dist-packages/cryptography/hazmat/primitives/serialization/__init__.py 31491
+usr/lib/python3/dist-packages/cryptography/hazmat/primitives/serialization/base.py 31490
+usr/lib/python3/dist-packages/cryptography/hazmat/primitives/serialization/ssh.py 31489
+usr/lib/python3/dist-packages/cryptography/hazmat/primitives/ciphers/__init__.py 31488
+usr/lib/python3/dist-packages/cryptography/hazmat/primitives/ciphers/base.py 31487
+usr/lib/python3/dist-packages/cryptography/hazmat/primitives/ciphers/modes.py 31486
+usr/lib/python3/dist-packages/cryptography/hazmat/primitives/ciphers/algorithms.py 31485
+usr/sbin/cupsd                                                       31482
+usr/lib/python3/dist-packages/cryptography/x509/general_name.py      31480
+usr/lib/python3/dist-packages/cryptography/x509/name.py              31479
+lib/systemd/systemd-user-sessions                                    31478
+usr/lib/python3/dist-packages/cryptography/x509/oid.py               31477
+usr/lib/python3/dist-packages/cryptography/hazmat/primitives/hashes.py 31476
+usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/aead.py 31475
+usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/ciphers.py 31474
+usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/cmac.py 31473
+usr/local/lib/onion-grater                                           31472
+usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/decode_asn1.py 31471
+usr/lib/x86_64-linux-gnu/libpaper.so.1.1.2                           31470
+usr/lib/x86_64-linux-gnu/libavahi-common.so.3.5.4                    31469
+usr/lib/x86_64-linux-gnu/libavahi-client.so.3.2.9                    31468
+usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/dh.py 31467
+usr/lib/python3/dist-packages/cryptography/hazmat/primitives/asymmetric/dh.py 31466
+usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/dsa.py 31465
+usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/utils.py 31464
+usr/lib/python3/dist-packages/cryptography/hazmat/primitives/asymmetric/utils.py 31463
+usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/ec.py 31462
+usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/ed25519.py 31461
+usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/ed448.py 31460
+usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/encode_asn1.py 31459
+usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/hashes.py 31458
+usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/hmac.py 31457
+usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/ocsp.py 31456
+usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/x509.py 31455
+usr/lib/python3/dist-packages/cryptography/x509/ocsp.py              31454
+usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/poly1305.py 31453
+usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/rsa.py 31452
+usr/lib/python3/dist-packages/cryptography/hazmat/primitives/asymmetric/padding.py 31451
+usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/x25519.py 31450
+usr/lib/python3/dist-packages/cryptography/hazmat/primitives/asymmetric/x25519.py 31449
+usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/x448.py 31448
+usr/lib/python3/dist-packages/cryptography/hazmat/primitives/asymmetric/x448.py 31447
+usr/lib/python3/dist-packages/cryptography/hazmat/bindings/__init__.py 31446
+usr/lib/x86_64-linux-gnu/libcups.so.2                                31445
+usr/lib/x86_64-linux-gnu/libgnutls.so.30.29.1                        31444
+usr/lib/python3/dist-packages/cryptography/hazmat/bindings/openssl/__init__.py 31443
+usr/lib/python3/dist-packages/cryptography/hazmat/bindings/openssl/binding.py 31442
+usr/lib/python3/dist-packages/cryptography/hazmat/bindings/_openssl.abi3.so 31441
+usr/lib/python3/dist-packages/_cffi_backend.cpython-39-x86_64-linux-gnu.so 31440
+usr/lib/python3/dist-packages/cryptography/hazmat/bindings/openssl/_conditional.py 31439
+usr/lib/python3/dist-packages/cryptography/hazmat/primitives/kdf/__init__.py 31438
+usr/lib/python3/dist-packages/cryptography/hazmat/primitives/kdf/scrypt.py 31437
+usr/lib/python3/dist-packages/cryptography/hazmat/primitives/serialization/pkcs7.py 31436
+usr/lib/x86_64-linux-gnu/libp11-kit.so.0.3.0                         31435
+usr/lib/python3/dist-packages/stem/descriptor/microdescriptor.py     31431
+usr/lib/python3/dist-packages/stem/descriptor/networkstatus.py       31430
+usr/share/gdm/generate-config                                        31429
+usr/lib/python3/dist-packages/stem/descriptor/tordnsel.py            31428
+usr/lib/python3/dist-packages/stem/descriptor/reader.py              31427
+usr/lib/python3/dist-packages/stem/response/events.py                31426
+usr/lib/x86_64-linux-gnu/libidn2.so.0.3.7                            31425
+usr/lib/python3.9/socketserver.py                                    31424
+usr/lib/x86_64-linux-gnu/libunistring.so.2.1.0                       31423
+usr/lib/python3.9/textwrap.py                                        31422
 usr/lib/python3/dist-packages/psutil/__init__.py                     31421
-etc/cups/cupsd.conf                                                  31420
-etc/papersize                                                        31419
-usr/share/cups/mime/braille.types                                    31418
-usr/share/cups/mime/command.types                                    31417
-usr/share/cups/mime/cupsfilters.types                                31416
-usr/share/cups/mime/mime.types                                       31415
-usr/share/cups/mime/pstotiff.types                                   31414
-etc/cups/raw.types                                                   31413
-usr/sbin/gdm3                                                        31411
-usr/share/cups/mime/braille.convs                                    31410
-usr/lib/python3/dist-packages/psutil/_common.py                      31409
-usr/lib/x86_64-linux-gnu/libaccountsservice.so.0.0.0                 31408
-usr/share/cups/mime/cupsfilters-ghostscript.convs                    31407
-usr/share/cups/mime/cupsfilters-mupdf.convs                          31406
-usr/share/cups/mime/cupsfilters-poppler.convs                        31405
-usr/share/cups/mime/cupsfilters.convs                                31404
-usr/share/cups/mime/mime.convs                                       31403
-usr/share/cups/mime/pstotiff.convs                                   31402
-etc/cups/raw.convs                                                   31401
-usr/share/cups/banners/classified                                    31400
-usr/share/cups/banners/confidential                                  31399
-usr/share/cups/banners/form                                          31398
-usr/share/cups/banners/secret                                        31397
-usr/share/cups/banners/standard                                      31396
-usr/share/cups/banners/topsecret                                     31395
-usr/share/cups/banners/unclassified                                  31394
-usr/share/gdm/gdm.schemas                                            31391
-usr/lib/python3/dist-packages/psutil/_compat.py                      31389
-usr/lib/python3/dist-packages/psutil/_pslinux.py                     31388
-usr/sbin/cups-browsed                                                31386
-usr/lib/x86_64-linux-gnu/libavahi-glib.so.1.0.2                      31384
-usr/lib/x86_64-linux-gnu/libcupsfilters.so.1.0.0                     31383
-usr/lib/x86_64-linux-gnu/libldap_r-2.4.so.2.11.5                     31382
-usr/lib/x86_64-linux-gnu/libpng16.so.16.37.0                         31381
-usr/libexec/gdm-session-worker                                       31378
-usr/lib/python3/dist-packages/psutil/_psposix.py                     31377
-usr/lib/x86_64-linux-gnu/libtiff.so.5.6.0                            31376
-usr/lib/x86_64-linux-gnu/libjpeg.so.62.3.0                           31375
-usr/lib/x86_64-linux-gnu/liblber-2.4.so.2.11.5                       31374
-usr/lib/x86_64-linux-gnu/libsasl2.so.2.0.25                          31373
-etc/pam.d/gdm-launch-environment                                     31372
-lib/x86_64-linux-gnu/security/pam_nologin.so                         31371
-lib/x86_64-linux-gnu/security/pam_keyinit.so                         31370
-lib/x86_64-linux-gnu/security/pam_limits.so                          31369
-lib/x86_64-linux-gnu/security/pam_env.so                             31368
-usr/lib/x86_64-linux-gnu/libwebp.so.6.0.2                            31367
-usr/lib/x86_64-linux-gnu/libjbig.so.0                                31366
-usr/lib/x86_64-linux-gnu/libdeflate.so.0                             31365
-etc/cups/cups-browsed.conf                                           31364
-usr/lib/python3/dist-packages/psutil/_psutil_linux.cpython-39-x86_64-linux-gnu.so 31363
-lib/x86_64-linux-gnu/libnss_dns-2.31.so                              31362
-usr/share/cups/locale/en/cups_en.po                                  31361
-usr/lib/python3/dist-packages/psutil/_psutil_posix.cpython-39-x86_64-linux-gnu.so 31358
-usr/share/polkit-1/actions/com.hp.hplip.policy                       31357
-usr/share/polkit-1/actions/com.ubuntu.pkexec.synaptic.policy         31356
-usr/share/polkit-1/actions/org.boum.tails.additional-software.policy 31355
-usr/share/polkit-1/actions/org.boum.tails.root-terminal.policy       31354
-usr/share/polkit-1/actions/org.dpkg.pkexec.update-alternatives.policy 31353
-usr/share/polkit-1/actions/org.freedesktop.ModemManager1.policy      31352
-usr/share/polkit-1/actions/org.freedesktop.NetworkManager.policy     31351
-usr/lib/python3.9/lib-dynload/resource.cpython-39-x86_64-linux-gnu.so 31350
-usr/share/polkit-1/actions/org.freedesktop.UDisks2.policy            31349
-usr/share/polkit-1/actions/org.freedesktop.accounts.policy           31348
-usr/share/polkit-1/actions/org.freedesktop.bolt.policy               31347
-usr/share/polkit-1/actions/org.freedesktop.color.policy              31346
-usr/share/polkit-1/actions/org.freedesktop.hostname1.policy          31345
-usr/share/polkit-1/actions/org.freedesktop.locale1.policy            31344
-usr/share/polkit-1/actions/org.freedesktop.login1.policy             31343
-usr/share/polkit-1/actions/org.freedesktop.network1.policy           31342
-usr/share/polkit-1/actions/org.freedesktop.policykit.policy          31341
-usr/share/polkit-1/actions/org.freedesktop.resolve1.policy           31340
-usr/share/polkit-1/actions/org.freedesktop.systemd1.policy           31339
-usr/share/polkit-1/actions/org.freedesktop.timedate1.policy          31338
-usr/share/polkit-1/actions/org.gnome.controlcenter.datetime.policy   31337
-usr/share/polkit-1/actions/org.gnome.controlcenter.remote-login-helper.policy 31336
-usr/share/polkit-1/actions/org.gnome.controlcenter.user-accounts.policy 31335
-usr/share/polkit-1/actions/org.gnome.gnome-system-monitor.policy     31334
-usr/share/polkit-1/actions/org.gnome.settings-daemon.plugins.power.policy 31333
-usr/share/polkit-1/actions/org.gnome.settings-daemon.plugins.wacom.policy 31332
-usr/share/polkit-1/actions/org.gtk.vfs.file-operations.policy        31331
-usr/share/polkit-1/actions/org.linux.lmt.gui.policy                  31330
-usr/share/polkit-1/actions/org.opensuse.cupspkhelper.mechanism.policy 31329
-etc/security/limits.conf                                             31326
-etc/security/pam_env.conf                                            31325
-etc/environment                                                      31324
-lib/systemd/system/user@.service                                     31322
-lib/systemd/system/user-.slice.d/10-defaults.conf                    31321
-lib/systemd/system/user-runtime-dir@.service                         31320
-lib/systemd/systemd-user-runtime-dir                                 31318
-usr/lib/pam.d/systemd-user                                           31295
-lib/x86_64-linux-gnu/security/pam_selinux.so                         31294
-lib/x86_64-linux-gnu/security/pam_loginuid.so                        31293
-lib/systemd/systemd                                                  31292
-etc/systemd/user.conf                                                31291
-usr/lib/systemd/user-environment-generators/30-systemd-environment-d-generator 31290
-etc/environment.d/90atk-adaptor.conf                                 31289
-etc/environment.d/90qt-a11y.conf                                     31288
-usr/lib/systemd/user-environment-generators/90gpg-agent              31287
-usr/bin/gpgconf                                                      31286
-usr/lib/systemd/user-generators/systemd-xdg-autostart-generator      31285
-etc/xdg/autostart/at-spi-dbus-bus.desktop                            31284
-etc/xdg/autostart/gnome-keyring-pkcs11.desktop                       31283
-etc/xdg/autostart/gnome-keyring-secrets.desktop                      31282
-etc/xdg/autostart/gnome-keyring-ssh.desktop                          31281
-etc/xdg/autostart/gnome-shell-overrides-migration.desktop            31280
-etc/xdg/autostart/ibus-mozc-gnome-initial-setup.desktop              31279
-etc/xdg/autostart/nm-applet.desktop                                  31278
-etc/xdg/autostart/orca-autostart.desktop                             31277
-etc/xdg/autostart/org.gnome.Evolution-alarm-notify.desktop           31276
-etc/xdg/autostart/org.gnome.SettingsDaemon.A11ySettings.desktop      31275
-etc/xdg/autostart/org.gnome.SettingsDaemon.Color.desktop             31274
-etc/xdg/autostart/org.gnome.SettingsDaemon.Datetime.desktop          31273
-etc/xdg/autostart/org.gnome.SettingsDaemon.DiskUtilityNotify.desktop 31272
-etc/xdg/autostart/org.gnome.SettingsDaemon.Housekeeping.desktop      31271
-etc/xdg/autostart/org.gnome.SettingsDaemon.Keyboard.desktop          31270
-etc/xdg/autostart/org.gnome.SettingsDaemon.MediaKeys.desktop         31269
-etc/xdg/autostart/org.gnome.SettingsDaemon.Power.desktop             31268
-etc/xdg/autostart/org.gnome.SettingsDaemon.PrintNotifications.desktop 31267
-etc/xdg/autostart/org.gnome.SettingsDaemon.Rfkill.desktop            31266
-etc/xdg/autostart/org.gnome.SettingsDaemon.ScreensaverProxy.desktop  31265
-etc/xdg/autostart/org.gnome.SettingsDaemon.Sharing.desktop           31264
-etc/xdg/autostart/org.gnome.SettingsDaemon.Smartcard.desktop         31263
-etc/xdg/autostart/org.gnome.SettingsDaemon.Sound.desktop             31262
-etc/xdg/autostart/org.gnome.SettingsDaemon.UsbProtection.desktop     31261
-etc/xdg/autostart/org.gnome.SettingsDaemon.Wacom.desktop             31260
-etc/xdg/autostart/org.gnome.SettingsDaemon.Wwan.desktop              31259
-etc/xdg/autostart/org.gnome.SettingsDaemon.XSettings.desktop         31258
-etc/xdg/autostart/pulseaudio.desktop                                 31257
-etc/xdg/autostart/spice-vdagent.desktop                              31256
-etc/xdg/autostart/systemd-desktop-target.desktop                     31255
-etc/xdg/autostart/systemd-gnome-early-initialization-target.desktop  31254
-etc/xdg/autostart/tracker-extract.desktop                            31253
-etc/xdg/autostart/tracker-miner-fs.desktop                           31252
-etc/xdg/autostart/user-dirs-update-gtk.desktop                       31251
-etc/xdg/autostart/xdg-user-dirs.desktop                              31250
-bin/gzip                                                             31248
-usr/bin/xz                                                           31247
-usr/lib/systemd/user/sound.target                                    31246
-usr/lib/systemd/user/shutdown.target                                 31245
-usr/lib/systemd/user/smartcard.target                                31244
-usr/lib/systemd/user/default.target                                  31241
-etc/xdg/systemd/user                                                 31240
-usr/lib/systemd/user/tracker-miner-fs.service                        31239
-usr/lib/systemd/user/dbus.socket                                     31238
-usr/lib/systemd/user/sockets.target                                  31237
-usr/lib/systemd/user/pulseaudio.socket                               31236
-usr/lib/systemd/user/pipewire.socket                                 31235
-usr/lib/systemd/user/gpg-agent.socket                                31234
-usr/lib/systemd/user/gpg-agent.service                               31233
-usr/lib/systemd/user/gpg-agent-ssh.socket                            31232
-usr/lib/systemd/user/gpg-agent-extra.socket                          31231
-usr/lib/systemd/user/gpg-agent-browser.socket                        31230
-usr/lib/systemd/user/dirmngr.socket                                  31229
-usr/lib/systemd/user/dirmngr.service                                 31228
-usr/lib/systemd/user/dbus.service                                    31227
-usr/lib/systemd/user/app.slice                                       31226
-usr/lib/systemd/user/tracker-extract.service                         31225
-usr/lib/systemd/user/pulseaudio.service                              31224
-usr/lib/systemd/user/pipewire.service                                31223
-usr/lib/systemd/user/basic.target                                    31222
-usr/lib/systemd/user/paths.target                                    31221
-usr/lib/systemd/user/timers.target                                   31220
-usr/bin/dirmngr                                                      31218
-usr/bin/pipewire                                                     31217
-usr/bin/pulseaudio                                                   31216
-usr/share/wayland-sessions/gnome.desktop                             31209
-usr/libexec/tracker-extract                                          31207
-usr/libexec/tracker-miner-fs                                         31204
-usr/lib/x86_64-linux-gnu/libpipewire-0.3.so.0.319.0                  31203
-usr/lib/x86_64-linux-gnu/tracker-miners-2.0/libtracker-extract.so    31201
-usr/lib/x86_64-linux-gnu/spa-0.2/support/libspa-support.so           31200
-usr/lib/x86_64-linux-gnu/pulseaudio/libpulsecore-14.2.so             31199
-usr/libexec/gdm-wayland-session.tails                                31198
-usr/lib/python3/dist-packages/yaml/__init__.py                       31195
-usr/lib/x86_64-linux-gnu/libltdl.so.7.3.1                            31194
-usr/lib/x86_64-linux-gnu/spa-0.2/support/libspa-journal.so           31193
-usr/lib/x86_64-linux-gnu/libtracker-miner-2.0.so.0.306.0             31192
-usr/lib/python3/dist-packages/yaml/error.py                          31191
-usr/lib/python3/dist-packages/yaml/tokens.py                         31190
-usr/lib/python3/dist-packages/yaml/events.py                         31189
-usr/libexec/gdm-wayland-session.real                                 31188
-usr/lib/x86_64-linux-gnu/libtracker-sparql-2.0.so.0.306.0            31187
-usr/lib/x86_64-linux-gnu/libgsf-1.so.114.0.47                        31186
-usr/lib/x86_64-linux-gnu/libicui18n.so.67.1                          31185
-usr/lib/x86_64-linux-gnu/libupower-glib.so.3.0.1                     31184
-usr/lib/python3/dist-packages/yaml/nodes.py                          31183
-etc/pipewire/pipewire.conf                                           31182
-usr/lib/python3/dist-packages/yaml/loader.py                         31181
-usr/lib/x86_64-linux-gnu/spa-0.2/support/libspa-dbus.so              31180
-usr/lib/x86_64-linux-gnu/pipewire-0.3/libpipewire-module-rtkit.so    31179
-usr/lib/x86_64-linux-gnu/pipewire-0.3/libpipewire-module-protocol-native.so 31178
-usr/lib/x86_64-linux-gnu/pipewire-0.3/libpipewire-module-profiler.so 31177
-usr/lib/x86_64-linux-gnu/pipewire-0.3/libpipewire-module-metadata.so 31176
-usr/lib/x86_64-linux-gnu/pipewire-0.3/libpipewire-module-spa-device-factory.so 31175
-usr/lib/x86_64-linux-gnu/pipewire-0.3/libpipewire-module-spa-node-factory.so 31174
-usr/lib/x86_64-linux-gnu/pipewire-0.3/libpipewire-module-client-node.so 31173
-usr/lib/x86_64-linux-gnu/pipewire-0.3/libpipewire-module-client-device.so 31172
-usr/lib/x86_64-linux-gnu/pipewire-0.3/libpipewire-module-portal.so   31171
-usr/lib/python3/dist-packages/yaml/reader.py                         31170
-usr/lib/python3/dist-packages/yaml/scanner.py                        31169
-usr/lib/x86_64-linux-gnu/libX11-xcb.so.1.0.0                         31168
-usr/lib/python3/dist-packages/yaml/parser.py                         31167
-usr/share/dbus-1/session.conf                                        31166
-usr/lib/x86_64-linux-gnu/libX11.so.6.4.0                             31164
-usr/lib/python3/dist-packages/yaml/composer.py                       31163
-usr/lib/x86_64-linux-gnu/libexempi.so.8.0.2                          31162
-etc/dbus-1/session.d/im.pidgin.purple.PurpleService.conf             31161
-usr/lib/python3/dist-packages/yaml/constructor.py                    31160
-usr/lib/python3/dist-packages/yaml/resolver.py                       31159
-usr/share/dbus-1/services/ca.desrt.dconf.service                     31158
-usr/share/dbus-1/services/org.a11y.Bus.service                       31157
-usr/share/dbus-1/services/org.fedoraproject.Config.Printing.service  31156
-usr/share/dbus-1/services/org.freedesktop.ColorHelper.service        31155
-usr/share/dbus-1/services/org.freedesktop.FileManager1.service       31154
-usr/share/dbus-1/services/org.freedesktop.IBus.service               31153
-usr/share/dbus-1/services/org.freedesktop.Tracker1.Miner.Extract.service 31152
-usr/share/dbus-1/services/org.freedesktop.Tracker1.Miner.Files.service 31151
-usr/share/dbus-1/services/org.freedesktop.Tracker1.Writeback.service 31150
-usr/share/dbus-1/services/org.freedesktop.Tracker1.service           31149
-usr/share/dbus-1/services/org.freedesktop.impl.portal.PermissionStore.service 31148
-usr/share/dbus-1/services/org.freedesktop.impl.portal.Secret.service 31147
-usr/share/dbus-1/services/org.freedesktop.portal.Desktop.service     31146
-usr/share/dbus-1/services/org.freedesktop.portal.Documents.service   31145
-usr/share/dbus-1/services/org.freedesktop.portal.IBus.service        31144
-usr/share/dbus-1/services/org.freedesktop.secrets.service            31143
-usr/share/dbus-1/services/org.gnome.Calculator.SearchProvider.service 31142
-usr/share/dbus-1/services/org.gnome.ControlCenter.SearchProvider.service 31141
-usr/share/dbus-1/services/org.gnome.ControlCenter.service            31140
-usr/share/dbus-1/services/org.gnome.DiskUtility.service              31139
-usr/share/dbus-1/services/org.gnome.Extensions.service               31138
-usr/share/dbus-1/services/org.gnome.FileRoller.ArchiveManager1.service 31137
-usr/share/dbus-1/services/org.gnome.FileRoller.service               31136
-usr/share/dbus-1/services/org.gnome.Nautilus.service                 31135
-usr/lib/python3/dist-packages/yaml/dumper.py                         31134
-usr/lib/python3/dist-packages/yaml/emitter.py                        31133
-usr/lib/x86_64-linux-gnu/liborc-0.4.so.0.32.0                        31132
-usr/lib/x86_64-linux-gnu/libtdb.so.1.4.3                             31131
-usr/lib/x86_64-linux-gnu/libexif.so.12.3.4                           31130
-usr/share/dbus-1/services/org.gnome.Screenshot.service               31129
-usr/lib/x86_64-linux-gnu/libiptcdata.so.0.3.3                        31128
-usr/lib/x86_64-linux-gnu/tracker-2.0/libtracker-data.so              31127
-usr/share/dbus-1/services/org.gnome.Shell.CalendarServer.service     31126
-usr/share/dbus-1/services/org.gnome.Shell.Extensions.service         31125
-usr/share/dbus-1/services/org.gnome.Shell.HotplugSniffer.service     31124
-usr/share/dbus-1/services/org.gnome.Shell.Notifications.service      31123
-usr/share/dbus-1/services/org.gnome.Shell.PortalHelper.service       31122
-usr/share/dbus-1/services/org.gnome.Shell.Screencast.service         31121
-usr/share/dbus-1/services/org.gnome.SoundJuicer.service              31120
-usr/share/dbus-1/services/org.gnome.Terminal.service                 31119
-usr/share/dbus-1/services/org.gnome.Totem.service                    31118
-usr/share/dbus-1/services/org.gnome.evince.Daemon.service            31117
-usr/lib/x86_64-linux-gnu/libjson-glib-1.0.so.0.600.2                 31116
-usr/lib/python3/dist-packages/yaml/serializer.py                     31115
-usr/lib/x86_64-linux-gnu/libsoup-2.4.so.1.11.0                       31114
-usr/share/dbus-1/services/org.gnome.evolution.dataserver.AddressBook10.service 31113
-usr/share/dbus-1/services/org.gnome.evolution.dataserver.Calendar8.service 31112
-usr/share/dbus-1/services/org.gnome.evolution.dataserver.Sources5.service 31111
-usr/share/dbus-1/services/org.gnome.evolution.dataserver.UserPrompter0.service 31110
-usr/share/dbus-1/services/org.gnome.gedit.service                    31109
-usr/share/dbus-1/services/org.gnome.keyring.PrivatePrompter.service  31108
-usr/share/dbus-1/services/org.gnome.keyring.SystemPrompter.service   31107
-usr/share/dbus-1/services/org.gnome.keyring.service                  31106
-usr/share/dbus-1/services/org.gtk.GLib.PACRunner.service             31105
-usr/share/dbus-1/services/org.gtk.vfs.AfcVolumeMonitor.service       31104
-usr/share/dbus-1/services/org.gtk.vfs.Daemon.service                 31103
-usr/lib/x86_64-linux-gnu/libxml2.so.2.9.10                           31102
-usr/share/dbus-1/services/org.gtk.vfs.GPhoto2VolumeMonitor.service   31101
-usr/share/dbus-1/services/org.gtk.vfs.GoaVolumeMonitor.service       31100
-usr/share/dbus-1/services/org.gtk.vfs.MTPVolumeMonitor.service       31099
-usr/share/dbus-1/services/org.gtk.vfs.Metadata.service               31098
-usr/share/dbus-1/services/org.gtk.vfs.UDisks2VolumeMonitor.service   31097
-usr/share/dbus-1/services/org.kde.kcookiejar5.service                31096
-usr/share/dbus-1/services/org.kde.kded5.service                      31095
-usr/share/dbus-1/services/org.kde.kglobalaccel.service               31094
-usr/share/dbus-1/services/org.kde.kiod5.service                      31093
-usr/share/dbus-1/services/org.kde.kioexecd.service                   31092
-usr/share/dbus-1/services/org.kde.kpasswdserver.service              31091
-usr/share/dbus-1/services/org.kde.kssld5.service                     31090
-usr/share/dbus-1/services/org.kde.kwalletd5.service                  31089
-usr/lib/x86_64-linux-gnu/pipewire-0.3/libpipewire-module-access.so   31088
-usr/lib/x86_64-linux-gnu/pipewire-0.3/libpipewire-module-adapter.so  31087
-usr/lib/x86_64-linux-gnu/pipewire-0.3/libpipewire-module-link-factory.so 31086
-usr/lib/x86_64-linux-gnu/pipewire-0.3/libpipewire-module-session-manager.so 31085
-usr/lib/x86_64-linux-gnu/libspeexdsp.so.1.5.0                        31084
-usr/lib/x86_64-linux-gnu/libsoxr.so.0.1.2                            31083
-usr/lib/x86_64-linux-gnu/libicuuc.so.67.1                            31082
-usr/lib/python3/dist-packages/yaml/representer.py                    31081
-usr/lib/x86_64-linux-gnu/libgomp.so.1.0.0                            31080
-etc/pulse/daemon.conf                                                31079
-usr/bin/pipewire-media-session                                       31078
-usr/bin/dbus-run-session                                             31077
-etc/pipewire/media-session.d/media-session.conf                      31076
-usr/lib/python3/dist-packages/yaml/cyaml.py                          31075
-usr/lib/python3/dist-packages/_yaml.cpython-39-x86_64-linux-gnu.so   31074
-usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.28                         31073
-etc/pulse/default.pa                                                 31072
-usr/bin/gnome-session                                                31071
-usr/bin/gsettings                                                    31070
-usr/share/glib-2.0/schemas/gschemas.compiled                         31069
-usr/lib/x86_64-linux-gnu/libyaml-0.so.2.0.6                          31068
-usr/lib/x86_64-linux-gnu/gio/modules/libdconfsettings.so             31067
-usr/share/dconf/profile/gdm                                          31066
-usr/lib/x86_64-linux-gnu/libstemmer.so.0d.0.0                        31064
-usr/lib/pulse-14.2/modules/module-device-restore.so                  31062
-usr/lib/pulse-14.2/modules/libprotocol-native.so                     31061
-usr/lib/x86_64-linux-gnu/spa-0.2/v4l2/libspa-v4l2.so                 31060
-usr/lib/x86_64-linux-gnu/libpsl.so.5.3.2                             31059
-usr/libexec/gnome-session-binary                                     31058
-usr/lib/pulse-14.2/modules/module-stream-restore.so                  31057
-usr/lib/x86_64-linux-gnu/libgnome-desktop-3.so.19.0.10               31056
-usr/lib/x86_64-linux-gnu/libbrotlidec.so.1.0.9                       31055
-usr/lib/x86_64-linux-gnu/libicudata.so.67.1                          31054
-usr/lib/x86_64-linux-gnu/libICE.so.6.3.0                             31053
-usr/lib/x86_64-linux-gnu/libSM.so.6.0.1                              31052
-usr/lib/pulse-14.2/modules/module-card-restore.so                    31051
-usr/lib/pulse-14.2/modules/module-augment-properties.so              31050
-usr/lib/pulse-14.2/modules/module-switch-on-port-available.so        31049
-usr/lib/x86_64-linux-gnu/libgdk_pixbuf-2.0.so.0.4200.2               31048
-usr/lib/x86_64-linux-gnu/libgtk-3.so.0.2404.20                       31047
-usr/lib/x86_64-linux-gnu/libbrotlicommon.so.1.0.9                    31046
-usr/lib/pulse-14.2/modules/module-udev-detect.so                     31045
-usr/lib/pulse-14.2/modules/module-alsa-card.so                       31042
-usr/lib/pulse-14.2/modules/libalsa-util.so                           31041
-usr/share/tracker/domain-ontologies/default.rule                     31040
-usr/lib/x86_64-linux-gnu/libgdk-3.so.0.2404.20                       31038
-usr/share/alsa/cards/aliases.conf                                    31037
-usr/share/alsa/pcm/default.conf                                      31036
-usr/share/alsa/pcm/dmix.conf                                         31035
-usr/share/alsa/pcm/dsnoop.conf                                       31034
-usr/share/alsa/cards/HDA-Intel.conf                                  31033
-usr/share/alsa/pcm/front.conf                                        31032
-usr/share/alsa/pcm/surround21.conf                                   31031
-usr/share/alsa/pcm/surround40.conf                                   31030
-usr/share/alsa/pcm/surround41.conf                                   31029
-usr/share/alsa/pcm/surround50.conf                                   31028
-usr/share/alsa/pcm/surround51.conf                                   31027
-etc/dconf/profile/user                                               31026
-usr/share/alsa/pcm/surround71.conf                                   31025
-usr/lib/x86_64-linux-gnu/libcairo.so.2.11600.0                       31024
-usr/share/alsa/pcm/iec958.conf                                       31023
-usr/share/alsa/pcm/hdmi.conf                                         31022
-usr/share/alsa/pcm/modem.conf                                        31021
-usr/lib/x86_64-linux-gnu/alsa-lib/libasound_module_pcm_a52.so        31020
-usr/lib/x86_64-linux-gnu/libavcodec.so.58.91.100                     31019
-usr/lib/x86_64-linux-gnu/libxkbregistry.so.0.0.0                     31018
-usr/lib/x86_64-linux-gnu/libpangocairo-1.0.so.0.4600.2               31017
-usr/lib/x86_64-linux-gnu/libXi.so.6.1.0                              31016
-usr/lib/x86_64-linux-gnu/libXfixes.so.3.1.0                          31015
-usr/lib/x86_64-linux-gnu/libcairo-gobject.so.2.11600.0               31014
-usr/lib/x86_64-linux-gnu/libatk-1.0.so.0.23609.1                     31013
-usr/lib/x86_64-linux-gnu/libatk-bridge-2.0.so.0.0.0                  31012
-usr/lib/x86_64-linux-gnu/libepoxy.so.0.0.0                           31011
-usr/lib/x86_64-linux-gnu/libfribidi.so.0.4.0                         31009
-usr/lib/x86_64-linux-gnu/libpangoft2-1.0.so.0.4600.2                 31008
-usr/lib/x86_64-linux-gnu/libpango-1.0.so.0.4600.2                    31007
-usr/lib/x86_64-linux-gnu/libharfbuzz.so.0.20704.0                    31006
-usr/lib/systemd/user/gvfs-daemon.service                             31005
-usr/libexec/gvfsd                                                    31003
-usr/lib/x86_64-linux-gnu/libfontconfig.so.1.12.0                     31002
-usr/lib/x86_64-linux-gnu/libavutil.so.56.51.100                      31001
+usr/bin/dconf                                                        31420
+usr/lib/x86_64-linux-gnu/libdconf.so.1.0.0                           31419
+usr/lib/x86_64-linux-gnu/libtasn1.so.6.6.0                           31418
+usr/lib/x86_64-linux-gnu/libnettle.so.8.4                            31417
+usr/lib/x86_64-linux-gnu/libhogweed.so.6.4                           31416
+usr/lib/python3/dist-packages/stem/response/add_onion.py             31415
+usr/lib/python3/dist-packages/stem/response/authchallenge.py         31414
+usr/lib/python3/dist-packages/stem/response/getinfo.py               31413
+etc/gdm3/greeter.dconf-defaults                                      31412
+usr/lib/python3/dist-packages/stem/response/getconf.py               31411
+usr/lib/python3/dist-packages/stem/response/mapaddress.py            31410
+usr/lib/python3/dist-packages/stem/response/protocolinfo.py          31409
+usr/share/gdm/dconf/50-tails                                         31408
+usr/share/gdm/dconf/00-upstream-settings                             31407
+usr/share/gdm/dconf/locks/00-upstream-settings-locks                 31406
+usr/lib/x86_64-linux-gnu/libgmp.so.10.4.1                            31404
+etc/cups/cups-files.conf                                             31403
+etc/cups/cupsd.conf                                                  31402
+etc/papersize                                                        31401
+usr/share/cups/mime/braille.types                                    31400
+usr/share/cups/mime/command.types                                    31399
+usr/share/cups/mime/cupsfilters.types                                31398
+usr/share/cups/mime/mime.types                                       31397
+usr/share/cups/mime/pstotiff.types                                   31396
+usr/lib/python3/dist-packages/psutil/_common.py                      31395
+etc/cups/raw.types                                                   31394
+usr/share/cups/mime/braille.convs                                    31393
+usr/sbin/gdm3                                                        31391
+usr/lib/x86_64-linux-gnu/libaccountsservice.so.0.0.0                 31390
+usr/share/cups/mime/cupsfilters-ghostscript.convs                    31389
+usr/share/gdm/gdm.schemas                                            31388
+usr/share/cups/mime/cupsfilters-mupdf.convs                          31387
+usr/share/cups/mime/cupsfilters-poppler.convs                        31386
+usr/share/cups/mime/cupsfilters.convs                                31385
+usr/share/cups/mime/mime.convs                                       31384
+usr/share/cups/mime/pstotiff.convs                                   31383
+etc/cups/raw.convs                                                   31382
+usr/share/cups/banners/classified                                    31380
+usr/share/cups/banners/confidential                                  31379
+usr/share/cups/banners/form                                          31378
+usr/share/cups/banners/secret                                        31377
+usr/share/cups/banners/standard                                      31376
+usr/share/cups/banners/topsecret                                     31375
+usr/share/cups/banners/unclassified                                  31374
+usr/lib/python3/dist-packages/psutil/_compat.py                      31373
+usr/lib/python3/dist-packages/psutil/_pslinux.py                     31370
+usr/sbin/cups-browsed                                                31368
+usr/libexec/gdm-session-worker                                       31366
+usr/lib/x86_64-linux-gnu/libavahi-glib.so.1.0.2                      31363
+usr/lib/x86_64-linux-gnu/libcupsfilters.so.1.0.0                     31362
+usr/lib/x86_64-linux-gnu/libldap_r-2.4.so.2.11.5                     31361
+usr/lib/x86_64-linux-gnu/libpng16.so.16.37.0                         31360
+usr/lib/python3/dist-packages/psutil/_psposix.py                     31359
+usr/lib/x86_64-linux-gnu/libtiff.so.5.6.0                            31358
+usr/lib/python3/dist-packages/psutil/_psutil_linux.cpython-39-x86_64-linux-gnu.so 31357
+usr/lib/x86_64-linux-gnu/libjpeg.so.62.3.0                           31356
+etc/pam.d/gdm-launch-environment                                     31355
+lib/x86_64-linux-gnu/security/pam_nologin.so                         31354
+usr/lib/python3/dist-packages/psutil/_psutil_posix.cpython-39-x86_64-linux-gnu.so 31353
+lib/x86_64-linux-gnu/security/pam_keyinit.so                         31352
+lib/x86_64-linux-gnu/security/pam_limits.so                          31351
+lib/x86_64-linux-gnu/security/pam_env.so                             31350
+usr/lib/x86_64-linux-gnu/liblber-2.4.so.2.11.5                       31349
+usr/lib/x86_64-linux-gnu/libsasl2.so.2.0.25                          31348
+usr/lib/x86_64-linux-gnu/libwebp.so.6.0.2                            31347
+usr/lib/x86_64-linux-gnu/libjbig.so.0                                31346
+usr/lib/x86_64-linux-gnu/libdeflate.so.0                             31345
+usr/share/polkit-1/actions/com.hp.hplip.policy                       31344
+usr/share/polkit-1/actions/com.ubuntu.pkexec.synaptic.policy         31343
+usr/share/polkit-1/actions/org.boum.tails.additional-software.policy 31342
+usr/share/polkit-1/actions/org.boum.tails.root-terminal.policy       31341
+usr/share/polkit-1/actions/org.dpkg.pkexec.update-alternatives.policy 31340
+usr/share/polkit-1/actions/org.freedesktop.ModemManager1.policy      31339
+usr/lib/python3.9/lib-dynload/resource.cpython-39-x86_64-linux-gnu.so 31338
+usr/share/polkit-1/actions/org.freedesktop.NetworkManager.policy     31337
+usr/share/polkit-1/actions/org.freedesktop.UDisks2.policy            31336
+etc/cups/cups-browsed.conf                                           31335
+lib/x86_64-linux-gnu/libnss_dns-2.31.so                              31334
+usr/share/cups/locale/en/cups_en.po                                  31333
+usr/share/polkit-1/actions/org.freedesktop.accounts.policy           31330
+usr/share/polkit-1/actions/org.freedesktop.bolt.policy               31329
+usr/share/polkit-1/actions/org.freedesktop.color.policy              31328
+usr/share/polkit-1/actions/org.freedesktop.hostname1.policy          31327
+usr/share/polkit-1/actions/org.freedesktop.locale1.policy            31326
+usr/share/polkit-1/actions/org.freedesktop.login1.policy             31325
+usr/share/polkit-1/actions/org.freedesktop.network1.policy           31324
+usr/share/polkit-1/actions/org.freedesktop.policykit.policy          31323
+usr/share/polkit-1/actions/org.freedesktop.resolve1.policy           31322
+usr/share/polkit-1/actions/org.freedesktop.systemd1.policy           31321
+usr/share/polkit-1/actions/org.freedesktop.timedate1.policy          31320
+usr/share/polkit-1/actions/org.gnome.controlcenter.datetime.policy   31319
+usr/share/polkit-1/actions/org.gnome.controlcenter.remote-login-helper.policy 31318
+usr/share/polkit-1/actions/org.gnome.controlcenter.user-accounts.policy 31317
+usr/share/polkit-1/actions/org.gnome.gnome-system-monitor.policy     31316
+usr/share/polkit-1/actions/org.gnome.settings-daemon.plugins.power.policy 31315
+usr/share/polkit-1/actions/org.gnome.settings-daemon.plugins.wacom.policy 31314
+usr/share/polkit-1/actions/org.gtk.vfs.file-operations.policy        31313
+usr/share/polkit-1/actions/org.linux.lmt.gui.policy                  31312
+usr/share/polkit-1/actions/org.opensuse.cupspkhelper.mechanism.policy 31311
+etc/security/limits.conf                                             31308
+etc/security/pam_env.conf                                            31307
+etc/environment                                                      31306
+lib/systemd/system/user@.service                                     31304
+lib/systemd/system/user-.slice.d/10-defaults.conf                    31303
+lib/systemd/system/user-runtime-dir@.service                         31302
+lib/systemd/systemd-user-runtime-dir                                 31299
+usr/lib/pam.d/systemd-user                                           31279
+lib/x86_64-linux-gnu/security/pam_selinux.so                         31278
+lib/x86_64-linux-gnu/security/pam_loginuid.so                        31277
+lib/systemd/systemd                                                  31276
+etc/systemd/user.conf                                                31275
+usr/lib/systemd/user-environment-generators/30-systemd-environment-d-generator 31274
+etc/environment.d/90atk-adaptor.conf                                 31273
+etc/environment.d/90qt-a11y.conf                                     31272
+usr/lib/systemd/user-environment-generators/90gpg-agent              31271
+usr/bin/gpgconf                                                      31270
+usr/lib/systemd/user-generators/systemd-xdg-autostart-generator      31269
+etc/xdg/autostart/at-spi-dbus-bus.desktop                            31268
+etc/xdg/autostart/gnome-keyring-pkcs11.desktop                       31267
+etc/xdg/autostart/gnome-keyring-secrets.desktop                      31266
+etc/xdg/autostart/gnome-keyring-ssh.desktop                          31265
+etc/xdg/autostart/gnome-shell-overrides-migration.desktop            31264
+etc/xdg/autostart/ibus-mozc-gnome-initial-setup.desktop              31263
+etc/xdg/autostart/nm-applet.desktop                                  31262
+etc/xdg/autostart/orca-autostart.desktop                             31261
+etc/xdg/autostart/org.gnome.Evolution-alarm-notify.desktop           31260
+etc/xdg/autostart/org.gnome.SettingsDaemon.A11ySettings.desktop      31259
+etc/xdg/autostart/org.gnome.SettingsDaemon.Color.desktop             31258
+etc/xdg/autostart/org.gnome.SettingsDaemon.Datetime.desktop          31257
+etc/xdg/autostart/org.gnome.SettingsDaemon.DiskUtilityNotify.desktop 31256
+etc/xdg/autostart/org.gnome.SettingsDaemon.Housekeeping.desktop      31255
+etc/xdg/autostart/org.gnome.SettingsDaemon.Keyboard.desktop          31254
+etc/xdg/autostart/org.gnome.SettingsDaemon.MediaKeys.desktop         31253
+etc/xdg/autostart/org.gnome.SettingsDaemon.Power.desktop             31252
+etc/xdg/autostart/org.gnome.SettingsDaemon.PrintNotifications.desktop 31251
+etc/xdg/autostart/org.gnome.SettingsDaemon.Rfkill.desktop            31250
+etc/xdg/autostart/org.gnome.SettingsDaemon.ScreensaverProxy.desktop  31249
+etc/xdg/autostart/org.gnome.SettingsDaemon.Sharing.desktop           31248
+etc/xdg/autostart/org.gnome.SettingsDaemon.Smartcard.desktop         31247
+etc/xdg/autostart/org.gnome.SettingsDaemon.Sound.desktop             31246
+etc/xdg/autostart/org.gnome.SettingsDaemon.UsbProtection.desktop     31245
+etc/xdg/autostart/org.gnome.SettingsDaemon.Wacom.desktop             31244
+etc/xdg/autostart/org.gnome.SettingsDaemon.Wwan.desktop              31243
+etc/xdg/autostart/org.gnome.SettingsDaemon.XSettings.desktop         31242
+etc/xdg/autostart/pulseaudio.desktop                                 31241
+etc/xdg/autostart/spice-vdagent.desktop                              31240
+etc/xdg/autostart/systemd-desktop-target.desktop                     31239
+etc/xdg/autostart/systemd-gnome-early-initialization-target.desktop  31238
+etc/xdg/autostart/tracker-extract.desktop                            31237
+etc/xdg/autostart/tracker-miner-fs.desktop                           31236
+etc/xdg/autostart/user-dirs-update-gtk.desktop                       31235
+etc/xdg/autostart/xdg-user-dirs.desktop                              31234
+bin/gzip                                                             31233
+usr/bin/xz                                                           31232
+usr/lib/systemd/user/sound.target                                    31230
+usr/lib/systemd/user/shutdown.target                                 31229
+usr/lib/systemd/user/smartcard.target                                31228
+usr/lib/systemd/user/default.target                                  31225
+etc/xdg/systemd/user                                                 31224
+usr/lib/systemd/user/tracker-miner-fs.service                        31223
+usr/lib/systemd/user/dbus.socket                                     31222
+usr/lib/systemd/user/sockets.target                                  31221
+usr/lib/systemd/user/pulseaudio.socket                               31220
+usr/lib/systemd/user/pipewire.socket                                 31219
+usr/lib/systemd/user/gpg-agent.socket                                31218
+usr/lib/systemd/user/gpg-agent.service                               31217
+usr/lib/systemd/user/gpg-agent-ssh.socket                            31216
+usr/lib/systemd/user/gpg-agent-extra.socket                          31215
+usr/lib/systemd/user/gpg-agent-browser.socket                        31214
+usr/lib/systemd/user/dirmngr.socket                                  31213
+usr/lib/systemd/user/dirmngr.service                                 31212
+usr/lib/systemd/user/dbus.service                                    31211
+usr/lib/systemd/user/app.slice                                       31210
+usr/lib/systemd/user/tracker-extract.service                         31209
+usr/lib/systemd/user/pulseaudio.service                              31208
+usr/lib/systemd/user/pipewire.service                                31207
+usr/lib/systemd/user/basic.target                                    31206
+usr/lib/systemd/user/paths.target                                    31205
+usr/lib/systemd/user/timers.target                                   31204
+usr/bin/dirmngr                                                      31202
+usr/bin/pipewire                                                     31201
+usr/bin/pulseaudio                                                   31200
+usr/share/wayland-sessions/gnome.desktop                             31193
+usr/libexec/tracker-miner-fs                                         31192
+usr/lib/x86_64-linux-gnu/libpipewire-0.3.so.0.319.0                  31189
+usr/libexec/tracker-extract                                          31187
+usr/lib/x86_64-linux-gnu/tracker-miners-2.0/libtracker-extract.so    31185
+usr/lib/x86_64-linux-gnu/libtracker-miner-2.0.so.0.306.0             31184
+usr/lib/x86_64-linux-gnu/libtracker-sparql-2.0.so.0.306.0            31182
+usr/libexec/gdm-wayland-session.tails                                31180
+usr/lib/x86_64-linux-gnu/pulseaudio/libpulsecore-14.2.so             31179
+usr/lib/x86_64-linux-gnu/libltdl.so.7.3.1                            31178
+usr/lib/x86_64-linux-gnu/libX11-xcb.so.1.0.0                         31177
+usr/libexec/gdm-wayland-session.real                                 31176
+usr/lib/x86_64-linux-gnu/spa-0.2/support/libspa-support.so           31175
+usr/share/dbus-1/session.conf                                        31173
+etc/dbus-1/session.d/im.pidgin.purple.PurpleService.conf             31172
+usr/lib/x86_64-linux-gnu/libgsf-1.so.114.0.47                        31171
+usr/lib/x86_64-linux-gnu/libicui18n.so.67.1                          31170
+usr/lib/x86_64-linux-gnu/libupower-glib.so.3.0.1                     31169
+usr/share/dbus-1/services/ca.desrt.dconf.service                     31168
+usr/share/dbus-1/services/org.a11y.Bus.service                       31167
+usr/share/dbus-1/services/org.fedoraproject.Config.Printing.service  31166
+usr/share/dbus-1/services/org.freedesktop.ColorHelper.service        31165
+usr/share/dbus-1/services/org.freedesktop.FileManager1.service       31164
+usr/share/dbus-1/services/org.freedesktop.IBus.service               31163
+usr/share/dbus-1/services/org.freedesktop.Tracker1.Miner.Extract.service 31162
+usr/share/dbus-1/services/org.freedesktop.Tracker1.Miner.Files.service 31161
+usr/share/dbus-1/services/org.freedesktop.Tracker1.Writeback.service 31160
+usr/share/dbus-1/services/org.freedesktop.Tracker1.service           31159
+usr/share/dbus-1/services/org.freedesktop.impl.portal.PermissionStore.service 31158
+usr/share/dbus-1/services/org.freedesktop.impl.portal.Secret.service 31157
+usr/share/dbus-1/services/org.freedesktop.portal.Desktop.service     31156
+usr/share/dbus-1/services/org.freedesktop.portal.Documents.service   31155
+usr/share/dbus-1/services/org.freedesktop.portal.IBus.service        31154
+usr/share/dbus-1/services/org.freedesktop.secrets.service            31153
+usr/share/dbus-1/services/org.gnome.Calculator.SearchProvider.service 31152
+usr/share/dbus-1/services/org.gnome.ControlCenter.SearchProvider.service 31151
+usr/share/dbus-1/services/org.gnome.ControlCenter.service            31150
+usr/share/dbus-1/services/org.gnome.DiskUtility.service              31149
+usr/share/dbus-1/services/org.gnome.Extensions.service               31148
+usr/lib/x86_64-linux-gnu/libX11.so.6.4.0                             31147
+usr/share/dbus-1/services/org.gnome.FileRoller.ArchiveManager1.service 31146
+usr/share/dbus-1/services/org.gnome.FileRoller.service               31145
+usr/share/dbus-1/services/org.gnome.Nautilus.service                 31144
+usr/share/dbus-1/services/org.gnome.Screenshot.service               31143
+usr/share/dbus-1/services/org.gnome.Shell.CalendarServer.service     31142
+usr/lib/x86_64-linux-gnu/spa-0.2/support/libspa-journal.so           31141
+usr/lib/x86_64-linux-gnu/libexempi.so.8.0.2                          31140
+usr/share/dbus-1/services/org.gnome.Shell.Extensions.service         31139
+usr/share/dbus-1/services/org.gnome.Shell.HotplugSniffer.service     31138
+usr/share/dbus-1/services/org.gnome.Shell.Notifications.service      31137
+usr/share/dbus-1/services/org.gnome.Shell.PortalHelper.service       31136
+usr/share/dbus-1/services/org.gnome.Shell.Screencast.service         31135
+usr/share/dbus-1/services/org.gnome.SoundJuicer.service              31134
+usr/share/dbus-1/services/org.gnome.Terminal.service                 31133
+usr/share/dbus-1/services/org.gnome.Totem.service                    31132
+usr/share/dbus-1/services/org.gnome.evince.Daemon.service            31131
+usr/share/dbus-1/services/org.gnome.evolution.dataserver.AddressBook10.service 31130
+usr/lib/x86_64-linux-gnu/liborc-0.4.so.0.32.0                        31129
+usr/lib/x86_64-linux-gnu/libtdb.so.1.4.3                             31128
+usr/lib/x86_64-linux-gnu/libspeexdsp.so.1.5.0                        31127
+usr/lib/x86_64-linux-gnu/libexif.so.12.3.4                           31126
+usr/lib/x86_64-linux-gnu/libsoxr.so.0.1.2                            31125
+usr/lib/x86_64-linux-gnu/libgomp.so.1.0.0                            31124
+etc/pipewire/pipewire.conf                                           31123
+usr/lib/python3/dist-packages/yaml/__init__.py                       31122
+usr/lib/x86_64-linux-gnu/libiptcdata.so.0.3.3                        31121
+usr/lib/x86_64-linux-gnu/tracker-2.0/libtracker-data.so              31120
+usr/share/dbus-1/services/org.gnome.evolution.dataserver.Calendar8.service 31119
+usr/lib/x86_64-linux-gnu/libjson-glib-1.0.so.0.600.2                 31118
+usr/lib/x86_64-linux-gnu/spa-0.2/support/libspa-dbus.so              31117
+etc/pulse/daemon.conf                                                31116
+usr/lib/x86_64-linux-gnu/libsoup-2.4.so.1.11.0                       31115
+usr/lib/x86_64-linux-gnu/libxml2.so.2.9.10                           31114
+usr/share/dbus-1/services/org.gnome.evolution.dataserver.Sources5.service 31113
+usr/share/dbus-1/services/org.gnome.evolution.dataserver.UserPrompter0.service 31112
+usr/share/dbus-1/services/org.gnome.gedit.service                    31111
+usr/share/dbus-1/services/org.gnome.keyring.PrivatePrompter.service  31110
+usr/share/dbus-1/services/org.gnome.keyring.SystemPrompter.service   31109
+usr/share/dbus-1/services/org.gnome.keyring.service                  31108
+usr/share/dbus-1/services/org.gtk.GLib.PACRunner.service             31107
+usr/share/dbus-1/services/org.gtk.vfs.AfcVolumeMonitor.service       31106
+usr/share/dbus-1/services/org.gtk.vfs.Daemon.service                 31105
+usr/share/dbus-1/services/org.gtk.vfs.GPhoto2VolumeMonitor.service   31104
+usr/share/dbus-1/services/org.gtk.vfs.GoaVolumeMonitor.service       31103
+usr/share/dbus-1/services/org.gtk.vfs.MTPVolumeMonitor.service       31102
+usr/share/dbus-1/services/org.gtk.vfs.Metadata.service               31101
+usr/share/dbus-1/services/org.gtk.vfs.UDisks2VolumeMonitor.service   31100
+usr/lib/python3/dist-packages/yaml/error.py                          31099
+usr/share/dbus-1/services/org.kde.kcookiejar5.service                31098
+usr/lib/x86_64-linux-gnu/libicuuc.so.67.1                            31097
+usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.28                         31096
+usr/lib/x86_64-linux-gnu/pipewire-0.3/libpipewire-module-rtkit.so    31095
+usr/share/dbus-1/services/org.kde.kded5.service                      31094
+usr/lib/python3/dist-packages/yaml/tokens.py                         31093
+etc/pulse/default.pa                                                 31092
+usr/lib/x86_64-linux-gnu/libstemmer.so.0d.0.0                        31091
+usr/share/dbus-1/services/org.kde.kglobalaccel.service               31090
+usr/lib/python3/dist-packages/yaml/events.py                         31089
+usr/lib/x86_64-linux-gnu/libpsl.so.5.3.2                             31088
+usr/lib/x86_64-linux-gnu/libbrotlidec.so.1.0.9                       31087
+usr/lib/x86_64-linux-gnu/libicudata.so.67.1                          31086
+usr/lib/x86_64-linux-gnu/pipewire-0.3/libpipewire-module-protocol-native.so 31085
+usr/share/dbus-1/services/org.kde.kiod5.service                      31084
+usr/lib/python3/dist-packages/yaml/nodes.py                          31083
+usr/share/dbus-1/services/org.kde.kioexecd.service                   31082
+usr/lib/pulse-14.2/modules/module-device-restore.so                  31081
+usr/share/dbus-1/services/org.kde.kpasswdserver.service              31080
+usr/lib/x86_64-linux-gnu/libbrotlicommon.so.1.0.9                    31079
+usr/lib/x86_64-linux-gnu/pipewire-0.3/libpipewire-module-profiler.so 31078
+usr/lib/python3/dist-packages/yaml/loader.py                         31077
+usr/lib/pulse-14.2/modules/libprotocol-native.so                     31076
+usr/lib/x86_64-linux-gnu/pipewire-0.3/libpipewire-module-metadata.so 31075
+usr/lib/x86_64-linux-gnu/pipewire-0.3/libpipewire-module-spa-device-factory.so 31074
+usr/lib/x86_64-linux-gnu/pipewire-0.3/libpipewire-module-spa-node-factory.so 31073
+usr/lib/x86_64-linux-gnu/pipewire-0.3/libpipewire-module-client-node.so 31072
+usr/lib/x86_64-linux-gnu/pipewire-0.3/libpipewire-module-client-device.so 31071
+usr/lib/x86_64-linux-gnu/pipewire-0.3/libpipewire-module-portal.so   31070
+usr/share/dbus-1/services/org.kde.kssld5.service                     31069
+usr/share/tracker/domain-ontologies/default.rule                     31068
+usr/lib/python3/dist-packages/yaml/reader.py                         31067
+usr/share/dbus-1/services/org.kde.kwalletd5.service                  31066
+usr/lib/x86_64-linux-gnu/pipewire-0.3/libpipewire-module-access.so   31065
+usr/lib/x86_64-linux-gnu/pipewire-0.3/libpipewire-module-adapter.so  31064
+usr/lib/x86_64-linux-gnu/pipewire-0.3/libpipewire-module-link-factory.so 31063
+usr/lib/x86_64-linux-gnu/pipewire-0.3/libpipewire-module-session-manager.so 31062
+usr/lib/pulse-14.2/modules/module-stream-restore.so                  31061
+usr/bin/dbus-run-session                                             31060
+usr/lib/python3/dist-packages/yaml/scanner.py                        31059
+usr/bin/pipewire-media-session                                       31058
+etc/pipewire/media-session.d/media-session.conf                      31057
+usr/lib/pulse-14.2/modules/module-card-restore.so                    31056
+usr/lib/python3/dist-packages/yaml/parser.py                         31055
+usr/lib/x86_64-linux-gnu/spa-0.2/v4l2/libspa-v4l2.so                 31054
+usr/lib/pulse-14.2/modules/module-augment-properties.so              31053
+usr/lib/python3/dist-packages/yaml/composer.py                       31052
+usr/lib/python3/dist-packages/yaml/constructor.py                    31050
+usr/lib/python3/dist-packages/yaml/resolver.py                       31049
+usr/lib/python3/dist-packages/yaml/dumper.py                         31048
+usr/lib/python3/dist-packages/yaml/emitter.py                        31047
+usr/lib/python3/dist-packages/yaml/serializer.py                     31046
+usr/bin/gnome-session                                                31045
+usr/lib/pulse-14.2/modules/module-switch-on-port-available.so        31044
+usr/bin/gsettings                                                    31043
+usr/share/glib-2.0/schemas/gschemas.compiled                         31042
+usr/lib/python3/dist-packages/yaml/representer.py                    31041
+usr/lib/pulse-14.2/modules/module-udev-detect.so                     31040
+usr/lib/x86_64-linux-gnu/gio/modules/libdconfsettings.so             31039
+usr/share/dconf/profile/gdm                                          31038
+usr/lib/python3/dist-packages/yaml/cyaml.py                          31035
+usr/lib/pulse-14.2/modules/module-alsa-card.so                       31033
+usr/libexec/gnome-session-binary                                     31032
+usr/lib/pulse-14.2/modules/libalsa-util.so                           31031
+usr/lib/x86_64-linux-gnu/libgnome-desktop-3.so.19.0.10               31029
+usr/lib/x86_64-linux-gnu/libICE.so.6.3.0                             31028
+usr/lib/x86_64-linux-gnu/libSM.so.6.0.1                              31027
+usr/lib/x86_64-linux-gnu/libgdk_pixbuf-2.0.so.0.4200.2               31026
+usr/lib/x86_64-linux-gnu/libgtk-3.so.0.2404.20                       31025
+usr/lib/python3/dist-packages/_yaml.cpython-39-x86_64-linux-gnu.so   31024
+usr/share/alsa/cards/aliases.conf                                    31023
+usr/share/alsa/pcm/default.conf                                      31022
+usr/share/alsa/pcm/dmix.conf                                         31021
+usr/share/alsa/pcm/dsnoop.conf                                       31020
+usr/share/alsa/cards/HDA-Intel.conf                                  31019
+usr/share/alsa/pcm/front.conf                                        31018
+usr/share/alsa/pcm/surround21.conf                                   31017
+usr/share/alsa/pcm/surround40.conf                                   31016
+usr/share/alsa/pcm/surround41.conf                                   31015
+usr/share/alsa/pcm/surround50.conf                                   31014
+usr/share/alsa/pcm/surround51.conf                                   31013
+usr/share/alsa/pcm/surround71.conf                                   31012
+usr/share/alsa/pcm/iec958.conf                                       31011
+usr/share/alsa/pcm/hdmi.conf                                         31010
+usr/share/alsa/pcm/modem.conf                                        31009
+usr/lib/x86_64-linux-gnu/alsa-lib/libasound_module_pcm_a52.so        31008
+usr/lib/x86_64-linux-gnu/libavcodec.so.58.91.100                     31007
+usr/lib/x86_64-linux-gnu/libyaml-0.so.2.0.6                          31006
+etc/dconf/profile/user                                               31005
+usr/lib/x86_64-linux-gnu/libgdk-3.so.0.2404.20                       31004
+usr/lib/x86_64-linux-gnu/libavutil.so.56.51.100                      31003
+usr/lib/x86_64-linux-gnu/libcairo.so.2.11600.0                       31002
 usr/lib/x86_64-linux-gnu/libswresample.so.3.7.100                    31000
-usr/lib/x86_64-linux-gnu/libfreetype.so.6.17.4                       30999
-usr/lib/x86_64-linux-gnu/gvfs/libgvfsdaemon.so                       30998
-usr/share/tracker-miners/extract-rules/10-abw.rule                   30997
-usr/lib/x86_64-linux-gnu/libvpx.so.6.3.0                             30996
-usr/lib/x86_64-linux-gnu/libXinerama.so.1.0.0                        30995
-usr/lib/x86_64-linux-gnu/libgcr-base-3.so.1.0.0                      30994
-usr/lib/x86_64-linux-gnu/libsecret-1.so.0.0.0                        30993
-usr/share/tracker-miners/extract-rules/10-bmp.rule                   30992
-usr/share/tracker-miners/extract-rules/10-comics.rule                30991
-usr/share/tracker-miners/extract-rules/10-desktop.rule               30990
-usr/share/tracker-miners/extract-rules/10-dvi.rule                   30989
-usr/share/tracker-miners/extract-rules/10-ebooks.rule                30988
-usr/share/tracker-miners/extract-rules/10-epub.rule                  30987
-usr/share/tracker-miners/extract-rules/10-flac.rule                  30986
-usr/share/tracker-miners/extract-rules/10-gif.rule                   30985
-usr/share/tracker-miners/extract-rules/10-html.rule                  30984
-usr/lib/x86_64-linux-gnu/libgck-1.so.0.0.0                           30983
-usr/lib/x86_64-linux-gnu/libXrandr.so.2.2.0                          30982
-usr/lib/x86_64-linux-gnu/libXcursor.so.1.0.2                         30981
-usr/lib/x86_64-linux-gnu/libXcomposite.so.1.0.0                      30980
-usr/lib/x86_64-linux-gnu/libXdamage.so.1.1.0                         30979
-usr/lib/x86_64-linux-gnu/libxkbcommon.so.0.0.0                       30978
-usr/lib/x86_64-linux-gnu/libwayland-cursor.so.0.0.0                  30977
-usr/lib/x86_64-linux-gnu/libwayland-egl.so.1.0.0                     30976
-usr/lib/x86_64-linux-gnu/libwayland-client.so.0.3.0                  30975
-usr/lib/x86_64-linux-gnu/libXext.so.6.4.0                            30974
-usr/lib/x86_64-linux-gnu/libpixman-1.so.0.40.0                       30973
-usr/lib/x86_64-linux-gnu/libwebpmux.so.3.0.1                         30972
-usr/share/tracker-miners/extract-rules/10-ico.rule                   30971
-usr/lib/x86_64-linux-gnu/libdav1d.so.4.0.2                           30970
-usr/lib/x86_64-linux-gnu/libxcb-shm.so.0.0.0                         30969
-usr/lib/x86_64-linux-gnu/libxcb-render.so.0.0.0                      30968
-usr/lib/x86_64-linux-gnu/libXrender.so.1.3.0                         30967
-usr/lib/x86_64-linux-gnu/libatspi.so.0.0.1                           30966
-usr/lib/x86_64-linux-gnu/librsvg-2.so.2.47.0                         30965
-usr/lib/x86_64-linux-gnu/libthai.so.0.3.1                            30964
-usr/lib/x86_64-linux-gnu/libgraphite2.so.3.2.1                       30963
-usr/lib/x86_64-linux-gnu/libdatrie.so.1.4.0                          30962
-usr/share/tracker-miners/extract-rules/10-jpeg.rule                  30961
-usr/share/gvfs/mounts/admin.mount                                    30960
-usr/share/gvfs/mounts/afc.mount                                      30959
-usr/share/gvfs/mounts/afp-browse.mount                               30958
-usr/share/gvfs/mounts/afp.mount                                      30957
-usr/share/gvfs/mounts/archive.mount                                  30956
-usr/share/gvfs/mounts/burn.mount                                     30955
-usr/share/gvfs/mounts/cdda.mount                                     30954
-usr/share/gvfs/mounts/computer.mount                                 30953
-usr/share/gvfs/mounts/dav+sd.mount                                   30952
-usr/share/gvfs/mounts/dav.mount                                      30951
-usr/share/gvfs/mounts/dns-sd.mount                                   30950
-usr/share/gvfs/mounts/ftp.mount                                      30948
-usr/share/gvfs/mounts/ftpis.mount                                    30947
-usr/share/gvfs/mounts/ftps.mount                                     30946
-usr/share/gvfs/mounts/google.mount                                   30945
-usr/share/gvfs/mounts/gphoto2.mount                                  30944
-usr/share/gvfs/mounts/http.mount                                     30943
-usr/share/gvfs/mounts/localtest.mount                                30942
-usr/share/gvfs/mounts/mtp.mount                                      30941
-usr/share/gvfs/mounts/network.mount                                  30940
-usr/share/gvfs/mounts/nfs.mount                                      30939
-usr/lib/x86_64-linux-gnu/libzvbi.so.0.13.2                           30938
-usr/share/gvfs/mounts/recent.mount                                   30937
-usr/share/gvfs/mounts/sftp.mount                                     30936
-usr/share/gvfs/mounts/smb-browse.mount                               30935
-usr/share/gvfs/mounts/smb.mount                                      30934
-usr/share/gvfs/mounts/trash.mount                                    30933
-usr/lib/x86_64-linux-gnu/libsnappy.so.1.1.8                          30932
-usr/lib/x86_64-linux-gnu/libaom.so.0                                 30931
-usr/share/gnome-session/sessions/gdm-tails.session                   30930
-usr/share/gdm/greeter/applications/gdm-shell-tails.desktop           30929
-usr/share/tracker-miners/extract-rules/10-mp3.rule                   30928
-usr/lib/x86_64-linux-gnu/gio/modules/libgioremote-volume-monitor.so  30927
-usr/share/gvfs/remote-volume-monitors/afc.monitor                    30926
-usr/share/gvfs/remote-volume-monitors/goa.monitor                    30925
-usr/share/applications/tails-greeter.desktop                         30924
-usr/share/tracker-miners/extract-rules/10-msoffice.rule              30923
-usr/share/gdm/greeter/autostart/orca-autostart.desktop               30922
-usr/lib/x86_64-linux-gnu/libcodec2.so.0.9                            30921
-usr/bin/gnome-shell                                                  30918
-usr/lib/gnome-shell/libgnome-shell.so                                30917
-usr/share/gvfs/remote-volume-monitors/gphoto2.monitor                30916
-usr/share/gvfs/remote-volume-monitors/mtp.monitor                    30915
-usr/share/gvfs/remote-volume-monitors/udisks2.monitor                30914
-usr/share/tracker-miners/extract-rules/10-oasis.rule                 30913
-usr/lib/systemd/user/gvfs-udisks2-volume-monitor.service             30912
-usr/share/tracker-miners/extract-rules/10-pdf.rule                   30911
-usr/share/tracker-miners/extract-rules/10-png.rule                   30910
-usr/share/tracker-miners/extract-rules/10-ps.rule                    30909
-usr/libexec/gvfs-udisks2-volume-monitor                              30907
-usr/lib/x86_64-linux-gnu/libgjs.so.0.0.0                             30906
-usr/lib/x86_64-linux-gnu/libbluray.so.2.3.0                          30905
-usr/lib/x86_64-linux-gnu/libudfread.so.0.1.0                         30904
-usr/lib/x86_64-linux-gnu/libgsm.so.1.0.18                            30903
-usr/share/tracker-miners/extract-rules/10-raw.rule                   30902
-usr/lib/x86_64-linux-gnu/mutter-7/libmutter-clutter-7.so.0.0.0       30901
-usr/lib/x86_64-linux-gnu/libmp3lame.so.0.0.0                         30900
-usr/lib/x86_64-linux-gnu/libopenjp2.so.2.4.0                         30899
-usr/lib/x86_64-linux-gnu/mutter-7/libmutter-cogl-pango-7.so.0.0.0    30898
-usr/lib/x86_64-linux-gnu/libmutter-7.so.0.0.0                        30897
-usr/share/tracker-miners/extract-rules/10-svg.rule                   30896
-usr/share/tracker-miners/extract-rules/10-tiff.rule                  30895
-usr/share/tracker-miners/extract-rules/10-vorbis.rule                30894
-usr/lib/x86_64-linux-gnu/libshine.so.3.0.1                           30893
-usr/lib/x86_64-linux-gnu/libspeex.so.1.5.0                           30892
-usr/lib/gnome-shell/libgnome-shell-menu.so                           30891
-usr/lib/gnome-shell/libst-1.0.so                                     30890
-usr/share/tracker-miners/extract-rules/10-xmp.rule                   30889
-usr/lib/x86_64-linux-gnu/libtheoraenc.so.1.1.2                       30888
-usr/lib/x86_64-linux-gnu/libtheoradec.so.1.1.4                       30887
-usr/lib/x86_64-linux-gnu/libtwolame.so.0.0.0                         30886
-usr/lib/x86_64-linux-gnu/mutter-7/libmutter-cogl-7.so.0.0.0          30885
-usr/lib/systemd/user/gvfs-mtp-volume-monitor.service                 30884
-usr/share/tracker-miners/extract-rules/10-xps.rule                   30883
-usr/lib/x86_64-linux-gnu/libwavpack.so.1.2.3                         30882
-usr/lib/x86_64-linux-gnu/libwayland-server.so.0.1.0                  30881
-usr/lib/x86_64-linux-gnu/libpolkit-agent-1.so.0.0.0                  30880
-usr/lib/x86_64-linux-gnu/libnm.so.0.1.0                              30879
-usr/share/tracker-miners/extract-rules/11-iso.rule                   30878
-usr/share/tracker-miners/extract-rules/11-msoffice-xml.rule          30877
-usr/share/tracker-miners/extract-rules/15-gstreamer-guess.rule       30876
-usr/share/tracker-miners/extract-rules/15-playlist.rule              30875
-usr/share/tracker-miners/extract-rules/15-source-code.rule           30874
-usr/share/tracker-miners/extract-rules/90-gstreamer-audio-generic.rule 30873
-usr/share/tracker-miners/extract-rules/90-gstreamer-video-generic.rule 30872
-usr/share/tracker-miners/extract-rules/90-text-generic.rule          30871
-usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-abw.so 30870
-usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-bmp.so 30869
-usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-desktop.so 30868
-usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-dvi.so 30867
-usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-epub.so 30866
-usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-flac.so 30865
-usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-gif.so 30864
-usr/lib/x86_64-linux-gnu/libgif.so.7.1.0                             30863
-usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-html.so 30862
-usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-icon.so 30861
-usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-jpeg.so 30860
-usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-mp3.so 30859
-usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-msoffice.so 30858
-usr/lib/x86_64-linux-gnu/libx264.so.160                              30857
-usr/libexec/gvfs-mtp-volume-monitor                                  30855
-usr/lib/x86_64-linux-gnu/libmozjs-78.so.78.4.0                       30854
-usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-oasis.so 30853
-usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-pdf.so 30852
-usr/lib/systemd/user/gvfs-gphoto2-volume-monitor.service             30851
-usr/lib/x86_64-linux-gnu/libpoppler-glib.so.8.19.0                   30850
-usr/lib/x86_64-linux-gnu/libpoppler.so.102.0.0                       30849
-usr/lib/x86_64-linux-gnu/libx265.so.192                              30848
-usr/libexec/gvfs-gphoto2-volume-monitor                              30846
-usr/lib/x86_64-linux-gnu/libgphoto2.so.6.1.0                         30845
-usr/lib/x86_64-linux-gnu/libgraphene-1.0.so.0.1000.4                 30844
-usr/lib/x86_64-linux-gnu/libgphoto2_port.so.12.0.0                   30843
-usr/lib/x86_64-linux-gnu/libEGL.so.1.1.0                             30842
-usr/lib/systemd/user/gvfs-goa-volume-monitor.service                 30841
-usr/lib/x86_64-linux-gnu/liblcms2.so.2.0.12                          30840
-usr/lib/x86_64-linux-gnu/libGL.so.1.7.0                              30839
-usr/lib/x86_64-linux-gnu/libxvidcore.so.4.3                          30838
-usr/libexec/gvfs-goa-volume-monitor                                  30836
-usr/lib/x86_64-linux-gnu/libXtst.so.6.1.0                            30835
-usr/lib/x86_64-linux-gnu/libwacom.so.2.6.1                           30834
-usr/lib/x86_64-linux-gnu/libcanberra.so.0.2.5                        30833
-usr/lib/x86_64-linux-gnu/libstartup-notification-1.so.0.0.0          30832
-usr/lib/x86_64-linux-gnu/libxkbfile.so.1.0.2                         30831
-usr/lib/x86_64-linux-gnu/libxkbcommon-x11.so.0.0.0                   30830
-usr/lib/x86_64-linux-gnu/libxcb-randr.so.0.1.0                       30829
-usr/lib/x86_64-linux-gnu/libxcb-res.so.0.0.0                         30828
-usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0                             30827
-usr/lib/x86_64-linux-gnu/libinput.so.10.13.0                         30826
-usr/lib/x86_64-linux-gnu/libgbm.so.1.0.0                             30825
-usr/lib/x86_64-linux-gnu/libGLESv2.so.2.1.0                          30824
-usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-png.so 30823
+usr/lib/x86_64-linux-gnu/libvpx.so.6.3.0                             30999
+usr/lib/x86_64-linux-gnu/libxkbregistry.so.0.0.0                     30998
+usr/lib/systemd/user/gvfs-daemon.service                             30997
+usr/lib/x86_64-linux-gnu/libpangocairo-1.0.so.0.4600.2               30996
+usr/lib/x86_64-linux-gnu/libXi.so.6.1.0                              30995
+usr/lib/x86_64-linux-gnu/libXfixes.so.3.1.0                          30994
+usr/lib/x86_64-linux-gnu/libcairo-gobject.so.2.11600.0               30993
+usr/lib/x86_64-linux-gnu/libatk-1.0.so.0.23609.1                     30992
+usr/lib/x86_64-linux-gnu/libatk-bridge-2.0.so.0.0.0                  30991
+usr/lib/x86_64-linux-gnu/libepoxy.so.0.0.0                           30990
+usr/lib/x86_64-linux-gnu/libwebpmux.so.3.0.1                         30989
+usr/share/tracker-miners/extract-rules/10-abw.rule                   30988
+usr/lib/x86_64-linux-gnu/libfribidi.so.0.4.0                         30987
+usr/lib/x86_64-linux-gnu/libpangoft2-1.0.so.0.4600.2                 30986
+usr/lib/x86_64-linux-gnu/libpango-1.0.so.0.4600.2                    30985
+usr/lib/x86_64-linux-gnu/libharfbuzz.so.0.20704.0                    30984
+usr/libexec/gvfsd                                                    30982
+usr/lib/x86_64-linux-gnu/libdav1d.so.4.0.2                           30981
+usr/share/tracker-miners/extract-rules/10-bmp.rule                   30980
+usr/lib/x86_64-linux-gnu/libfontconfig.so.1.12.0                     30979
+usr/lib/x86_64-linux-gnu/librsvg-2.so.2.47.0                         30978
+usr/lib/x86_64-linux-gnu/gvfs/libgvfsdaemon.so                       30977
+usr/share/tracker-miners/extract-rules/10-comics.rule                30976
+usr/share/tracker-miners/extract-rules/10-desktop.rule               30975
+usr/share/tracker-miners/extract-rules/10-dvi.rule                   30974
+usr/share/tracker-miners/extract-rules/10-ebooks.rule                30973
+usr/share/tracker-miners/extract-rules/10-epub.rule                  30972
+usr/share/tracker-miners/extract-rules/10-flac.rule                  30971
+usr/share/tracker-miners/extract-rules/10-gif.rule                   30970
+usr/share/tracker-miners/extract-rules/10-html.rule                  30969
+usr/share/tracker-miners/extract-rules/10-ico.rule                   30968
+usr/lib/x86_64-linux-gnu/libgcr-base-3.so.1.0.0                      30967
+usr/lib/x86_64-linux-gnu/libsecret-1.so.0.0.0                        30966
+usr/lib/x86_64-linux-gnu/libfreetype.so.6.17.4                       30965
+usr/lib/x86_64-linux-gnu/libXinerama.so.1.0.0                        30964
+usr/share/tracker-miners/extract-rules/10-jpeg.rule                  30963
+usr/lib/x86_64-linux-gnu/libgck-1.so.0.0.0                           30962
+usr/lib/x86_64-linux-gnu/libXrandr.so.2.2.0                          30961
+usr/lib/x86_64-linux-gnu/libzvbi.so.0.13.2                           30960
+usr/lib/x86_64-linux-gnu/libXcursor.so.1.0.2                         30959
+usr/lib/x86_64-linux-gnu/libXcomposite.so.1.0.0                      30958
+usr/lib/x86_64-linux-gnu/libXdamage.so.1.1.0                         30957
+usr/lib/x86_64-linux-gnu/libxkbcommon.so.0.0.0                       30956
+usr/lib/x86_64-linux-gnu/libwayland-cursor.so.0.0.0                  30955
+usr/lib/x86_64-linux-gnu/libwayland-egl.so.1.0.0                     30954
+usr/share/tracker-miners/extract-rules/10-mp3.rule                   30953
+usr/lib/x86_64-linux-gnu/libwayland-client.so.0.3.0                  30952
+usr/lib/x86_64-linux-gnu/libXext.so.6.4.0                            30951
+usr/lib/x86_64-linux-gnu/libpixman-1.so.0.40.0                       30950
+usr/lib/x86_64-linux-gnu/libxcb-shm.so.0.0.0                         30949
+usr/share/gvfs/mounts/admin.mount                                    30948
+usr/share/gvfs/mounts/afc.mount                                      30947
+usr/share/gvfs/mounts/afp-browse.mount                               30946
+usr/share/gvfs/mounts/afp.mount                                      30945
+usr/share/gvfs/mounts/archive.mount                                  30944
+usr/share/gvfs/mounts/burn.mount                                     30943
+usr/share/gvfs/mounts/cdda.mount                                     30942
+usr/share/gvfs/mounts/computer.mount                                 30941
+usr/share/gvfs/mounts/dav+sd.mount                                   30940
+usr/share/gvfs/mounts/dav.mount                                      30939
+usr/share/gvfs/mounts/dns-sd.mount                                   30938
+usr/share/gvfs/mounts/ftp.mount                                      30937
+usr/share/gvfs/mounts/ftpis.mount                                    30936
+usr/share/gvfs/mounts/ftps.mount                                     30935
+usr/share/gvfs/mounts/google.mount                                   30934
+usr/share/gvfs/mounts/gphoto2.mount                                  30933
+usr/share/gvfs/mounts/http.mount                                     30932
+usr/share/gvfs/mounts/localtest.mount                                30931
+usr/share/gvfs/mounts/mtp.mount                                      30930
+usr/share/gvfs/mounts/network.mount                                  30929
+usr/share/gvfs/mounts/nfs.mount                                      30928
+usr/share/gvfs/mounts/recent.mount                                   30927
+usr/share/tracker-miners/extract-rules/10-msoffice.rule              30926
+usr/lib/x86_64-linux-gnu/libxcb-render.so.0.0.0                      30925
+usr/lib/x86_64-linux-gnu/libXrender.so.1.3.0                         30924
+usr/lib/x86_64-linux-gnu/libsnappy.so.1.1.8                          30923
+usr/lib/x86_64-linux-gnu/libatspi.so.0.0.1                           30922
+usr/lib/x86_64-linux-gnu/libthai.so.0.3.1                            30921
+usr/lib/x86_64-linux-gnu/libaom.so.0                                 30920
+usr/lib/x86_64-linux-gnu/libgraphite2.so.3.2.1                       30919
+usr/lib/x86_64-linux-gnu/libdatrie.so.1.4.0                          30918
+usr/share/gvfs/mounts/sftp.mount                                     30916
+usr/share/gvfs/mounts/smb-browse.mount                               30915
+usr/share/gvfs/mounts/smb.mount                                      30914
+usr/share/gvfs/mounts/trash.mount                                    30913
+usr/lib/x86_64-linux-gnu/gio/modules/libgioremote-volume-monitor.so  30912
+usr/share/tracker-miners/extract-rules/10-oasis.rule                 30911
+usr/share/tracker-miners/extract-rules/10-pdf.rule                   30910
+usr/share/tracker-miners/extract-rules/10-png.rule                   30909
+usr/share/tracker-miners/extract-rules/10-ps.rule                    30908
+usr/share/tracker-miners/extract-rules/10-raw.rule                   30907
+usr/share/gvfs/remote-volume-monitors/afc.monitor                    30906
+usr/share/gvfs/remote-volume-monitors/goa.monitor                    30905
+usr/share/gvfs/remote-volume-monitors/gphoto2.monitor                30904
+usr/share/gvfs/remote-volume-monitors/mtp.monitor                    30903
+usr/share/gvfs/remote-volume-monitors/udisks2.monitor                30902
+usr/lib/systemd/user/gvfs-udisks2-volume-monitor.service             30901
+usr/libexec/gvfs-udisks2-volume-monitor                              30900
+usr/lib/x86_64-linux-gnu/libbluray.so.2.3.0                          30898
+usr/lib/x86_64-linux-gnu/libcodec2.so.0.9                            30897
+usr/lib/x86_64-linux-gnu/libudfread.so.0.1.0                         30896
+usr/share/gnome-session/sessions/gdm-tails.session                   30895
+usr/share/gdm/greeter/applications/gdm-shell-tails.desktop           30894
+usr/share/applications/tails-greeter.desktop                         30893
+usr/share/tracker-miners/extract-rules/10-svg.rule                   30892
+usr/share/gdm/greeter/autostart/orca-autostart.desktop               30891
+usr/bin/gnome-shell                                                  30888
+usr/lib/systemd/user/gvfs-mtp-volume-monitor.service                 30887
+usr/libexec/gvfs-mtp-volume-monitor                                  30885
+usr/lib/gnome-shell/libgnome-shell.so                                30884
+usr/lib/x86_64-linux-gnu/libgjs.so.0.0.0                             30883
+usr/lib/x86_64-linux-gnu/libgsm.so.1.0.18                            30882
+usr/lib/systemd/user/gvfs-gphoto2-volume-monitor.service             30881
+usr/share/tracker-miners/extract-rules/10-tiff.rule                  30880
+usr/lib/x86_64-linux-gnu/libmp3lame.so.0.0.0                         30879
+usr/lib/x86_64-linux-gnu/libopenjp2.so.2.4.0                         30878
+usr/lib/x86_64-linux-gnu/mutter-7/libmutter-clutter-7.so.0.0.0       30877
+usr/libexec/gvfs-gphoto2-volume-monitor                              30876
+usr/lib/x86_64-linux-gnu/libshine.so.3.0.1                           30874
+usr/lib/x86_64-linux-gnu/libspeex.so.1.5.0                           30873
+usr/lib/x86_64-linux-gnu/libtheoraenc.so.1.1.2                       30872
+usr/share/tracker-miners/extract-rules/10-vorbis.rule                30871
+usr/share/tracker-miners/extract-rules/10-xmp.rule                   30870
+usr/lib/x86_64-linux-gnu/libgphoto2.so.6.1.0                         30869
+usr/lib/x86_64-linux-gnu/mutter-7/libmutter-cogl-pango-7.so.0.0.0    30868
+usr/lib/x86_64-linux-gnu/libtheoradec.so.1.1.4                       30867
+usr/lib/x86_64-linux-gnu/libtwolame.so.0.0.0                         30866
+usr/share/tracker-miners/extract-rules/10-xps.rule                   30865
+usr/lib/x86_64-linux-gnu/libgphoto2_port.so.12.0.0                   30864
+usr/lib/x86_64-linux-gnu/libmutter-7.so.0.0.0                        30863
+usr/share/tracker-miners/extract-rules/11-iso.rule                   30862
+usr/share/tracker-miners/extract-rules/11-msoffice-xml.rule          30861
+usr/lib/x86_64-linux-gnu/libwavpack.so.1.2.3                         30860
+usr/share/tracker-miners/extract-rules/15-gstreamer-guess.rule       30859
+usr/share/tracker-miners/extract-rules/15-playlist.rule              30858
+usr/share/tracker-miners/extract-rules/15-source-code.rule           30857
+usr/share/tracker-miners/extract-rules/90-gstreamer-audio-generic.rule 30856
+usr/share/tracker-miners/extract-rules/90-gstreamer-video-generic.rule 30855
+usr/lib/x86_64-linux-gnu/libx264.so.160                              30854
+usr/share/tracker-miners/extract-rules/90-text-generic.rule          30853
+usr/lib/gnome-shell/libgnome-shell-menu.so                           30852
+usr/lib/gnome-shell/libst-1.0.so                                     30851
+usr/lib/systemd/user/gvfs-goa-volume-monitor.service                 30850
+usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-abw.so 30849
+usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-bmp.so 30848
+usr/lib/x86_64-linux-gnu/mutter-7/libmutter-cogl-7.so.0.0.0          30847
+usr/libexec/gvfs-goa-volume-monitor                                  30846
+usr/lib/x86_64-linux-gnu/libwayland-server.so.0.1.0                  30844
+usr/lib/x86_64-linux-gnu/libpolkit-agent-1.so.0.0.0                  30843
+usr/lib/x86_64-linux-gnu/libnm.so.0.1.0                              30842
+usr/lib/x86_64-linux-gnu/libx265.so.192                              30841
+usr/lib/x86_64-linux-gnu/libgoa-1.0.so.0.0.0                         30840
+usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-desktop.so 30839
+usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-dvi.so 30838
+usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-epub.so 30837
+usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-flac.so 30836
+usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-gif.so 30835
+usr/lib/x86_64-linux-gnu/libgif.so.7.1.0                             30834
+usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-html.so 30833
+usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-icon.so 30832
+usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-jpeg.so 30831
+usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-mp3.so 30830
+usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-msoffice.so 30829
+usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-oasis.so 30828
+usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-pdf.so 30827
+usr/lib/x86_64-linux-gnu/libpoppler-glib.so.8.19.0                   30826
+usr/lib/x86_64-linux-gnu/libpoppler.so.102.0.0                       30825
+usr/lib/x86_64-linux-gnu/libmozjs-78.so.78.4.0                       30824
+usr/lib/x86_64-linux-gnu/libxvidcore.so.4.3                          30823
 usr/lib/x86_64-linux-gnu/libva.so.2.1000.0                           30822
-usr/lib/x86_64-linux-gnu/libgoa-1.0.so.0.0.0                         30821
+usr/lib/systemd/user/gvfs-afc-volume-monitor.service                 30821
 usr/lib/x86_64-linux-gnu/libmfx.so.1.34                              30820
 usr/lib/x86_64-linux-gnu/libva-drm.so.2.1000.0                       30819
 usr/lib/x86_64-linux-gnu/libva-x11.so.2.1000.0                       30818
-usr/lib/x86_64-linux-gnu/libGLdispatch.so.0.0.0                      30817
-usr/lib/x86_64-linux-gnu/libvdpau.so.1.0.0                           30816
-usr/lib/x86_64-linux-gnu/libGLX.so.0.0.0                             30815
-usr/lib/x86_64-linux-gnu/libvorbisfile.so.3.3.8                      30814
-usr/lib/x86_64-linux-gnu/libOpenCL.so.1.0.0                          30813
-usr/lib/x86_64-linux-gnu/libnuma.so.1.0.0                            30812
-usr/lib/x86_64-linux-gnu/libxcb-util.so.1.0.0                        30811
-usr/lib/x86_64-linux-gnu/libxcb-xkb.so.1.0.0                         30810
-usr/lib/x86_64-linux-gnu/libmtdev.so.1.0.0                           30809
-usr/lib/x86_64-linux-gnu/libevdev.so.2.3.0                           30808
-usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-ps.so 30807
-usr/lib/systemd/user/gvfs-afc-volume-monitor.service                 30806
-usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-raw.so 30805
-usr/lib/x86_64-linux-gnu/libgexiv2.so.2.0.0                          30804
-usr/lib/x86_64-linux-gnu/libexiv2.so.0.27.3                          30803
-usr/libexec/gvfs-afc-volume-monitor                                  30801
-usr/lib/x86_64-linux-gnu/libimobiledevice-1.0.so.6.0.0               30800
-usr/lib/x86_64-linux-gnu/libplist-2.0.so.3.3.0                       30799
-usr/lib/x86_64-linux-gnu/libusbmuxd-2.0.so.6.0.0                     30798
-lib/systemd/system/upower.service                                    30797
-var/lib/systemd/timers/stamp-e2scrub_all.timer                       30796
-usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-tiff.so 30793
-usr/libexec/upowerd                                                  30792
-usr/lib/x86_64-linux-gnu/libusb-1.0.so.0.3.0                         30791
-usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-vorbis.so 30789
-usr/share/libwacom/libwacom.stylus                                   30788
-etc/UPower/UPower.conf                                               30787
-usr/share/libwacom/xp-pen-star03.tablet                              30785
-usr/share/libwacom/xp-pen-g640.tablet                                30784
-usr/share/libwacom/xp-pen-g430.tablet                                30783
-usr/share/libwacom/wacom-one.tablet                                  30782
-usr/share/libwacom/volito-4x5.tablet                                 30781
-usr/share/libwacom/serial-wacf004.tablet                             30780
-usr/share/libwacom/one-by-wacom-s-p.tablet                           30779
-usr/share/libwacom/one-by-wacom-s-p2.tablet                          30778
-usr/share/libwacom/one-by-wacom-m-p.tablet                           30777
-usr/share/libwacom/one-by-wacom-m-p2.tablet                          30776
-usr/share/libwacom/n-trig-pen.tablet                                 30775
-usr/share/libwacom/mobilestudio-pro-16.tablet                        30774
-usr/share/libwacom/mobilestudio-pro-16-3.tablet                      30773
-usr/share/libwacom/mobilestudio-pro-16-2.tablet                      30772
-usr/share/libwacom/mobilestudio-pro-13.tablet                        30771
-usr/share/libwacom/mobilestudio-pro-13-2.tablet                      30770
-usr/share/libwacom/isdv4-ef.tablet                                   30769
-usr/share/libwacom/isdv4-ed.tablet                                   30768
-usr/share/libwacom/isdv4-ec.tablet                                   30767
-usr/share/libwacom/isdv4-e6.tablet                                   30766
-usr/share/libwacom/isdv4-e5.tablet                                   30765
-usr/share/libwacom/isdv4-e3.tablet                                   30764
-usr/share/libwacom/isdv4-e2.tablet                                   30763
-usr/share/libwacom/isdv4-93.tablet                                   30762
-usr/share/libwacom/isdv4-90.tablet                                   30761
-usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-xmp.so 30760
-usr/share/libwacom/isdv4-5222.tablet                                 30759
-usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-xps.so 30758
-usr/lib/x86_64-linux-gnu/libgxps.so.2.2.4                            30757
-usr/lib/x86_64-linux-gnu/libarchive.so.13.4.3                        30756
-usr/share/libwacom/isdv4-5221.tablet                                 30754
-usr/share/libwacom/isdv4-5220.tablet                                 30753
-usr/share/libwacom/isdv4-521f.tablet                                 30752
-usr/share/libwacom/isdv4-5215.tablet                                 30751
-usr/share/libwacom/isdv4-5202.tablet                                 30750
-usr/share/libwacom/isdv4-51f6.tablet                                 30749
-usr/share/libwacom/isdv4-51f5.tablet                                 30748
-usr/share/libwacom/isdv4-51e9.tablet                                 30747
-usr/share/libwacom/isdv4-51e2.tablet                                 30746
-usr/share/libwacom/isdv4-51c7.tablet                                 30745
-usr/share/libwacom/isdv4-51c4.tablet                                 30744
-usr/share/libwacom/isdv4-51bf.tablet                                 30743
-usr/share/libwacom/isdv4-51be.tablet                                 30742
-usr/share/libwacom/isdv4-51bd.tablet                                 30741
-usr/share/libwacom/isdv4-51bc.tablet                                 30740
-usr/share/libwacom/isdv4-51bb.tablet                                 30739
-usr/share/libwacom/isdv4-51ba.tablet                                 30738
-usr/share/libwacom/isdv4-51b9.tablet                                 30737
-usr/share/libwacom/isdv4-51b8.tablet                                 30736
-usr/share/libwacom/isdv4-51b7.tablet                                 30735
-usr/share/libwacom/isdv4-51b6.tablet                                 30734
-usr/share/libwacom/isdv4-51b3.tablet                                 30733
-usr/share/libwacom/isdv4-51b2.tablet                                 30732
-usr/share/libwacom/isdv4-51b1.tablet                                 30731
-usr/share/libwacom/isdv4-51b0.tablet                                 30730
-usr/share/libwacom/isdv4-51af.tablet                                 30728
-usr/share/libwacom/isdv4-51a0.tablet                                 30725
-usr/share/libwacom/isdv4-5196.tablet                                 30722
-usr/share/libwacom/isdv4-517d.tablet                                 30720
-usr/lib/systemd/user/tracker-store.service                           30701
-usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-iso.so 30700
-usr/share/libwacom/isdv4-516b.tablet                                 30698
-usr/libexec/tracker-store                                            30697
-usr/share/libwacom/isdv4-5169.tablet                                 30696
-usr/lib/x86_64-linux-gnu/libosinfo-1.0.so.0.1008.0                   30695
-usr/share/libwacom/isdv4-515a.tablet                                 30694
-usr/lib/x86_64-linux-gnu/libxslt.so.1.1.34                           30693
-usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-msoffice-xml.so 30692
-usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-gstreamer.so 30691
-usr/lib/x86_64-linux-gnu/libgstreamer-1.0.so.0.1804.0                30690
-usr/share/libwacom/isdv4-5158.tablet                                 30688
-usr/share/libwacom/isdv4-5157.tablet                                 30687
-usr/share/libwacom/isdv4-5150.tablet                                 30686
-usr/share/libwacom/isdv4-5148.tablet                                 30685
-usr/share/libwacom/isdv4-5147.tablet                                 30684
-usr/share/libwacom/isdv4-5146.tablet                                 30683
-usr/share/libwacom/isdv4-5144.tablet                                 30682
-usr/share/libwacom/isdv4-513b.tablet                                 30681
-usr/share/libwacom/isdv4-5128.tablet                                 30680
-usr/share/libwacom/isdv4-5122.tablet                                 30679
-usr/share/libwacom/isdv4-5115.tablet                                 30678
-usr/share/libwacom/isdv4-5110.tablet                                 30677
-usr/share/libwacom/isdv4-50fd.tablet                                 30676
-usr/share/libwacom/isdv4-50f8.tablet                                 30675
-usr/share/libwacom/isdv4-50f1.tablet                                 30674
-usr/share/libwacom/isdv4-50ef.tablet                                 30673
-usr/share/libwacom/isdv4-50e9.tablet                                 30672
-usr/share/libwacom/isdv4-50db.tablet                                 30671
-usr/share/libwacom/isdv4-50b8.tablet                                 30670
-usr/share/libwacom/isdv4-50b6.tablet                                 30669
-usr/share/libwacom/isdv4-50b4.tablet                                 30668
-usr/share/libwacom/isdv4-509f.tablet                                 30667
-usr/share/libwacom/isdv4-509d.tablet                                 30666
-usr/share/libwacom/isdv4-5099.tablet                                 30665
-usr/share/libwacom/isdv4-5090.tablet                                 30664
-usr/share/libwacom/isdv4-5072.tablet                                 30663
-usr/share/libwacom/isdv4-504a.tablet                                 30662
-usr/share/libwacom/isdv4-5048.tablet                                 30661
-usr/share/libwacom/isdv4-5044.tablet                                 30660
-usr/share/libwacom/isdv4-5040.tablet                                 30659
-usr/share/libwacom/isdv4-503f.tablet                                 30658
-usr/share/libwacom/isdv4-503e.tablet                                 30657
-usr/share/libwacom/isdv4-502a.tablet                                 30656
-usr/share/libwacom/isdv4-5014.tablet                                 30655
-usr/share/libwacom/isdv4-5013.tablet                                 30654
-usr/share/libwacom/isdv4-5010.tablet                                 30653
-usr/share/libwacom/isdv4-5002.tablet                                 30652
-usr/share/libwacom/isdv4-5000.tablet                                 30651
-usr/share/libwacom/isdv4-4988.tablet                                 30650
-usr/share/libwacom/isdv4-496c.tablet                                 30649
-usr/share/libwacom/isdv4-495f.tablet                                 30648
-usr/share/libwacom/isdv4-4957.tablet                                 30647
-usr/share/libwacom/isdv4-490b.tablet                                 30646
-usr/share/libwacom/isdv4-490a.tablet                                 30645
-usr/share/libwacom/isdv4-48f6.tablet                                 30644
-usr/share/libwacom/isdv4-48ee.tablet                                 30643
-usr/share/libwacom/isdv4-48ed.tablet                                 30642
-usr/share/libwacom/isdv4-48ec.tablet                                 30641
-usr/share/libwacom/isdv4-48eb.tablet                                 30640
-usr/share/libwacom/isdv4-48d6.tablet                                 30639
-usr/share/libwacom/isdv4-48ce.tablet                                 30638
-usr/share/libwacom/isdv4-48ca.tablet                                 30637
-usr/share/libwacom/isdv4-48c9.tablet                                 30636
-usr/share/libwacom/isdv4-488f.tablet                                 30635
-usr/share/libwacom/isdv4-4875.tablet                                 30634
-usr/share/libwacom/isdv4-4870.tablet                                 30633
-usr/share/libwacom/isdv4-486a.tablet                                 30632
-usr/share/libwacom/isdv4-4865.tablet                                 30631
-usr/share/libwacom/isdv4-485e.tablet                                 30630
-usr/share/libwacom/isdv4-4851.tablet                                 30629
-usr/share/libwacom/isdv4-484c.tablet                                 30628
-usr/share/libwacom/isdv4-4841.tablet                                 30627
-usr/share/libwacom/isdv4-4838.tablet                                 30626
-usr/share/libwacom/isdv4-4834.tablet                                 30625
-usr/share/libwacom/isdv4-4831.tablet                                 30624
-usr/share/libwacom/isdv4-4824.tablet                                 30623
-usr/share/libwacom/isdv4-4822.tablet                                 30622
-usr/share/libwacom/isdv4-481a.tablet                                 30621
-usr/share/libwacom/isdv4-4814.tablet                                 30620
-usr/share/libwacom/isdv4-4809.tablet                                 30619
-usr/share/libwacom/isdv4-4807.tablet                                 30618
-usr/lib/x86_64-linux-gnu/libgstpbutils-1.0.so.0.1804.0               30616
-usr/share/libwacom/isdv4-4806.tablet                                 30615
-usr/share/libwacom/isdv4-4800.tablet                                 30614
-usr/share/libwacom/isdv4-4004.tablet                                 30613
-usr/share/libwacom/isdv4-2d1f-002e.tablet                            30612
-usr/share/libwacom/isdv4-2d1f-001e.tablet                            30611
-usr/share/libwacom/isdv4-149.tablet                                  30610
-usr/share/libwacom/isdv4-12c.tablet                                  30609
-usr/share/libwacom/isdv4-124.tablet                                  30608
-usr/share/libwacom/isdv4-117.tablet                                  30607
-usr/share/libwacom/isdv4-116.tablet                                  30606
-usr/share/libwacom/isdv4-114.tablet                                  30605
-usr/share/libwacom/isdv4-10f.tablet                                  30604
-usr/share/libwacom/isdv4-10e.tablet                                  30603
-usr/share/libwacom/isdv4-10d.tablet                                  30602
-usr/share/libwacom/isdv4-104.tablet                                  30601
-usr/share/libwacom/isdv4-101.tablet                                  30600
-usr/share/libwacom/isdv4-100.tablet                                  30599
-usr/share/libwacom/intuos-s-pt.tablet                                30598
-usr/share/libwacom/intuos-s-p.tablet                                 30597
-usr/share/libwacom/intuos-s-pt2.tablet                               30596
-usr/share/libwacom/intuos-s-p3-wl.tablet                             30595
-usr/share/libwacom/intuos-s-p3-wl-android.tablet                     30594
-usr/share/libwacom/intuos-s-p3.tablet                                30593
-usr/share/libwacom/intuos-s-p3-android.tablet                        30592
-usr/share/libwacom/intuos-s-p2.tablet                                30591
-usr/share/libwacom/intuos-pro-s.tablet                               30590
-usr/share/libwacom/intuos-pro-m.tablet                               30589
-usr/share/libwacom/intuos-pro-l.tablet                               30588
-usr/share/libwacom/intuos-pro-2-s.tablet                             30587
-usr/share/libwacom/intuos-pro-2-m.tablet                             30586
-usr/share/libwacom/intuos-pro-2-l.tablet                             30585
-usr/share/libwacom/intuos-m-pt.tablet                                30584
-usr/share/libwacom/intuos-m-p.tablet                                 30583
-usr/share/libwacom/intuos-m-pt2.tablet                               30582
-usr/share/libwacom/intuos-m-p3-wl.tablet                             30581
-usr/share/libwacom/intuos-m-p3-wl-android.tablet                     30580
-usr/share/libwacom/intuos-m-p3.tablet                                30579
-usr/share/libwacom/intuos-m-p3-android.tablet                        30578
-usr/share/libwacom/intuos-m-p2.tablet                                30577
-usr/lib/x86_64-linux-gnu/libcue.so.2.2.1                             30576
-usr/lib/x86_64-linux-gnu/libunwind.so.8.0.1                          30575
-usr/share/libwacom/intuos-9x12.tablet                                30574
-usr/share/libwacom/intuos-6x8.tablet                                 30573
-usr/share/libwacom/intuos5-touch-s.tablet                            30572
-usr/share/libwacom/intuos5-touch-m.tablet                            30571
-usr/share/libwacom/intuos5-touch-l.tablet                            30570
-usr/share/libwacom/intuos5-s.tablet                                  30569
-usr/share/libwacom/intuos5-m.tablet                                  30568
-usr/share/libwacom/intuos-4x5.tablet                                 30567
-usr/share/libwacom/intuos4-8x13.tablet                               30566
-usr/share/libwacom/intuos4-6x9-wl.tablet                             30565
-usr/share/libwacom/intuos4-6x9.tablet                                30564
-usr/share/libwacom/intuos4-4x6.tablet                                30563
-usr/share/libwacom/intuos4-12x19.tablet                              30562
-usr/share/libwacom/intuos3-9x12.tablet                               30561
-usr/share/libwacom/intuos3-6x8.tablet                                30560
-usr/share/libwacom/intuos3-6x11.tablet                               30559
-usr/share/libwacom/intuos3-4x6.tablet                                30558
-usr/share/libwacom/intuos3-4x5.tablet                                30557
-usr/share/tracker/ontologies/nepomuk/30-nie.ontology                 30556
-usr/share/libwacom/intuos3-12x19.tablet                              30555
-usr/share/tracker/ontologies/nepomuk/32-nco.ontology                 30554
-usr/share/tracker/ontologies/nepomuk/33-nfo.ontology                 30553
-usr/share/tracker/ontologies/nepomuk/34-nmo.ontology                 30552
-usr/share/tracker/ontologies/nepomuk/35-ncal.ontology                30551
-usr/share/tracker/ontologies/nepomuk/36-scal.ontology                30550
-usr/share/tracker/ontologies/nepomuk/37-nid3.ontology                30549
-usr/share/tracker/ontologies/nepomuk/38-nmm.ontology                 30548
-usr/share/tracker/ontologies/nepomuk/39-mto.ontology                 30547
-usr/share/tracker/ontologies/nepomuk/40-mlo.ontology                 30546
-usr/share/tracker/ontologies/nepomuk/41-mfo.ontology                 30545
-usr/share/tracker/ontologies/nepomuk/89-mtp.ontology                 30544
-usr/share/tracker/ontologies/nepomuk/90-tracker.ontology             30543
-usr/share/tracker/ontologies/nepomuk/91-maemo.ontology               30542
-usr/share/tracker/ontologies/nepomuk/92-slo.ontology                 30541
-usr/share/tracker/ontologies/nepomuk/93-libosinfo.ontology           30540
-usr/share/libwacom/intuos3-12x12.tablet                              30539
-usr/share/libwacom/intuos2-9x12.tablet                               30538
-usr/share/libwacom/intuos2-6x8.tablet                                30537
-usr/share/libwacom/intuos2-4x5.tablet                                30536
-usr/share/libwacom/intuos2-12x18.tablet                              30535
-usr/share/libwacom/intuos2-12x12.tablet                              30534
-usr/share/libwacom/intuos-12x18.tablet                               30533
-usr/share/libwacom/intuos-12x12.tablet                               30532
-usr/share/libwacom/huion-new-1060-plus.tablet                        30531
-usr/share/libwacom/huion-h950p.tablet                                30530
-usr/share/libwacom/huion-h610-pro.tablet                             30529
-usr/share/libwacom/huion-h420.tablet                                 30528
-usr/share/libwacom/huion-420.tablet                                  30527
-usr/share/libwacom/graphire-wireless-8x6.tablet                      30526
-usr/share/libwacom/graphire-usb.tablet                               30525
-usr/share/libwacom/graphire4-6x8.tablet                              30524
-usr/share/libwacom/graphire4-4x5.tablet                              30523
-usr/share/libwacom/graphire3-6x8.tablet                              30522
-usr/share/libwacom/graphire3-4x5.tablet                              30521
-usr/share/libwacom/graphire2-5x7.tablet                              30520
-usr/share/libwacom/graphire2-4x5.tablet                              30519
-usr/share/libwacom/generic.tablet                                    30518
-usr/share/libwacom/gaomon-s620.tablet                                30517
-usr/share/libwacom/gaomon-s56k.tablet                                30516
-usr/share/libwacom/elan-5515.tablet                                  30515
-usr/share/libwacom/elan-29b6.tablet                                  30514
-usr/share/libwacom/elan-29a1.tablet                                  30513
-usr/share/libwacom/elan-264c.tablet                                  30512
-usr/share/libwacom/elan-262b.tablet                                  30511
-usr/share/libwacom/elan-2628.tablet                                  30510
-usr/share/libwacom/elan-2627.tablet                                  30509
-usr/share/libwacom/elan-2537.tablet                                  30508
-usr/share/libwacom/elan-2514.tablet                                  30507
-usr/share/libwacom/elan-2514-alt.tablet                              30506
-usr/share/libwacom/elan-24db.tablet                                  30505
-usr/share/libwacom/elan-22e2.tablet                                  30504
-usr/share/libwacom/elan-2072.tablet                                  30503
-usr/lib/x86_64-linux-gnu/libdw-0.183.so                              30502
-usr/lib/x86_64-linux-gnu/libgstvideo-1.0.so.0.1804.0                 30501
-usr/share/libwacom/elan-0732.tablet                                  30500
-usr/share/libwacom/ek-remote.tablet                                  30499
-usr/share/libwacom/dtu-2231.tablet                                   30498
-usr/share/libwacom/dtu-1931.tablet                                   30497
-usr/share/libwacom/dtu-1631.tablet                                   30496
-usr/share/libwacom/dtu-1141.tablet                                   30495
-usr/share/libwacom/dtu-1141b.tablet                                  30494
-usr/share/libwacom/dtu-1031x.tablet                                  30493
-usr/share/libwacom/dtu-1031.tablet                                   30492
-usr/share/libwacom/dtk-2451.tablet                                   30491
-usr/share/libwacom/dtk-2241.tablet                                   30490
-usr/share/libwacom/dtk-1660e.tablet                                  30489
-usr/share/libwacom/dtk-1660e-2.tablet                                30488
-usr/share/libwacom/dtk-1651.tablet                                   30487
-usr/share/libwacom/dti-520.tablet                                    30486
-usr/share/libwacom/dth-2452.tablet                                   30485
-usr/share/libwacom/dth-2242.tablet                                   30484
-usr/share/libwacom/dth-1152.tablet                                   30483
-usr/share/libwacom/dtf-720.tablet                                    30482
-usr/share/libwacom/dell-canvas-27.tablet                             30481
-usr/share/libwacom/cintiq-pro-32.tablet                              30480
-usr/share/libwacom/cintiq-pro-24-pt.tablet                           30479
-usr/share/libwacom/cintiq-pro-24-p.tablet                            30478
-usr/share/libwacom/cintiq-pro-16.tablet                              30477
-usr/share/libwacom/cintiq-pro-13.tablet                              30476
-usr/share/libwacom/cintiq-companion.tablet                           30475
-usr/share/libwacom/cintiq-companion-hybrid.tablet                    30474
-usr/share/libwacom/cintiq-companion-2.tablet                         30473
-usr/share/libwacom/cintiq-27hdt.tablet                               30472
-usr/share/libwacom/cintiq-27hd.tablet                                30471
-usr/share/libwacom/cintiq-24hd-touch.tablet                          30470
-usr/share/libwacom/cintiq-24hd.tablet                                30469
-usr/share/libwacom/cintiq-22.tablet                                  30468
-usr/share/libwacom/cintiq-22hdt.tablet                               30467
-usr/share/libwacom/cintiq-22hd.tablet                                30466
-usr/share/libwacom/cintiq-21ux.tablet                                30465
-usr/share/libwacom/cintiq-21ux2.tablet                               30464
-usr/share/libwacom/cintiq-20wsx.tablet                               30463
-usr/share/libwacom/cintiq-16.tablet                                  30462
-usr/share/libwacom/cintiq-16-2.tablet                                30461
-usr/share/libwacom/cintiq-13hdt.tablet                               30460
-usr/share/libwacom/cintiq-13hd.tablet                                30459
-usr/share/libwacom/cintiq-12wx.tablet                                30458
-usr/share/libwacom/bamboo-pad-wireless.tablet                        30457
-usr/share/libwacom/bamboo-pad.tablet                                 30456
-usr/share/libwacom/bamboo-one.tablet                                 30455
-usr/share/libwacom/bamboo-one-m-p.tablet                             30454
-usr/share/libwacom/bamboo-4fg-s-t.tablet                             30453
-usr/share/libwacom/bamboo-4fg-s-pt.tablet                            30452
-usr/share/libwacom/bamboo-4fg-se-s-pt.tablet                         30451
-usr/share/libwacom/bamboo-4fg-se-m-pt.tablet                         30450
-usr/share/libwacom/bamboo-4fg-fun-s.tablet                           30449
-usr/share/libwacom/bamboo-4fg-fun-m.tablet                           30448
-usr/share/libwacom/bamboo-2fg-s-t.tablet                             30447
-usr/share/libwacom/bamboo-2fg-s-pt.tablet                            30446
-usr/share/libwacom/bamboo-2fg-s-p.tablet                             30445
-usr/share/libwacom/bamboo-2fg-m-p.tablet                             30444
-usr/share/libwacom/bamboo-2fg-fun-s-pt.tablet                        30443
-usr/share/libwacom/bamboo-2fg-fun-m-pt.tablet                        30442
-usr/share/libwacom/bamboo-16fg-s-t.tablet                            30441
-usr/share/libwacom/bamboo-16fg-s-pt.tablet                           30440
-usr/share/libwacom/bamboo-16fg-s-p.tablet                            30439
-usr/share/libwacom/bamboo-16fg-m-pt.tablet                           30438
-usr/share/libwacom/bamboo-0fg-s-p.tablet                             30437
-usr/share/libwacom/bamboo-0fg-s-p-alt.tablet                         30436
-usr/share/libwacom/bamboo-0fg-m-p-alt.tablet                         30435
-usr/lib/x86_64-linux-gnu/libgstaudio-1.0.so.0.1804.0                 30434
-usr/lib/x86_64-linux-gnu/libgsttag-1.0.so.0.1804.0                   30431
-usr/share/glvnd/egl_vendor.d/50_mesa.json                            30428
-usr/lib/x86_64-linux-gnu/libEGL_mesa.so.0.0.0                        30413
-usr/lib/x86_64-linux-gnu/libgstbase-1.0.so.0.1804.0                  30412
-usr/lib/x86_64-linux-gnu/libglapi.so.0.0.0                           30411
+usr/lib/x86_64-linux-gnu/libvdpau.so.1.0.0                           30817
+usr/lib/x86_64-linux-gnu/libgraphene-1.0.so.0.1000.4                 30816
+usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0                             30815
+usr/lib/x86_64-linux-gnu/libEGL.so.1.1.0                             30814
+usr/lib/x86_64-linux-gnu/libGL.so.1.7.0                              30813
+usr/lib/x86_64-linux-gnu/libXtst.so.6.1.0                            30812
+usr/libexec/gvfs-afc-volume-monitor                                  30810
+usr/lib/x86_64-linux-gnu/libOpenCL.so.1.0.0                          30809
+usr/lib/x86_64-linux-gnu/libwacom.so.2.6.1                           30808
+usr/lib/x86_64-linux-gnu/libcanberra.so.0.2.5                        30807
+usr/lib/x86_64-linux-gnu/libstartup-notification-1.so.0.0.0          30806
+usr/lib/x86_64-linux-gnu/libxkbfile.so.1.0.2                         30805
+usr/lib/x86_64-linux-gnu/libimobiledevice-1.0.so.6.0.0               30804
+usr/lib/x86_64-linux-gnu/libnuma.so.1.0.0                            30803
+usr/lib/x86_64-linux-gnu/libplist-2.0.so.3.3.0                       30802
+usr/lib/x86_64-linux-gnu/libusbmuxd-2.0.so.6.0.0                     30801
+usr/lib/x86_64-linux-gnu/libxkbcommon-x11.so.0.0.0                   30800
+usr/lib/x86_64-linux-gnu/libxcb-randr.so.0.1.0                       30799
+usr/lib/x86_64-linux-gnu/libxcb-res.so.0.0.0                         30798
+usr/lib/x86_64-linux-gnu/libinput.so.10.13.0                         30797
+usr/lib/x86_64-linux-gnu/libgbm.so.1.0.0                             30796
+usr/lib/x86_64-linux-gnu/libGLESv2.so.2.1.0                          30795
+usr/lib/x86_64-linux-gnu/libGLdispatch.so.0.0.0                      30794
+usr/lib/x86_64-linux-gnu/libGLX.so.0.0.0                             30793
+usr/lib/x86_64-linux-gnu/libvorbisfile.so.3.3.8                      30792
+usr/lib/x86_64-linux-gnu/libxcb-util.so.1.0.0                        30791
+usr/lib/x86_64-linux-gnu/libxcb-xkb.so.1.0.0                         30790
+usr/lib/x86_64-linux-gnu/libmtdev.so.1.0.0                           30789
+usr/lib/x86_64-linux-gnu/libevdev.so.2.3.0                           30788
+usr/lib/x86_64-linux-gnu/liblcms2.so.2.0.12                          30787
+lib/systemd/system/upower.service                                    30786
+usr/libexec/upowerd                                                  30784
+usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-png.so 30783
+usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-ps.so 30782
+usr/lib/x86_64-linux-gnu/libusb-1.0.so.0.3.0                         30781
+usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-raw.so 30780
+usr/lib/x86_64-linux-gnu/libgexiv2.so.2.0.0                          30779
+usr/lib/x86_64-linux-gnu/libexiv2.so.0.27.3                          30778
+etc/UPower/UPower.conf                                               30776
+usr/share/libwacom/libwacom.stylus                                   30773
+usr/share/libwacom/xp-pen-star03.tablet                              30772
+usr/share/libwacom/xp-pen-g640.tablet                                30771
+usr/share/libwacom/xp-pen-g430.tablet                                30770
+usr/share/libwacom/wacom-one.tablet                                  30769
+usr/share/libwacom/volito-4x5.tablet                                 30768
+usr/share/libwacom/serial-wacf004.tablet                             30767
+usr/share/libwacom/one-by-wacom-s-p.tablet                           30766
+usr/share/libwacom/one-by-wacom-s-p2.tablet                          30765
+usr/share/libwacom/one-by-wacom-m-p.tablet                           30764
+usr/share/libwacom/one-by-wacom-m-p2.tablet                          30763
+usr/share/libwacom/n-trig-pen.tablet                                 30762
+usr/share/libwacom/mobilestudio-pro-16.tablet                        30761
+usr/share/libwacom/mobilestudio-pro-16-3.tablet                      30760
+usr/share/libwacom/mobilestudio-pro-16-2.tablet                      30759
+usr/share/libwacom/mobilestudio-pro-13.tablet                        30758
+usr/share/libwacom/mobilestudio-pro-13-2.tablet                      30757
+usr/share/libwacom/isdv4-ef.tablet                                   30756
+usr/share/libwacom/isdv4-ed.tablet                                   30755
+usr/share/libwacom/isdv4-ec.tablet                                   30754
+usr/share/libwacom/isdv4-e6.tablet                                   30753
+usr/share/libwacom/isdv4-e5.tablet                                   30752
+usr/share/libwacom/isdv4-e3.tablet                                   30751
+usr/share/libwacom/isdv4-e2.tablet                                   30750
+usr/share/libwacom/isdv4-93.tablet                                   30749
+usr/share/libwacom/isdv4-90.tablet                                   30748
+usr/share/libwacom/isdv4-5222.tablet                                 30747
+usr/share/libwacom/isdv4-5221.tablet                                 30746
+usr/share/libwacom/isdv4-5220.tablet                                 30723
+usr/share/libwacom/isdv4-521f.tablet                                 30722
+usr/share/libwacom/isdv4-5215.tablet                                 30721
+usr/share/libwacom/isdv4-5202.tablet                                 30720
+usr/share/libwacom/isdv4-51f6.tablet                                 30719
+usr/share/libwacom/isdv4-51f5.tablet                                 30718
+usr/share/libwacom/isdv4-51e9.tablet                                 30717
+usr/share/libwacom/isdv4-51e2.tablet                                 30716
+usr/share/libwacom/isdv4-51c7.tablet                                 30715
+usr/share/libwacom/isdv4-51c4.tablet                                 30714
+usr/share/libwacom/isdv4-51bf.tablet                                 30713
+usr/share/libwacom/isdv4-51be.tablet                                 30712
+usr/share/libwacom/isdv4-51bd.tablet                                 30711
+usr/share/libwacom/isdv4-51bc.tablet                                 30710
+usr/share/libwacom/isdv4-51bb.tablet                                 30709
+usr/share/libwacom/isdv4-51ba.tablet                                 30708
+usr/share/libwacom/isdv4-51b9.tablet                                 30707
+usr/share/libwacom/isdv4-51b8.tablet                                 30706
+usr/share/libwacom/isdv4-51b7.tablet                                 30705
+usr/share/libwacom/isdv4-51b6.tablet                                 30704
+usr/share/libwacom/isdv4-51b3.tablet                                 30703
+usr/share/libwacom/isdv4-51b2.tablet                                 30702
+usr/share/libwacom/isdv4-51b1.tablet                                 30701
+usr/share/libwacom/isdv4-51b0.tablet                                 30700
+usr/share/libwacom/isdv4-51af.tablet                                 30699
+usr/share/libwacom/isdv4-51a0.tablet                                 30698
+usr/share/libwacom/isdv4-5196.tablet                                 30697
+usr/share/libwacom/isdv4-517d.tablet                                 30696
+usr/share/libwacom/isdv4-516b.tablet                                 30695
+usr/share/libwacom/isdv4-5169.tablet                                 30694
+usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-tiff.so 30693
+usr/share/libwacom/isdv4-515a.tablet                                 30692
+usr/share/libwacom/isdv4-5158.tablet                                 30691
+usr/share/libwacom/isdv4-5157.tablet                                 30690
+usr/share/libwacom/isdv4-5150.tablet                                 30689
+usr/share/libwacom/isdv4-5148.tablet                                 30688
+usr/share/libwacom/isdv4-5147.tablet                                 30687
+usr/share/libwacom/isdv4-5146.tablet                                 30686
+usr/share/libwacom/isdv4-5144.tablet                                 30685
+usr/share/libwacom/isdv4-513b.tablet                                 30684
+usr/share/libwacom/isdv4-5128.tablet                                 30683
+usr/share/libwacom/isdv4-5122.tablet                                 30682
+usr/share/libwacom/isdv4-5115.tablet                                 30681
+usr/share/libwacom/isdv4-5110.tablet                                 30680
+usr/share/libwacom/isdv4-50fd.tablet                                 30679
+usr/share/libwacom/isdv4-50f8.tablet                                 30678
+usr/share/libwacom/isdv4-50f1.tablet                                 30677
+usr/share/libwacom/isdv4-50ef.tablet                                 30676
+usr/share/libwacom/isdv4-50e9.tablet                                 30675
+usr/share/libwacom/isdv4-50db.tablet                                 30674
+usr/share/libwacom/isdv4-50b8.tablet                                 30673
+usr/share/libwacom/isdv4-50b6.tablet                                 30672
+usr/share/libwacom/isdv4-50b4.tablet                                 30671
+usr/share/libwacom/isdv4-509f.tablet                                 30670
+usr/share/libwacom/isdv4-509d.tablet                                 30669
+usr/share/libwacom/isdv4-5099.tablet                                 30668
+usr/share/libwacom/isdv4-5090.tablet                                 30667
+usr/share/libwacom/isdv4-5072.tablet                                 30666
+usr/share/libwacom/isdv4-504a.tablet                                 30665
+usr/share/libwacom/isdv4-5048.tablet                                 30664
+usr/share/libwacom/isdv4-5044.tablet                                 30663
+usr/share/libwacom/isdv4-5040.tablet                                 30662
+usr/share/libwacom/isdv4-503f.tablet                                 30661
+usr/share/libwacom/isdv4-503e.tablet                                 30660
+usr/share/libwacom/isdv4-502a.tablet                                 30659
+usr/share/libwacom/isdv4-5014.tablet                                 30658
+usr/share/libwacom/isdv4-5013.tablet                                 30657
+usr/share/libwacom/isdv4-5010.tablet                                 30656
+usr/share/libwacom/isdv4-5002.tablet                                 30655
+usr/share/libwacom/isdv4-5000.tablet                                 30654
+usr/share/libwacom/isdv4-4988.tablet                                 30653
+usr/share/libwacom/isdv4-496c.tablet                                 30652
+usr/share/libwacom/isdv4-495f.tablet                                 30651
+usr/share/libwacom/isdv4-4957.tablet                                 30650
+usr/share/libwacom/isdv4-490b.tablet                                 30649
+usr/share/libwacom/isdv4-490a.tablet                                 30648
+usr/share/libwacom/isdv4-48f6.tablet                                 30647
+usr/share/libwacom/isdv4-48ee.tablet                                 30646
+usr/share/libwacom/isdv4-48ed.tablet                                 30645
+usr/share/libwacom/isdv4-48ec.tablet                                 30644
+usr/share/libwacom/isdv4-48eb.tablet                                 30643
+usr/share/libwacom/isdv4-48d6.tablet                                 30642
+usr/share/libwacom/isdv4-48ce.tablet                                 30641
+usr/share/libwacom/isdv4-48ca.tablet                                 30640
+usr/share/libwacom/isdv4-48c9.tablet                                 30639
+usr/share/libwacom/isdv4-488f.tablet                                 30638
+usr/lib/systemd/user/tracker-store.service                           30637
+usr/share/libwacom/isdv4-4875.tablet                                 30636
+usr/share/libwacom/isdv4-4870.tablet                                 30635
+usr/share/libwacom/isdv4-486a.tablet                                 30634
+usr/share/libwacom/isdv4-4865.tablet                                 30633
+usr/share/libwacom/isdv4-485e.tablet                                 30632
+usr/share/libwacom/isdv4-4851.tablet                                 30631
+usr/share/libwacom/isdv4-484c.tablet                                 30630
+usr/share/libwacom/isdv4-4841.tablet                                 30629
+usr/share/libwacom/isdv4-4838.tablet                                 30628
+usr/share/libwacom/isdv4-4834.tablet                                 30627
+usr/share/libwacom/isdv4-4831.tablet                                 30626
+usr/share/libwacom/isdv4-4824.tablet                                 30625
+usr/share/libwacom/isdv4-4822.tablet                                 30624
+usr/share/libwacom/isdv4-481a.tablet                                 30623
+usr/libexec/tracker-store                                            30620
+usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-vorbis.so 30619
+usr/share/libwacom/isdv4-4814.tablet                                 30617
+usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-xmp.so 30602
+usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-xps.so 30601
+usr/lib/x86_64-linux-gnu/libgxps.so.2.2.4                            30600
+usr/lib/x86_64-linux-gnu/libarchive.so.13.4.3                        30599
+usr/share/libwacom/isdv4-4809.tablet                                 30598
+usr/share/libwacom/isdv4-4807.tablet                                 30597
+usr/share/libwacom/isdv4-4806.tablet                                 30596
+usr/share/libwacom/isdv4-4800.tablet                                 30593
+usr/share/libwacom/isdv4-4004.tablet                                 30592
+usr/share/libwacom/isdv4-2d1f-002e.tablet                            30591
+usr/share/libwacom/isdv4-2d1f-001e.tablet                            30590
+usr/share/libwacom/isdv4-149.tablet                                  30589
+usr/share/libwacom/isdv4-12c.tablet                                  30588
+usr/share/libwacom/isdv4-124.tablet                                  30587
+usr/share/libwacom/isdv4-117.tablet                                  30585
+usr/share/libwacom/isdv4-116.tablet                                  30584
+usr/share/libwacom/isdv4-114.tablet                                  30583
+usr/share/libwacom/isdv4-10f.tablet                                  30582
+usr/share/libwacom/isdv4-10e.tablet                                  30581
+usr/share/libwacom/isdv4-10d.tablet                                  30580
+usr/share/libwacom/isdv4-104.tablet                                  30579
+usr/share/libwacom/isdv4-101.tablet                                  30578
+usr/share/libwacom/isdv4-100.tablet                                  30577
+usr/share/libwacom/intuos-s-pt.tablet                                30576
+usr/share/libwacom/intuos-s-p.tablet                                 30575
+usr/share/libwacom/intuos-s-pt2.tablet                               30574
+usr/share/libwacom/intuos-s-p3-wl.tablet                             30573
+usr/share/libwacom/intuos-s-p3-wl-android.tablet                     30572
+usr/share/libwacom/intuos-s-p3.tablet                                30571
+usr/share/libwacom/intuos-s-p3-android.tablet                        30570
+usr/share/libwacom/intuos-s-p2.tablet                                30569
+usr/share/libwacom/intuos-pro-s.tablet                               30568
+usr/share/libwacom/intuos-pro-m.tablet                               30567
+usr/share/libwacom/intuos-pro-l.tablet                               30566
+usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-iso.so 30565
+usr/share/libwacom/intuos-pro-2-s.tablet                             30564
+usr/share/libwacom/intuos-pro-2-m.tablet                             30563
+usr/share/libwacom/intuos-pro-2-l.tablet                             30562
+usr/share/libwacom/intuos-m-pt.tablet                                30561
+usr/share/libwacom/intuos-m-p.tablet                                 30560
+usr/share/libwacom/intuos-m-pt2.tablet                               30559
+usr/share/libwacom/intuos-m-p3-wl.tablet                             30555
+usr/share/libwacom/intuos-m-p3-wl-android.tablet                     30554
+usr/share/libwacom/intuos-m-p3.tablet                                30553
+usr/share/libwacom/intuos-m-p3-android.tablet                        30552
+usr/share/libwacom/intuos-m-p2.tablet                                30551
+usr/share/libwacom/intuos-9x12.tablet                                30550
+usr/share/libwacom/intuos-6x8.tablet                                 30549
+usr/share/libwacom/intuos5-touch-s.tablet                            30548
+usr/share/libwacom/intuos5-touch-m.tablet                            30547
+usr/share/libwacom/intuos5-touch-l.tablet                            30546
+usr/share/libwacom/intuos5-s.tablet                                  30545
+usr/share/libwacom/intuos5-m.tablet                                  30544
+usr/share/libwacom/intuos-4x5.tablet                                 30543
+usr/share/libwacom/intuos4-8x13.tablet                               30542
+usr/share/libwacom/intuos4-6x9-wl.tablet                             30541
+usr/share/libwacom/intuos4-6x9.tablet                                30540
+usr/share/libwacom/intuos4-4x6.tablet                                30539
+usr/share/libwacom/intuos4-12x19.tablet                              30538
+usr/share/libwacom/intuos3-9x12.tablet                               30537
+usr/share/libwacom/intuos3-6x8.tablet                                30536
+usr/share/libwacom/intuos3-6x11.tablet                               30535
+usr/share/libwacom/intuos3-4x6.tablet                                30534
+usr/share/libwacom/intuos3-4x5.tablet                                30533
+usr/share/libwacom/intuos3-12x19.tablet                              30532
+usr/share/libwacom/intuos3-12x12.tablet                              30531
+usr/share/libwacom/intuos2-9x12.tablet                               30530
+usr/share/libwacom/intuos2-6x8.tablet                                30529
+usr/share/libwacom/intuos2-4x5.tablet                                30528
+usr/share/libwacom/intuos2-12x18.tablet                              30527
+usr/share/libwacom/intuos2-12x12.tablet                              30526
+usr/share/libwacom/intuos-12x18.tablet                               30525
+usr/share/libwacom/intuos-12x12.tablet                               30524
+usr/share/libwacom/huion-new-1060-plus.tablet                        30523
+usr/share/libwacom/huion-h950p.tablet                                30522
+usr/share/libwacom/huion-h610-pro.tablet                             30521
+usr/share/libwacom/huion-h420.tablet                                 30520
+usr/share/libwacom/huion-420.tablet                                  30519
+usr/share/libwacom/graphire-wireless-8x6.tablet                      30518
+usr/share/libwacom/graphire-usb.tablet                               30517
+usr/share/libwacom/graphire4-6x8.tablet                              30516
+usr/share/libwacom/graphire4-4x5.tablet                              30515
+usr/share/libwacom/graphire3-6x8.tablet                              30514
+usr/share/libwacom/graphire3-4x5.tablet                              30513
+usr/share/libwacom/graphire2-5x7.tablet                              30512
+usr/share/libwacom/graphire2-4x5.tablet                              30511
+usr/share/libwacom/generic.tablet                                    30510
+usr/share/libwacom/gaomon-s620.tablet                                30509
+usr/share/libwacom/gaomon-s56k.tablet                                30508
+usr/share/libwacom/elan-5515.tablet                                  30507
+usr/share/libwacom/elan-29b6.tablet                                  30506
+usr/share/libwacom/elan-29a1.tablet                                  30505
+usr/share/libwacom/elan-264c.tablet                                  30504
+usr/share/libwacom/elan-262b.tablet                                  30503
+usr/share/libwacom/elan-2628.tablet                                  30502
+usr/share/libwacom/elan-2627.tablet                                  30501
+usr/share/libwacom/elan-2537.tablet                                  30500
+usr/share/libwacom/elan-2514.tablet                                  30499
+usr/share/libwacom/elan-2514-alt.tablet                              30498
+usr/share/libwacom/elan-24db.tablet                                  30497
+usr/share/libwacom/elan-22e2.tablet                                  30496
+usr/share/libwacom/elan-2072.tablet                                  30495
+usr/share/libwacom/elan-0732.tablet                                  30494
+usr/lib/x86_64-linux-gnu/libosinfo-1.0.so.0.1008.0                   30493
+usr/share/libwacom/ek-remote.tablet                                  30492
+usr/share/libwacom/dtu-2231.tablet                                   30491
+usr/share/libwacom/dtu-1931.tablet                                   30490
+usr/share/libwacom/dtu-1631.tablet                                   30489
+usr/share/libwacom/dtu-1141.tablet                                   30488
+usr/share/libwacom/dtu-1141b.tablet                                  30487
+usr/share/libwacom/dtu-1031x.tablet                                  30486
+usr/share/libwacom/dtu-1031.tablet                                   30485
+usr/share/libwacom/dtk-2451.tablet                                   30484
+usr/share/libwacom/dtk-2241.tablet                                   30483
+usr/share/libwacom/dtk-1660e.tablet                                  30482
+usr/share/libwacom/dtk-1660e-2.tablet                                30481
+usr/share/libwacom/dtk-1651.tablet                                   30480
+usr/share/libwacom/dti-520.tablet                                    30479
+usr/share/libwacom/dth-2452.tablet                                   30478
+usr/share/libwacom/dth-2242.tablet                                   30477
+usr/share/libwacom/dth-1152.tablet                                   30476
+usr/share/libwacom/dtf-720.tablet                                    30475
+usr/share/libwacom/dell-canvas-27.tablet                             30474
+usr/share/libwacom/cintiq-pro-32.tablet                              30473
+usr/share/libwacom/cintiq-pro-24-pt.tablet                           30472
+usr/share/libwacom/cintiq-pro-24-p.tablet                            30471
+usr/share/libwacom/cintiq-pro-16.tablet                              30470
+usr/share/libwacom/cintiq-pro-13.tablet                              30469
+usr/share/libwacom/cintiq-companion.tablet                           30468
+usr/share/libwacom/cintiq-companion-hybrid.tablet                    30467
+usr/share/libwacom/cintiq-companion-2.tablet                         30466
+usr/share/libwacom/cintiq-27hdt.tablet                               30465
+usr/share/libwacom/cintiq-27hd.tablet                                30464
+usr/share/libwacom/cintiq-24hd-touch.tablet                          30463
+usr/share/libwacom/cintiq-24hd.tablet                                30462
+usr/share/libwacom/cintiq-22.tablet                                  30461
+usr/share/libwacom/cintiq-22hdt.tablet                               30460
+usr/share/libwacom/cintiq-22hd.tablet                                30459
+usr/share/libwacom/cintiq-21ux.tablet                                30458
+usr/share/libwacom/cintiq-21ux2.tablet                               30457
+usr/share/libwacom/cintiq-20wsx.tablet                               30456
+usr/share/libwacom/cintiq-16.tablet                                  30455
+usr/share/libwacom/cintiq-16-2.tablet                                30454
+usr/share/libwacom/cintiq-13hdt.tablet                               30453
+usr/share/libwacom/cintiq-13hd.tablet                                30452
+usr/share/libwacom/cintiq-12wx.tablet                                30451
+usr/share/libwacom/bamboo-pad-wireless.tablet                        30450
+usr/share/libwacom/bamboo-pad.tablet                                 30449
+usr/share/libwacom/bamboo-one.tablet                                 30448
+usr/share/libwacom/bamboo-one-m-p.tablet                             30447
+usr/share/libwacom/bamboo-4fg-s-t.tablet                             30446
+usr/share/libwacom/bamboo-4fg-s-pt.tablet                            30445
+usr/share/libwacom/bamboo-4fg-se-s-pt.tablet                         30444
+usr/share/libwacom/bamboo-4fg-se-m-pt.tablet                         30443
+usr/share/libwacom/bamboo-4fg-fun-s.tablet                           30442
+usr/share/libwacom/bamboo-4fg-fun-m.tablet                           30441
+usr/share/libwacom/bamboo-2fg-s-t.tablet                             30440
+usr/share/libwacom/bamboo-2fg-s-pt.tablet                            30439
+usr/share/libwacom/bamboo-2fg-s-p.tablet                             30438
+usr/share/libwacom/bamboo-2fg-m-p.tablet                             30437
+usr/share/libwacom/bamboo-2fg-fun-s-pt.tablet                        30436
+usr/share/libwacom/bamboo-2fg-fun-m-pt.tablet                        30435
+usr/share/libwacom/bamboo-16fg-s-t.tablet                            30434
+usr/share/libwacom/bamboo-16fg-s-pt.tablet                           30433
+usr/share/libwacom/bamboo-16fg-s-p.tablet                            30432
+usr/share/libwacom/bamboo-16fg-m-pt.tablet                           30431
+usr/share/libwacom/bamboo-0fg-s-p.tablet                             30430
+usr/share/libwacom/bamboo-0fg-s-p-alt.tablet                         30429
+usr/share/libwacom/bamboo-0fg-m-p-alt.tablet                         30428
+usr/lib/x86_64-linux-gnu/libxslt.so.1.1.34                           30426
+usr/share/glvnd/egl_vendor.d/50_mesa.json                            30424
+usr/lib/pulse-14.2/modules/module-native-protocol-unix.so            30423
+usr/lib/x86_64-linux-gnu/libEGL_mesa.so.0.0.0                        30422
+usr/lib/x86_64-linux-gnu/libglapi.so.0.0.0                           30421
+usr/lib/pulse-14.2/modules/module-default-device-restore.so          30420
+usr/lib/pulse-14.2/modules/module-always-sink.so                     30419
+usr/lib/pulse-14.2/modules/module-intended-roles.so                  30418
+usr/lib/pulse-14.2/modules/module-suspend-on-idle.so                 30417
+usr/lib/pulse-14.2/modules/module-systemd-login.so                   30416
+usr/lib/pulse-14.2/modules/module-position-event-sounds.so           30415
+usr/lib/pulse-14.2/modules/module-role-cork.so                       30414
+usr/share/tracker/ontologies/nepomuk/30-nie.ontology                 30413
+usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-msoffice-xml.so 30412
+usr/lib/pulse-14.2/modules/module-filter-heuristics.so               30411
 usr/lib/x86_64-linux-gnu/libxcb-dri2.so.0.0.0                        30410
-usr/lib/x86_64-linux-gnu/libxcb-xfixes.so.0.0.0                      30409
-usr/lib/x86_64-linux-gnu/libxcb-dri3.so.0.0.0                        30408
-usr/lib/x86_64-linux-gnu/libxcb-present.so.0.0.0                     30407
-usr/lib/x86_64-linux-gnu/libxcb-sync.so.1.0.0                        30406
-usr/lib/x86_64-linux-gnu/libxshmfence.so.1.0.0                       30405
-usr/share/drirc.d/00-mesa-defaults.conf                              30404
-usr/share/tracker/stop-words/stopwords.en                            30402
-usr/lib/x86_64-linux-gnu/dri/i965_dri.so                             30399
-usr/lib/x86_64-linux-gnu/libdrm_intel.so.1.0.0                       30395
-usr/lib/x86_64-linux-gnu/libdrm_radeon.so.1.0.1                      30394
-usr/lib/pulse-14.2/modules/module-native-protocol-unix.so            30393
-usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0                     30392
-usr/lib/pulse-14.2/modules/module-default-device-restore.so          30391
-usr/lib/x86_64-linux-gnu/libpciaccess.so.0.11.1                      30390
-usr/lib/pulse-14.2/modules/module-always-sink.so                     30389
-usr/lib/pulse-14.2/modules/module-intended-roles.so                  30388
-usr/lib/pulse-14.2/modules/module-suspend-on-idle.so                 30387
-usr/lib/pulse-14.2/modules/module-systemd-login.so                   30386
-usr/lib/pulse-14.2/modules/module-position-event-sounds.so           30385
-usr/lib/pulse-14.2/modules/module-role-cork.so                       30384
-usr/lib/pulse-14.2/modules/module-filter-heuristics.so               30383
-usr/lib/pulse-14.2/modules/module-filter-apply.so                    30382
-usr/lib/x86_64-linux-gnu/gstreamer1.0/gstreamer-1.0/gst-plugin-scanner 30381
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libcluttergst3.so             30380
-usr/lib/x86_64-linux-gnu/libclutter-1.0.so.0.2600.4                  30379
-usr/lib/x86_64-linux-gnu/libclutter-gst-3.0.so.0.27.0                30378
-usr/lib/x86_64-linux-gnu/libcogl-path.so.20.4.3                      30377
-usr/lib/x86_64-linux-gnu/libcogl-pango.so.20.4.3                     30376
-usr/lib/x86_64-linux-gnu/libcogl.so.20.4.3                           30375
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libfsrawconference.so         30374
-usr/lib/x86_64-linux-gnu/libfarstream-0.2.so.5.1.1                   30373
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libfsrtpconference.so         30372
-usr/lib/x86_64-linux-gnu/libgstrtp-1.0.so.0.1804.0                   30371
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libfsrtpxdata.so              30370
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libfsvideoanyrate.so          30369
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgst1394.so                 30368
-usr/lib/x86_64-linux-gnu/libraw1394.so.11.1.0                        30367
-usr/lib/x86_64-linux-gnu/libavc1394.so.0.3.0                         30366
-usr/lib/x86_64-linux-gnu/librom1394.so.0.3.0                         30365
-usr/lib/x86_64-linux-gnu/libiec61883.so.0.1.1                        30364
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgsta52dec.so               30363
-usr/share/locale/en/LC_MESSAGES/gtk30.mo                             30362
-usr/share/libinput/10-generic-keyboard.quirks                        30361
-usr/share/libinput/10-generic-lid.quirks                             30360
-usr/share/libinput/10-generic-trackball.quirks                       30359
-usr/share/libinput/30-vendor-aiptek.quirks                           30358
-usr/share/libinput/30-vendor-alps.quirks                             30357
-usr/share/libinput/30-vendor-contour.quirks                          30356
-usr/share/libinput/30-vendor-cypress.quirks                          30355
-usr/share/libinput/30-vendor-elantech.quirks                         30354
-usr/share/libinput/30-vendor-ibm.quirks                              30353
-usr/share/libinput/30-vendor-kensington.quirks                       30352
-usr/share/libinput/30-vendor-logitech.quirks                         30351
-usr/share/libinput/30-vendor-madcatz.quirks                          30350
-usr/share/libinput/30-vendor-microsoft.quirks                        30349
-usr/share/libinput/30-vendor-razer.quirks                            30348
-usr/share/libinput/30-vendor-synaptics.quirks                        30347
-usr/share/libinput/30-vendor-trust.quirks                            30346
-usr/share/libinput/30-vendor-vmware.quirks                           30345
-usr/share/libinput/30-vendor-wacom.quirks                            30344
-usr/share/libinput/50-system-acer.quirks                             30343
-usr/share/libinput/50-system-apple.quirks                            30342
-usr/share/libinput/50-system-asus.quirks                             30341
-usr/share/libinput/50-system-chicony.quirks                          30340
-usr/share/libinput/50-system-cyborg.quirks                           30339
-usr/share/libinput/50-system-dell.quirks                             30338
-usr/share/libinput/50-system-google.quirks                           30337
-usr/share/libinput/50-system-hp.quirks                               30336
-usr/share/libinput/50-system-lenovo.quirks                           30335
-usr/share/libinput/50-system-sony.quirks                             30334
-usr/share/libinput/50-system-system76.quirks                         30333
-usr/share/libinput/50-system-toshiba.quirks                          30332
-usr/lib/x86_64-linux-gnu/liba52-0.7.4.so                             30331
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaasink.so               30320
-usr/lib/x86_64-linux-gnu/libaa.so.1.0.4                              30315
-lib/x86_64-linux-gnu/libncurses.so.6.2                               30314
-usr/lib/x86_64-linux-gnu/libslang.so.2.3.2                           30313
-usr/lib/x86_64-linux-gnu/libgpm.so.2                                 30310
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaccurip.so              30309
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstadder.so                30308
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstadpcmdec.so             30307
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstadpcmenc.so             30306
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaiff.so                 30305
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstalaw.so                 30304
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstalpha.so                30303
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstalphacolor.so           30302
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstamrnb.so                30301
-usr/lib/x86_64-linux-gnu/libopencore-amrnb.so.0.0.3                  30300
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstamrwbdec.so             30299
-usr/lib/x86_64-linux-gnu/libopencore-amrwb.so.0.0.3                  30298
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaom.so                  30297
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstapetag.so               30296
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstapp.so                  30295
-usr/lib/x86_64-linux-gnu/libgstapp-1.0.so.0.1804.0                   30294
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstasf.so                  30293
-usr/lib/x86_64-linux-gnu/libgstriff-1.0.so.0.1804.0                  30292
-usr/lib/x86_64-linux-gnu/libgstrtsp-1.0.so.0.1804.0                  30291
-usr/lib/x86_64-linux-gnu/libgstsdp-1.0.so.0.1804.0                   30290
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstasfmux.so               30289
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstassrender.so            30288
-usr/lib/x86_64-linux-gnu/libass.so.9.1.1                             30287
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaudiobuffersplit.so     30286
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaudioconvert.so         30285
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaudiofx.so              30284
-usr/lib/x86_64-linux-gnu/libgstfft-1.0.so.0.1804.0                   30283
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaudiofxbad.so           30280
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaudiolatency.so         30279
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaudiomixer.so           30278
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaudiomixmatrix.so       30277
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaudioparsers.so         30276
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaudiorate.so            30275
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaudioresample.so        30274
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaudiotestsrc.so         30273
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaudiovisualizers.so     30272
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstauparse.so              30271
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstautoconvert.so          30270
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstautodetect.so           30269
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstavi.so                  30268
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstbayer.so                30267
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstbluez.so                30266
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstbs2b.so                 30265
-usr/lib/x86_64-linux-gnu/libbs2b.so.0.0.0                            30264
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstbz2.so                  30263
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstcacasink.so             30262
-usr/lib/x86_64-linux-gnu/libcaca.so.0.99.19                          30261
-lib/x86_64-linux-gnu/libncursesw.so.6.2                              30258
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstcairo.so                30257
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstcamerabin.so            30256
-usr/lib/x86_64-linux-gnu/libgstbasecamerabinsrc-1.0.so.0.1804.0      30255
-usr/lib/x86_64-linux-gnu/libgstphotography-1.0.so.0.1804.0           30254
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstcdio.so                 30253
-usr/lib/x86_64-linux-gnu/libcdio.so.19.0.0                           30252
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstcdparanoia.so           30251
-usr/lib/x86_64-linux-gnu/libcdda_paranoia.so.0.10.2                  30250
-usr/lib/x86_64-linux-gnu/libcdda_interface.so.0.10.2                 30249
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstchromaprint.so          30248
-usr/lib/x86_64-linux-gnu/libchromaprint.so.1.5.0                     30247
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstclosedcaption.so        30244
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstcoloreffects.so         30243
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstcolormanagement.so      30242
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstcompositor.so           30241
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstcoreelements.so         30240
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstcoretracers.so          30239
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstcurl.so                 30238
-usr/lib/x86_64-linux-gnu/libcurl-gnutls.so.4.7.0                     30237
-usr/lib/x86_64-linux-gnu/libnghttp2.so.14.20.1                       30236
-usr/lib/x86_64-linux-gnu/librtmp.so.1                                30235
-usr/lib/x86_64-linux-gnu/libssh2.so.1.0.1                            30234
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstcutter.so               30230
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdash.so                 30229
-usr/lib/x86_64-linux-gnu/libgstadaptivedemux-1.0.so.0.1804.0         30228
-usr/lib/x86_64-linux-gnu/libgsturidownloader-1.0.so.0.1804.0         30227
-usr/lib/x86_64-linux-gnu/libgstisoff-1.0.so.0.1804.0                 30226
-usr/lib/x86_64-linux-gnu/libgstnet-1.0.so.0.1804.0                   30225
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdc1394.so               30224
-usr/lib/x86_64-linux-gnu/libdc1394.so.25.0.0                         30223
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstde265.so                30222
-usr/lib/x86_64-linux-gnu/libde265.so.0.1.4                           30221
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdebug.so                30218
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdebugutilsbad.so        30217
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdecklink.so             30216
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdeinterlace.so          30215
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdtls.so                 30214
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdtmf.so                 30213
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdtsdec.so               30212
-usr/lib/x86_64-linux-gnu/libdca.so.0.0.0                             30211
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdv.so                   30208
-usr/lib/x86_64-linux-gnu/libdv.so.4.0.3                              30207
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdvb.so                  30206
-usr/lib/x86_64-linux-gnu/libgstmpegts-1.0.so.0.1804.0                30205
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdvbsubenc.so            30204
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdvbsuboverlay.so        30203
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdvdlpcmdec.so           30202
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdvdread.so              30201
-usr/lib/x86_64-linux-gnu/libdvdread.so.8.0.0                         30200
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdvdspu.so               30198
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdvdsub.so               30196
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgsteffectv.so              30195
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstencoding.so             30194
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstequalizer.so            30193
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstfaad.so                 30192
-usr/lib/x86_64-linux-gnu/libfaad.so.2.0.0                            30191
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstfaceoverlay.so          30190
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstfbdevsink.so            30189
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstfestival.so             30188
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstfieldanalysis.so        30187
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstflac.so                 30186
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstflite.so                30185
-usr/lib/x86_64-linux-gnu/libflite.so.2.2                             30184
-usr/lib/x86_64-linux-gnu/libflite_cmu_us_kal.so.2.2                  30181
-usr/lib/x86_64-linux-gnu/libflite_usenglish.so.2.2                   30177
-usr/lib/x86_64-linux-gnu/libflite_cmulex.so.2.2                      30176
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstfluidsynthmidi.so       30175
-usr/lib/x86_64-linux-gnu/libfluidsynth.so.2.3.7                      30174
-usr/lib/x86_64-linux-gnu/libjack.so.0.1.0                            30173
-usr/lib/x86_64-linux-gnu/libpulse-simple.so.0.1.1                    30172
-usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.14.0                       30171
-usr/lib/x86_64-linux-gnu/libinstpatch-1.0.so.2.2.0                   30170
-usr/lib/x86_64-linux-gnu/libXss.so.1.0.0                             30169
-usr/lib/x86_64-linux-gnu/libXxf86vm.so.1.0.0                         30168
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstflv.so                  30167
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstflxdec.so               30166
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstfreeverb.so             30165
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstfrei0r.so               30164
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstgaudieffects.so         30163
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstgdkpixbuf.so            30162
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstgdp.so                  30161
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstgeometrictransform.so   30160
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstgio.so                  30159
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstgme.so                  30158
-usr/lib/x86_64-linux-gnu/libgme.so.0.6.3                             30157
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstgoom.so                 30156
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstgoom2k1.so              30155
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstgsm.so                  30154
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgsthls.so                  30153
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgsticydemux.so             30152
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstid3demux.so             30151
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstid3tag.so               30150
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstimagefreeze.so          30149
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstinter.so                30148
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstinterlace.so            30147
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstinterleave.so           30146
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstipcpipeline.so          30145
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstisomp4.so               30144
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstivfparse.so             30143
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstivtc.so                 30142
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstjack.so                 30141
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstjp2kdecimator.so        30140
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstjpeg.so                 30139
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstjpegformat.so           30138
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstkate.so                 30137
-usr/lib/x86_64-linux-gnu/libkate.so.1.3.0                            30136
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstkms.so                  30135
-usr/lib/x86_64-linux-gnu/libgstallocators-1.0.so.0.1804.0            30134
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstladspa.so               30133
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstlame.so                 30132
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstlegacyrawparse.so       30131
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstlevel.so                30130
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstlibav.so                30129
-usr/lib/x86_64-linux-gnu/libavfilter.so.7.85.100                     30128
-usr/lib/x86_64-linux-gnu/libavformat.so.58.45.100                    30127
-usr/lib/x86_64-linux-gnu/libswscale.so.5.7.100                       30126
-usr/lib/x86_64-linux-gnu/libpostproc.so.55.7.100                     30125
-usr/lib/x86_64-linux-gnu/libpocketsphinx.so.3.0.0                    30124
-usr/lib/x86_64-linux-gnu/libsphinxbase.so.3.0.0                      30123
-usr/lib/x86_64-linux-gnu/liblilv-0.so.0.24.12                        30122
-usr/lib/x86_64-linux-gnu/librubberband.so.2.1.2                      30121
-usr/lib/x86_64-linux-gnu/libmysofa.so.1.1.0                          30120
-usr/lib/x86_64-linux-gnu/libflite_cmu_us_awb.so.2.2                  30119
-usr/lib/x86_64-linux-gnu/libflite_cmu_us_kal16.so.2.2                30118
-usr/lib/x86_64-linux-gnu/libflite_cmu_us_rms.so.2.2                  30117
-usr/lib/x86_64-linux-gnu/libflite_cmu_us_slt.so.2.2                  30114
-usr/lib/x86_64-linux-gnu/libvidstab.so.1.1                           30109
-usr/lib/x86_64-linux-gnu/libzmq.so.5.2.4                             30108
-usr/local/lib/udev-watchdog-wrapper                                  30107
-usr/lib/x86_64-linux-gnu/libopenmpt.so.0.1.1                         30105
-usr/share/X11/xkb/rules/evdev                                        30104
-usr/share/X11/xkb/keycodes/evdev                                     30103
-usr/share/X11/xkb/keycodes/aliases                                   30102
-usr/share/X11/xkb/types/complete                                     30101
-usr/share/X11/xkb/types/basic                                        30100
-usr/share/X11/xkb/types/mousekeys                                    30099
-usr/share/X11/xkb/types/pc                                           30098
-usr/share/X11/xkb/types/iso9995                                      30097
-usr/share/X11/xkb/types/level5                                       30096
-usr/share/X11/xkb/types/extra                                        30095
-usr/share/X11/xkb/types/numpad                                       30094
-usr/share/X11/xkb/compat/complete                                    30093
-usr/share/X11/xkb/compat/basic                                       30092
-usr/share/X11/xkb/compat/ledcaps                                     30091
-usr/share/X11/xkb/compat/lednum                                      30090
-usr/share/X11/xkb/compat/iso9995                                     30089
-usr/share/X11/xkb/compat/mousekeys                                   30088
-usr/share/X11/xkb/compat/accessx                                     30087
-usr/share/X11/xkb/compat/misc                                        30086
-usr/share/X11/xkb/compat/ledscroll                                   30085
-usr/share/X11/xkb/compat/xfree86                                     30084
-usr/share/X11/xkb/compat/level5                                      30083
-usr/share/X11/xkb/compat/caps                                        30082
-usr/share/X11/xkb/symbols/pc                                         30081
-usr/share/X11/xkb/symbols/srvr_ctrl                                  30080
-usr/share/X11/xkb/symbols/keypad                                     30079
-usr/share/X11/xkb/symbols/altwin                                     30078
-usr/share/X11/xkb/symbols/us                                         30077
-usr/share/X11/xkb/symbols/inet                                       30076
-usr/libexec/at-spi-bus-launcher                                      30075
-usr/lib/x86_64-linux-gnu/librabbitmq.so.4.4.0                        30074
-usr/share/defaults/at-spi2/accessibility.conf                        30073
-usr/share/dbus-1/accessibility-services/org.a11y.atspi.Registry.service 30072
-usr/lib/x86_64-linux-gnu/libsrt-gnutls.so.1.4.2                      30071
-usr/lib/x86_64-linux-gnu/libssh-gcrypt.so.4.8.6                      30070
-usr/lib/x86_64-linux-gnu/blas/libblas.so.3.9.0                       30069
-usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3.9.0                   30068
-usr/share/icons/Adwaita/cursors/left_ptr                             30067
-usr/bin/Xwayland                                                     30066
-usr/lib/x86_64-linux-gnu/libserd-0.so.0.30.10                        30065
-usr/lib/x86_64-linux-gnu/libsord-0.so.0.16.8                         30064
-usr/lib/x86_64-linux-gnu/libsratom-0.so.0.6.8                        30063
-usr/lib/x86_64-linux-gnu/libsamplerate.so.0.2.1                      30062
-usr/lib/x86_64-linux-gnu/libXfont2.so.2.0.0                          30061
-usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders.cache         30060
-usr/lib/x86_64-linux-gnu/mutter-7/Clutter-7.typelib                  30059
-usr/lib/x86_64-linux-gnu/libfontenc.so.1.0.0                         30058
-usr/lib/x86_64-linux-gnu/libfftw3.so.3.5.8                           30057
-usr/lib/xorg/protocol.txt                                            30056
-usr/lib/x86_64-linux-gnu/girepository-1.0/cairo-1.0.typelib          30055
-usr/lib/x86_64-linux-gnu/girepository-1.0/Json-1.0.typelib           30054
-usr/lib/x86_64-linux-gnu/girepository-1.0/Gio-2.0.typelib            30053
-usr/lib/x86_64-linux-gnu/girepository-1.0/GObject-2.0.typelib        30052
-usr/lib/x86_64-linux-gnu/girepository-1.0/GLib-2.0.typelib           30051
-usr/lib/x86_64-linux-gnu/girepository-1.0/GL-1.0.typelib             30050
-usr/lib/x86_64-linux-gnu/mutter-7/CoglPango-7.typelib                30049
-usr/lib/x86_64-linux-gnu/girepository-1.0/PangoCairo-1.0.typelib     30048
-usr/lib/x86_64-linux-gnu/girepository-1.0/Pango-1.0.typelib          30047
-usr/lib/x86_64-linux-gnu/girepository-1.0/HarfBuzz-0.0.typelib       30046
-usr/lib/x86_64-linux-gnu/mutter-7/Cogl-7.typelib                     30045
-usr/lib/x86_64-linux-gnu/girepository-1.0/Graphene-1.0.typelib       30044
-usr/lib/x86_64-linux-gnu/girepository-1.0/Atk-1.0.typelib            30043
-usr/lib/x86_64-linux-gnu/gjs/girepository-1.0/GjsPrivate-1.0.typelib 30042
-usr/lib/x86_64-linux-gnu/mutter-7/Meta-7.typelib                     30041
-usr/lib/x86_64-linux-gnu/girepository-1.0/xlib-2.0.typelib           30040
-usr/lib/x86_64-linux-gnu/girepository-1.0/xfixes-4.0.typelib         30039
-usr/lib/x86_64-linux-gnu/girepository-1.0/Gtk-3.0.typelib            30038
-usr/lib/x86_64-linux-gnu/girepository-1.0/Gdk-3.0.typelib            30037
-usr/lib/x86_64-linux-gnu/girepository-1.0/GdkPixbuf-2.0.typelib      30036
-usr/lib/x86_64-linux-gnu/girepository-1.0/GModule-2.0.typelib        30035
-usr/lib/x86_64-linux-gnu/girepository-1.0/GDesktopEnums-3.0.typelib  30034
-usr/lib/x86_64-linux-gnu/girepository-1.0/Polkit-1.0.typelib         30033
-usr/lib/gnome-shell/Shell-0.1.typelib                                30032
-usr/lib/gnome-shell/St-1.0.typelib                                   30031
-usr/lib/x86_64-linux-gnu/mutter-7/Cally-7.typelib                    30030
-usr/lib/x86_64-linux-gnu/girepository-1.0/PolkitAgent-1.0.typelib    30029
-usr/lib/x86_64-linux-gnu/girepository-1.0/NM-1.0.typelib             30028
-usr/lib/x86_64-linux-gnu/libsodium.so.23.3.0                         30027
-usr/lib/gnome-shell/Gvc-1.0.typelib                                  30026
-usr/lib/x86_64-linux-gnu/girepository-1.0/Gcr-3.typelib              30025
-usr/lib/x86_64-linux-gnu/girepository-1.0/Gck-1.typelib              30024
-usr/lib/x86_64-linux-gnu/mutter-7/ClutterX11-7.typelib               30023
-usr/lib/x86_64-linux-gnu/girepository-1.0/GnomeDesktop-3.0.typelib   30022
-usr/share/gnome-shell/gnome-shell-dbus-interfaces.gresource          30021
-usr/lib/x86_64-linux-gnu/libpgm-5.3.so.0.0.128                       30020
-usr/lib/x86_64-linux-gnu/libnorm.so.1                                30019
-usr/lib/x86_64-linux-gnu/girepository-1.0/AccountsService-1.0.typelib 30018
-usr/lib/x86_64-linux-gnu/girepository-1.0/UPowerGlib-1.0.typelib     30017
-usr/lib/x86_64-linux-gnu/girepository-1.0/Soup-2.4.typelib           30016
-usr/lib/x86_64-linux-gnu/libmpg123.so.0.45.3                         30015
-usr/lib/x86_64-linux-gnu/libgfortran.so.5.0.0                        30014
-usr/lib/x86_64-linux-gnu/girepository-1.0/IBus-1.0.typelib           30013
-usr/lib/x86_64-linux-gnu/libibus-1.0.so.5.0.523                      30012
-usr/lib/x86_64-linux-gnu/libquadmath.so.0.0.0                        30011
-usr/lib/x86_64-linux-gnu/girepository-1.0/GIRepository-2.0.typelib   30010
-usr/lib/x86_64-linux-gnu/girepository-1.0/Gdm-1.0.typelib            30009
-usr/share/locale/en/LC_MESSAGES/gtk30-properties.mo                  30008
+usr/share/tracker/ontologies/nepomuk/32-nco.ontology                 30409
+usr/lib/pulse-14.2/modules/module-filter-apply.so                    30408
+usr/lib/x86_64-linux-gnu/libxcb-xfixes.so.0.0.0                      30407
+usr/lib/x86_64-linux-gnu/libxcb-dri3.so.0.0.0                        30406
+usr/lib/x86_64-linux-gnu/libxcb-present.so.0.0.0                     30405
+usr/lib/x86_64-linux-gnu/libxcb-sync.so.1.0.0                        30404
+usr/lib/x86_64-linux-gnu/libxshmfence.so.1.0.0                       30403
+usr/share/drirc.d/00-mesa-defaults.conf                              30402
+usr/lib/x86_64-linux-gnu/dri/i965_dri.so                             30401
+usr/lib/x86_64-linux-gnu/libdrm_intel.so.1.0.0                       30400
+usr/lib/x86_64-linux-gnu/libdrm_radeon.so.1.0.1                      30399
+usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0                     30398
+usr/lib/x86_64-linux-gnu/libpciaccess.so.0.11.1                      30397
+usr/share/tracker/ontologies/nepomuk/33-nfo.ontology                 30396
+usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-gstreamer.so 30395
+usr/share/tracker/ontologies/nepomuk/34-nmo.ontology                 30394
+usr/share/tracker/ontologies/nepomuk/35-ncal.ontology                30393
+usr/share/tracker/ontologies/nepomuk/36-scal.ontology                30392
+usr/share/tracker/ontologies/nepomuk/37-nid3.ontology                30391
+usr/share/tracker/ontologies/nepomuk/38-nmm.ontology                 30390
+usr/share/tracker/ontologies/nepomuk/39-mto.ontology                 30389
+usr/share/tracker/ontologies/nepomuk/40-mlo.ontology                 30388
+usr/share/tracker/ontologies/nepomuk/41-mfo.ontology                 30387
+usr/share/tracker/ontologies/nepomuk/89-mtp.ontology                 30386
+usr/share/tracker/ontologies/nepomuk/90-tracker.ontology             30385
+usr/share/tracker/ontologies/nepomuk/91-maemo.ontology               30384
+usr/share/tracker/ontologies/nepomuk/92-slo.ontology                 30383
+usr/lib/x86_64-linux-gnu/libgstreamer-1.0.so.0.1804.0                30382
+usr/share/tracker/ontologies/nepomuk/93-libosinfo.ontology           30381
+usr/share/tracker/stop-words/stopwords.en                            30380
+usr/lib/x86_64-linux-gnu/libgstpbutils-1.0.so.0.1804.0               30379
+usr/share/locale/en/LC_MESSAGES/gtk30.mo                             30378
+usr/share/libinput/10-generic-keyboard.quirks                        30377
+usr/share/libinput/10-generic-lid.quirks                             30376
+usr/share/libinput/10-generic-trackball.quirks                       30375
+usr/share/libinput/30-vendor-aiptek.quirks                           30374
+usr/share/libinput/30-vendor-alps.quirks                             30373
+usr/share/libinput/30-vendor-contour.quirks                          30372
+usr/share/libinput/30-vendor-cypress.quirks                          30371
+usr/share/libinput/30-vendor-elantech.quirks                         30370
+usr/share/libinput/30-vendor-ibm.quirks                              30369
+usr/share/libinput/30-vendor-kensington.quirks                       30368
+usr/share/libinput/30-vendor-logitech.quirks                         30367
+usr/share/libinput/30-vendor-madcatz.quirks                          30366
+usr/share/libinput/30-vendor-microsoft.quirks                        30365
+usr/share/libinput/30-vendor-razer.quirks                            30364
+usr/share/libinput/30-vendor-synaptics.quirks                        30363
+usr/share/libinput/30-vendor-trust.quirks                            30362
+usr/share/libinput/30-vendor-vmware.quirks                           30361
+usr/share/libinput/30-vendor-wacom.quirks                            30360
+usr/share/libinput/50-system-acer.quirks                             30359
+usr/share/libinput/50-system-apple.quirks                            30358
+usr/share/libinput/50-system-asus.quirks                             30357
+usr/share/libinput/50-system-chicony.quirks                          30356
+usr/share/libinput/50-system-cyborg.quirks                           30355
+usr/share/libinput/50-system-dell.quirks                             30354
+usr/share/libinput/50-system-google.quirks                           30353
+usr/share/libinput/50-system-hp.quirks                               30352
+usr/share/libinput/50-system-lenovo.quirks                           30351
+usr/share/libinput/50-system-sony.quirks                             30350
+usr/share/libinput/50-system-system76.quirks                         30349
+usr/share/libinput/50-system-toshiba.quirks                          30348
+usr/lib/x86_64-linux-gnu/libcue.so.2.2.1                             30347
+usr/lib/x86_64-linux-gnu/libunwind.so.8.0.1                          30346
+usr/lib/x86_64-linux-gnu/libdw-0.183.so                              30345
+usr/lib/x86_64-linux-gnu/libgstvideo-1.0.so.0.1804.0                 30330
+usr/lib/x86_64-linux-gnu/libgstaudio-1.0.so.0.1804.0                 30329
+usr/lib/x86_64-linux-gnu/libgsttag-1.0.so.0.1804.0                   30326
+usr/lib/x86_64-linux-gnu/libgstbase-1.0.so.0.1804.0                  30325
+usr/lib/x86_64-linux-gnu/gstreamer1.0/gstreamer-1.0/gst-plugin-scanner 30324
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libcluttergst3.so             30321
+usr/lib/x86_64-linux-gnu/libclutter-1.0.so.0.2600.4                  30320
+usr/lib/x86_64-linux-gnu/libclutter-gst-3.0.so.0.27.0                30314
+usr/lib/x86_64-linux-gnu/libcogl-path.so.20.4.3                      30313
+usr/lib/x86_64-linux-gnu/libcogl-pango.so.20.4.3                     30312
+usr/lib/x86_64-linux-gnu/libcogl.so.20.4.3                           30311
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libfsrawconference.so         30308
+usr/lib/x86_64-linux-gnu/libfarstream-0.2.so.5.1.1                   30307
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libfsrtpconference.so         30306
+usr/lib/x86_64-linux-gnu/libgstrtp-1.0.so.0.1804.0                   30303
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libfsrtpxdata.so              30302
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libfsvideoanyrate.so          30301
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgst1394.so                 30300
+usr/lib/x86_64-linux-gnu/libraw1394.so.11.1.0                        30299
+usr/lib/x86_64-linux-gnu/libavc1394.so.0.3.0                         30298
+usr/lib/x86_64-linux-gnu/librom1394.so.0.3.0                         30297
+usr/lib/x86_64-linux-gnu/libiec61883.so.0.1.1                        30296
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgsta52dec.so               30295
+usr/lib/x86_64-linux-gnu/liba52-0.7.4.so                             30294
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaasink.so               30293
+usr/lib/x86_64-linux-gnu/libaa.so.1.0.4                              30292
+lib/x86_64-linux-gnu/libncurses.so.6.2                               30291
+usr/lib/x86_64-linux-gnu/libslang.so.2.3.2                           30290
+usr/lib/x86_64-linux-gnu/libgpm.so.2                                 30287
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaccurip.so              30286
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstadder.so                30285
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstadpcmdec.so             30284
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstadpcmenc.so             30283
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaiff.so                 30282
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstalaw.so                 30281
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstalpha.so                30280
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstalphacolor.so           30279
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstamrnb.so                30278
+usr/lib/x86_64-linux-gnu/libopencore-amrnb.so.0.0.3                  30277
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstamrwbdec.so             30276
+usr/lib/x86_64-linux-gnu/libopencore-amrwb.so.0.0.3                  30275
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaom.so                  30274
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstapetag.so               30273
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstapp.so                  30272
+usr/lib/x86_64-linux-gnu/libgstapp-1.0.so.0.1804.0                   30271
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstasf.so                  30270
+usr/lib/x86_64-linux-gnu/libgstriff-1.0.so.0.1804.0                  30266
+usr/lib/x86_64-linux-gnu/libgstrtsp-1.0.so.0.1804.0                  30265
+usr/lib/x86_64-linux-gnu/libgstsdp-1.0.so.0.1804.0                   30264
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstasfmux.so               30263
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstassrender.so            30262
+usr/lib/x86_64-linux-gnu/libass.so.9.1.1                             30261
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaudiobuffersplit.so     30260
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaudioconvert.so         30259
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaudiofx.so              30258
+usr/lib/x86_64-linux-gnu/libgstfft-1.0.so.0.1804.0                   30257
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaudiofxbad.so           30256
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaudiolatency.so         30255
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaudiomixer.so           30254
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaudiomixmatrix.so       30253
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaudioparsers.so         30252
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaudiorate.so            30251
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaudioresample.so        30250
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaudiotestsrc.so         30249
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaudiovisualizers.so     30248
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstauparse.so              30247
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstautoconvert.so          30246
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstautodetect.so           30245
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstavi.so                  30244
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstbayer.so                30243
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstbluez.so                30242
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstbs2b.so                 30241
+usr/lib/x86_64-linux-gnu/libbs2b.so.0.0.0                            30240
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstbz2.so                  30239
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstcacasink.so             30238
+usr/lib/x86_64-linux-gnu/libcaca.so.0.99.19                          30237
+lib/x86_64-linux-gnu/libncursesw.so.6.2                              30236
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstcairo.so                30235
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstcamerabin.so            30234
+usr/lib/x86_64-linux-gnu/libgstbasecamerabinsrc-1.0.so.0.1804.0      30233
+usr/lib/x86_64-linux-gnu/libgstphotography-1.0.so.0.1804.0           30232
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstcdio.so                 30231
+usr/lib/x86_64-linux-gnu/libcdio.so.19.0.0                           30230
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstcdparanoia.so           30229
+usr/lib/x86_64-linux-gnu/libcdda_paranoia.so.0.10.2                  30228
+usr/lib/x86_64-linux-gnu/libcdda_interface.so.0.10.2                 30227
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstchromaprint.so          30226
+usr/lib/x86_64-linux-gnu/libchromaprint.so.1.5.0                     30225
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstclosedcaption.so        30224
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstcoloreffects.so         30223
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstcolormanagement.so      30222
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstcompositor.so           30221
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstcoreelements.so         30220
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstcoretracers.so          30219
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstcurl.so                 30218
+usr/lib/x86_64-linux-gnu/libcurl-gnutls.so.4.7.0                     30217
+usr/lib/x86_64-linux-gnu/libnghttp2.so.14.20.1                       30216
+usr/lib/x86_64-linux-gnu/librtmp.so.1                                30215
+usr/lib/x86_64-linux-gnu/libssh2.so.1.0.1                            30214
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstcutter.so               30213
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdash.so                 30212
+usr/lib/x86_64-linux-gnu/libgstadaptivedemux-1.0.so.0.1804.0         30211
+usr/lib/x86_64-linux-gnu/libgsturidownloader-1.0.so.0.1804.0         30210
+usr/lib/x86_64-linux-gnu/libgstisoff-1.0.so.0.1804.0                 30209
+usr/lib/x86_64-linux-gnu/libgstnet-1.0.so.0.1804.0                   30208
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdc1394.so               30207
+usr/lib/x86_64-linux-gnu/libdc1394.so.25.0.0                         30206
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstde265.so                30205
+usr/lib/x86_64-linux-gnu/libde265.so.0.1.4                           30204
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdebug.so                30203
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdebugutilsbad.so        30202
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdecklink.so             30201
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdeinterlace.so          30200
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdtls.so                 30199
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdtmf.so                 30198
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdtsdec.so               30197
+usr/lib/x86_64-linux-gnu/libdca.so.0.0.0                             30196
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdv.so                   30195
+usr/lib/x86_64-linux-gnu/libdv.so.4.0.3                              30194
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdvb.so                  30193
+usr/lib/x86_64-linux-gnu/libgstmpegts-1.0.so.0.1804.0                30192
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdvbsubenc.so            30191
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdvbsuboverlay.so        30190
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdvdlpcmdec.so           30189
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdvdread.so              30188
+usr/lib/x86_64-linux-gnu/libdvdread.so.8.0.0                         30187
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdvdspu.so               30186
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdvdsub.so               30185
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgsteffectv.so              30184
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstencoding.so             30183
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstequalizer.so            30182
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstfaad.so                 30181
+usr/lib/x86_64-linux-gnu/libfaad.so.2.0.0                            30180
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstfaceoverlay.so          30179
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstfbdevsink.so            30178
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstfestival.so             30177
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstfieldanalysis.so        30176
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstflac.so                 30175
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstflite.so                30174
+usr/lib/x86_64-linux-gnu/libflite.so.2.2                             30173
+usr/lib/x86_64-linux-gnu/libflite_cmu_us_kal.so.2.2                  30172
+usr/lib/x86_64-linux-gnu/libflite_usenglish.so.2.2                   30171
+usr/lib/x86_64-linux-gnu/libflite_cmulex.so.2.2                      30170
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstfluidsynthmidi.so       30169
+usr/lib/x86_64-linux-gnu/libfluidsynth.so.2.3.7                      30168
+usr/lib/x86_64-linux-gnu/libjack.so.0.1.0                            30167
+usr/lib/x86_64-linux-gnu/libpulse-simple.so.0.1.1                    30166
+usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.14.0                       30165
+usr/lib/x86_64-linux-gnu/libinstpatch-1.0.so.2.2.0                   30164
+usr/lib/x86_64-linux-gnu/libXss.so.1.0.0                             30163
+usr/lib/x86_64-linux-gnu/libXxf86vm.so.1.0.0                         30162
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstflv.so                  30161
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstflxdec.so               30160
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstfreeverb.so             30159
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstfrei0r.so               30158
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstgaudieffects.so         30157
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstgdkpixbuf.so            30156
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstgdp.so                  30155
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstgeometrictransform.so   30154
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstgio.so                  30153
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstgme.so                  30152
+usr/lib/x86_64-linux-gnu/libgme.so.0.6.3                             30151
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstgoom.so                 30150
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstgoom2k1.so              30149
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstgsm.so                  30148
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgsthls.so                  30147
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgsticydemux.so             30146
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstid3demux.so             30145
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstid3tag.so               30144
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstimagefreeze.so          30143
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstinter.so                30142
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstinterlace.so            30141
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstinterleave.so           30140
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstipcpipeline.so          30139
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstisomp4.so               30138
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstivfparse.so             30137
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstivtc.so                 30136
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstjack.so                 30135
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstjp2kdecimator.so        30134
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstjpeg.so                 30133
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstjpegformat.so           30132
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstkate.so                 30131
+usr/lib/x86_64-linux-gnu/libkate.so.1.3.0                            30130
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstkms.so                  30129
+usr/lib/x86_64-linux-gnu/libgstallocators-1.0.so.0.1804.0            30128
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstladspa.so               30127
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstlame.so                 30126
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstlegacyrawparse.so       30125
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstlevel.so                30124
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstlibav.so                30123
+usr/lib/x86_64-linux-gnu/libavfilter.so.7.85.100                     30122
+usr/lib/x86_64-linux-gnu/libavformat.so.58.45.100                    30121
+usr/lib/x86_64-linux-gnu/libswscale.so.5.7.100                       30117
+usr/lib/x86_64-linux-gnu/libpostproc.so.55.7.100                     30116
+usr/lib/x86_64-linux-gnu/libpocketsphinx.so.3.0.0                    30115
+usr/lib/x86_64-linux-gnu/libsphinxbase.so.3.0.0                      30114
+usr/share/X11/xkb/rules/evdev                                        30112
+usr/share/X11/xkb/keycodes/evdev                                     30111
+usr/share/X11/xkb/keycodes/aliases                                   30110
+usr/share/X11/xkb/types/complete                                     30109
+usr/share/X11/xkb/types/basic                                        30108
+usr/share/X11/xkb/types/mousekeys                                    30107
+usr/share/X11/xkb/types/pc                                           30106
+usr/share/X11/xkb/types/iso9995                                      30105
+usr/share/X11/xkb/types/level5                                       30104
+usr/share/X11/xkb/types/extra                                        30103
+usr/share/X11/xkb/types/numpad                                       30102
+usr/share/X11/xkb/compat/complete                                    30101
+usr/share/X11/xkb/compat/basic                                       30100
+usr/share/X11/xkb/compat/ledcaps                                     30099
+usr/share/X11/xkb/compat/lednum                                      30098
+usr/share/X11/xkb/compat/iso9995                                     30097
+usr/share/X11/xkb/compat/mousekeys                                   30096
+usr/share/X11/xkb/compat/accessx                                     30095
+usr/share/X11/xkb/compat/misc                                        30094
+usr/share/X11/xkb/compat/ledscroll                                   30093
+usr/lib/x86_64-linux-gnu/liblilv-0.so.0.24.12                        30092
+usr/share/X11/xkb/compat/xfree86                                     30091
+usr/share/X11/xkb/compat/level5                                      30090
+usr/lib/x86_64-linux-gnu/librubberband.so.2.1.2                      30089
+usr/share/X11/xkb/compat/caps                                        30088
+usr/share/X11/xkb/symbols/pc                                         30087
+usr/share/X11/xkb/symbols/srvr_ctrl                                  30086
+usr/lib/x86_64-linux-gnu/libmysofa.so.1.1.0                          30085
+usr/lib/x86_64-linux-gnu/libflite_cmu_us_awb.so.2.2                  30084
+usr/share/X11/xkb/symbols/keypad                                     30083
+usr/share/X11/xkb/symbols/altwin                                     30082
+usr/share/X11/xkb/symbols/us                                         30081
+usr/share/X11/xkb/symbols/inet                                       30080
+usr/lib/x86_64-linux-gnu/libflite_cmu_us_kal16.so.2.2                30079
+usr/libexec/at-spi-bus-launcher                                      30078
+usr/share/defaults/at-spi2/accessibility.conf                        30077
+usr/lib/x86_64-linux-gnu/libflite_cmu_us_rms.so.2.2                  30076
+usr/share/dbus-1/accessibility-services/org.a11y.atspi.Registry.service 30075
+usr/lib/x86_64-linux-gnu/libflite_cmu_us_slt.so.2.2                  30074
+usr/share/icons/Adwaita/cursors/left_ptr                             30073
+usr/bin/Xwayland                                                     30072
+usr/lib/x86_64-linux-gnu/libvidstab.so.1.1                           30071
+usr/lib/x86_64-linux-gnu/libzmq.so.5.2.4                             30070
+usr/lib/x86_64-linux-gnu/libopenmpt.so.0.1.1                         30068
+usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders.cache         30066
+usr/lib/x86_64-linux-gnu/mutter-7/Clutter-7.typelib                  30065
+usr/lib/x86_64-linux-gnu/girepository-1.0/cairo-1.0.typelib          30064
+usr/lib/x86_64-linux-gnu/libXfont2.so.2.0.0                          30063
+usr/lib/x86_64-linux-gnu/libfontenc.so.1.0.0                         30062
+usr/lib/x86_64-linux-gnu/girepository-1.0/Json-1.0.typelib           30061
+usr/lib/x86_64-linux-gnu/girepository-1.0/Gio-2.0.typelib            30060
+usr/lib/xorg/protocol.txt                                            30059
+usr/lib/x86_64-linux-gnu/girepository-1.0/GObject-2.0.typelib        30058
+usr/lib/x86_64-linux-gnu/girepository-1.0/GLib-2.0.typelib           30057
+usr/lib/x86_64-linux-gnu/girepository-1.0/GL-1.0.typelib             30056
+usr/lib/x86_64-linux-gnu/mutter-7/CoglPango-7.typelib                30055
+usr/lib/x86_64-linux-gnu/girepository-1.0/PangoCairo-1.0.typelib     30054
+usr/lib/x86_64-linux-gnu/girepository-1.0/Pango-1.0.typelib          30053
+usr/lib/x86_64-linux-gnu/girepository-1.0/HarfBuzz-0.0.typelib       30052
+usr/lib/x86_64-linux-gnu/mutter-7/Cogl-7.typelib                     30051
+usr/lib/x86_64-linux-gnu/girepository-1.0/Graphene-1.0.typelib       30050
+usr/lib/x86_64-linux-gnu/girepository-1.0/Atk-1.0.typelib            30049
+usr/lib/x86_64-linux-gnu/gjs/girepository-1.0/GjsPrivate-1.0.typelib 30048
+usr/lib/x86_64-linux-gnu/mutter-7/Meta-7.typelib                     30047
+usr/lib/x86_64-linux-gnu/girepository-1.0/xlib-2.0.typelib           30046
+usr/lib/x86_64-linux-gnu/girepository-1.0/xfixes-4.0.typelib         30045
+usr/lib/x86_64-linux-gnu/girepository-1.0/Gtk-3.0.typelib            30044
+usr/lib/x86_64-linux-gnu/girepository-1.0/Gdk-3.0.typelib            30043
+usr/lib/x86_64-linux-gnu/girepository-1.0/GdkPixbuf-2.0.typelib      30042
+usr/lib/x86_64-linux-gnu/girepository-1.0/GModule-2.0.typelib        30041
+usr/lib/x86_64-linux-gnu/girepository-1.0/GDesktopEnums-3.0.typelib  30040
+usr/lib/x86_64-linux-gnu/girepository-1.0/Polkit-1.0.typelib         30039
+usr/lib/x86_64-linux-gnu/librabbitmq.so.4.4.0                        30038
+usr/lib/gnome-shell/Shell-0.1.typelib                                30037
+usr/lib/gnome-shell/St-1.0.typelib                                   30036
+usr/lib/x86_64-linux-gnu/mutter-7/Cally-7.typelib                    30035
+usr/lib/x86_64-linux-gnu/girepository-1.0/PolkitAgent-1.0.typelib    30034
+usr/lib/x86_64-linux-gnu/girepository-1.0/NM-1.0.typelib             30033
+usr/lib/gnome-shell/Gvc-1.0.typelib                                  30032
+usr/lib/x86_64-linux-gnu/girepository-1.0/Gcr-3.typelib              30031
+usr/lib/x86_64-linux-gnu/girepository-1.0/Gck-1.typelib              30030
+usr/lib/x86_64-linux-gnu/mutter-7/ClutterX11-7.typelib               30029
+usr/lib/x86_64-linux-gnu/libsrt-gnutls.so.1.4.2                      30028
+usr/lib/x86_64-linux-gnu/libssh-gcrypt.so.4.8.6                      30027
+usr/lib/x86_64-linux-gnu/girepository-1.0/GnomeDesktop-3.0.typelib   30025
+usr/share/gnome-shell/gnome-shell-dbus-interfaces.gresource          30024
+usr/local/lib/udev-watchdog-wrapper                                  30023
+usr/lib/x86_64-linux-gnu/blas/libblas.so.3.9.0                       30022
+usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3.9.0                   30021
+usr/lib/x86_64-linux-gnu/girepository-1.0/AccountsService-1.0.typelib 30020
+usr/lib/x86_64-linux-gnu/girepository-1.0/UPowerGlib-1.0.typelib     30019
+usr/lib/x86_64-linux-gnu/girepository-1.0/Soup-2.4.typelib           30018
+usr/lib/x86_64-linux-gnu/girepository-1.0/IBus-1.0.typelib           30017
+usr/lib/x86_64-linux-gnu/libserd-0.so.0.30.10                        30016
+usr/lib/x86_64-linux-gnu/libibus-1.0.so.5.0.523                      30015
+usr/lib/x86_64-linux-gnu/libsord-0.so.0.16.8                         30014
+usr/lib/x86_64-linux-gnu/libsratom-0.so.0.6.8                        30013
+usr/lib/x86_64-linux-gnu/libsamplerate.so.0.2.1                      30012
+usr/lib/x86_64-linux-gnu/girepository-1.0/GIRepository-2.0.typelib   30011
+usr/lib/x86_64-linux-gnu/girepository-1.0/Gdm-1.0.typelib            30010
+usr/share/locale/en/LC_MESSAGES/gtk30-properties.mo                  30009
+usr/lib/x86_64-linux-gnu/libfftw3.so.3.5.8                           30008
 usr/lib/x86_64-linux-gnu/girepository-1.0/Rsvg-2.0.typelib           30007
 usr/lib/x86_64-linux-gnu/girepository-1.0/GWeather-3.0.typelib       30006
 usr/lib/x86_64-linux-gnu/girepository-1.0/Geoclue-2.0.typelib        30005
 usr/lib/x86_64-linux-gnu/libgeoclue-2.so.0.0.0                       30004
-usr/lib/x86_64-linux-gnu/libgdm.so.1.0.0                             30003
-usr/lib/x86_64-linux-gnu/girepository-1.0/Atspi-2.0.typelib          30002
-usr/lib/x86_64-linux-gnu/girepository-1.0/DBus-1.0.typelib           30001
-usr/share/gnome-shell/modes/classic.json                             30000
-usr/share/gnome-shell/modes/gdm-tails.json                           29999
-usr/share/desktop-directories/ActionGames.directory                  29998
-usr/share/desktop-directories/AdventureGames.directory               29997
-usr/share/desktop-directories/ArcadeGames.directory                  29996
-usr/share/desktop-directories/AudioVideo.directory                   29995
-usr/share/desktop-directories/BlocksGames.directory                  29994
-usr/share/desktop-directories/BoardGames.directory                   29993
-usr/share/desktop-directories/CardGames.directory                    29992
-usr/share/desktop-directories/Debian.directory                       29991
-usr/share/desktop-directories/Development.directory                  29990
-usr/share/desktop-directories/Education.directory                    29989
-usr/share/desktop-directories/Game.directory                         29988
-usr/share/desktop-directories/GnomeScience.directory                 29987
-usr/share/desktop-directories/Graphics.directory                     29986
-usr/share/desktop-directories/KidsGames.directory                    29985
-usr/share/desktop-directories/LogicGames.directory                   29984
-usr/share/desktop-directories/Network.directory                      29983
-usr/share/desktop-directories/Office.directory                       29982
-usr/share/desktop-directories/RolePlayingGames.directory             29981
-usr/share/desktop-directories/Settings-System.directory              29980
-usr/share/desktop-directories/Settings.directory                     29979
-usr/share/desktop-directories/SimulationGames.directory              29978
-usr/share/desktop-directories/SportsGames.directory                  29977
-usr/share/desktop-directories/StrategyGames.directory                29976
-usr/share/desktop-directories/System-Tools.directory                 29975
-usr/share/desktop-directories/Tails.directory                        29974
-usr/share/desktop-directories/Utility-Accessibility.directory        29973
-usr/share/desktop-directories/Utility.directory                      29972
-usr/share/desktop-directories/X-GNOME-Menu-Applications.directory    29971
-usr/share/desktop-directories/X-GNOME-Other.directory                29970
-usr/share/desktop-directories/X-GNOME-Sundry.directory               29969
-usr/share/desktop-directories/X-GNOME-SystemSettings.directory       29968
-usr/share/desktop-directories/X-GNOME-Utilities.directory            29967
-usr/share/desktop-directories/X-GNOME-WebApplications.directory      29966
-etc/xdg/gnome-mimeapps.list                                          29965
-usr/local/share/mime/mime.cache                                      29964
-usr/share/mime/mime.cache                                            29963
-usr/share/gdm/greeter/applications/mimeapps.list                     29962
-usr/share/applications/gnome-mimeapps.list                           29961
-usr/share/applications/mimeinfo.cache                                29960
-usr/share/gdm/greeter/applications/mime-dummy-handler.desktop        29959
-usr/share/applications/gnome-applications-panel.desktop              29958
-usr/share/applications/tails-documentation.desktop                   29957
-usr/share/applications/org.gnome.gedit.desktop                       29956
-usr/share/applications/bookletimposer.desktop                        29955
-usr/share/applications/org.gnome.Shell.Extensions.desktop            29954
-usr/share/applications/tor-browser.desktop                           29953
-usr/share/applications/libreoffice-xsltfilter.desktop                29952
-usr/share/applications/org.kde.kded5.desktop                         29951
-usr/share/applications/vim.desktop                                   29950
-usr/share/applications/libreoffice-startcenter.desktop               29949
-usr/share/applications/org.gnome.Terminal.desktop                    29948
-usr/share/applications/ibus-setup-hangul.desktop                     29947
-usr/share/applications/gnome-datetime-panel.desktop                  29946
-usr/share/applications/gnome-system-monitor-kde.desktop              29945
-usr/share/applications/nm-applet.desktop                             29944
-usr/share/applications/pidgin.desktop                                29943
-usr/share/applications/gcr-viewer.desktop                            29942
-usr/share/applications/evolution-calendar.desktop                    29941
-usr/share/applications/electrum.desktop                              29940
-usr/share/applications/gnome-user-accounts-panel.desktop             29939
-usr/share/applications/unlock-veracrypt-volumes.desktop              29938
-usr/share/applications/org.gnome.DiskUtility.desktop                 29937
-usr/share/applications/libreoffice-writer.desktop                    29936
-usr/share/applications/tails-installer.desktop                       29935
-usr/share/applications/gnome-microphone-panel.desktop                29934
-usr/share/applications/org.gnome.Nautilus.desktop                    29933
-usr/share/applications/org.gnome.Evince.desktop                      29932
-usr/share/applications/gnome-usage-panel.desktop                     29931
-usr/share/applications/root-terminal.desktop                         29930
-usr/share/applications/simple-scan.desktop                           29929
-usr/share/applications/org.gnome.Evolution-alarm-notify.desktop      29928
-usr/share/applications/org.gnome.Evince-previewer.desktop            29927
-usr/share/applications/gnome-background-panel.desktop                29926
-usr/share/applications/org.gnome.SoundJuicer.desktop                 29925
-usr/share/applications/tails-backup.desktop                          29924
-usr/share/applications/gnome-sharing-panel.desktop                   29923
-usr/share/applications/org.gnome.Shell.PortalHelper.desktop          29922
-usr/share/applications/org.onionshare.OnionShare.desktop             29921
-usr/share/applications/ktelnetservice5.desktop                       29920
-usr/share/applications/gnome-universal-access-panel.desktop          29919
-usr/share/applications/whisperback.desktop                           29918
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstlibvisual.so            29917
-usr/lib/x86_64-linux-gnu/libvisual-0.4.so.0.0.0                      29916
-usr/share/applications/org.gnome.PowerStats.desktop                  29915
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstlv2.so                  29914
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmatroska.so             29913
-usr/share/applications/gnome-location-panel.desktop                  29912
-usr/share/applications/gnome-lock-panel.desktop                      29911
-usr/share/applications/gnome-printers-panel.desktop                  29910
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmidi.so                 29909
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmms.so                  29908
+usr/lib/x86_64-linux-gnu/libsodium.so.23.3.0                         30003
+usr/lib/x86_64-linux-gnu/libgdm.so.1.0.0                             30002
+usr/lib/x86_64-linux-gnu/libpgm-5.3.so.0.0.128                       30001
+usr/lib/x86_64-linux-gnu/libnorm.so.1                                30000
+usr/lib/x86_64-linux-gnu/libmpg123.so.0.45.3                         29999
+usr/lib/x86_64-linux-gnu/girepository-1.0/Atspi-2.0.typelib          29998
+usr/lib/x86_64-linux-gnu/girepository-1.0/DBus-1.0.typelib           29997
+usr/share/gnome-shell/modes/classic.json                             29996
+usr/share/gnome-shell/modes/gdm-tails.json                           29995
+usr/share/desktop-directories/ActionGames.directory                  29994
+usr/share/desktop-directories/AdventureGames.directory               29993
+usr/share/desktop-directories/ArcadeGames.directory                  29992
+usr/share/desktop-directories/AudioVideo.directory                   29991
+usr/share/desktop-directories/BlocksGames.directory                  29990
+usr/share/desktop-directories/BoardGames.directory                   29989
+usr/share/desktop-directories/CardGames.directory                    29988
+usr/share/desktop-directories/Debian.directory                       29987
+usr/share/desktop-directories/Development.directory                  29986
+usr/share/desktop-directories/Education.directory                    29985
+usr/share/desktop-directories/Game.directory                         29984
+usr/share/desktop-directories/GnomeScience.directory                 29983
+usr/share/desktop-directories/Graphics.directory                     29982
+usr/lib/x86_64-linux-gnu/libgfortran.so.5.0.0                        29981
+usr/share/desktop-directories/KidsGames.directory                    29980
+usr/share/desktop-directories/LogicGames.directory                   29979
+usr/share/desktop-directories/Network.directory                      29978
+usr/share/desktop-directories/Office.directory                       29977
+usr/share/desktop-directories/RolePlayingGames.directory             29976
+usr/share/desktop-directories/Settings-System.directory              29975
+usr/share/desktop-directories/Settings.directory                     29974
+usr/share/desktop-directories/SimulationGames.directory              29973
+usr/share/desktop-directories/SportsGames.directory                  29972
+usr/share/desktop-directories/StrategyGames.directory                29971
+usr/share/desktop-directories/System-Tools.directory                 29970
+usr/share/desktop-directories/Tails.directory                        29969
+usr/share/desktop-directories/Utility-Accessibility.directory        29968
+usr/share/desktop-directories/Utility.directory                      29967
+usr/share/desktop-directories/X-GNOME-Menu-Applications.directory    29966
+usr/share/desktop-directories/X-GNOME-Other.directory                29965
+usr/share/desktop-directories/X-GNOME-Sundry.directory               29964
+usr/share/desktop-directories/X-GNOME-SystemSettings.directory       29963
+usr/share/desktop-directories/X-GNOME-Utilities.directory            29962
+usr/share/desktop-directories/X-GNOME-WebApplications.directory      29961
+etc/xdg/gnome-mimeapps.list                                          29960
+usr/local/share/mime/mime.cache                                      29959
+usr/share/mime/mime.cache                                            29958
+usr/share/gdm/greeter/applications/mimeapps.list                     29957
+usr/share/applications/gnome-mimeapps.list                           29956
+usr/share/applications/mimeinfo.cache                                29955
+usr/share/gdm/greeter/applications/mime-dummy-handler.desktop        29954
+usr/share/applications/gnome-applications-panel.desktop              29953
+usr/share/applications/tails-documentation.desktop                   29952
+usr/share/applications/org.gnome.gedit.desktop                       29951
+usr/share/applications/bookletimposer.desktop                        29950
+usr/share/applications/org.gnome.Shell.Extensions.desktop            29949
+usr/share/applications/tor-browser.desktop                           29948
+usr/share/applications/libreoffice-xsltfilter.desktop                29947
+usr/share/applications/org.kde.kded5.desktop                         29946
+usr/share/applications/vim.desktop                                   29945
+usr/share/applications/libreoffice-startcenter.desktop               29944
+usr/share/applications/org.gnome.Terminal.desktop                    29943
+usr/share/applications/ibus-setup-hangul.desktop                     29942
+usr/share/applications/gnome-datetime-panel.desktop                  29941
+usr/share/applications/gnome-system-monitor-kde.desktop              29940
+usr/share/applications/nm-applet.desktop                             29939
+usr/share/applications/pidgin.desktop                                29938
+usr/lib/x86_64-linux-gnu/libquadmath.so.0.0.0                        29937
+usr/share/applications/gcr-viewer.desktop                            29936
+usr/share/applications/evolution-calendar.desktop                    29935
+usr/share/applications/electrum.desktop                              29934
+usr/share/applications/gnome-user-accounts-panel.desktop             29933
+usr/share/applications/unlock-veracrypt-volumes.desktop              29932
+usr/share/applications/org.gnome.DiskUtility.desktop                 29931
+usr/share/applications/libreoffice-writer.desktop                    29930
+usr/share/applications/tails-installer.desktop                       29929
+usr/share/applications/gnome-microphone-panel.desktop                29928
+usr/share/applications/org.gnome.Nautilus.desktop                    29927
+usr/share/applications/org.gnome.Evince.desktop                      29926
+usr/share/applications/gnome-usage-panel.desktop                     29925
+usr/share/applications/root-terminal.desktop                         29924
+usr/share/applications/simple-scan.desktop                           29923
+usr/share/applications/org.gnome.Evolution-alarm-notify.desktop      29922
+usr/share/applications/org.gnome.Evince-previewer.desktop            29921
+usr/share/applications/gnome-background-panel.desktop                29920
+usr/share/applications/org.gnome.SoundJuicer.desktop                 29919
+usr/share/applications/tails-backup.desktop                          29918
+usr/share/applications/gnome-sharing-panel.desktop                   29917
+usr/share/applications/org.gnome.Shell.PortalHelper.desktop          29916
+usr/share/applications/org.onionshare.OnionShare.desktop             29915
+usr/share/applications/ktelnetservice5.desktop                       29914
+usr/share/applications/gnome-universal-access-panel.desktop          29913
+usr/share/applications/whisperback.desktop                           29912
+usr/share/applications/org.gnome.PowerStats.desktop                  29911
+usr/share/applications/gnome-location-panel.desktop                  29910
+usr/share/applications/gnome-lock-panel.desktop                      29909
+usr/share/applications/gnome-printers-panel.desktop                  29908
 usr/share/applications/thunderbird.desktop                           29907
 usr/share/applications/gnome-thunderbolt-panel.desktop               29906
 usr/share/applications/ibus-setup-chewing.desktop                    29905
@@ -2314,2909 +2318,2912 @@ usr/share/applications/ibus-setup-libbopomofo.desktop                29894
 usr/share/applications/gnome-notifications-panel.desktop             29893
 usr/share/applications/ibus-setup-Unikey.desktop                     29892
 usr/share/applications/gtkhash.desktop                               29891
-usr/lib/x86_64-linux-gnu/libmms.so.0.0.2                             29890
-usr/share/applications/nautilus-autorun-software.desktop             29889
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmodplug.so              29888
-usr/lib/x86_64-linux-gnu/libmodplug.so.1.0.0                         29887
-usr/share/applications/org.gnome.FileRoller.desktop                  29886
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmonoscope.so            29885
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmpeg2dec.so             29884
-usr/lib/x86_64-linux-gnu/libmpeg2.so.0.1.0                           29883
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmpeg2enc.so             29882
-usr/share/applications/gnome-color-panel.desktop                     29881
-usr/lib/x86_64-linux-gnu/libmjpegutils-2.1.so.0.0.0                  29880
-usr/share/applications/gnome-bluetooth-panel.desktop                 29879
-usr/lib/x86_64-linux-gnu/libmpeg2encpp-2.1.so.0.0.0                  29878
-usr/share/applications/org.inkscape.Inkscape.desktop                 29877
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmpegpsdemux.so          29876
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmpegpsmux.so            29875
-usr/share/applications/python3.9.desktop                             29874
-usr/share/applications/gnome-control-center.desktop                  29873
-usr/share/applications/brasero-nautilus.desktop                      29872
-usr/share/applications/libreoffice-impress.desktop                   29871
-usr/share/applications/audacity.desktop                              29870
-usr/share/applications/gnome-disk-image-mounter.desktop              29869
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmpegtsdemux.so          29868
-usr/share/applications/gimp.desktop                                  29867
-usr/lib/x86_64-linux-gnu/libgstcodecparsers-1.0.so.0.1804.0          29866
-usr/share/applications/gnome-network-panel.desktop                   29865
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmpegtsmux.so            29864
-usr/share/applications/gnome-removable-media-panel.desktop           29863
-usr/share/applications/gnome-wacom-panel.desktop                     29862
-usr/share/applications/gnome-camera-panel.desktop                    29861
-usr/share/applications/gnome-mouse-panel.desktop                     29860
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmpg123.so               29859
-usr/share/applications/gnome-keyboard-panel.desktop                  29858
-usr/share/applications/org.gnome.SoundRecorder.desktop               29857
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmplex.so                29856
-usr/lib/x86_64-linux-gnu/libmplex2-2.1.so.0.0.0                      29855
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmsdk.so                 29854
-usr/share/applications/gnome-wifi-panel.desktop                      29853
-usr/share/applications/gnome-sound-panel.desktop                     29852
-usr/share/applications/fr.romainvigier.MetadataCleaner.desktop       29851
-usr/share/applications/brasero.desktop                               29850
-usr/share/applications/yelp.desktop                                  29849
-usr/share/applications/org.freedesktop.IBus.Panel.Extension.Gtk3.desktop 29848
-usr/share/applications/gnome-display-panel.desktop                   29847
-usr/share/applications/gnome-power-panel.desktop                     29846
-usr/share/applications/onioncircuits.desktop                         29845
-usr/share/applications/gnome-system-monitor.desktop                  29844
-usr/share/applications/org.kde.kleopatra.desktop                     29843
-usr/lib/x86_64-linux-gnu/libmfxhw64.so.1.34                          29842
-usr/share/applications/org.gnome.Screenshot.desktop                  29841
-usr/share/applications/gnome-region-panel.desktop                    29840
-usr/share/applications/libreoffice-draw.desktop                      29839
-usr/share/applications/gnome-default-apps-panel.desktop              29838
-usr/share/applications/gnome-diagnostics-panel.desktop               29837
-usr/share/applications/org.gnome.Calculator.desktop                  29836
-usr/share/applications/org.gnome.eog.desktop                         29835
-usr/share/applications/org.gnome.Shell.desktop                       29834
-usr/share/applications/kleopatra_import.desktop                      29833
-usr/share/applications/libreoffice-calc.desktop                      29832
-usr/share/applications/gcr-prompter.desktop                          29831
-usr/share/applications/gnome-disk-image-writer.desktop               29830
-usr/share/applications/org.keepassxc.KeePassXC.desktop               29829
-usr/share/applications/gnome-info-overview-panel.desktop             29828
-usr/share/applications/tca.desktop                                   29827
-usr/share/applications/tails-about.desktop                           29826
-usr/share/gnome-shell/gnome-shell-theme.gresource                    29825
-usr/share/gnome-shell/gnome-shell-osk-layouts.gresource              29824
-usr/share/gnome-shell/theme/gnome-classic.css                        29823
-usr/share/locale/en/LC_MESSAGES/gnome-desktop-3.0.mo                 29822
-usr/share/tails/desktop_wallpaper.png                                29821
-usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-png.so 29820
-etc/fonts/fonts.conf                                                 29819
-usr/share/fontconfig/conf.avail/10-hinting-slight.conf               29818
-usr/share/fontconfig/conf.avail/10-scale-bitmap-fonts.conf           29817
-usr/share/fontconfig/conf.avail/11-lcdfilter-default.conf            29816
-etc/fonts/conf.avail/20-unhint-small-dejavu-lgc-sans-mono.conf       29815
-etc/fonts/conf.avail/20-unhint-small-dejavu-lgc-sans.conf            29814
-etc/fonts/conf.avail/20-unhint-small-dejavu-lgc-serif.conf           29813
-etc/fonts/conf.avail/20-unhint-small-dejavu-sans-mono.conf           29812
-etc/fonts/conf.avail/20-unhint-small-dejavu-sans.conf                29811
-etc/fonts/conf.avail/20-unhint-small-dejavu-serif.conf               29810
-usr/share/fontconfig/conf.avail/20-unhint-small-vera.conf            29809
-usr/share/fontconfig/conf.avail/30-metric-aliases.conf               29808
-usr/share/fontconfig/conf.avail/30-opensymbol.conf                   29807
-usr/share/fontconfig/conf.avail/40-nonlatin.conf                     29806
-usr/share/fontconfig/conf.avail/45-generic.conf                      29805
-usr/share/fontconfig/conf.avail/45-latin.conf                        29804
-usr/share/fontconfig/conf.avail/49-sansserif.conf                    29803
-usr/share/fontconfig/conf.avail/50-user.conf                         29802
-usr/share/fontconfig/conf.avail/51-local.conf                        29801
-etc/fonts/conf.avail/57-dejavu-sans-mono.conf                        29800
-etc/fonts/conf.avail/57-dejavu-sans.conf                             29799
-etc/fonts/conf.avail/57-dejavu-serif.conf                            29798
-etc/fonts/conf.avail/58-dejavu-lgc-sans-mono.conf                    29797
-etc/fonts/conf.avail/58-dejavu-lgc-sans.conf                         29796
-etc/fonts/conf.avail/58-dejavu-lgc-serif.conf                        29795
-usr/share/fontconfig/conf.avail/60-generic.conf                      29794
-usr/share/fontconfig/conf.avail/60-latin.conf                        29793
-usr/share/fontconfig/conf.avail/urw-bookman.conf                     29792
-usr/share/fontconfig/conf.avail/urw-c059.conf                        29791
-usr/share/fontconfig/conf.avail/urw-d050000l.conf                    29790
-usr/share/fontconfig/conf.avail/urw-fallback-backwards.conf          29789
-usr/share/fontconfig/conf.avail/urw-fallback-generics.conf           29788
-usr/share/fontconfig/conf.avail/urw-gothic.conf                      29787
-usr/share/fontconfig/conf.avail/urw-nimbus-mono-ps.conf              29786
-usr/share/fontconfig/conf.avail/urw-nimbus-roman.conf                29785
-usr/share/fontconfig/conf.avail/urw-nimbus-sans.conf                 29784
-usr/share/fontconfig/conf.avail/urw-p052.conf                        29783
-usr/share/fontconfig/conf.avail/urw-standard-symbols-ps.conf         29782
-usr/share/fontconfig/conf.avail/urw-z003.conf                        29781
-etc/fonts/conf.avail/65-culmus.conf                                  29780
-usr/share/fontconfig/conf.avail/65-fonts-persian.conf                29779
-usr/share/fontconfig/conf.avail/65-nonlatin.conf                     29778
-usr/share/fontconfig/conf.avail/69-unifont.conf                      29777
-usr/share/fontconfig/conf.avail/70-fonts-noto-cjk.conf               29776
-usr/share/fontconfig/conf.avail/70-no-bitmaps.conf                   29775
-usr/share/fontconfig/conf.avail/80-delicious.conf                    29774
-usr/share/fontconfig/conf.avail/90-fonts-linux-libertine.conf        29773
-usr/share/fontconfig/conf.avail/90-synthetic.conf                    29772
-usr/share/fontconfig/conf.avail/10-autohint.conf                     29771
-usr/share/fontconfig/conf.avail/10-hinting-full.conf                 29770
-usr/share/fontconfig/conf.avail/10-hinting-medium.conf               29769
-usr/share/fontconfig/conf.avail/10-hinting-none.conf                 29768
-usr/share/fontconfig/conf.avail/10-no-sub-pixel.conf                 29767
-usr/share/fontconfig/conf.avail/10-sub-pixel-bgr.conf                29766
-usr/share/fontconfig/conf.avail/10-sub-pixel-rgb.conf                29765
-usr/share/fontconfig/conf.avail/10-sub-pixel-vbgr.conf               29764
-usr/share/fontconfig/conf.avail/10-sub-pixel-vrgb.conf               29763
-usr/share/fontconfig/conf.avail/10-unhinted.conf                     29762
-usr/share/fontconfig/conf.avail/11-lcdfilter-legacy.conf             29761
-usr/share/fontconfig/conf.avail/11-lcdfilter-light.conf              29760
-usr/share/fontconfig/conf.avail/25-unhint-nonlatin.conf              29759
-usr/share/fontconfig/conf.avail/65-khmer.conf                        29758
-usr/share/fontconfig/conf.avail/70-force-bitmaps.conf                29757
-usr/share/fontconfig/conf.avail/70-yes-bitmaps.conf                  29756
-usr/share/fonts/.uuid                                                29755
-var/cache/fontconfig/ad3800a6-0853-5900-ac2b-6a45e906a034-le64.cache-7 29754
-usr/local/share/fonts/.uuid                                          29753
-var/cache/fontconfig/a19c77ef-2b6e-5d56-80fa-aa461c22a33c-le64.cache-7 29752
-usr/share/fonts/X11/.uuid                                            29751
-var/cache/fontconfig/635775a3-6681-5500-bfb3-fc75bae7ab71-le64.cache-7 29750
-usr/share/fonts/cMap/.uuid                                           29749
-var/cache/fontconfig/e0df4ba7-1e1e-53f4-99ac-034e136dea90-le64.cache-7 29748
-usr/share/fonts/cmap/.uuid                                           29747
-var/cache/fontconfig/8c262b76-19e2-5a0e-970a-3c6be641c3de-le64.cache-7 29746
-usr/share/fonts/opentype/.uuid                                       29745
-var/cache/fontconfig/c53c919e-4688-5813-a778-9497aaad292b-le64.cache-7 29744
-usr/share/fonts/truetype/.uuid                                       29743
-var/cache/fontconfig/ad91de03-2bc9-5cbd-baed-449447b4cef2-le64.cache-7 29742
-usr/share/fonts/type1/.uuid                                          29741
-var/cache/fontconfig/107a60e4-0cbf-554f-81c5-3e413a233022-le64.cache-7 29740
-usr/share/fonts/X11/Type1/.uuid                                      29739
-var/cache/fontconfig/7037cf17-dab7-5805-ac14-89407957a70b-le64.cache-7 29738
-usr/share/fonts/X11/encodings/.uuid                                  29737
-var/cache/fontconfig/932c83c7-a3fe-5e2e-af19-99a73a1218b0-le64.cache-7 29736
-usr/share/fonts/X11/util/.uuid                                       29735
-var/cache/fontconfig/d6a528ca-d9d3-528a-bbf0-657522efbfb9-le64.cache-7 29734
-usr/share/poppler/cMap/Adobe-CNS1/.uuid                              29733
-var/cache/fontconfig/fe110b8d-52e9-50d6-93d5-7350b6dc3ffc-le64.cache-7 29732
-usr/share/poppler/cMap/Adobe-GB1/.uuid                               29731
-var/cache/fontconfig/cba3b8e3-c250-50f8-9d30-dd9cdff6726c-le64.cache-7 29730
-usr/share/poppler/cMap/Adobe-Japan1/.uuid                            29729
-var/cache/fontconfig/209cd66f-9cd8-59b1-a557-ee9a5b16532d-le64.cache-7 29728
-usr/share/poppler/cMap/Adobe-Japan2/.uuid                            29727
-var/cache/fontconfig/79b9b38c-66eb-5231-ac1a-75f0230ccdac-le64.cache-7 29726
-usr/share/poppler/cMap/Adobe-Korea1/.uuid                            29725
-var/cache/fontconfig/977ff0f2-7245-568d-9f74-ec94f3fe3b0c-le64.cache-7 29724
-usr/share/fonts/opentype/cantarell/.uuid                             29723
-var/cache/fontconfig/be6c95a9-9096-58da-8f8e-7737a63fdb01-le64.cache-7 29722
-usr/share/fonts/opentype/linux-libertine/.uuid                       29721
-var/cache/fontconfig/a4e606c3-ee03-5a47-a10f-679845537ed9-le64.cache-7 29720
-usr/share/fonts/opentype/noto/.uuid                                  29719
-var/cache/fontconfig/7b04aff5-85ee-51c9-95e7-77727a319b86-le64.cache-7 29718
-usr/share/fonts/opentype/urw-base35/.uuid                            29717
-var/cache/fontconfig/8542f4fb-ce2b-5a14-9951-f64eac858fee-le64.cache-7 29716
-usr/share/fonts/truetype/culmus/.uuid                                29715
-var/cache/fontconfig/806bd331-c6ac-5da7-b38d-caee6037f4ad-le64.cache-7 29714
-usr/share/fonts/truetype/dejavu/.uuid                                29713
-var/cache/fontconfig/8f19a5e0-002f-559a-908f-50a33ba095ed-le64.cache-7 29712
-usr/share/fonts/truetype/liberation/.uuid                            29711
-var/cache/fontconfig/d9291cff-b790-56da-811c-af0e14399de4-le64.cache-7 29710
-usr/share/fonts/truetype/libreoffice/.uuid                           29709
-var/cache/fontconfig/155a82c9-3c15-5e7a-a02f-59fffe413741-le64.cache-7 29708
-usr/share/fonts/truetype/noto/.uuid                                  29707
-var/cache/fontconfig/891027b1-67fe-5175-bb2b-a5d071b33c64-le64.cache-7 29706
-usr/share/fonts/truetype/quicksand/.uuid                             29705
-var/cache/fontconfig/aa54cff1-1622-5d6d-b9ef-589d2941d6ad-le64.cache-7 29704
-usr/share/fonts/type1/urw-base35/.uuid                               29703
-var/cache/fontconfig/ad7fe672-dfce-58cc-9779-56f61343393e-le64.cache-7 29702
-usr/share/fonts/X11/encodings/large/.uuid                            29701
-var/cache/fontconfig/e8b11c96-1f85-5c63-8bb8-ae0627615d20-le64.cache-7 29700
-usr/share/fonts/truetype/dejavu/DejaVuSans.ttf                       29699
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmulaw.so                29698
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmultifile.so            29697
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmultipart.so            29696
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmusepack.so             29695
-usr/lib/x86_64-linux-gnu/libmpcdec.so.6.1.0                          29694
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmxf.so                  29693
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstnavigationtest.so       29692
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstnetsim.so               29691
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstnvcodec.so              29690
-usr/lib/x86_64-linux-gnu/libgstcodecs-1.0.so.0.1804.0                29689
-usr/lib/x86_64-linux-gnu/libgstgl-1.0.so.0.1804.0                    29688
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstofa.so                  29687
-usr/lib/x86_64-linux-gnu/libofa.so.0.0.0                             29686
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstogg.so                  29685
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstopenal.so               29684
-usr/lib/x86_64-linux-gnu/libopenal.so.1.19.1                         29683
-usr/share/X11/xkb/rules/evdev.xml                                    29682
-usr/share/xml/iso-codes/iso_639-2.xml                                29681
-usr/share/xml/iso-codes/iso_639-3.xml                                29680
-usr/lib/x86_64-linux-gnu/libsndio.so.7.0                             29679
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstopenexr.so              29678
-usr/lib/x86_64-linux-gnu/libIlmImf-2_5.so.25.0.3                     29677
-usr/share/xml/iso-codes/iso_3166-1.xml                               29676
-usr/bin/ibus-daemon                                                  29675
-usr/share/ibus/keymaps/us                                            29674
-usr/share/ibus/keymaps/common                                        29673
-usr/share/ibus/keymaps/modifiers                                     29672
-usr/share/ibus/component/chewing.xml                                 29671
-usr/share/ibus/component/dconf.xml                                   29670
-usr/share/ibus/component/gtkextension.xml                            29669
-usr/share/ibus/component/gtkpanel.xml                                29668
-usr/share/ibus/component/hangul.xml                                  29667
-usr/share/ibus/component/libpinyin.xml                               29666
-usr/share/ibus/component/memconf.xml                                 29665
-usr/lib/x86_64-linux-gnu/libHalf-2_5.so.25.0.3                       29664
-usr/share/ibus/component/mozc.xml                                    29663
-usr/lib/ibus-mozc/ibus-engine-mozc                                   29662
-usr/lib/x86_64-linux-gnu/libIex-2_5.so.25.0.3                        29661
-usr/lib/x86_64-linux-gnu/libImath-2_5.so.25.0.3                      29660
-usr/lib/x86_64-linux-gnu/libIlmThread-2_5.so.25.0.3                  29659
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstopenjpeg.so             29658
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstopenmpt.so              29657
-usr/lib/x86_64-linux-gnu/libgstbadaudio-1.0.so.0.1804.0              29656
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstopenni2.so              29655
-usr/lib/x86_64-linux-gnu/libgweather-3.so.16.0.0                     29654
-usr/lib/x86_64-linux-gnu/libOpenNI2.so.0                             29653
-usr/lib/x86_64-linux-gnu/libabsl_strings.so.20200923.0.1             29652
-etc/openni2/OpenNI.ini                                               29651
-usr/lib/x86_64-linux-gnu/OpenNI2/Drivers/libDummyDevice.so.0         29650
-usr/lib/x86_64-linux-gnu/OpenNI2/Drivers/libOniFile.so.0             29649
-usr/lib/x86_64-linux-gnu/OpenNI2/Drivers/libPS1080.so.0              29648
-usr/lib/x86_64-linux-gnu/libabsl_str_format_internal.so.20200923.0.1 29647
-usr/lib/x86_64-linux-gnu/libabsl_throw_delegate.so.20200923.0.1      29646
-usr/lib/x86_64-linux-gnu/libabsl_time_zone.so.20200923.0.1           29645
-usr/lib/x86_64-linux-gnu/libabsl_time.so.20200923.0.1                29644
-usr/lib/x86_64-linux-gnu/libprotobuf.so.23.0.4                       29643
-usr/lib/x86_64-linux-gnu/libgeocode-glib.so.0.0.0                    29642
-usr/share/libgweather/Locations.xml                                  29641
-usr/share/zoneinfo/Etc/GMT+12                                        29640
-usr/share/zoneinfo/Africa/Algiers                                    29639
-usr/lib/x86_64-linux-gnu/OpenNI2/Drivers/libPSLink.so.0              29638
-usr/share/zoneinfo/Africa/Lagos                                      29637
-usr/share/zoneinfo/Africa/Maputo                                     29636
-usr/share/zoneinfo/Africa/Abidjan                                    29635
-usr/share/zoneinfo/Atlantic/Cape_Verde                               29634
-usr/share/zoneinfo/Africa/Ndjamena                                   29633
-usr/share/zoneinfo/Africa/Nairobi                                    29632
-usr/share/zoneinfo/Africa/Cairo                                      29631
-usr/share/zoneinfo/Indian/Kerguelen                                  29630
-usr/share/zoneinfo/Africa/Accra                                      29629
-usr/share/zoneinfo/Africa/Bissau                                     29628
-usr/share/zoneinfo/Africa/Johannesburg                               29627
-usr/lib/x86_64-linux-gnu/libabsl_strings_internal.so.20200923.0.1    29626
-usr/share/zoneinfo/Africa/Monrovia                                   29625
-usr/lib/x86_64-linux-gnu/libabsl_int128.so.20200923.0.1              29624
-usr/share/zoneinfo/Africa/Tripoli                                    29623
-usr/lib/x86_64-linux-gnu/libabsl_base.so.20200923.0.1                29622
-usr/lib/x86_64-linux-gnu/libabsl_spinlock_wait.so.20200923.0.1       29621
-usr/share/zoneinfo/Indian/Mauritius                                  29620
-usr/lib/x86_64-linux-gnu/libabsl_raw_logging_internal.so.20200923.0.1 29619
-usr/share/zoneinfo/Africa/Casablanca                                 29618
-usr/lib/x86_64-linux-gnu/libabsl_log_severity.so.20200923.0.1        29617
-usr/share/zoneinfo/Africa/Windhoek                                   29616
-usr/lib/x86_64-linux-gnu/libatomic.so.1.2.0                          29615
-usr/share/zoneinfo/Indian/Reunion                                    29614
-usr/share/zoneinfo/Africa/Sao_Tome                                   29613
-usr/share/zoneinfo/Indian/Mahe                                       29612
-usr/share/zoneinfo/Africa/Khartoum                                   29611
-usr/share/zoneinfo/Africa/Tunis                                      29610
-usr/share/zoneinfo/Africa/El_Aaiun                                   29609
-usr/share/zoneinfo/Antarctica/Palmer                                 29608
-usr/share/zoneinfo/Antarctica/Rothera                                29607
-usr/share/zoneinfo/Antarctica/Syowa                                  29606
-usr/share/zoneinfo/Antarctica/Mawson                                 29605
-usr/share/zoneinfo/Antarctica/Vostok                                 29604
-usr/share/zoneinfo/Antarctica/Davis                                  29603
-usr/share/zoneinfo/Antarctica/Casey                                  29602
-usr/share/zoneinfo/Antarctica/DumontDUrville                         29601
-usr/share/zoneinfo/Pacific/Auckland                                  29600
-usr/share/zoneinfo/Asia/Kabul                                        29599
-usr/share/zoneinfo/Asia/Yerevan                                      29598
-usr/share/zoneinfo/Asia/Baku                                         29597
-usr/share/zoneinfo/Asia/Dhaka                                        29596
-usr/share/zoneinfo/Asia/Thimphu                                      29595
-usr/share/zoneinfo/Asia/Brunei                                       29594
-usr/share/zoneinfo/Asia/Bangkok                                      29593
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstopus.so                 29592
-usr/share/zoneinfo/Asia/Shanghai                                     29591
-usr/share/zoneinfo/Asia/Tbilisi                                      29590
-usr/share/zoneinfo/Asia/Hong_Kong                                    29589
-usr/share/zoneinfo/Asia/Kolkata                                      29588
-usr/share/zoneinfo/Asia/Tokyo                                        29587
-usr/share/zoneinfo/Asia/Almaty                                       29586
-usr/share/zoneinfo/Asia/Aqtobe                                       29585
-usr/share/zoneinfo/Asia/Bishkek                                      29584
-usr/share/zoneinfo/Asia/Macau                                        29583
-usr/share/zoneinfo/Asia/Kuala_Lumpur                                 29582
-usr/share/zoneinfo/Indian/Maldives                                   29581
-usr/share/zoneinfo/Asia/Choibalsan                                   29580
-usr/share/zoneinfo/Asia/Hovd                                         29579
-usr/share/zoneinfo/Asia/Ulaanbaatar                                  29578
-usr/share/zoneinfo/Asia/Yangon                                       29577
-usr/share/zoneinfo/Asia/Kathmandu                                    29576
-usr/share/zoneinfo/Asia/Pyongyang                                    29575
-usr/share/zoneinfo/Asia/Karachi                                      29574
-usr/share/zoneinfo/Asia/Manila                                       29573
-usr/share/zoneinfo/Asia/Singapore                                    29572
-usr/share/zoneinfo/Asia/Seoul                                        29571
-usr/share/zoneinfo/Asia/Colombo                                      29570
-usr/share/zoneinfo/Asia/Taipei                                       29569
-usr/share/zoneinfo/Asia/Dushanbe                                     29568
-usr/share/zoneinfo/Asia/Ashgabat                                     29567
-usr/share/zoneinfo/Asia/Tashkent                                     29566
-usr/share/zoneinfo/Asia/Ho_Chi_Minh                                  29565
-usr/share/zoneinfo/America/Port_of_Spain                             29564
-usr/share/zoneinfo/America/Barbados                                  29563
-usr/share/zoneinfo/Atlantic/Bermuda                                  29562
-usr/share/zoneinfo/America/Danmarkshavn                              29561
-usr/share/zoneinfo/America/Nuuk                                      29560
-usr/share/zoneinfo/America/Scoresbysund                              29559
-usr/share/zoneinfo/America/Thule                                     29558
-usr/share/zoneinfo/America/Puerto_Rico                               29557
-usr/share/zoneinfo/Pacific/Pago_Pago                                 29556
-usr/share/zoneinfo/Australia/Perth                                   29555
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstopusparse.so            29554
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstoss4.so                 29553
-usr/share/ibus/component/simple.xml                                  29552
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstossaudio.so             29551
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstoverlaycomposition.so   29550
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstpango.so                29549
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstpbtypes.so              29548
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstpcapparse.so            29547
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstpipewire.so             29546
-usr/share/zoneinfo/Australia/Eucla                                   29545
-usr/share/zoneinfo/Australia/Adelaide                                29544
-usr/share/zoneinfo/Australia/Broken_Hill                             29543
-usr/share/zoneinfo/Australia/Darwin                                  29542
-usr/share/zoneinfo/Australia/Hobart                                  29541
-usr/share/zoneinfo/Australia/Melbourne                               29540
-usr/share/zoneinfo/Australia/Sydney                                  29539
-usr/share/zoneinfo/Australia/Brisbane                                29538
-usr/share/zoneinfo/Australia/Lord_Howe                               29537
-usr/share/zoneinfo/Indian/Chagos                                     29536
-usr/share/zoneinfo/Indian/Christmas                                  29535
-usr/share/zoneinfo/Indian/Cocos                                      29534
-usr/share/zoneinfo/Pacific/Rarotonga                                 29533
-usr/share/zoneinfo/Pacific/Fiji                                      29532
-usr/share/zoneinfo/Pacific/Tahiti                                    29531
-usr/share/zoneinfo/Pacific/Marquesas                                 29530
-usr/share/zoneinfo/Pacific/Gambier                                   29529
-usr/share/zoneinfo/Pacific/Guam                                      29528
-usr/share/zoneinfo/Asia/Jakarta                                      29527
-usr/share/zoneinfo/Asia/Makassar                                     29526
-usr/share/zoneinfo/Asia/Jayapura                                     29525
-usr/share/zoneinfo/Pacific/Tarawa                                    29524
-usr/share/zoneinfo/Pacific/Enderbury                                 29523
-usr/share/zoneinfo/Pacific/Kiritimati                                29522
-usr/share/zoneinfo/Pacific/Majuro                                    29521
-usr/share/zoneinfo/Pacific/Pohnpei                                   29520
-usr/share/zoneinfo/Pacific/Chuuk                                     29519
-usr/share/zoneinfo/Pacific/Nauru                                     29518
-usr/share/zoneinfo/Pacific/Noumea                                    29517
-usr/share/zoneinfo/Pacific/Chatham                                   29516
-usr/share/zoneinfo/Pacific/Niue                                      29515
-usr/share/zoneinfo/Pacific/Norfolk                                   29514
-usr/share/zoneinfo/Pacific/Palau                                     29513
-usr/share/zoneinfo/Pacific/Port_Moresby                              29512
-usr/share/zoneinfo/Pacific/Pitcairn                                  29511
-usr/share/zoneinfo/Pacific/Apia                                      29510
-usr/share/zoneinfo/Pacific/Guadalcanal                               29509
-usr/share/zoneinfo/Asia/Dili                                         29508
-usr/share/zoneinfo/Pacific/Fakaofo                                   29507
-usr/share/zoneinfo/Pacific/Tongatapu                                 29506
-usr/share/zoneinfo/Pacific/Funafuti                                  29505
-usr/share/zoneinfo/Pacific/Honolulu                                  29504
-usr/share/zoneinfo/Pacific/Wake                                      29503
-usr/share/zoneinfo/Pacific/Efate                                     29502
-usr/share/zoneinfo/Pacific/Wallis                                    29501
-usr/share/zoneinfo/America/Argentina/Buenos_Aires                    29500
-usr/share/zoneinfo/America/Curacao                                   29499
-usr/share/zoneinfo/America/Nassau                                    29498
-usr/share/zoneinfo/America/Belize                                    29497
-usr/share/zoneinfo/America/La_Paz                                    29496
-usr/share/zoneinfo/America/Araguaina                                 29495
-usr/share/zoneinfo/America/Bahia                                     29494
-usr/share/zoneinfo/America/Belem                                     29493
-usr/share/zoneinfo/America/Boa_Vista                                 29492
-usr/share/zoneinfo/America/Campo_Grande                              29491
-usr/share/zoneinfo/America/Cuiaba                                    29490
-usr/share/zoneinfo/America/Eirunepe                                  29489
-usr/share/zoneinfo/America/Fortaleza                                 29488
-usr/share/zoneinfo/America/Maceio                                    29487
-usr/share/zoneinfo/America/Manaus                                    29486
-usr/share/zoneinfo/America/Noronha                                   29485
-usr/share/zoneinfo/America/Porto_Velho                               29484
-usr/share/zoneinfo/America/Recife                                    29483
-usr/share/ibus/component/unikey.xml                                  29482
-usr/share/zoneinfo/America/Rio_Branco                                29481
-usr/share/zoneinfo/America/Sao_Paulo                                 29480
-usr/libexec/ibus-engine-unikey                                       29479
-usr/share/zoneinfo/America/Panama                                    29478
-usr/share/zoneinfo/America/Santiago                                  29477
-usr/share/zoneinfo/Pacific/Easter                                    29476
-usr/share/zoneinfo/America/Bogota                                    29475
-usr/share/zoneinfo/America/Costa_Rica                                29474
-usr/share/zoneinfo/America/Havana                                    29473
-usr/share/zoneinfo/America/Santo_Domingo                             29472
-usr/share/zoneinfo/America/Guayaquil                                 29471
-usr/share/zoneinfo/Pacific/Galapagos                                 29470
-usr/share/zoneinfo/America/El_Salvador                               29469
-usr/share/zoneinfo/Atlantic/Stanley                                  29468
-usr/share/zoneinfo/America/Cayenne                                   29467
-usr/share/zoneinfo/America/Guatemala                                 29466
-usr/share/zoneinfo/America/Guyana                                    29465
-usr/share/zoneinfo/America/Port-au-Prince                            29464
-usr/share/zoneinfo/America/Tegucigalpa                               29463
-usr/share/zoneinfo/America/Jamaica                                   29462
-usr/share/zoneinfo/America/Martinique                                29461
-usr/share/zoneinfo/America/Managua                                   29460
-usr/share/zoneinfo/America/Asuncion                                  29459
-usr/share/zoneinfo/America/Lima                                      29458
-usr/share/zoneinfo/Atlantic/South_Georgia                            29457
-usr/share/zoneinfo/America/Paramaribo                                29456
-usr/share/zoneinfo/America/Grand_Turk                                29455
-usr/share/zoneinfo/America/Montevideo                                29454
-usr/share/zoneinfo/America/Caracas                                   29453
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstplayback.so             29452
-usr/share/zoneinfo/Europe/Tirane                                     29451
-usr/share/zoneinfo/Europe/Andorra                                    29450
-usr/share/zoneinfo/Europe/Vienna                                     29449
-usr/share/zoneinfo/Europe/Minsk                                      29448
-usr/share/zoneinfo/Europe/Brussels                                   29447
-usr/share/zoneinfo/Europe/Belgrade                                   29446
-usr/share/zoneinfo/Europe/Sofia                                      29445
-usr/share/zoneinfo/Asia/Nicosia                                      29444
-usr/share/zoneinfo/Europe/Prague                                     29443
-usr/share/zoneinfo/Europe/Copenhagen                                 29442
-usr/share/zoneinfo/Europe/Tallinn                                    29441
-usr/share/zoneinfo/Atlantic/Faroe                                    29440
-usr/share/zoneinfo/Europe/Helsinki                                   29439
-usr/share/zoneinfo/Europe/Paris                                      29438
-usr/share/zoneinfo/Europe/Berlin                                     29437
-usr/libexec/ibus-dconf                                               29436
-usr/share/zoneinfo/Europe/Gibraltar                                  29435
-usr/share/zoneinfo/Europe/Athens                                     29434
-usr/share/zoneinfo/Europe/London                                     29433
-usr/share/zoneinfo/Europe/Budapest                                   29432
-usr/share/zoneinfo/Atlantic/Reykjavik                                29431
-usr/share/zoneinfo/Europe/Dublin                                     29430
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstpng.so                  29429
-usr/share/zoneinfo/Europe/Rome                                       29428
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstpnm.so                  29427
-usr/libexec/ibus-extension-gtk3                                      29426
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstproxy.so                29425
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstpulseaudio.so           29424
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstrawparse.so             29423
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstrealmedia.so            29422
-usr/share/zoneinfo/CET                                               29421
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstremovesilence.so        29420
-usr/share/zoneinfo/Europe/Riga                                       29419
-usr/libexec/ibus-portal                                              29418
-usr/share/zoneinfo/Europe/Zurich                                     29417
-usr/share/zoneinfo/Europe/Vilnius                                    29416
-usr/share/zoneinfo/Europe/Luxembourg                                 29415
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstreplaygain.so           29414
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstresindvd.so             29413
-usr/lib/x86_64-linux-gnu/libdvdnav.so.4.3.0                          29412
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstrfbsrc.so               29411
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstrist.so                 29410
-usr/share/zoneinfo/Europe/Malta                                      29409
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstrsvg.so                 29408
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstrtmp.so                 29407
-usr/share/zoneinfo/Europe/Chisinau                                   29406
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstrtmp2.so                29405
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstrtp.so                  29404
-usr/share/zoneinfo/Europe/Monaco                                     29403
-usr/share/zoneinfo/Europe/Amsterdam                                  29402
-usr/share/zoneinfo/Europe/Oslo                                       29401
-usr/share/zoneinfo/Europe/Warsaw                                     29400
-usr/share/zoneinfo/Atlantic/Azores                                   29399
-usr/share/zoneinfo/Atlantic/Madeira                                  29398
-usr/share/zoneinfo/Europe/Lisbon                                     29397
-usr/share/zoneinfo/Europe/Bucharest                                  29396
-usr/share/zoneinfo/Europe/Kaliningrad                                29395
-usr/share/zoneinfo/Europe/Moscow                                     29394
-usr/share/zoneinfo/Europe/Samara                                     29393
-usr/share/zoneinfo/Asia/Yekaterinburg                                29392
-usr/share/zoneinfo/Asia/Omsk                                         29391
-usr/share/zoneinfo/Asia/Novosibirsk                                  29390
-usr/share/zoneinfo/Asia/Krasnoyarsk                                  29389
-usr/share/zoneinfo/Asia/Irkutsk                                      29388
-usr/share/zoneinfo/Asia/Yakutsk                                      29387
-usr/share/zoneinfo/Asia/Vladivostok                                  29386
-usr/share/zoneinfo/Asia/Magadan                                      29385
-usr/share/zoneinfo/Asia/Kamchatka                                    29384
-usr/share/zoneinfo/Atlantic/Canary                                   29383
-usr/share/zoneinfo/Europe/Madrid                                     29382
-usr/share/zoneinfo/Africa/Ceuta                                      29381
-usr/share/zoneinfo/Europe/Stockholm                                  29380
-usr/share/zoneinfo/Europe/Istanbul                                   29379
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstrtpmanager.so           29378
-usr/share/zoneinfo/Europe/Kiev                                       29377
-usr/share/zoneinfo/Asia/Qatar                                        29376
-usr/share/zoneinfo/Asia/Tehran                                       29375
-usr/share/zoneinfo/Asia/Baghdad                                      29374
-usr/share/zoneinfo/Asia/Jerusalem                                    29373
-usr/share/zoneinfo/Asia/Amman                                        29372
-usr/share/zoneinfo/Asia/Riyadh                                       29371
-usr/share/zoneinfo/Asia/Beirut                                       29370
-usr/share/zoneinfo/Asia/Dubai                                        29369
-usr/share/zoneinfo/Asia/Gaza                                         29368
-usr/share/zoneinfo/Asia/Damascus                                     29367
-usr/share/zoneinfo/America/Vancouver                                 29366
-usr/share/zoneinfo/America/Edmonton                                  29365
-usr/share/zoneinfo/America/Dawson_Creek                              29364
-usr/share/zoneinfo/America/Winnipeg                                  29363
-usr/share/zoneinfo/America/Regina                                    29362
-usr/share/zoneinfo/America/Toronto                                   29361
-usr/share/zoneinfo/America/Atikokan                                  29360
-usr/share/zoneinfo/America/Halifax                                   29359
-usr/share/zoneinfo/America/Blanc-Sablon                              29358
-usr/share/zoneinfo/America/St_Johns                                  29357
-usr/share/zoneinfo/America/Tijuana                                   29356
-usr/share/zoneinfo/America/Mazatlan                                  29355
-usr/share/zoneinfo/America/Mexico_City                               29354
-usr/share/zoneinfo/America/Miquelon                                  29353
-usr/share/zoneinfo/America/Adak                                      29352
-usr/share/zoneinfo/America/Anchorage                                 29351
-usr/share/zoneinfo/America/Los_Angeles                               29350
-usr/share/zoneinfo/America/Denver                                    29349
-usr/share/zoneinfo/America/Phoenix                                   29348
-usr/share/zoneinfo/America/Chicago                                   29347
-usr/share/zoneinfo/America/New_York                                  29346
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstrtpmanagerbad.so        29345
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstrtponvif.so             29344
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstrtsp.so                 29343
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsbc.so                  29342
-usr/lib/x86_64-linux-gnu/libsbc.so.1.3.0                             29341
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsctp.so                 29340
-usr/lib/x86_64-linux-gnu/libgstsctp-1.0.so.0.1804.0                  29339
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsdpelem.so              29338
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsegmentclip.so          29337
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstshapewipe.so            29336
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstshm.so                  29335
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstshout2.so               29334
-usr/lib/x86_64-linux-gnu/libshout.so.3.2.0                           29333
-usr/lib/x86_64-linux-gnu/libtheora.so.0.3.10                         29332
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsid.so                  29331
-usr/lib/x86_64-linux-gnu/libsidplay.so.1.0.3                         29330
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsiren.so                29329
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsmooth.so               29328
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsmoothstreaming.so      29327
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsmpte.so                29326
-usr/libexec/xdg-permission-store                                     29325
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsndfile.so              29324
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsoundtouch.so           29323
-usr/lib/x86_64-linux-gnu/libSoundTouch.so.1.0.0                      29322
-lib/x86_64-linux-gnu/libmvec-2.31.so                                 29321
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsoup.so                 29320
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstspandsp.so              29319
-usr/lib/x86_64-linux-gnu/libspandsp.so.2.0.0                         29318
-usr/lib/x86_64-linux-gnu/girepository-1.0/NMA-1.0.typelib            29317
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstspectrum.so             29316
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstspeed.so                29315
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstspeex.so                29314
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsrt.so                  29313
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsrtp.so                 29312
-usr/lib/x86_64-linux-gnu/girepository-1.0/GnomeBluetooth-1.0.typelib 29311
-usr/lib/x86_64-linux-gnu/libgnome-bluetooth.so.13.0.2                29310
-usr/lib/x86_64-linux-gnu/libcanberra-gtk3.so.0.1.9                   29309
-usr/lib/x86_64-linux-gnu/libnotify.so.4.0.0                          29308
-usr/lib/x86_64-linux-gnu/libgthread-2.0.so.0.6600.8                  29307
-usr/lib/x86_64-linux-gnu/libsrtp2.so.1                               29306
-usr/lib/x86_64-linux-gnu/nss/libsoftokn3.so                          29305
-usr/lib/x86_64-linux-gnu/nss/libfreeblpriv3.so                       29304
-usr/lib/gnome-shell/libgvc.so                                        29303
-usr/lib/x86_64-linux-gnu/libpulse-mainloop-glib.so.0.0.6             29302
-var/lib/polkit-1/localauthority/10-vendor.d/systemd-networkd.pkla    29301
-var/lib/polkit-1/localauthority/10-vendor.d/org.freedesktop.NetworkManager.pkla 29300
-var/lib/polkit-1/localauthority/10-vendor.d/gnome-control-center.pkla 29299
-etc/polkit-1/localauthority/10-vendor.d/org.boum.tails.pkla          29298
-etc/polkit-1/localauthority/10-vendor.d/org.boum.tails.cups.pkla     29297
-etc/polkit-1/localauthority/10-vendor.d/org.boum.tails.accounts.pkla 29296
-etc/polkit-1/localauthority/10-vendor.d/org.boum.tails.NetworkManager.pkla 29295
-etc/systemd/sleep.conf                                               29294
-lib/systemd/system/suspend.target                                    29293
-lib/systemd/system/systemd-suspend.service                           29292
-lib/systemd/system/sleep.target                                      29291
-usr/share/xsessions/gnome-classic.desktop                            29290
-usr/share/xsessions/gnome-xorg.desktop                               29289
-usr/share/xsessions/gnome.desktop                                    29288
-usr/share/gdm/BuiltInSessions/default.desktop                        29287
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsubenc.so               29286
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsubparse.so             29285
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstswitchbin.so            29284
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgsttaglib.so               29283
-usr/lib/x86_64-linux-gnu/libtag.so.1.17.0                            29282
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgsttcp.so                  29281
-usr/lib/x86_64-linux-gnu/gio/modules/libgiognutls.so                 29280
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstteletext.so             29279
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgsttheora.so               29278
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgsttimecode.so             29277
-usr/lib/x86_64-linux-gnu/libltc.so.11.1.0                            29276
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgsttranscode.so            29275
-etc/ssl/certs/ca-certificates.crt                                    29274
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstttmlsubs.so             29273
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgsttwolame.so              29272
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgsttypefindfunctions.so    29271
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstudp.so                  29270
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstuvch264.so              29269
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstv4l2codecs.so           29268
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstva.so                   29267
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvideo4linux2.so         29266
-usr/lib/x86_64-linux-gnu/gio/modules/libgiolibproxy.so               29265
-usr/lib/x86_64-linux-gnu/libproxy.so.1.0.0                           29264
-usr/lib/x86_64-linux-gnu/gio/modules/libgiognomeproxy.so             29263
-usr/lib/x86_64-linux-gnu/libv4l2.so.0.0.0                            29262
-usr/lib/x86_64-linux-gnu/libv4lconvert.so.0.0.0                      29261
-usr/share/gnome-shell/extensions/apps-menu@gnome-shell-extensions.gcampax.github.com/metadata.json 29260
-usr/share/gnome-shell/extensions/auto-move-windows@gnome-shell-extensions.gcampax.github.com/metadata.json 29259
-usr/share/gnome-shell/extensions/date@tails.boum.org/metadata.json   29258
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvideobox.so             29257
-usr/share/gnome-shell/extensions/desktop-icons@csoriano/metadata.json 29256
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvideoconvert.so         29255
-usr/share/gnome-shell/extensions/drive-menu@gnome-shell-extensions.gcampax.github.com/metadata.json 29254
-usr/share/gnome-shell/extensions/horizontal-workspaces@gnome-shell-extensions.gcampax.github.com/metadata.json 29253
-usr/share/gnome-shell/extensions/launch-new-instance@gnome-shell-extensions.gcampax.github.com/metadata.json 29252
-usr/share/gnome-shell/extensions/native-window-placement@gnome-shell-extensions.gcampax.github.com/metadata.json 29251
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvideocrop.so            29250
-usr/share/gnome-shell/extensions/places-menu@gnome-shell-extensions.gcampax.github.com/metadata.json 29249
-usr/share/gnome-shell/extensions/screenshot-window-sizer@gnome-shell-extensions.gcampax.github.com/metadata.json 29248
-usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/metadata.json 29247
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvideofilter.so          29246
-usr/share/gnome-shell/extensions/torstatus@tails.boum.org/metadata.json 29245
-usr/share/gnome-shell/extensions/user-theme@gnome-shell-extensions.gcampax.github.com/metadata.json 29244
-usr/share/gnome-shell/extensions/window-center@tails.boum.org/metadata.json 29243
-usr/share/gnome-shell/extensions/window-center@tails.boum.org/extension.js 29242
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvideofiltersbad.so      29241
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvideoframe_audiolevel.so 29240
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvideomixer.so           29239
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvideoparsersbad.so      29238
-usr/bin/whoami                                                       29237
-usr/share/gnome-shell/extensions/window-list@gnome-shell-extensions.gcampax.github.com/metadata.json 29236
-usr/share/gnome-shell/extensions/windowsNavigator@gnome-shell-extensions.gcampax.github.com/metadata.json 29235
-usr/share/gnome-shell/extensions/workspace-indicator@gnome-shell-extensions.gcampax.github.com/metadata.json 29234
-usr/bin/gjs-console                                                  29233
-usr/libexec/at-spi2-registryd                                        29232
-usr/share/gnome-shell/org.gnome.Shell.Notifications                  29229
-usr/libexec/gsd-screensaver-proxy                                    29228
-usr/libexec/gsd-sound                                                29225
-usr/lib/gnome-settings-daemon-3.0/libgsd.so                          29222
-usr/libexec/gsd-a11y-settings                                        29221
-usr/libexec/gsd-xsettings                                            29218
-usr/libexec/gsd-housekeeping                                         29215
-usr/libexec/gsd-power                                                29212
-usr/libexec/gsd-print-notifications                                  29209
-usr/libexec/gsd-sharing                                              29206
-usr/libexec/gsd-usb-protection                                       29203
-usr/libexec/gsd-color                                                29200
-usr/lib/x86_64-linux-gnu/libcolord.so.2.0.5                          29199
-usr/libexec/gsd-keyboard                                             29196
-usr/libexec/gsd-rfkill                                               29193
-usr/libexec/gsd-smartcard                                            29190
-usr/libexec/gsd-wacom                                                29187
-usr/share/gnome-shell/org.gnome.Shell.Notifications.src.gresource    29186
-usr/libexec/gsd-datetime                                             29183
-lib/systemd/system/systemd-hostnamed.service                         29180
-usr/libexec/gsd-media-keys                                           29179
-usr/share/icons/Adwaita/cursors/sb_v_double_arrow                    29177
-usr/share/icons/Adwaita/cursors/sb_h_double_arrow                    29176
-usr/share/icons/Adwaita/cursors/crossed_circle                       29175
-usr/share/icons/Adwaita/cursors/left_ptr_watch                       29174
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvideorate.so            29173
-bin/false                                                            29172
-usr/share/icons/Adwaita/cursors/dnd-copy                             29171
-usr/share/icons/Adwaita/cursors/link                                 29170
-usr/share/icons/Adwaita/cursors/move                                 29169
-usr/share/icons/Adwaita/cursors/question_arrow                       29168
-usr/share/icons/Adwaita/cursors/hand2                                29167
-usr/share/icons/Adwaita/cursors/X_cursor                             29166
-usr/share/icons/Adwaita/cursors/dnd-link                             29165
-usr/share/icons/Adwaita/cursors/all-scroll                           29164
-usr/share/icons/Adwaita/cursors/bd_double_arrow                      29163
-usr/share/icons/Adwaita/cursors/bottom_left_corner                   29162
-usr/share/icons/Adwaita/cursors/bottom_right_corner                  29161
-usr/share/icons/Adwaita/cursors/bottom_side                          29160
-usr/libexec/ibus-engine-simple                                       29159
-usr/libexec/gsd-printer                                              29158
-usr/lib/x86_64-linux-gnu/libOpenGL.so.0.0.0                          29157
-usr/share/icons/Adwaita/cursors/bottom_tee                           29156
-usr/share/icons/Adwaita/cursors/cell                                 29155
-usr/share/icons/Adwaita/cursors/circle                               29154
-usr/share/icons/Adwaita/cursors/context-menu                         29153
-usr/share/icons/Adwaita/cursors/cross                                29152
-usr/share/icons/Adwaita/cursors/dnd-ask                              29151
-usr/share/icons/Adwaita/cursors/dnd-move                             29150
-usr/share/icons/Adwaita/cursors/dnd-no-drop                          29149
-usr/share/icons/Adwaita/cursors/dnd-none                             29148
-usr/share/icons/Adwaita/cursors/dotbox                               29147
-usr/share/icons/Adwaita/cursors/right_ptr                            29146
-usr/share/icons/Adwaita/cursors/right_side                           29145
-usr/share/icons/Adwaita/cursors/fd_double_arrow                      29144
-usr/share/icons/Adwaita/cursors/hand1                                29143
-usr/share/icons/Adwaita/cursors/grabbing                             29142
-usr/share/icons/Adwaita/cursors/left_side                            29141
-usr/share/icons/Adwaita/cursors/left_tee                             29140
-usr/share/icons/Adwaita/cursors/ll_angle                             29139
-usr/share/icons/Adwaita/cursors/lr_angle                             29138
-usr/share/icons/Adwaita/cursors/top_side                             29137
-usr/share/icons/Adwaita/cursors/top_right_corner                     29136
-usr/share/icons/Adwaita/cursors/top_left_corner                      29135
-usr/share/icons/Adwaita/cursors/pencil                               29134
-usr/share/icons/Adwaita/cursors/plus                                 29133
-usr/share/icons/Adwaita/cursors/pointer-move                         29132
-usr/share/icons/Adwaita/cursors/right_tee                            29131
-usr/share/icons/Adwaita/cursors/sb_down_arrow                        29130
-usr/share/icons/Adwaita/index.theme                                  29129
-usr/share/icons/Adwaita/cursors/sb_left_arrow                        29128
-usr/share/icons/Adwaita/cursors/sb_right_arrow                       29127
-usr/share/icons/Adwaita/cursors/sb_up_arrow                          29126
-usr/share/icons/Adwaita/cursors/tcross                               29125
-usr/share/icons/Adwaita/cursors/xterm                                29124
-usr/share/icons/Adwaita/cursors/top_tee                              29123
-usr/share/icons/Adwaita/cursors/ul_angle                             29122
-usr/share/icons/Adwaita/cursors/ur_angle                             29121
-lib/systemd/systemd-hostnamed                                        29120
-usr/share/icons/Adwaita/cursors/vertical-text                        29119
-usr/share/icons/Adwaita/cursors/watch                                29118
-usr/share/icons/Adwaita/cursors/zoom-in                              29117
-usr/share/icons/Adwaita/cursors/zoom-out                             29116
-usr/share/icons/gnome/index.theme                                    29115
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvideoscale.so           29114
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvideosignal.so          29113
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvideotestsrc.so         29112
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvmnc.so                 29111
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvoaacenc.so             29110
-usr/lib/x86_64-linux-gnu/libvo-aacenc.so.0.0.4                       29109
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvoamrwbenc.so           29108
-usr/lib/x86_64-linux-gnu/libvo-amrwbenc.so.0.0.4                     29107
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvolume.so               29106
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvorbis.so               29105
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvpx.so                  29104
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstwavenc.so               29103
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstwavpack.so              29102
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstwavparse.so             29101
-usr/share/icons/hicolor/index.theme                                  29100
-usr/share/icons/Adwaita/16x16/ui/pan-down-symbolic.symbolic.png      29099
-usr/share/icons/Adwaita/16x16/apps/preferences-desktop-accessibility-symbolic.symbolic.png 29098
-usr/share/icons/Adwaita/16x16/actions/system-shutdown-symbolic.symbolic.png 29097
-usr/share/icons/Adwaita/16x16/status/audio-volume-medium-symbolic.symbolic.png 29096
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstwaylandsink.so          29095
-usr/lib/x86_64-linux-gnu/libgstwayland-1.0.so.0.1804.0               29094
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstwebp.so                 29093
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstwebrtc.so               29092
-usr/lib/x86_64-linux-gnu/libgstwebrtc-1.0.so.0.1804.0                29091
-usr/lib/x86_64-linux-gnu/libnice.so.10.9.0                           29090
-usr/lib/x86_64-linux-gnu/libgupnp-igd-1.0.so.4.2.1                   29089
-usr/lib/x86_64-linux-gnu/libgupnp-1.2.so.0.0.0                       29088
-usr/lib/x86_64-linux-gnu/libgssdp-1.2.so.0.0.0                       29087
-usr/share/fonts/opentype/cantarell/Cantarell-Regular.otf             29086
-usr/share/fonts/truetype/dejavu/DejaVuSansMono.ttf                   29085
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstwebrtcdsp.so            29084
-usr/lib/x86_64-linux-gnu/libwebrtc_audio_processing.so.1.0.0         29083
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstwildmidi.so             29082
-usr/lib/x86_64-linux-gnu/libWildMidi.so.2.1.0                        29081
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstx264.so                 29080
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstx265.so                 29079
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstximagesink.so           29078
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstximagesrc.so            29077
-usr/lib/x86_64-linux-gnu/dri/swrast_dri.so                           29076
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstxingmux.so              29075
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstxvimagesink.so          29074
-usr/lib/x86_64-linux-gnu/libXv.so.1.0.0                              29073
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgsty4mdec.so               29072
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgsty4menc.so               29071
-usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstzbar.so                 29070
-usr/lib/x86_64-linux-gnu/libzbar.so.0.3.0                            29069
-usr/share/themes/Default/gtk-3.0/gtk-keys.css                        29068
-usr/share/ibus/dicts/emoji-en.dict                                   29067
-usr/lib/x86_64-linux-gnu/libLLVM-11.so.1                             29066
-lib/systemd/system/systemd-localed.service                           29065
-lib/systemd/system/systemd-localed.service.d/locale-gen.conf         29064
-usr/libexec/dconf-service                                            29063
-lib/systemd/system/colord.service                                    29062
-usr/libexec/colord                                                   29057
-usr/lib/x86_64-linux-gnu/libcolordprivate.so.2.0.5                   29056
-lib/systemd/systemd-localed                                          29055
-usr/lib/x86_64-linux-gnu/libgusb.so.2.0.10                           29054
-usr/share/gnome-shell/org.gnome.Shell.Screencast                     29053
-lib/udev/hwdb.bin                                                    29048
-usr/lib/x86_64-linux-gnu/colord-plugins/libcolord_sensor_camera.so   29047
-usr/lib/x86_64-linux-gnu/colord-plugins/libcolord_sensor_sane.so     29046
-usr/lib/x86_64-linux-gnu/colord-plugins/libcolord_sensor_scanner.so  29045
-usr/lib/x86_64-linux-gnu/libsensors.so.5.0.0                         29044
-etc/default/keyboard                                                 29043
-usr/lib/x86_64-linux-gnu/libdrm_amdgpu.so.1.0.0                      29042
-usr/lib/x86_64-linux-gnu/libvulkan.so.1.2.162                        29041
-usr/share/color/icc/colord/BestRGB.icc                               29040
-usr/lib/x86_64-linux-gnu/libedit.so.2.0.63                           29039
-usr/lib/x86_64-linux-gnu/libz3.so.4                                  29038
-usr/share/color/icc/colord/BetaRGB.icc                               29037
-usr/share/gnome-shell/org.gnome.Shell.Screencast.src.gresource       29036
-usr/lib/x86_64-linux-gnu/girepository-1.0/Gst-1.0.typelib            29035
-usr/share/color/icc/colord/BruceRGB.icc                              29034
-usr/share/color/icc/colord/Crayons.icc                               29033
-usr/share/color/icc/colord/DonRGB4.icc                               29032
-usr/share/color/icc/colord/ECI-RGBv1.icc                             29031
-usr/share/color/icc/colord/ECI-RGBv2.icc                             29030
-usr/share/color/icc/colord/EktaSpacePS5.icc                          29029
-usr/share/color/icc/colord/Gamma5000K.icc                            29028
-usr/share/color/icc/colord/Gamma5500K.icc                            29027
-usr/share/color/icc/colord/Gamma6500K.icc                            29026
-usr/share/color/icc/colord/Rec709.icc                                29025
-usr/share/color/icc/colord/WideGamutRGB.icc                          29024
-usr/share/color/icc/ghostscript/a98.icc                              29023
-usr/share/color/icc/ghostscript/default_cmyk.icc                     29022
-usr/share/color/icc/ghostscript/default_gray.icc                     29021
-usr/share/color/icc/ghostscript/default_rgb.icc                      29020
-usr/share/color/icc/ghostscript/esrgb.icc                            29019
-usr/share/color/icc/ghostscript/gray_to_k.icc                        29018
-usr/share/color/icc/ghostscript/lab.icc                              29017
-usr/share/color/icc/ghostscript/ps_cmyk.icc                          29016
-usr/share/color/icc/ghostscript/ps_gray.icc                          29015
-usr/share/color/icc/ghostscript/ps_rgb.icc                           29014
-usr/share/color/icc/ghostscript/rommrgb.icc                          29013
-usr/share/color/icc/ghostscript/scrgb.icc                            29012
-usr/share/color/icc/ghostscript/sgray.icc                            29011
-usr/share/color/icc/ghostscript/srgb.icc                             29010
-usr/libexec/colord-sane                                              29009
-usr/lib/x86_64-linux-gnu/libsane.so.1.0.31                           29008
-usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-playlist.so 29007
-etc/sane.d/dll.d/airscan                                             29006
-etc/sane.d/dll.d/hplip                                               29005
-etc/sane.d/dll.conf                                                  29004
-usr/lib/x86_64-linux-gnu/sane/libsane-xerox_mfp.so.1.0.31            29003
-etc/sane.d/xerox_mfp.conf                                            29002
-usr/lib/x86_64-linux-gnu/sane/libsane-umax1220u.so.1.0.31            29001
-etc/sane.d/umax1220u.conf                                            29000
-usr/lib/x86_64-linux-gnu/sane/libsane-umax.so.1.0.31                 28999
-etc/sane.d/umax.conf                                                 28998
-usr/lib/x86_64-linux-gnu/sane/libsane-u12.so.1.0.31                  28997
-etc/sane.d/u12.conf                                                  28996
-usr/lib/x86_64-linux-gnu/sane/libsane-teco3.so.1.0.31                28995
-etc/sane.d/teco3.conf                                                28994
-usr/lib/x86_64-linux-gnu/sane/libsane-teco2.so.1.0.31                28993
-etc/sane.d/teco2.conf                                                28992
-usr/lib/x86_64-linux-gnu/sane/libsane-teco1.so.1.0.31                28991
-etc/sane.d/teco1.conf                                                28990
-usr/lib/x86_64-linux-gnu/sane/libsane-tamarack.so.1.0.31             28989
-etc/sane.d/tamarack.conf                                             28988
-usr/lib/x86_64-linux-gnu/sane/libsane-sp15c.so.1.0.31                28987
-etc/sane.d/sp15c.conf                                                28986
-usr/lib/x86_64-linux-gnu/sane/libsane-snapscan.so.1.0.31             28985
-etc/sane.d/snapscan.conf                                             28984
-usr/lib/x86_64-linux-gnu/sane/libsane-sm3840.so.1.0.31               28983
-usr/lib/x86_64-linux-gnu/sane/libsane-sm3600.so.1.0.31               28982
-usr/lib/x86_64-linux-gnu/sane/libsane-sharp.so.1.0.31                28981
-etc/sane.d/sharp.conf                                                28980
-usr/lib/x86_64-linux-gnu/sane/libsane-sceptre.so.1.0.31              28979
-etc/sane.d/sceptre.conf                                              28978
-usr/lib/x86_64-linux-gnu/sane/libsane-s9036.so.1.0.31                28977
-etc/sane.d/s9036.conf                                                28976
-usr/lib/x86_64-linux-gnu/sane/libsane-rts8891.so.1.0.31              28975
-etc/sane.d/rts8891.conf                                              28974
-usr/lib/x86_64-linux-gnu/sane/libsane-ricoh2.so.1.0.31               28973
-usr/lib/x86_64-linux-gnu/sane/libsane-ricoh.so.1.0.31                28972
-etc/sane.d/ricoh.conf                                                28971
-usr/lib/x86_64-linux-gnu/sane/libsane-qcam.so.1.0.31                 28970
-etc/sane.d/qcam.conf                                                 28969
-usr/lib/x86_64-linux-gnu/sane/libsane-plustek.so.1.0.31              28968
-etc/sane.d/plustek.conf                                              28967
-usr/lib/x86_64-linux-gnu/sane/libsane-pixma.so.1.0.31                28966
-etc/sane.d/pixma.conf                                                28965
-usr/lib/x86_64-linux-gnu/sane/libsane-pieusb.so.1.0.31               28964
-etc/sane.d/pieusb.conf                                               28963
-usr/lib/x86_64-linux-gnu/sane/libsane-pie.so.1.0.31                  28962
-etc/sane.d/pie.conf                                                  28961
-usr/lib/x86_64-linux-gnu/sane/libsane-niash.so.1.0.31                28960
-usr/lib/x86_64-linux-gnu/sane/libsane-nec.so.1.0.31                  28959
-etc/sane.d/nec.conf                                                  28958
-usr/lib/x86_64-linux-gnu/sane/libsane-mustek_usb2.so.1.0.31          28957
-usr/lib/x86_64-linux-gnu/sane/libsane-mustek_usb.so.1.0.31           28956
-etc/sane.d/mustek_usb.conf                                           28955
-usr/lib/x86_64-linux-gnu/sane/libsane-mustek.so.1.0.31               28954
-usr/lib/x86_64-linux-gnu/libieee1284.so.3.2.2                        28953
-etc/sane.d/mustek.conf                                               28952
-usr/lib/x86_64-linux-gnu/sane/libsane-microtek2.so.1.0.31            28951
-etc/sane.d/microtek2.conf                                            28950
-usr/lib/x86_64-linux-gnu/sane/libsane-microtek.so.1.0.31             28949
-etc/sane.d/microtek.conf                                             28948
-usr/lib/x86_64-linux-gnu/sane/libsane-matsushita.so.1.0.31           28947
-etc/sane.d/matsushita.conf                                           28946
-usr/lib/x86_64-linux-gnu/sane/libsane-magicolor.so.1.0.31            28945
-usr/lib/x86_64-linux-gnu/libnetsnmp.so.40.0.0                        28944
-usr/lib/x86_64-linux-gnu/libtotem-plparser.so.18.3.4                 28943
-etc/sane.d/magicolor.conf                                            28942
-usr/lib/x86_64-linux-gnu/sane/libsane-ma1509.so.1.0.31               28941
-etc/sane.d/ma1509.conf                                               28940
-usr/lib/x86_64-linux-gnu/sane/libsane-lexmark.so.1.0.31              28939
-etc/sane.d/lexmark.conf                                              28938
-usr/lib/x86_64-linux-gnu/sane/libsane-leo.so.1.0.31                  28937
-etc/sane.d/leo.conf                                                  28936
-usr/lib/x86_64-linux-gnu/sane/libsane-kvs40xx.so.1.0.31              28935
-usr/lib/x86_64-linux-gnu/sane/libsane-kvs20xx.so.1.0.31              28934
-usr/lib/x86_64-linux-gnu/sane/libsane-kvs1025.so.1.0.31              28933
-usr/lib/x86_64-linux-gnu/sane/libsane-kodakaio.so.1.0.31             28932
-etc/sane.d/kodakaio.conf                                             28931
-usr/lib/x86_64-linux-gnu/sane/libsane-kodak.so.1.0.31                28930
-etc/sane.d/kodak.conf                                                28929
-usr/lib/x86_64-linux-gnu/sane/libsane-ibm.so.1.0.31                  28928
-etc/sane.d/ibm.conf                                                  28927
-usr/lib/x86_64-linux-gnu/sane/libsane-hs2p.so.1.0.31                 28926
-etc/sane.d/hs2p.conf                                                 28925
-usr/lib/x86_64-linux-gnu/sane/libsane-hpsj5s.so.1.0.31               28924
-etc/sane.d/hpsj5s.conf                                               28923
-usr/lib/x86_64-linux-gnu/sane/libsane-hpljm1005.so.1.0.31            28922
-usr/lib/x86_64-linux-gnu/sane/libsane-hp5590.so.1.0.31               28921
-usr/lib/x86_64-linux-gnu/sane/libsane-hp5400.so.1.0.31               28920
-etc/sane.d/hp5400.conf                                               28919
-usr/lib/x86_64-linux-gnu/sane/libsane-hp4200.so.1.0.31               28918
-etc/sane.d/hp4200.conf                                               28917
-usr/lib/x86_64-linux-gnu/sane/libsane-hp3900.so.1.0.31               28916
-etc/sane.d/hp3900.conf                                               28915
-usr/lib/x86_64-linux-gnu/sane/libsane-hp3500.so.1.0.31               28914
-usr/lib/x86_64-linux-gnu/sane/libsane-hp.so.1.0.31                   28913
-etc/sane.d/hp.conf                                                   28912
-usr/lib/x86_64-linux-gnu/sane/libsane-gt68xx.so.1.0.31               28911
-etc/sane.d/gt68xx.conf                                               28910
-usr/lib/x86_64-linux-gnu/sane/libsane-genesys.so.1.0.31              28909
-etc/sane.d/genesys.conf                                              28908
-usr/lib/x86_64-linux-gnu/sane/libsane-fujitsu.so.1.0.31              28907
-etc/sane.d/fujitsu.conf                                              28906
-usr/lib/x86_64-linux-gnu/sane/libsane-escl.so.1.0.31                 28905
-usr/lib/x86_64-linux-gnu/sane/libsane-epsonds.so.1.0.31              28904
-etc/sane.d/epsonds.conf                                              28903
-usr/lib/x86_64-linux-gnu/sane/libsane-epson2.so.1.0.31               28902
-etc/sane.d/epson2.conf                                               28901
-usr/lib/x86_64-linux-gnu/sane/libsane-epjitsu.so.1.0.31              28900
-etc/sane.d/epjitsu.conf                                              28899
-usr/lib/x86_64-linux-gnu/sane/libsane-dmc.so.1.0.31                  28898
-etc/sane.d/dmc.conf                                                  28897
-usr/lib/x86_64-linux-gnu/sane/libsane-dell1600n_net.so.1.0.31        28896
-usr/lib/x86_64-linux-gnu/sane/libsane-coolscan3.so.1.0.31            28895
-etc/sane.d/coolscan3.conf                                            28894
-usr/lib/x86_64-linux-gnu/sane/libsane-coolscan.so.1.0.31             28893
-etc/sane.d/coolscan.conf                                             28892
-usr/lib/x86_64-linux-gnu/sane/libsane-cardscan.so.1.0.31             28891
-etc/sane.d/cardscan.conf                                             28890
-usr/lib/x86_64-linux-gnu/sane/libsane-canon_lide70.so.1.0.31         28889
-etc/sane.d/canon_lide70.conf                                         28888
-usr/lib/x86_64-linux-gnu/sane/libsane-canon_dr.so.1.0.31             28887
-etc/sane.d/canon_dr.conf                                             28886
-usr/lib/x86_64-linux-gnu/sane/libsane-canon630u.so.1.0.31            28885
-etc/sane.d/canon630u.conf                                            28884
-usr/lib/x86_64-linux-gnu/sane/libsane-canon.so.1.0.31                28883
-usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-text.so 28882
-etc/sane.d/canon.conf                                                28881
-usr/lib/x86_64-linux-gnu/sane/libsane-bh.so.1.0.31                   28880
-etc/sane.d/bh.conf                                                   28879
-usr/lib/x86_64-linux-gnu/sane/libsane-avision.so.1.0.31              28878
-etc/sane.d/avision.conf                                              28877
-usr/lib/x86_64-linux-gnu/sane/libsane-as6e.so.1.0.31                 28876
-usr/lib/x86_64-linux-gnu/sane/libsane-artec_eplus48u.so.1.0.31       28875
-etc/sane.d/artec_eplus48u.conf                                       28874
-usr/lib/x86_64-linux-gnu/sane/libsane-artec.so.1.0.31                28873
-etc/sane.d/artec.conf                                                28872
-usr/lib/x86_64-linux-gnu/sane/libsane-apple.so.1.0.31                28871
-etc/sane.d/apple.conf                                                28870
-usr/lib/x86_64-linux-gnu/sane/libsane-agfafocus.so.1.0.31            28869
-etc/sane.d/agfafocus.conf                                            28868
-usr/lib/x86_64-linux-gnu/sane/libsane-abaton.so.1.0.31               28867
-etc/sane.d/abaton.conf                                               28866
-usr/lib/x86_64-linux-gnu/sane/libsane-net.so.1.0.31                  28865
-etc/sane.d/net.conf                                                  28864
-usr/lib/x86_64-linux-gnu/sane/libsane-hpaio.so.1.0.0                 28863
-usr/lib/x86_64-linux-gnu/libhpip.so.0.0.1                            28862
-usr/lib/x86_64-linux-gnu/libhpmud.so.0.0.6                           28861
-usr/lib/x86_64-linux-gnu/libhpdiscovery.so.0.0.1                     28860
-usr/lib/x86_64-linux-gnu/sane/libsane-airscan.so.1                   28859
-etc/sane.d/airscan.conf                                              28858
-usr/share/fonts/X11/Type1/fonts.dir                                  28857
-usr/bin/xkbcomp                                                      28856
-usr/share/X11/xkb/geometry/pc                                        28855
-usr/lib/x86_64-linux-gnu/libGLX_mesa.so.0.0.0                        28854
-usr/lib/x86_64-linux-gnu/libxcb-glx.so.0.0.0                         28853
-usr/lib/gnome-settings-daemon-3.0/gtk-modules/at-spi2-atk.desktop    28852
-usr/libexec/ibus-x11                                                 28851
-usr/bin/spice-vdagent                                                28848
-usr/share/X11/locale/locale.alias                                    28847
-usr/share/X11/locale/locale.dir                                      28846
-usr/share/X11/locale/en_US.UTF-8/XLC_LOCALE                          28845
-usr/lib/x86_64-linux-gnu/gconv/ISO8859-1.so                          28844
-etc/xdg/Xwayland-session.d/00-xrdb                                   28843
-etc/X11/Xsession.options                                             28842
-usr/bin/xrdb                                                         28841
-usr/lib/x86_64-linux-gnu/libXmuu.so.1.0.0                            28840
-etc/X11/Xresources/x11-common                                        28839
-usr/bin/x86_64-linux-gnu-cpp-10                                      28838
-usr/local/lib/tails-greeter                                          28835
-usr/share/tails/greeter/set-cursor.py                                28834
-usr/lib/python3/dist-packages/gi/__init__.py                         28833
-usr/lib/python3.9/pkgutil.py                                         28832
-usr/lib/gcc/x86_64-linux-gnu/10/cc1                                  28831
-usr/lib/python3/dist-packages/gi/_gi.cpython-39-x86_64-linux-gnu.so  28830
-usr/lib/python3/dist-packages/gi/_error.py                           28829
-usr/lib/python3/dist-packages/gi/_gi_cairo.cpython-39-x86_64-linux-gnu.so 28828
-usr/lib/x86_64-linux-gnu/libisl.so.23.0.0                            28827
-usr/lib/python3/dist-packages/cairo/__init__.py                      28826
-usr/lib/python3/dist-packages/cairo/_cairo.cpython-39-x86_64-linux-gnu.so 28825
-usr/lib/python3/dist-packages/gi/repository/__init__.py              28824
-usr/lib/python3/dist-packages/gi/importer.py                         28823
-usr/lib/python3/dist-packages/gi/module.py                           28822
-usr/lib/python3/dist-packages/gi/types.py                            28821
-usr/lib/python3/dist-packages/gi/_constants.py                       28820
-usr/lib/python3/dist-packages/gi/docstring.py                        28819
-usr/lib/python3/dist-packages/gi/_propertyhelper.py                  28818
-usr/lib/python3/dist-packages/gi/_signalhelper.py                    28817
-usr/lib/python3/dist-packages/gi/overrides/__init__.py               28816
-usr/lib/python3/dist-packages/gi/overrides/GLib.py                   28815
-usr/lib/python3/dist-packages/gi/_ossighelper.py                     28814
-usr/lib/python3/dist-packages/gi/_option.py                          28813
-usr/lib/python3.9/optparse.py                                        28812
-usr/lib/x86_64-linux-gnu/libmpc.so.3.2.0                             28811
-usr/lib/x86_64-linux-gnu/libmpfr.so.6.1.0                            28810
-usr/lib/python3/dist-packages/gi/overrides/GObject.py                28809
-usr/lib/python3/dist-packages/gi/overrides/Pango.py                  28808
-usr/lib/python3/dist-packages/gi/overrides/Gio.py                    28807
-usr/lib/python3/dist-packages/gi/overrides/GdkPixbuf.py              28806
-usr/lib/python3/dist-packages/gi/overrides/Gdk.py                    28805
-usr/lib/x86_64-linux-gnu/girepository-1.0/GdkX11-3.0.typelib         28804
-usr/lib/python3/dist-packages/gi/overrides/Gtk.py                    28803
-usr/lib/python3/dist-packages/gi/_gtktemplate.py                     28802
-usr/share/tails/greeter/tails-greeter.py                             28801
-usr/lib/python3.9/logging/config.py                                  28800
-usr/lib/python3.9/logging/handlers.py                                28799
-usr/lib/python3/dist-packages/tailsgreeter/__init__.py               28798
-usr/lib/python3/dist-packages/tailsgreeter/errors.py                 28797
-usr/lib/python3/dist-packages/tailsgreeter/greeter.py                28796
-usr/lib/python3/dist-packages/tailsgreeter/config.py                 28795
-usr/lib/python3/dist-packages/tailsgreeter/gdmclient.py              28794
-usr/lib/python3/dist-packages/tailsgreeter/settings/__init__.py      28793
-usr/lib/python3/dist-packages/tailsgreeter/settings/localization.py  28792
-usr/lib/python3/dist-packages/pycountry/__init__.py                  28791
-usr/lib/python3/dist-packages/pycountry/db.py                        28790
-usr/lib/python3.9/json/__init__.py                                   28789
-usr/lib/python3.9/json/decoder.py                                    28788
-usr/lib/python3.9/json/scanner.py                                    28787
-usr/lib/python3.9/lib-dynload/_json.cpython-39-x86_64-linux-gnu.so   28786
-usr/lib/python3.9/json/encoder.py                                    28785
-usr/lib/python3/dist-packages/pkg_resources/__init__.py              28784
-usr/lib/python3.9/zipfile.py                                         28783
-usr/lib/python3.9/plistlib.py                                        28782
-usr/lib/python3.9/xml/__init__.py                                    28781
-usr/lib/python3.9/xml/parsers/__init__.py                            28780
-usr/lib/python3.9/xml/parsers/expat.py                               28779
-usr/lib/python3.9/ntpath.py                                          28778
-usr/lib/python3/dist-packages/pkg_resources/extern/__init__.py       28777
-usr/lib/python3/dist-packages/pkg_resources/_vendor/__init__.py      28776
-usr/lib/python3/dist-packages/pkg_resources/_vendor/appdirs.py       28775
-usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/__init__.py 28774
-usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/__about__.py 28773
-usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/version.py 28772
-usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/_structures.py 28771
-usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/_typing.py 28770
-usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/specifiers.py 28769
-usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/_compat.py 28768
-usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/utils.py 28767
-usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/requirements.py 28766
-usr/lib/python3/dist-packages/pkg_resources/_vendor/pyparsing.py     28765
-usr/lib/python3.9/pprint.py                                          28764
-usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/markers.py 28763
-usr/lib/python3.9/sysconfig.py                                       28762
-usr/lib/python3/dist-packages/yarl-1.6.3.egg-info/PKG-INFO           28761
-usr/lib/python3/dist-packages/xdg-5.egg-info                         28760
-usr/lib/python3/dist-packages/Werkzeug-1.0.1.egg-info/PKG-INFO       28759
-usr/lib/python3/dist-packages/urllib3-1.26.5.egg-info/PKG-INFO       28758
-usr/lib/python3/dist-packages/typing_extensions-3.7.4.3.egg-info/PKG-INFO 28757
-usr/lib/python3/dist-packages/trezor-0.12.2.egg-info/PKG-INFO        28756
-usr/lib/python3/dist-packages/tinyrpc-0.6.egg-info/PKG-INFO          28755
-usr/lib/python3/dist-packages/systemd_python-234.egg-info            28754
-usr/lib/python3/dist-packages/stem-1.8.0.egg-info                    28753
-usr/lib/python3/dist-packages/six-1.16.0.egg-info/PKG-INFO           28752
-usr/lib/python3/dist-packages/sh-1.14.1.egg-info/PKG-INFO            28751
-usr/lib/python3/dist-packages/requests-2.25.1.egg-info/PKG-INFO      28750
-usr/lib/python3/dist-packages/reportlab-3.5.59.egg-info/PKG-INFO     28749
-usr/lib/python3/dist-packages/qrcode-6.1.egg-info/PKG-INFO           28748
-usr/lib/python3/dist-packages/PyYAML-5.3.1.egg-info                  28747
-usr/lib/python3/dist-packages/pyxdg-0.27.egg-info/PKG-INFO           28746
-usr/lib/python3/dist-packages/pyusb-1.0.2.egg-info/PKG-INFO          28745
-usr/lib/python3/dist-packages/pytz-2021.1.egg-info/PKG-INFO          28744
-usr/lib/python3/dist-packages/python_prctl-1.7.egg-info              28743
-usr/lib/python3/dist-packages/python_pam-1.8.4.egg-info/PKG-INFO     28742
-usr/lib/python3/dist-packages/python_gnupg-0.4.6.egg-info/PKG-INFO   28741
-usr/lib/python3/dist-packages/python_apt-2.2.1.egg-info/PKG-INFO     28740
-usr/lib/python3/dist-packages/PySocks-1.7.1.egg-info/PKG-INFO        28739
-usr/lib/python3/dist-packages/pyserial-3.5b0.egg-info/PKG-INFO       28738
-usr/lib/python3/dist-packages/PyQt5_sip-12.8.1.egg-info/PKG-INFO     28737
-usr/lib/python3/dist-packages/PyPDF2-1.26.0.egg-info                 28736
-usr/lib/python3/dist-packages/pyinotify-0.9.6.egg-info               28735
-usr/lib/python3/dist-packages/PyGObject-3.38.0.egg-info/PKG-INFO     28734
-usr/lib/python3/dist-packages/pydbus-0.6.0.egg-info/PKG-INFO         28733
-usr/lib/python3/dist-packages/pycurl-7.43.0.6.egg-info               28732
-usr/lib/python3/dist-packages/pycups-2.0.1.egg-info                  28731
-usr/lib/python3/dist-packages/pycryptodomex-3.9.7.egg-info/PKG-INFO  28730
-usr/lib/python3/dist-packages/pycountry-20.7.3.egg-info/PKG-INFO     28729
-usr/lib/python3/dist-packages/pycairo-1.16.2.egg-info                28728
-usr/lib/python3/dist-packages/psutil-5.8.0.egg-info/PKG-INFO         28727
-usr/lib/python3/dist-packages/protobuf-3.12.4.egg-info/PKG-INFO      28726
-usr/lib/python3/dist-packages/Pillow-8.1.2.egg-info/PKG-INFO         28725
-usr/lib/python3/dist-packages/pexpect-4.8.0.egg-info                 28724
-usr/lib/python3/dist-packages/onionshare-2.2.egg-info                28723
-usr/lib/python3/dist-packages/onioncircuits-0.7.egg-info             28722
-usr/lib/python3/dist-packages/mutagen-1.45.1.egg-info/PKG-INFO       28721
-usr/lib/python3/dist-packages/multidict-5.1.0.egg-info/PKG-INFO      28720
-usr/lib/python3/dist-packages/mnemonic-0.19.egg-info/PKG-INFO        28719
-usr/lib/python3/dist-packages/MarkupSafe-1.1.1.egg-info/PKG-INFO     28718
-usr/lib/python3/dist-packages/louis-3.16.0.egg-info                  28717
-usr/lib/python3/dist-packages/libusb1-1.9.1.egg-info/PKG-INFO        28716
-usr/lib/python3/dist-packages/Jinja2-2.11.3.egg-info/PKG-INFO        28715
-usr/lib/python3/dist-packages/itsdangerous-1.1.0.egg-info/PKG-INFO   28714
-usr/lib/python3/dist-packages/idna-2.10.egg-info/PKG-INFO            28713
-usr/lib/python3/dist-packages/hidapi-0.9.0.post3.egg-info/PKG-INFO   28712
-usr/lib/python3/dist-packages/Flask-1.1.2.egg-info/PKG-INFO          28711
-usr/lib/python3/dist-packages/Flask_HTTPAuth-3.2.4.egg-info/PKG-INFO 28710
-usr/lib/python3/dist-packages/Electrum-4.0.9.egg-info/PKG-INFO       28709
-usr/lib/python3/dist-packages/ecdsa-0.16.1.egg-info/PKG-INFO         28708
-usr/lib/python3/dist-packages/dogtail-0.9.11.egg-info/PKG-INFO       28707
-usr/lib/python3/dist-packages/dnspython-2.0.0.egg-info/PKG-INFO      28706
-usr/lib/python3/dist-packages/distro-1.5.0.egg-info/PKG-INFO         28705
-usr/lib/python3/dist-packages/dbus_python-1.2.16.egg-info/PKG-INFO   28704
-usr/lib/python3/dist-packages/cupshelpers-1.0.egg-info               28703
-usr/lib/python3/dist-packages/cryptography-3.3.2.egg-info/PKG-INFO   28702
-usr/lib/python3/dist-packages/construct-2.10.58.egg-info/PKG-INFO    28701
-usr/lib/python3/dist-packages/colorama-0.4.4.egg-info/PKG-INFO       28700
-usr/lib/python3/dist-packages/click-7.1.2.egg-info/PKG-INFO          28699
-usr/lib/python3/dist-packages/chardet-4.0.0.egg-info/PKG-INFO        28698
-usr/lib/python3/dist-packages/certifi-2020.6.20.egg-info/PKG-INFO    28697
-usr/lib/python3/dist-packages/btchip_python-0.1.31.egg-info/PKG-INFO 28696
-usr/lib/python3/dist-packages/Brlapi-0.8.2.egg-info                  28695
-usr/lib/python3/dist-packages/bookletimposer-0.3.egg-info            28694
-usr/lib/python3/dist-packages/bitstring-3.1.7.egg-info               28693
-usr/lib/python3/dist-packages/attrs-20.3.0.egg-info/PKG-INFO         28692
-usr/lib/python3/dist-packages/atomicwrites-1.4.0.egg-info/PKG-INFO   28691
-usr/lib/python3/dist-packages/async_timeout-3.0.1.egg-info/PKG-INFO  28690
-usr/lib/python3/dist-packages/aiorpcX-0.18.5.egg-info/PKG-INFO       28689
-usr/lib/python3/dist-packages/aiohttp-3.7.4.egg-info/PKG-INFO        28688
-usr/lib/python3/dist-packages/aiohttp_socks-0.5.3.egg-info/PKG-INFO  28687
-usr/lib/python3/dist-packages/protobuf-3.12.4.egg-info/namespace_packages.txt 28686
-usr/lib/python3/dist-packages/tailsgreeter/settings/admin.py         28685
-usr/lib/python3/dist-packages/tailsgreeter/settings/utils.py         28684
-usr/lib/python3.9/shlex.py                                           28683
-usr/lib/python3/dist-packages/tailsgreeter/settings/localization_settings.py 28682
-usr/lib/python3/dist-packages/tailsgreeter/settings/formats.py       28681
-usr/lib/python3/dist-packages/tailsgreeter/settings/keyboard.py      28680
-usr/lib/python3/dist-packages/tailsgreeter/settings/language.py      28679
-usr/lib/python3/dist-packages/tailsgreeter/settings/macspoof.py      28678
-usr/lib/python3/dist-packages/tailsgreeter/settings/setting.py       28677
-usr/lib/python3/dist-packages/tailsgreeter/settings/network.py       28676
-usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py   28675
-usr/lib/python3/dist-packages/tps/__init__.py                        28674
-usr/lib/x86_64-linux-gnu/girepository-1.0/UDisks-2.0.typelib         28673
-usr/lib/python3/dist-packages/tps/dbus/__init__.py                   28672
-usr/lib/python3/dist-packages/tps/dbus/errors.py                     28671
-usr/lib/python3/dist-packages/tailsgreeter/settings/persistent_storage_create.py 28670
-usr/lib/python3.9/pathlib.py                                         28669
-usr/lib/python3/dist-packages/tailsgreeter/settings/unsafe_browser.py 28668
-usr/lib/python3/dist-packages/tailsgreeter/translatable_window.py    28667
-usr/lib/python3/dist-packages/tailsgreeter/ui/__init__.py            28666
-usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py 28665
-usr/lib/python3/dist-packages/tailsgreeter/ui/setting.py             28664
-usr/lib/python3/dist-packages/tailsgreeter/ui/popover.py             28663
-usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py         28662
-usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py 28661
-usr/lib/python3/dist-packages/tailsgreeter/ui/message_dialog.py      28660
-usr/lib/python3/dist-packages/tailsgreeter/ui/help_window.py         28659
-usr/lib/python3.9/webbrowser.py                                      28658
-usr/lib/x86_64-linux-gnu/girepository-1.0/WebKit2-4.0.typelib        28657
-usr/lib/x86_64-linux-gnu/girepository-1.0/JavaScriptCore-4.0.typelib 28656
-usr/lib/python3/dist-packages/tailsgreeter/ui/region_settings.py     28655
-usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py  28654
-usr/lib/python3/dist-packages/sh.py                                  28653
-usr/lib/python3.9/pty.py                                             28652
-usr/lib/python3.9/tty.py                                             28651
-usr/lib/python3/dist-packages/tailsgreeter/ui/settings_collection.py 28650
-usr/lib/python3.9/configparser.py                                    28649
-usr/share/tails/greeter/tails-logging.conf                           28648
-lib/systemd/system/tails-persistent-storage.service                  28647
-lib/systemd/systemd-update-utmp                                      28643
-usr/local/lib/persistent-storage/pre-start                           28642
-bin/mountpoint                                                       28641
-usr/local/lib/tps                                                    28640
-usr/lib/python3/dist-packages/tps/logging.py                         28606
-usr/lib/python3/dist-packages/tps/service.py                         28605
-usr/lib/python3/dist-packages/tps/executil.py                        28604
-usr/lib/python3/dist-packages/tps/configuration/__init__.py          28603
-usr/lib/python3/dist-packages/tps/configuration/features.py          28602
-usr/lib/python3/dist-packages/tps/configuration/conflicting_app.py   28597
-usr/lib/python3/dist-packages/tps/configuration/mount.py             28590
-usr/lib/python3/dist-packages/tailslib/__init__.py                   28588
-usr/lib/python3/dist-packages/tps/mountutil.py                       28587
-usr/lib/python3/dist-packages/tps/configuration/feature.py           28586
-usr/lib/python3/dist-packages/tps/dbus/object.py                     28585
-usr/lib/python3.9/cProfile.py                                        28584
-usr/lib/python3.9/lib-dynload/_lsprof.cpython-39-x86_64-linux-gnu.so 28582
-usr/lib/python3.9/profile.py                                         28581
-usr/lib/python3.9/pstats.py                                          28579
-usr/lib/python3.9/dataclasses.py                                     28577
-usr/lib/python3/dist-packages/tps/job.py                             28574
-usr/lib/python3/dist-packages/tps/configuration/config_file.py       28573
-usr/lib/python3/dist-packages/tps/device.py                          28572
-usr/lib/python3/dist-packages/tps/udisks_monitor.py                  28571
-usr/share/tails/greeter/supported_locales                            28570
-usr/share/locale/fa/LC_MESSAGES/iso_639-2.mo                         28569
-usr/share/locale/hi/LC_MESSAGES/iso_639-2.mo                         28568
-usr/share/tails/greeter/setting.ui                                   28567
-usr/share/locale/ar/LC_MESSAGES/iso_639-2.mo                         28566
-usr/share/locale/ar/LC_MESSAGES/iso_3166-1.mo                        28565
-usr/share/locale/my/LC_MESSAGES/iso_3166-1.mo                        28564
-usr/share/locale/ca/LC_MESSAGES/iso_639-2.mo                         28563
-usr/share/locale/ca/LC_MESSAGES/iso_3166-1.mo                        28562
-usr/share/locale/km/LC_MESSAGES/iso_3166-1.mo                        28561
-usr/share/locale/zh_CN/LC_MESSAGES/iso_639-2.mo                      28560
-usr/share/locale/zh_CN/LC_MESSAGES/iso_3166-1.mo                     28559
-usr/share/locale/zh_HK/LC_MESSAGES/iso_639-2.mo                      28558
-usr/share/locale/zh_HK/LC_MESSAGES/iso_3166-1.mo                     28557
-usr/share/locale/zh_TW/LC_MESSAGES/iso_639-2.mo                      28556
-usr/share/locale/zh_TW/LC_MESSAGES/iso_3166-1.mo                     28555
-usr/share/locale/hr/LC_MESSAGES/iso_639-2.mo                         28554
-usr/share/locale/hr/LC_MESSAGES/iso_3166-1.mo                        28553
-usr/share/locale/cs/LC_MESSAGES/iso_639-2.mo                         28552
-usr/share/locale/cs/LC_MESSAGES/iso_3166-1.mo                        28551
-usr/share/locale/da/LC_MESSAGES/iso_639-2.mo                         28550
-usr/share/locale/da/LC_MESSAGES/iso_3166-1.mo                        28549
-usr/share/locale/nl/LC_MESSAGES/iso_639-2.mo                         28548
-usr/share/locale/nl/LC_MESSAGES/iso_3166-1.mo                        28547
-usr/share/locale/fi/LC_MESSAGES/iso_639-2.mo                         28546
-usr/share/locale/fi/LC_MESSAGES/iso_3166-1.mo                        28545
-usr/share/locale/fr/LC_MESSAGES/iso_639-2.mo                         28544
-usr/share/locale/fr/LC_MESSAGES/iso_3166-1.mo                        28543
-usr/share/locale/ka/LC_MESSAGES/iso_3166-1.mo                        28542
-usr/share/locale/de/LC_MESSAGES/iso_639-2.mo                         28541
-usr/share/locale/de/LC_MESSAGES/iso_3166-1.mo                        28540
-usr/share/locale/el/LC_MESSAGES/iso_639-2.mo                         28539
-usr/share/locale/el/LC_MESSAGES/iso_3166-1.mo                        28538
-usr/share/locale/he/LC_MESSAGES/iso_639-2.mo                         28537
-usr/share/locale/he/LC_MESSAGES/iso_3166-1.mo                        28536
-usr/share/locale/hu/LC_MESSAGES/iso_639-2.mo                         28535
-usr/share/locale/hu/LC_MESSAGES/iso_3166-1.mo                        28534
-usr/share/locale/id/LC_MESSAGES/iso_639-2.mo                         28533
-usr/share/locale/id/LC_MESSAGES/iso_3166-1.mo                        28532
-usr/share/locale/ga/LC_MESSAGES/iso_639-2.mo                         28531
-usr/share/locale/ga/LC_MESSAGES/iso_3166-1.mo                        28530
-usr/share/locale/it/LC_MESSAGES/iso_639-2.mo                         28529
-usr/share/locale/it/LC_MESSAGES/iso_3166-1.mo                        28528
-usr/share/locale/lt/LC_MESSAGES/iso_639-2.mo                         28527
-usr/share/locale/lt/LC_MESSAGES/iso_3166-1.mo                        28526
-usr/share/locale/mk/LC_MESSAGES/iso_639-2.mo                         28525
-usr/share/locale/mk/LC_MESSAGES/iso_3166-1.mo                        28524
-usr/share/locale/pt_BR/LC_MESSAGES/iso_639-2.mo                      28523
-usr/share/locale/pt_BR/LC_MESSAGES/iso_3166-1.mo                     28522
-usr/share/locale/pt/LC_MESSAGES/iso_639-2.mo                         28521
-usr/share/locale/pt/LC_MESSAGES/iso_3166-1.mo                        28520
-usr/share/locale/ro/LC_MESSAGES/iso_639-2.mo                         28519
-usr/share/locale/ro/LC_MESSAGES/iso_3166-1.mo                        28518
-usr/share/locale/ru/LC_MESSAGES/iso_639-2.mo                         28517
-usr/share/locale/ru/LC_MESSAGES/iso_3166-1.mo                        28516
-usr/share/locale/es/LC_MESSAGES/iso_639-2.mo                         28515
-usr/share/locale/es/LC_MESSAGES/iso_3166-1.mo                        28514
-usr/share/locale/sv/LC_MESSAGES/iso_639-2.mo                         28513
-usr/share/locale/sv/LC_MESSAGES/iso_3166-1.mo                        28512
-usr/share/locale/tr/LC_MESSAGES/iso_639-2.mo                         28511
-usr/share/locale/tr/LC_MESSAGES/iso_3166-1.mo                        28510
-usr/share/locale/fa/LC_MESSAGES/iso_3166-1.mo                        28509
-usr/share/locale/hi/LC_MESSAGES/iso_3166-1.mo                        28508
-usr/share/tails/greeter/region_settings.ui                           28507
-usr/lib/locale/C.UTF-8/LC_MESSAGES/SYS_LC_MESSAGES                   28505
-usr/share/tails/greeter/additional_settings.ui                       28504
-usr/share/locale/en_US/LC_MESSAGES/tails.mo                          28503
-usr/lib/x86_64-linux-gnu/gtk-3.0/3.0.0/immodules.cache               28502
-usr/lib/x86_64-linux-gnu/gtk-3.0/3.0.0/immodules/im-wayland.so       28501
-usr/share/tails/greeter/greeter.css                                  28500
-usr/share/tails/greeter/main.ui                                      28499
-usr/share/icons/tails-persistent-storage.svg                         28498
-usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-svg.so 28497
-usr/share/iso-codes/json/iso_639-3.json                              28496
-usr/share/fonts/opentype/cantarell/Cantarell-Bold.otf                28494
-usr/share/icons/hicolor/scalable/actions/tails-help.svg              28493
-usr/share/icons/hicolor/scalable/actions/tails-language.svg          28492
-usr/share/icons/hicolor/scalable/actions/tails-keyboard-layout.svg   28491
-usr/share/icons/hicolor/scalable/actions/tails-formats.svg           28490
-usr/share/icons/Adwaita/16x16/actions/list-add-symbolic.symbolic.png 28489
-usr/lib/systemd/user/gvfs-metadata.service                           28488
-usr/libexec/gvfsd-metadata                                           28486
-etc/pam.d/gdm-password                                               28483
-lib/x86_64-linux-gnu/security/pam_succeed_if.so                      28482
-lib/systemd/system/user@1000.service.d/timeout.conf                  28478
-etc/gdm3/PostLogin/Default                                           28454
-etc/live/config.d/username.conf                                      28449
-usr/bin/localectl                                                    28448
-usr/share/systemd/language-fallback-map                              28439
-etc/dconf/db/ibus.d/00-upstream-settings                             28437
-etc/dconf/db/local.d/00_Tails_defaults                               28432
-usr/local/lib/tails-unblock-network                                  28428
-usr/local/lib/tails-shell-library/tails-greeter.sh                   28427
-lib/systemd/system/tails-unblock-network.service                     28426
-bin/sync                                                             28423
-lib/systemd/network/99-default.link                                  28419
-lib/systemd/network/73-usb-net-by-mac.link                           28418
-etc/udev/rules.d/00-mac-spoof.rules                                  28417
-lib/udev/rules.d/39-usbmuxd.rules                                    28416
-lib/udev/rules.d/40-usb_modeswitch.rules                             28415
-lib/udev/rules.d/50-firmware.rules                                   28414
-lib/udev/rules.d/50-udev-default.rules                               28413
-lib/udev/rules.d/55-dm.rules                                         28412
-lib/udev/rules.d/56-hpmud.rules                                      28411
-lib/udev/rules.d/56-lvm.rules                                        28410
-lib/udev/rules.d/60-autosuspend.rules                                28409
-lib/udev/rules.d/60-block.rules                                      28408
-lib/udev/rules.d/60-cdrom_id.rules                                   28407
-lib/udev/rules.d/60-crda.rules                                       28406
-lib/udev/rules.d/60-drm.rules                                        28405
-lib/udev/rules.d/60-evdev.rules                                      28404
-lib/udev/rules.d/60-fido-id.rules                                    28403
-lib/udev/rules.d/60-gobi-loader.rules                                28402
-lib/udev/rules.d/60-input-id.rules                                   28401
-lib/udev/rules.d/60-libgphoto2-6.rules                               28400
-lib/udev/rules.d/60-libopenni2-0.rules                               28399
-lib/udev/rules.d/60-libsane1.rules                                   28398
-lib/udev/rules.d/60-open-vm-tools.rules                              28397
-lib/udev/rules.d/60-persistent-alsa.rules                            28396
-lib/udev/rules.d/60-persistent-input.rules                           28395
-lib/udev/rules.d/60-persistent-storage-dm.rules                      28394
-lib/udev/rules.d/60-persistent-storage-tape.rules                    28393
-lib/udev/rules.d/60-persistent-storage.rules                         28392
-lib/udev/rules.d/60-persistent-v4l.rules                             28391
-lib/udev/rules.d/60-python3-btchip.rules                             28390
-lib/udev/rules.d/60-scdaemon.rules                                   28389
-lib/udev/rules.d/60-sensor.rules                                     28388
-lib/udev/rules.d/60-serial.rules                                     28387
-lib/udev/rules.d/60-trezor.rules                                     28386
-lib/udev/rules.d/61-gdm.rules                                        28385
-lib/udev/rules.d/61-gnome-settings-daemon-rfkill.rules               28384
-lib/udev/rules.d/61-mutter.rules                                     28383
-lib/udev/rules.d/64-btrfs.rules                                      28382
-lib/udev/rules.d/65-libwacom.rules                                   28381
-lib/udev/rules.d/66-bilibop.rules                                    28380
-lib/udev/rules.d/69-cd-sensors.rules                                 28379
-lib/udev/rules.d/69-libmtp.rules                                     28378
-lib/udev/rules.d/69-lvm-metad.rules                                  28377
-lib/udev/rules.d/70-joystick.rules                                   28376
-lib/udev/rules.d/70-mouse.rules                                      28375
-lib/udev/rules.d/70-power-switch.rules                               28374
-etc/udev/rules.d/70-protect-boot-medium-for-udisks.rules             28373
-lib/udev/rules.d/70-spice-vdagentd.rules                             28372
-lib/udev/rules.d/70-touchpad.rules                                   28371
-lib/udev/rules.d/70-uaccess.rules                                    28370
-lib/udev/rules.d/71-ipp-usb.rules                                    28369
-lib/udev/rules.d/71-seat.rules                                       28368
-lib/udev/rules.d/73-seat-late.rules                                  28367
-lib/udev/rules.d/73-special-net-names.rules                          28366
-lib/udev/rules.d/75-net-description.rules                            28365
-lib/udev/rules.d/75-probe_mtd.rules                                  28364
-lib/udev/rules.d/77-mm-broadmobi-port-types.rules                    28363
-lib/udev/rules.d/77-mm-cinterion-port-types.rules                    28362
-lib/udev/rules.d/77-mm-dell-port-types.rules                         28361
-lib/udev/rules.d/77-mm-dlink-port-types.rules                        28360
-lib/udev/rules.d/77-mm-ericsson-mbm.rules                            28359
-lib/udev/rules.d/77-mm-fibocom-port-types.rules                      28358
-lib/udev/rules.d/77-mm-foxconn-port-types.rules                      28357
-lib/udev/rules.d/77-mm-haier-port-types.rules                        28356
-lib/udev/rules.d/77-mm-huawei-net-port-types.rules                   28355
-lib/udev/rules.d/77-mm-longcheer-port-types.rules                    28354
-lib/udev/rules.d/77-mm-mtk-port-types.rules                          28353
-lib/udev/rules.d/77-mm-nokia-port-types.rules                        28352
-lib/udev/rules.d/77-mm-pcmcia-device-blacklist.rules                 28351
-lib/udev/rules.d/77-mm-qdl-device-blacklist.rules                    28350
-lib/udev/rules.d/77-mm-quectel-port-types.rules                      28349
-lib/udev/rules.d/77-mm-sierra.rules                                  28348
-lib/udev/rules.d/77-mm-simtech-port-types.rules                      28347
-lib/udev/rules.d/77-mm-telit-port-types.rules                        28318
-lib/udev/rules.d/77-mm-tplink-port-types.rules                       28317
-lib/udev/rules.d/77-mm-ublox-port-types.rules                        28316
-lib/udev/rules.d/77-mm-usb-device-blacklist.rules                    28315
-lib/udev/rules.d/77-mm-usb-serial-adapters-greylist.rules            28314
-lib/udev/rules.d/77-mm-x22x-port-types.rules                         28313
-lib/udev/rules.d/77-mm-zte-port-types.rules                          28312
-lib/udev/rules.d/78-sound-card.rules                                 28311
-lib/udev/rules.d/80-debian-compat.rules                              28310
-lib/udev/rules.d/80-drivers.rules                                    28309
-lib/udev/rules.d/80-ifupdown.rules                                   28308
-lib/udev/rules.d/80-libinput-device-groups.rules                     28307
-lib/udev/rules.d/80-mm-candidate.rules                               28306
-lib/udev/rules.d/80-udisks2.rules                                    28305
-lib/udev/rules.d/84-nm-drivers.rules                                 28304
-lib/udev/rules.d/85-hdparm.rules                                     28303
-usr/lib/udev/rules.d/85-hwclock.rules                                28302
-etc/udev/rules.d/85-nm-unmanage-veth.rules                           28301
-lib/udev/rules.d/85-nm-unmanaged.rules                               28300
-lib/udev/rules.d/85-regulatory.rules                                 28299
-lib/udev/rules.d/90-alsa-restore.rules                               28298
-lib/udev/rules.d/90-bolt.rules                                       28297
-lib/udev/rules.d/90-console-setup.rules                              28296
-lib/udev/rules.d/90-iphone-tether.rules                              28295
-lib/udev/rules.d/90-libinput-fuzz-override.rules                     28294
-lib/udev/rules.d/90-nm-thunderbolt.rules                             28293
-lib/udev/rules.d/90-pipewire-alsa.rules                              28292
-lib/udev/rules.d/90-pulseaudio.rules                                 28291
-lib/udev/rules.d/92-libccid.rules                                    28290
-lib/udev/rules.d/95-cd-devices.rules                                 28279
-lib/udev/rules.d/95-dm-notify.rules                                  28278
-lib/udev/rules.d/95-upower-csr.rules                                 28277
-lib/udev/rules.d/95-upower-hid.rules                                 28276
-lib/udev/rules.d/95-upower-hidpp.rules                               28275
-lib/udev/rules.d/95-upower-wup.rules                                 28274
-lib/udev/rules.d/96-e2scrub.rules                                    28273
-etc/udev/rules.d/99-hide-TailsData.rules                             28272
-lib/udev/rules.d/99-laptop-mode.rules                                28271
-lib/udev/rules.d/99-libsane1.rules                                   28270
-etc/udev/rules.d/99-make-removable-devices-user-writable.rules       28269
-lib/udev/rules.d/99-systemd.rules                                    28268
-lib/udev/rules.d/99-vmware-scsi-udev.rules                           28267
-lib/udev/libinput-device-group                                       28137
-lib/udev/lmt-udev                                                    28071
-lib/systemd/system/systemd-udev-settle.service                       28038
-lib/udev/ata_id                                                      27958
-usr/lib/udev/hwclock-set                                             27927
-lib/udev/hdparm                                                      27923
-lib/udev/libinput-fuzz-extract                                       27921
-lib/udev/libinput-fuzz-to-zero                                       27917
-sbin/on_ac_power                                                     27916
-usr/lib/pm-utils/power.d/95hdparm-apm                                27894
-etc/console-setup/cached_setup_terminal.sh                           27745
-etc/console-setup/cached_setup_font.sh                               27737
-bin/setfont                                                          27735
-lib/modules/6.0.0-0.deb11.6-amd64/kernel/lib/crypto/libarc4.ko       27733
-usr/share/consolefonts/Uni1-Fixed16.psf.gz                           27731
-usr/local/lib/tails-spoof-mac                                        27726
-usr/local/lib/tails-shell-library/hardware.sh                        27724
-usr/local/lib/tails-shell-library/log.sh                             27723
-usr/bin/gettext.sh                                                   27721
-usr/bin/macchanger                                                   27720
-usr/share/macchanger/OUI.list                                        27719
-usr/share/macchanger/wireless.list                                   27718
-lib/crda/setregdomain                                                27708
-lib/systemd/systemd-rfkill                                           27706
-etc/default/crda                                                     27703
-usr/libexec/bilibop/test                                             27683
-usr/lib/bilibop/common.sh                                            27682
-lib/systemd/system/NetworkManager.service                            27663
-lib/systemd/system/NetworkManager-wait-online.service                27662
-lib/systemd/system/NetworkManager-dispatcher.service                 27661
-etc/systemd/system.conf                                              27660
-lib/systemd/system.conf.d/lower-DefaultTimeoutStopSec.conf           27659
-lib/systemd/system-generators/systemd-getty-generator                27658
-lib/systemd/system-generators/systemd-gpt-auto-generator             27657
-lib/systemd/system-generators/systemd-fstab-generator                27656
-lib/systemd/system-generators/systemd-cryptsetup-generator           27655
-lib/systemd/system-generators/systemd-debug-generator                27654
-lib/systemd/system-generators/systemd-rc-local-generator             27653
-lib/systemd/system-generators/systemd-hibernate-resume-generator     27652
-lib/systemd/system-generators/live-config-getty-generator            27651
-lib/live/init-config.sh                                              27650
-etc/live/config.d/noroot.conf                                        27649
-etc/live/config.d/user-default-groups.conf                           27648
-lib/systemd/system-generators/systemd-run-generator                  27647
-lib/systemd/system-generators/lvm2-activation-generator              27646
-lib/systemd/system-generators/systemd-bless-boot-generator           27645
-lib/systemd/system-generators/systemd-system-update-generator        27644
-lib/systemd/system-generators/systemd-sysv-generator                 27643
-lib/systemd/system-generators/systemd-veritysetup-generator          27642
-lib/systemd/system-generators/tor-generator                          27641
-sbin/lvm                                                             27640
-lib/systemd/system/alsa-utils.service                                27639
-etc/systemd/system/avahi-daemon.service                              27638
-lib/x86_64-linux-gnu/libdevmapper-event.so.1.02.1                    27637
-usr/lib/x86_64-linux-gnu/libaio.so.1.0.1                             27636
-etc/lvm/lvm.conf                                                     27635
-etc/lvm/lvmlocal.conf                                                27634
-lib/systemd/system/gdm3.service                                      27633
-lib/systemd/system/gdm.service                                       27632
-lib/systemd/system/hwclock.service                                   27631
-lib/systemd/system/kmod.service                                      27630
-lib/systemd/system/systemd-modules-load.service                      27629
-etc/systemd/system/live-tools.service                                27628
-lib/systemd/system/lvm2.service                                      27627
-lib/systemd/system/plymouth.service                                  27626
-lib/systemd/system/plymouth-quit.service                             27625
-lib/systemd/system/plymouth-log.service                              27624
-lib/systemd/system/plymouth-read-write.service                       27623
-lib/systemd/system/procps.service                                    27622
-lib/systemd/system/systemd-sysctl.service                            27621
-lib/systemd/system/pulseaudio-enable-autospawn.service               27620
-lib/systemd/system/saned.service                                     27619
-lib/systemd/system/speech-dispatcher.service                         27618
-lib/systemd/system/speech-dispatcherd.service                        27617
-lib/systemd/system/spice-vdagent.service                             27616
-lib/systemd/system/spice-vdagentd.service                            27615
-lib/systemd/system/sudo.service                                      27614
-lib/systemd/system/udev.service                                      27613
-lib/systemd/system/systemd-udevd.service                             27612
-lib/systemd/system/x11-common.service                                27611
-etc/init.d/gdomap                                                    27610
-lib/systemd/system/wpa_supplicant.service                            27609
-lib/systemd/system/avahi-daemon.service                              27608
-lib/systemd/system/ModemManager.service                              27607
-lib/systemd/system/systemd-timesyncd.service                         27606
-lib/systemd/system/open-vm-tools.service                             27605
-lib/systemd/system/getty@.service                                    27604
-lib/systemd/system/reboot.target                                     27603
-lib/systemd/system/systemd-logind.service                            27602
-lib/systemd/system/systemd-timedated.service                         27601
-lib/systemd/system/graphical.target                                  27600
-lib/systemd/system/poweroff.target                                   27599
-lib/systemd/system/rescue.target                                     27598
-lib/systemd/system/multi-user.target                                 27597
-lib/systemd/system/systemd-backlight@.service                        27596
-lib/systemd/system/systemd-journald.socket                           27595
-lib/systemd/system/systemd-journald.service                          27594
-lib/systemd/system/syslog.socket                                     27593
-lib/systemd/system/emergency.service                                 27592
-lib/systemd/system/rescue.service                                    27591
-lib/systemd/system/plymouth-start.service                            27590
-lib/systemd/system/systemd-ask-password-plymouth.service             27589
-lib/systemd/system/keyboard-setup.service                            27588
-lib/systemd/system/local-fs-pre.target                               27587
-lib/systemd/system/systemd-udevd-kernel.socket                       27586
-lib/systemd/system/systemd-udevd-control.socket                      27585
-lib/systemd/system/systemd-hwdb-update.service                       27584
-lib/systemd/system/systemd-sysusers.service                          27583
-lib/systemd/system/systemd-udev-trigger.service                      27582
-lib/systemd/system/systemd-ask-password-plymouth.path                27581
-lib/systemd/system/basic.target                                      27580
-lib/systemd/system/live-config.service                               27579
-lib/systemd/system/live-config.service.d/after-tmpfiles.conf         27578
-lib/systemd/system/systemd-tmpfiles-setup.service                    27577
-lib/systemd/system/local-fs.target                                   27576
-lib/systemd/system/emergency.target                                  27575
-lib/systemd/system/slices.target                                     27574
-lib/systemd/system/paths.target                                      27573
-lib/systemd/system/timers.target                                     27572
-lib/systemd/system/systemd-tmpfiles-clean.timer                      27571
-lib/systemd/system/systemd-tmpfiles-clean.service                    27570
-lib/systemd/system/time-set.target                                   27569
-lib/systemd/system/logrotate.timer                                   27568
-lib/systemd/system/time-sync.target                                  27567
-lib/systemd/system/logrotate.service                                 27566
-lib/systemd/system/fstrim.timer                                      27565
-lib/systemd/system/fstrim.service                                    27564
-lib/systemd/system/e2scrub_all.timer                                 27563
-lib/systemd/system/e2scrub_all.service                               27562
-lib/systemd/system/apt-daily.timer                                   27561
-lib/systemd/system/apt-daily.service                                 27560
-lib/systemd/system/dbus.socket                                       27559
-lib/systemd/system/dbus.service                                      27558
-lib/systemd/system/network-pre.target                                27557
-lib/systemd/system/network-online.target                             27556
-lib/systemd/system/networking.service                                27555
-lib/systemd/system/apparmor.service                                  27554
-lib/systemd/system/ifupdown-pre.service                              27553
-lib/systemd/system/network.target                                    27552
-lib/systemd/system/apt-daily-upgrade.timer                           27551
-lib/systemd/system/apt-daily-upgrade.service                         27550
-lib/systemd/system/systemd-journald-audit.socket                     27549
-lib/systemd/system/systemd-journald-dev-log.socket                   27548
-lib/systemd/system/sockets.target                                    27547
-lib/systemd/system/tca-portal.socket                                 27546
-lib/systemd/system/tca-portal.service                                27545
-lib/systemd/system/systemd-initctl.socket                            27544
-lib/systemd/system/systemd-initctl.service                           27543
-lib/systemd/system/pcscd.socket                                      27542
-lib/systemd/system/pcscd.service                                     27541
-lib/systemd/system/dm-event.socket                                   27540
-lib/systemd/system/dm-event.service                                  27539
-lib/systemd/system/cups.socket                                       27538
-lib/systemd/system/cups.service                                      27537
-lib/systemd/system/cups.service.d/after-AppArmor.conf                27536
-lib/systemd/system/systemd-remount-fs.service                        27535
-lib/systemd/system/systemd-fsck-root.service                         27534
-lib/systemd/system/systemd-fsckd.socket                              27533
-lib/systemd/system/systemd-fsckd.service                             27532
-lib/systemd/system/sysinit.target                                    27531
-lib/systemd/system/tails-create-netns.service                        27530
-lib/systemd/system/onion-grater.service                              27529
-lib/systemd/system/systemd-update-utmp.service                       27528
-lib/systemd/system/systemd-update-utmp.service.d/empty-overlayfs-rw-tmpfs.conf 27527
-lib/systemd/system/systemd-tmpfiles-setup-dev.service                27526
-lib/systemd/system/systemd-random-seed.service                       27525
-lib/systemd/system/first-boot-complete.target                        27524
-lib/systemd/system/systemd-pstore.service                            27523
-lib/systemd/system/systemd-machine-id-commit.service                 27522
-lib/systemd/system/systemd-journal-flush.service                     27521
-lib/systemd/system/systemd-boot-system-token.service                 27520
-lib/systemd/system/systemd-binfmt.service                            27519
-lib/systemd/system/systemd-ask-password-console.path                 27518
-lib/systemd/system/systemd-ask-password-console.service              27517
-lib/systemd/system/proc-sys-fs-binfmt_misc.automount                 27516
-lib/systemd/system/lvm2-monitor.service                              27515
-lib/systemd/system/lvm2-lvmpolld.socket                              27514
-lib/systemd/system/lvm2-lvmpolld.service                             27513
-lib/systemd/system/kmod-static-nodes.service                         27512
-lib/systemd/system/haveged.service                                   27511
-lib/systemd/system/ferm.service                                      27510
-lib/systemd/system/cryptsetup.target                                 27509
-lib/systemd/system/blk-availability.service                          27508
-lib/systemd/system/swap.target                                       27507
-lib/systemd/system/shutdown.target                                   27506
-lib/systemd/system/umount.target                                     27505
-lib/systemd/system/proc-sys-fs-binfmt_misc.mount                     27504
-lib/systemd/system/sys-kernel-config.mount                           27503
-lib/systemd/system/modprobe@.service                                 27502
-lib/systemd/system/sys-fs-fuse-connections.mount                     27501
-lib/systemd/system/dev-hugepages.mount                               27500
-lib/systemd/system/sys-kernel-tracing.mount                          27499
-lib/systemd/system/sys-kernel-debug.mount                            27498
-lib/systemd/system/dev-mqueue.mount                                  27497
-lib/systemd/system/var-tmp.mount                                     27496
-lib/systemd/system/run-initramfs.mount                               27495
-lib/systemd/system/initramfs-shutdown.service                        27494
-lib/systemd/system/blockdev@.target                                  27493
-lib/systemd/system/sound.target                                      27492
-lib/systemd/system/alsa-state.service                                27491
-lib/systemd/system/alsa-restore.service                              27490
-lib/systemd/system/alsa-restore.service.d/dont-store-state-on-shutdown.conf 27489
-lib/systemd/system/smartcard.target                                  27488
-lib/systemd/system/systemd-rfkill.socket                             27487
-lib/systemd/system/systemd-rfkill.service                            27486
-lib/systemd/system/getty-static.service                              27485
-lib/systemd/system/systemd-ask-password-wall.service                 27484
-lib/systemd/system/systemd-user-sessions.service                     27483
-lib/systemd/system/nss-user-lookup.target                            27482
-lib/systemd/system/remote-fs.target                                  27481
-lib/systemd/system/remote-fs-pre.target                              27480
-lib/systemd/system/getty.target                                      27479
-lib/systemd/system/rc-local.service                                  27478
-lib/systemd/system/rc-local.service.d/debian.conf                    27477
-lib/systemd/system/getty-pre.target                                  27476
-lib/systemd/system/plymouth-quit-wait.service                        27475
-lib/systemd/system/tails-tor-has-bootstrapped-flag-file.service      27474
-lib/systemd/system/tails-tor-has-bootstrapped.target                 27473
-lib/systemd/system/tails-wait-until-tor-has-bootstrapped.service     27472
-lib/systemd/system/tor@default.service                               27471
-lib/systemd/system/tor@default.service.d/50-resolv-conf-override.conf 27470
-lib/systemd/system/tor@default.service.d/fix-obfs4proxy.conf         27469
-lib/systemd/system/tor@default.service.d/writable-etc-tor.conf       27468
-lib/systemd/system/tor.service                                       27467
-lib/systemd/system/nss-lookup.target                                 27466
-lib/systemd/system/user.slice                                        27465
-lib/systemd/system/console-setup.service                             27464
-lib/systemd/system/console-setup.service.d/override.conf             27463
-lib/systemd/system/udisks2.service                                   27462
-lib/systemd/system/systemd-update-utmp-runlevel.service              27461
-lib/systemd/system/tails-shutdown-on-media-removal.service           27460
-lib/systemd/system/tails-set-wireless-devices-state.service          27459
-lib/systemd/system/tails-autotest-remote-shell.service               27458
-lib/systemd/system/gdm.service.d/failure.conf                        27457
-lib/systemd/system/gdm.service.d/restart.conf                        27456
-lib/systemd/system/tails-gdm-failed-to-start.service                 27455
-lib/systemd/system/tails-autotest-broken-gnome-shell.service         27454
-lib/systemd/system/systemd-ask-password-wall.path                    27453
-lib/systemd/system/rsync.service                                     27452
-lib/systemd/system/vgauth.service                                    27451
-lib/systemd/system/memlockd.service                                  27450
-lib/systemd/system/memlockd.service.d/oom.conf                       27449
-lib/systemd/system/lmt-poll.service                                  27448
-lib/systemd/system/laptop-mode.timer                                 27447
-lib/systemd/system/laptop-mode.service                               27446
-lib/systemd/system/cups-browsed.service                              27445
-lib/systemd/system/cron.service                                      27444
-lib/systemd/system/polkit.service                                    27443
-lib/systemd/system/e2scrub_reap.service                              27442
-lib/systemd/system/accounts-daemon.service                           27441
-usr/lib/NetworkManager/nm-dispatcher                                 27439
-usr/sbin/NetworkManager                                              27437
-usr/lib/x86_64-linux-gnu/libndp.so.0.1.0                             27436
-usr/lib/NetworkManager/conf.d/no-mac-addr-change.conf                27435
-etc/NetworkManager/NetworkManager.conf                               27434
-etc/NetworkManager/conf.d/dhcp.conf                                  27433
-etc/NetworkManager/conf.d/dns.conf                                   27432
-etc/NetworkManager/conf.d/spoof-mac.conf                             27431
-usr/sbin/deluser                                                     27427
-usr/bin/nm-online                                                    27426
-usr/share/perl/5.32.1/File/Find.pm                                   27425
-usr/lib/x86_64-linux-gnu/perl-base/File/Basename.pm                  27424
-usr/lib/x86_64-linux-gnu/perl-base/File/Spec.pm                      27423
-usr/lib/x86_64-linux-gnu/perl-base/File/Spec/Unix.pm                 27422
-usr/lib/x86_64-linux-gnu/perl-base/File/Temp.pm                      27421
-usr/lib/x86_64-linux-gnu/perl-base/File/Path.pm                      27420
-usr/lib/x86_64-linux-gnu/perl-base/Errno.pm                          27419
-usr/lib/x86_64-linux-gnu/perl-base/Carp/Heavy.pm                     27418
-etc/deluser.conf                                                     27417
-etc/os-release                                                       27416
-usr/bin/passwd                                                       27414
-usr/lib/x86_64-linux-gnu/NetworkManager/1.30.6/libnm-device-plugin-adsl.so 27413
-usr/lib/x86_64-linux-gnu/NetworkManager/1.30.6/libnm-device-plugin-bluetooth.so 27412
-usr/lib/x86_64-linux-gnu/libbluetooth.so.3.19.3                      27411
-usr/lib/x86_64-linux-gnu/NetworkManager/1.30.6/libnm-wwan.so         27410
-usr/lib/x86_64-linux-gnu/NetworkManager/1.30.6/libnm-device-plugin-team.so 27409
-usr/lib/x86_64-linux-gnu/libteamdctl.so.0.1.5                        27408
-usr/lib/x86_64-linux-gnu/libjansson.so.4.13.0                        27407
-usr/lib/x86_64-linux-gnu/NetworkManager/1.30.6/libnm-device-plugin-wifi.so 27405
-usr/lib/x86_64-linux-gnu/NetworkManager/1.30.6/libnm-device-plugin-wwan.so 27404
-usr/lib/x86_64-linux-gnu/NetworkManager/1.30.6/libnm-settings-plugin-ifupdown.so 27403
-etc/NetworkManager/dispatcher.d/00-firewall.sh                       27401
-etc/gdm3/PreSession/Default                                          27400
-etc/NetworkManager/dispatcher.d/00-resolv-over-clearnet              27397
-etc/NetworkManager/dispatcher.d/01-ifupdown                          27396
-etc/NetworkManager/dispatcher.d/01-wait-for-notification-recipient.sh 27395
-etc/NetworkManager/dispatcher.d/10-tor.sh                            27394
-etc/NetworkManager/dispatcher.d/20-time.sh                           27393
-etc/profile                                                          27392
-usr/local/lib/tails-shell-library/gnome.sh                           27391
-usr/bin/id                                                           27390
-etc/NetworkManager/dispatcher.d/70-upgrade-additional-software.sh    27389
-etc/profile.d/bash_completion.sh                                     27388
-etc/profile.d/vte-2.91.sh                                            27387
-usr/lib/systemd/user/gnome-session-wayland@.target                   27385
-usr/lib/systemd/user/gnome-session.target                            27384
-usr/lib/systemd/user/gnome-session-monitor.service                   27383
-usr/lib/systemd/user/gnome-session-pre.target                        27382
-usr/lib/systemd/user/gnome-session-initialized.target                27381
-usr/lib/systemd/user/gnome-session-signal-init.service               27380
-usr/lib/systemd/user/graphical-session-pre.target                    27379
-usr/lib/systemd/user/ssh-agent.service                               27378
-usr/lib/systemd/user/gnome-session-wayland.target                    27377
-usr/lib/systemd/user/gnome-session@.target                           27376
-usr/lib/systemd/user/gnome-session@gnome.target.d/gnome.session.conf 27375
-usr/lib/systemd/user/org.gnome.Shell.target                          27374
-usr/lib/systemd/user/org.gnome.Shell@x11.service                     27373
-usr/lib/systemd/user/session.slice                                   27372
-usr/lib/systemd/user/gnome-session-manager.target                    27371
-usr/lib/systemd/user/gnome-session-failed.target                     27370
-usr/lib/systemd/user/gnome-session-failed.service                    27369
-usr/lib/systemd/user/org.gnome.Shell-disable-extensions.service      27368
-usr/lib/systemd/user/org.gnome.Shell@wayland.service                 27367
-usr/lib/systemd/user/org.gnome.Shell@wayland.service.d/override.conf 27366
-usr/lib/systemd/user/org.gnome.SettingsDaemon.XSettings.target       27365
-usr/lib/systemd/user/org.gnome.SettingsDaemon.XSettings.service      27364
-usr/lib/systemd/user/gnome-session-x11-services-ready.target         27363
-usr/lib/systemd/user/gnome-session-x11-services.target               27362
-usr/lib/systemd/user/org.gnome.SettingsDaemon.Wacom.target           27361
-usr/lib/systemd/user/org.gnome.SettingsDaemon.Wacom.service          27360
-usr/lib/systemd/user/org.gnome.SettingsDaemon.UsbProtection.target   27359
-usr/lib/systemd/user/org.gnome.SettingsDaemon.UsbProtection.service  27358
-usr/lib/systemd/user/org.gnome.SettingsDaemon.Sound.target           27357
-usr/lib/systemd/user/org.gnome.SettingsDaemon.Sound.service          27356
-usr/lib/systemd/user/org.gnome.SettingsDaemon.Smartcard.target       27355
-usr/lib/systemd/user/org.gnome.SettingsDaemon.Smartcard.service      27354
-usr/lib/systemd/user/org.gnome.SettingsDaemon.Sharing.target         27353
-usr/lib/systemd/user/org.gnome.SettingsDaemon.Sharing.service        27352
-usr/lib/systemd/user/org.gnome.SettingsDaemon.ScreensaverProxy.target 27351
-usr/lib/systemd/user/org.gnome.SettingsDaemon.ScreensaverProxy.service 27350
-usr/lib/systemd/user/org.gnome.SettingsDaemon.Rfkill.target          27349
-usr/lib/systemd/user/org.gnome.SettingsDaemon.Rfkill.service         27348
-usr/lib/systemd/user/org.gnome.SettingsDaemon.PrintNotifications.target 27347
-usr/lib/systemd/user/org.gnome.SettingsDaemon.PrintNotifications.service 27346
-usr/lib/systemd/user/org.gnome.SettingsDaemon.Power.target           27345
-usr/lib/systemd/user/org.gnome.SettingsDaemon.Power.service          27344
-usr/lib/systemd/user/org.gnome.SettingsDaemon.MediaKeys.target       27343
-usr/lib/systemd/user/org.gnome.SettingsDaemon.MediaKeys.service      27342
-usr/lib/systemd/user/org.gnome.SettingsDaemon.Keyboard.target        27341
-usr/lib/systemd/user/org.gnome.SettingsDaemon.Keyboard.service       27340
-usr/lib/systemd/user/org.gnome.SettingsDaemon.Housekeeping.target    27339
-usr/lib/systemd/user/org.gnome.SettingsDaemon.Housekeeping.service   27338
-usr/lib/systemd/user/org.gnome.SettingsDaemon.Datetime.target        27337
-usr/lib/systemd/user/org.gnome.SettingsDaemon.Datetime.service       27336
-usr/lib/systemd/user/org.gnome.SettingsDaemon.Color.target           27335
-usr/lib/systemd/user/org.gnome.SettingsDaemon.Color.service          27334
-usr/lib/systemd/user/org.gnome.SettingsDaemon.A11ySettings.target    27333
-usr/lib/systemd/user/org.gnome.SettingsDaemon.A11ySettings.service   27332
-usr/lib/systemd/user/gnome-session-manager@.service                  27331
-usr/lib/systemd/user/graphical-session.target                        27330
-usr/lib/systemd/user/gnome-session-shutdown.target                   27329
-usr/lib/systemd/user/gnome-session-restart-dbus.service              27328
-usr/libexec/gnome-session-ctl                                        27326
-usr/lib/openssh/agent-launch                                         27324
-usr/share/gnome-session/sessions/gnome.session                       27320
-usr/lib/systemd/user/gnome-early-initialization.target               27317
-usr/lib/systemd/user/tails-configure-keyboard.service                27316
-usr/lib/systemd/user/tails-add-GNOME-bookmarks.service               27315
-usr/lib/systemd/user/systemd-tmpfiles-setup.service                  27314
-bin/systemd-tmpfiles                                                 27311
-usr/share/user-tmpfiles.d/tor-browser-directory.conf                 27310
-usr/local/lib/tails-configure-keyboard                               27308
-usr/local/lib/add-GNOME-bookmarks                                    27306
-usr/local/lib/tails-shell-library/libgnome-bookmarks.sh              27303
-usr/bin/gio                                                          27301
-usr/bin/gnome-keyring-daemon                                         27298
-usr/bin/start-pulseaudio-x11                                         27291
-usr/bin/xdg-user-dirs-update                                         27286
-etc/xdg/user-dirs.conf                                               27283
-etc/xdg/user-dirs.defaults                                           27282
-usr/local/lib/gnome-shell-dump-environment                           27279
-usr/local/lib/gnome-shell-save-environment                           27273
-etc/dconf/profile/ibus                                               27236
-usr/lib/systemd/user/xdg-permission-store.service                    27235
-usr/share/gnome-shell/search-providers/gnome-control-center-search-provider.ini 27231
-usr/share/gnome-shell/search-providers/gnome-terminal-search-provider.ini 27230
-usr/share/gnome-shell/search-providers/org.gnome.Calculator-search-provider.ini 27229
-usr/share/gnome-shell/search-providers/org.gnome.Nautilus.search-provider.ini 27228
-usr/share/gnome-shell/extensions/apps-menu@gnome-shell-extensions.gcampax.github.com/extension.js 27227
-usr/lib/x86_64-linux-gnu/girepository-1.0/GMenu-3.0.typelib          27226
-usr/share/gnome-shell/extensions/apps-menu@gnome-shell-extensions.gcampax.github.com/stylesheet.css 27225
-usr/lib/x86_64-linux-gnu/libgnome-menu-3.so.0.0.1                    27224
-etc/xdg/menus/gnome-applications.menu                                27223
-etc/xdg/menus/applications-merged/Tails.menu                         27222
-usr/share/gnome-shell/extensions/date@tails.boum.org/extension.js    27221
-usr/local/lib/tails-get-date                                         27220
-usr/lib/python3.9/zoneinfo/__init__.py                               27215
-usr/lib/python3.9/zoneinfo/_tzpath.py                                27213
-usr/lib/python3.9/_sysconfigdata__x86_64-linux-gnu.py                27210
-usr/lib/python3.9/zoneinfo/_common.py                                27208
-usr/lib/python3.9/lib-dynload/_zoneinfo.cpython-39-x86_64-linux-gnu.so 27206
-usr/share/gnome-shell/extensions/desktop-icons@csoriano/extension.js 27196
-usr/share/gnome-shell/extensions/desktop-icons@csoriano/prefs.js     27195
-usr/share/gnome-shell/extensions/desktop-icons@csoriano/desktopManager.js 27194
-usr/share/gnome-shell/extensions/desktop-icons@csoriano/desktopGrid.js 27193
-usr/share/gnome-shell/extensions/desktop-icons@csoriano/createFolderDialog.js 27192
-usr/share/gnome-shell/extensions/desktop-icons@csoriano/desktopIconsUtil.js 27191
-usr/share/gnome-shell/extensions/desktop-icons@csoriano/fileItem.js  27190
-usr/share/gnome-shell/extensions/desktop-icons@csoriano/dbusUtils.js 27189
-usr/share/gnome-shell/extensions/desktop-icons@csoriano/templateManager.js 27188
-usr/share/gnome-shell/extensions/desktop-icons@csoriano/stylesheet.css 27187
-usr/share/gnome-shell/extensions/places-menu@gnome-shell-extensions.gcampax.github.com/extension.js 27186
-usr/share/gnome-shell/extensions/places-menu@gnome-shell-extensions.gcampax.github.com/placeDisplay.js 27185
-usr/share/gnome-shell/extensions/places-menu@gnome-shell-extensions.gcampax.github.com/stylesheet.css 27184
-usr/share/icons/Adwaita/16x16/status/network-wired-acquiring-symbolic.symbolic.png 27183
-usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js 27182
-usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/lib.js 27181
-usr/share/gnome-shell/extensions/torstatus@tails.boum.org/extension.js 27180
-usr/share/gnome-shell/extensions/window-list@gnome-shell-extensions.gcampax.github.com/extension.js 27179
-usr/share/gnome-shell/extensions/window-list@gnome-shell-extensions.gcampax.github.com/windowPicker.js 27178
-usr/share/gnome-shell/extensions/window-list@gnome-shell-extensions.gcampax.github.com/workspaceIndicator.js 27177
-usr/share/gnome-shell/extensions/window-list@gnome-shell-extensions.gcampax.github.com/stylesheet.css 27176
-usr/share/icons/Adwaita/16x16/status/network-wired-no-route-symbolic.symbolic.png 27166
-usr/share/icons/Adwaita/16x16/devices/network-wired-symbolic.symbolic.png 27161
-usr/sbin/ferm                                                        27156
-usr/libexec/gsd-disk-utility-notify                                  27148
-usr/bin/xdg-user-dirs-gtk-update                                     27145
-usr/libexec/evolution-data-server/evolution-alarm-notify             27142
-usr/lib/x86_64-linux-gnu/libedataserverui-1.2.so.2.0.0               27141
-usr/local/lib/start-systemd-desktop-target                           27138
-usr/lib/x86_64-linux-gnu/libecal-2.0.so.1.0.0                        27137
-usr/lib/x86_64-linux-gnu/libical-glib.so.3.0.9                       27136
-usr/local/lib/end-profile                                            27133
-usr/libexec/gnome-shell-overrides-migration.sh                       27130
-usr/bin/xargs                                                        27127
-usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.25.0.0                27126
-usr/lib/x86_64-linux-gnu/libgcr-ui-3.so.1.0.0                        27125
-usr/share/ibus-mozc/ibus-mozc-gnome-initial-setup.sh                 27124
-usr/lib/x86_64-linux-gnu/perl-base/File/Glob.pm                      27123
-usr/lib/x86_64-linux-gnu/perl-base/auto/File/Glob/Glob.so            27122
-usr/lib/x86_64-linux-gnu/libwebkit2gtk-4.0.so.37.57.7                27121
-etc/ferm/ferm.conf                                                   27120
-usr/lib/x86_64-linux-gnu/xtables/libipt_REDIRECT.so                  27119
-usr/lib/x86_64-linux-gnu/xtables/libxt_udp.so                        27118
-usr/lib/x86_64-linux-gnu/xtables/libxt_multiport.so                  27117
-usr/lib/x86_64-linux-gnu/xtables/libxt_owner.so                      27116
-usr/lib/x86_64-linux-gnu/xtables/libipt_LOG.so                       27115
-usr/bin/seq                                                          27114
-usr/lib/x86_64-linux-gnu/xtables/libip6t_LOG.so                      27113
-usr/lib/x86_64-linux-gnu/xtables/libip6t_REJECT.so                   27112
-etc/services                                                         27111
-usr/lib/systemd/user/desktop.target                                  27110
-usr/lib/systemd/user/tails-wait-until-tor-has-bootstrapped.service   27109
-usr/lib/systemd/user/tails-virt-notify-user.service                  27108
-usr/lib/systemd/user/tails-upgrade-frontend.service                  27107
-usr/lib/systemd/user/tails-security-check.service                    27106
-usr/lib/systemd/user/tails-ibus-proxy.service                        27105
-etc/network/if-up.d/ethtool                                          27104
-usr/lib/x86_64-linux-gnu/libcamel-1.2.so.62.0.0                      27103
-usr/lib/x86_64-linux-gnu/libical.so.3.0.9                            27102
-usr/lib/x86_64-linux-gnu/libgdata.so.22.5.2                          27101
-usr/lib/systemd/user/tails-create-persistent-storage.service         27100
-usr/lib/systemd/user/tails-additional-software-install.service       27099
-usr/lib/systemd/user/tails-a11y-bus-proxy.service                    27098
-usr/lib/systemd/user/at-spi-dbus-bus.service                         27097
-etc/wpa_supplicant/ifupdown.sh                                       27096
-etc/wpa_supplicant/functions.sh                                      27095
-usr/lib/x86_64-linux-gnu/libwpe-1.0.so.1.5.1                         27094
-usr/lib/x86_64-linux-gnu/libWPEBackend-fdo-1.0.so.1.6.3              27093
-usr/lib/x86_64-linux-gnu/libjavascriptcoregtk-4.0.so.18.21.7         27092
-usr/local/lib/tails-virt-notify-user                                 27087
-usr/local/lib/tails-ibus-proxy                                       27086
-usr/local/lib/tails-a11y-bus-proxy                                   27083
-lib/systemd/system/tails-additional-software-install.service         27082
-usr/lib/x86_64-linux-gnu/libwoff2dec.so.1.0.2                        27081
-usr/lib/python3/dist-packages/dbus/__init__.py                       27080
-usr/lib/x86_64-linux-gnu/libharfbuzz-icu.so.0.20704.0                27079
-usr/lib/x86_64-linux-gnu/libwebpdemux.so.2.0.3                       27078
-usr/lib/x86_64-linux-gnu/libenchant-2.so.2.2.15                      27077
-usr/lib/x86_64-linux-gnu/libhyphen.so.0.3.0                          27076
-usr/lib/x86_64-linux-gnu/libXt.so.6.0.0                              27075
-usr/lib/x86_64-linux-gnu/libmanette-0.2.so.0                         27074
-usr/lib/x86_64-linux-gnu/libssl3.so                                  27073
-usr/lib/python3/dist-packages/dbus/_compat.py                        27071
-usr/lib/python3/dist-packages/dbus/exceptions.py                     27070
-usr/lib/python3/dist-packages/dbus/types.py                          27069
-usr/lib/x86_64-linux-gnu/libwoff2common.so.1.0.2                     27068
-usr/lib/python3/dist-packages/_dbus_bindings.cpython-39-x86_64-linux-gnu.so 27066
-usr/lib/python3/dist-packages/dbus/_dbus.py                          27065
-usr/lib/python3/dist-packages/dbus/bus.py                            27063
-usr/lib/python3/dist-packages/dbus/connection.py                     27060
-usr/lib/python3/dist-packages/tailslib/gnome.py                      27059
-usr/lib/python3/dist-packages/dbus/lowlevel.py                       27058
-usr/lib/python3/dist-packages/dbus/proxies.py                        27057
-usr/lib/python3/dist-packages/dbus/_expat_introspect_parser.py       27050
-usr/bin/ibus                                                         27047
-usr/local/lib/tails-dbus-proxy                                       27036
-usr/share/fonts/opentype/noto/NotoSansCJK-Regular.ttc                27034
-usr/lib/x86_64-linux-gnu/girepository-1.0/Notify-0.7.typelib         27026
-usr/local/bin/tails-ask-again                                        27022
-usr/bin/systemd-detect-virt                                          27021
-usr/bin/nohup                                                        27020
-usr/bin/xdg-dbus-proxy                                               27019
-usr/local/lib/systemctl-user                                         27018
-usr/lib/locale/C.UTF-8/LC_CTYPE                                      27017
-sbin/runuser                                                         27016
-etc/pam.d/runuser                                                    27015
-usr/lib/systemd/user/tca.service                                     27014
-usr/local/bin/tca                                                    27012
-usr/lib/python3/dist-packages/tailslib/greeter.py                    27011
-usr/lib/python3/dist-packages/tailslib/shell.py                      27010
-usr/lib/python3/dist-packages/tailslib/persistence.py                27009
-usr/lib/python3/dist-packages/tailslib/utils.py                      27008
-usr/lib/python3/dist-packages/tca/__init__.py                        27007
-usr/lib/python3/dist-packages/tca/config.py                          27006
-usr/share/X11/xkb/symbols/kr                                         27005
-usr/local/lib/connect-drop                                           27004
-usr/lib/python3/dist-packages/prctl.py                               27003
-usr/lib/python3/dist-packages/_prctl.cpython-39-x86_64-linux-gnu.so  27001
-usr/local/lib/tca-portal                                             27000
-usr/bin/bwrap                                                        26998
-usr/share/icons/hicolor/scalable/status/tor-disconnected-symbolic.svg 26997
-usr/lib/python3/dist-packages/tca/application.py                     26996
-usr/lib/python3/dist-packages/tinyrpc/__init__.py                    26984
-usr/lib/python3/dist-packages/tinyrpc/protocols/__init__.py          26982
-usr/lib/python3/dist-packages/tinyrpc/exc.py                         26980
-usr/lib/python3/dist-packages/tinyrpc/client.py                      26978
-usr/lib/python3/dist-packages/tinyrpc/protocols/jsonrpc.py           26976
-usr/lib/python3/dist-packages/systemd/__init__.py                    26970
-usr/lib/python3/dist-packages/systemd/daemon.py                      26967
-usr/lib/python3/dist-packages/systemd/_daemon.cpython-39-x86_64-linux-gnu.so 26965
-usr/lib/python3/dist-packages/tailslib/logutils.py                   26964
-usr/lib/python3.9/multiprocessing/queues.py                          26960
-usr/lib/python3.9/lib-dynload/_multiprocessing.cpython-39-x86_64-linux-gnu.so 26958
-usr/lib/python3.9/multiprocessing/connection.py                      26957
-usr/lib/python3.9/multiprocessing/util.py                            26949
-usr/lib/python3.9/multiprocessing/synchronize.py                     26947
-usr/lib/python3.9/multiprocessing/popen_fork.py                      26945
-usr/lib/systemd/user/evolution-source-registry.service               26941
-usr/libexec/evolution-source-registry                                26939
-usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0                   26938
-usr/lib/x86_64-linux-gnu/libdb-5.3.so                                26937
-usr/lib/evolution-data-server/registry-modules/module-cache-reaper.so 26934
-usr/lib/evolution-data-server/registry-modules/module-gnome-online-accounts.so 26933
-usr/lib/evolution-data-server/registry-modules/module-google-backend.so 26932
-usr/lib/evolution-data-server/registry-modules/module-oauth2-services.so 26931
-usr/lib/evolution-data-server/registry-modules/module-outlook-backend.so 26930
-usr/lib/evolution-data-server/registry-modules/module-secret-monitor.so 26929
-usr/lib/evolution-data-server/registry-modules/module-trust-prompt.so 26928
-usr/bin/nautilus                                                     26923
-usr/share/icons/Adwaita/16x16/ui/pan-end-symbolic.symbolic.png       26922
-usr/lib/x86_64-linux-gnu/libnautilus-extension.so.1.5.0              26919
-usr/lib/x86_64-linux-gnu/libgnome-autoar-0.so.0.0.0                  26918
-usr/libexec/gvfsd-trash                                              26917
-usr/lib/evolution-data-server/registry-modules/module-webdav-backend.so 26916
-usr/lib/evolution-data-server/registry-modules/module-yahoo-backend.so 26915
-usr/lib/evolution-data-server/credential-modules/module-credentials-goa.so 26914
-usr/lib/evolution-data-server/camel-providers/libcamelimapx.urls     26913
-usr/lib/evolution-data-server/camel-providers/libcamellocal.urls     26912
-usr/lib/evolution-data-server/camel-providers/libcamelnntp.urls      26911
-usr/lib/evolution-data-server/camel-providers/libcamelpop3.urls      26910
-usr/lib/evolution-data-server/camel-providers/libcamelsendmail.urls  26909
-usr/lib/evolution-data-server/camel-providers/libcamelsmtp.urls      26908
-usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so    26907
-usr/lib/evolution-data-server/camel-providers/libcamelnntp.so        26906
-usr/lib/evolution-data-server/camel-providers/libcamellocal.so       26905
-usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so        26903
-usr/lib/evolution-data-server/camel-providers/libcamelpop3.so        26902
-usr/lib/evolution-data-server/camel-providers/libcamelimapx.so       26901
-usr/share/thumbnailers/evince.thumbnailer                            26900
-usr/share/thumbnailers/gdk-pixbuf-thumbnailer.thumbnailer            26899
-usr/share/thumbnailers/librsvg.thumbnailer                           26898
-usr/share/thumbnailers/totem.thumbnailer                             26897
-usr/share/zoneinfo/zone.tab                                          26896
-usr/share/zoneinfo/EST                                               26895
-usr/share/icons/Adwaita/48x48/places/user-trash.png                  26894
-usr/share/zoneinfo/Etc/GMT                                           26893
-usr/share/icons/Adwaita/24x24/emblems/emblem-symbolic-link.png       26892
-usr/share/zoneinfo/MST                                               26891
-usr/share/pixmaps/whisperback.svg                                    26890
-usr/share/zoneinfo/posix/EST                                         26889
-usr/share/zoneinfo/posix/Etc/GMT                                     26888
-usr/share/zoneinfo/posix/Etc/UTC                                     26887
-usr/share/zoneinfo/posix/MST                                         26886
-usr/lib/systemd/user/evolution-calendar-factory.service              26883
-usr/libexec/evolution-calendar-factory                               26881
-usr/lib/x86_64-linux-gnu/libedata-cal-2.0.so.1.0.0                   26880
-usr/lib/python3/dist-packages/dbus/mainloop/__init__.py              26879
-usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libevince-properties-page.so 26878
-usr/lib/python3/dist-packages/dbus/mainloop/glib.py                  26877
-usr/lib/python3/dist-packages/_dbus_glib_bindings.cpython-39-x86_64-linux-gnu.so 26876
-usr/lib/python3/dist-packages/tca/ui/__init__.py                     26873
-usr/lib/python3/dist-packages/tca/ui/main_window.py                  26872
-usr/lib/evolution-data-server/calendar-backends/libecalbackendcaldav.so 26871
-usr/lib/python3/dist-packages/pytz/__init__.py                       26870
-usr/lib/python3/dist-packages/pytz/exceptions.py                     26869
-usr/lib/python3/dist-packages/pytz/lazy.py                           26868
-usr/lib/python3/dist-packages/pytz/tzinfo.py                         26867
-usr/lib/python3/dist-packages/pytz/tzfile.py                         26866
-usr/lib/python3/dist-packages/tca/ui/asyncutils.py                   26865
-usr/lib/evolution-data-server/calendar-backends/libecalbackendcontacts.so 26860
-usr/lib/x86_64-linux-gnu/libebook-1.2.so.20.1.3                      26859
-usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.3.0.0              26858
-usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.26.0.0                 26857
-usr/lib/x86_64-linux-gnu/libevdocument3.so.4.0.0                     26855
-usr/lib/x86_64-linux-gnu/libsynctex.so.2.0.0                         26854
-usr/lib/x86_64-linux-gnu/evince/4/backends/comicsdocument.evince-backend 26853
-usr/lib/x86_64-linux-gnu/evince/4/backends/djvudocument.evince-backend 26852
-usr/lib/x86_64-linux-gnu/evince/4/backends/dvidocument.evince-backend 26851
-usr/lib/x86_64-linux-gnu/evince/4/backends/pdfdocument.evince-backend 26850
-usr/lib/x86_64-linux-gnu/evince/4/backends/psdocument.evince-backend 26849
-usr/lib/x86_64-linux-gnu/evince/4/backends/tiffdocument.evince-backend 26848
-usr/lib/x86_64-linux-gnu/evince/4/backends/xpsdocument.evince-backend 26847
-usr/lib/x86_64-linux-gnu/libphonenumber.so.8.12                      26846
-usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libgtkhash-properties-nautilus.so 26845
-usr/lib/python3/dist-packages/tca/torutils.py                        26844
-usr/lib/evolution-data-server/calendar-backends/libecalbackendfile.so 26843
-usr/lib/evolution-data-server/calendar-backends/libecalbackendgtasks.so 26842
-usr/lib/evolution-data-server/calendar-backends/libecalbackendhttp.so 26841
-usr/lib/evolution-data-server/calendar-backends/libecalbackendweather.so 26840
-usr/lib/x86_64-linux-gnu/libb2.so.1.0.4                              26839
-usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libnautilus-fileroller.so 26838
-usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libnautilus-image-properties.so 26837
-usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libnautilus-python.so 26836
-usr/lib/x86_64-linux-gnu/libpython3.9.so.1.0                         26835
-usr/lib/evolution-data-server/calendar-backends/libecalbackendwebdavnotes.so 26834
-usr/lib/python3/dist-packages/tca/ui/dialogs.py                      26833
-usr/lib/systemd/user/evolution-addressbook-factory.service           26832
-usr/libexec/evolution-addressbook-factory                            26830
-usr/lib/evolution-data-server/addressbook-backends/libebookbackendcarddav.so 26829
-usr/lib/evolution-data-server/addressbook-backends/libebookbackendfile.so 26828
-usr/lib/evolution-data-server/addressbook-backends/libebookbackendldap.so 26827
-etc/onion-grater.d/onioncircuits.yml                                 26825
-etc/onion-grater.d/onionshare.yml                                    26824
-etc/onion-grater.d/tor-browser.yml                                   26823
-etc/onion-grater.d/tor-connection-assistant.yml                      26822
-usr/lib/x86_64-linux-gnu/girepository-1.0/Nautilus-3.0.typelib       26821
-usr/share/nautilus-python/extensions/mat2.py                         26820
-usr/lib/python3/dist-packages/libmat2/__init__.py                    26819
-usr/lib/python3/dist-packages/libmat2/exiftool.py                    26818
-usr/lib/python3/dist-packages/libmat2/abstract.py                    26817
-usr/lib/python3/dist-packages/libmat2/bubblewrap.py                  26816
-usr/lib/python3/dist-packages/libmat2/video.py                       26815
-usr/lib/python3/dist-packages/libmat2/parser_factory.py              26814
-etc/mime.types                                                       26813
-usr/lib/python3/dist-packages/libmat2/archive.py                     26812
-usr/share/tails/tca/tca.css                                          26811
-usr/share/tails/tca/main.ui                                          26810
-usr/lib/python3/dist-packages/libmat2/audio.py                       26809
-usr/lib/python3/dist-packages/mutagen/__init__.py                    26808
-lib/systemd/system/htpdate.service                                   26807
-usr/lib/python3/dist-packages/mutagen/_util.py                       26806
-etc/default/htpdate.pools                                            26805
-usr/lib/python3.9/decimal.py                                         26804
-usr/lib/python3.9/lib-dynload/_decimal.cpython-39-x86_64-linux-gnu.so 26802
-usr/lib/x86_64-linux-gnu/libmpdec.so.2.5.1                           26801
-usr/lib/python3.9/numbers.py                                         26800
-usr/lib/python3/dist-packages/mutagen/_file.py                       26799
-usr/local/lib/tor_variable                                           26798
-usr/lib/python3/dist-packages/mutagen/_tags.py                       26797
-usr/lib/python3/dist-packages/libmat2/epub.py                        26796
-usr/lib/python3.9/uuid.py                                            26795
-usr/lib/python3.9/lib-dynload/_uuid.cpython-39-x86_64-linux-gnu.so   26793
-usr/lib/python3.9/xml/etree/__init__.py                              26792
-usr/lib/python3.9/xml/etree/ElementTree.py                           26791
-usr/lib/python3.9/xml/etree/ElementPath.py                           26786
-usr/lib/python3/dist-packages/libmat2/office.py                      26785
-usr/lib/python3/dist-packages/libmat2/harmless.py                    26784
-usr/lib/python3/dist-packages/libmat2/images.py                      26781
-usr/lib/python3.9/imghdr.py                                          26780
-usr/lib/python3/dist-packages/libmat2/pdf.py                         26777
-usr/lib/python3.9/distutils/__init__.py                              26776
-usr/lib/python3.9/distutils/version.py                               26775
-usr/lib/x86_64-linux-gnu/girepository-1.0/Poppler-0.18.typelib       26772
-usr/lib/python3/dist-packages/libmat2/torrent.py                     26768
-usr/lib/python3/dist-packages/libmat2/web.py                         26767
-usr/lib/python3.9/html/__init__.py                                   26766
-usr/lib/python3.9/html/entities.py                                   26765
-usr/lib/python3.9/html/parser.py                                     26761
-usr/lib/python3.9/_markupbase.py                                     26760
-usr/share/nautilus-python/extensions/onionshare-nautilus.py          26758
-usr/share/icons/Adwaita/16x16/ui/window-minimize-symbolic.symbolic.png 26755
-usr/share/icons/Adwaita/16x16/ui/window-maximize-symbolic.symbolic.png 26754
-usr/share/icons/Adwaita/16x16/ui/window-close-symbolic.symbolic.png  26753
-usr/share/icons/Adwaita/16x16/status/image-missing.png               26752
-usr/share/icons/gnome/16x16/status/dialog-warning.png                26736
-usr/share/icons/Adwaita/16x16/legacy/go-previous.png                 26726
-usr/share/doc/tails/website/about/relays.svg                         26722
-usr/share/icons/Adwaita/24x24/mimetypes/application-x-executable.png 26717
-usr/share/icons/tor-connection.svg                                   26713
-usr/share/onionshare/locale/am.json                                  26707
-usr/share/onionshare/locale/ar.json                                  26706
-usr/share/onionshare/locale/bg.json                                  26705
-usr/share/onionshare/locale/bn.json                                  26704
-usr/share/onionshare/locale/ca.json                                  26703
-usr/share/onionshare/locale/cs.json                                  26702
-usr/share/onionshare/locale/da.json                                  26701
-usr/share/onionshare/locale/de.json                                  26700
-usr/share/onionshare/locale/el.json                                  26695
-usr/share/onionshare/locale/en.json                                  26694
-usr/share/onionshare/locale/eo.json                                  26693
-usr/share/onionshare/locale/es.json                                  26692
-usr/share/onionshare/locale/fa.json                                  26691
-usr/share/onionshare/locale/fi.json                                  26690
-usr/share/onionshare/locale/fr.json                                  26689
-usr/share/onionshare/locale/ga.json                                  26688
-usr/share/onionshare/locale/gu.json                                  26687
-usr/share/onionshare/locale/he.json                                  26686
-usr/share/onionshare/locale/hi.json                                  26685
-usr/share/onionshare/locale/hu.json                                  26684
-usr/share/onionshare/locale/id.json                                  26682
-usr/share/onionshare/locale/is.json                                  26680
-usr/share/onionshare/locale/it.json                                  26679
-usr/share/onionshare/locale/ja.json                                  26678
-usr/share/onionshare/locale/ka.json                                  26677
-usr/share/onionshare/locale/km.json                                  26676
-usr/share/onionshare/locale/ko.json                                  26674
-usr/share/onionshare/locale/lg.json                                  26672
-usr/share/onionshare/locale/mk.json                                  26671
-usr/share/onionshare/locale/ms.json                                  26670
-usr/share/onionshare/locale/nb.json                                  26669
-usr/share/onionshare/locale/nl.json                                  26668
-usr/share/onionshare/locale/pa.json                                  26667
-usr/share/onionshare/locale/pl.json                                  26666
-usr/share/onionshare/locale/pt_BR.json                               26665
-usr/share/onionshare/locale/pt_PT.json                               26663
-usr/share/onionshare/locale/ro.json                                  26662
-usr/share/onionshare/locale/ru.json                                  26660
-usr/share/onionshare/locale/sl.json                                  26659
-usr/share/onionshare/locale/sn.json                                  26657
-usr/share/onionshare/locale/sr_Latn.json                             26656
-usr/share/onionshare/locale/sv.json                                  26655
-usr/share/onionshare/locale/sw.json                                  26654
-usr/share/onionshare/locale/te.json                                  26653
-usr/share/onionshare/locale/tr.json                                  26652
-usr/share/onionshare/locale/uk.json                                  26651
-usr/share/onionshare/locale/wo.json                                  26650
-usr/share/onionshare/locale/yo.json                                  26649
-usr/share/onionshare/locale/zh_Hans.json                             26648
-usr/share/onionshare/locale/zh_Hant.json                             26647
-usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libnautilus-sendto.so 26645
-usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libnautilus-wipe.so 26644
-usr/lib/x86_64-linux-gnu/libgsecuredelete.so.0.1.0                   26643
-usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libterminal-nautilus.so 26639
-usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libtotem-properties-page.so 26638
-usr/share/doc/tails/website/about/walkie-talkie.svg                  26435
-usr/local/lib/tails-get-network-time                                 26434
-usr/lib/python3/dist-packages/pycurl.cpython-39-x86_64-linux-gnu.so  26433
-usr/lib/python3/dist-packages/tailslib/release.py                    26432
-etc/tails-get-network-time-url                                       26431
-etc/gai.conf                                                         26430
-usr/lib/python3.9/_strptime.py                                       26429
-usr/local/lib/tails-set-date                                         26428
-usr/bin/unshare                                                      26427
-usr/share/fonts/truetype/dejavu/DejaVuSansMono-Bold.ttf              26426
-usr/local/lib/tor-pt-configuration-helper                            26420
-usr/local/lib/tails-shell-library/common.sh                          26419
-usr/local/lib/tails-shell-library/tor.sh                             26418
-bin/su                                                               26417
-etc/pam.d/su                                                         26416
-lib/x86_64-linux-gnu/security/pam_mail.so                            26415
-lib/systemd/system/tails-additional-software-upgrade.path            26412
-lib/systemd/system/tails-additional-software-upgrade.service         26411
-usr/local/lib/tails-htp-notify-user                                  26406
-usr/lib/x86_64-linux-gnu/perl/5.32.1/Data/Dumper.pm                  26405
-usr/lib/x86_64-linux-gnu/perl/5.32.1/auto/Data/Dumper/Dumper.so      26404
-usr/share/perl5/Desktop/Notify.pm                                    26403
-usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus.pm                      26402
-usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Net/DBus/DBus.so            26401
-usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Binding/Bus.pm          26400
-usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Binding/Connection.pm   26399
-usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Binding/Message/MethodCall.pm 26398
-usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Binding/Message.pm      26397
-usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Binding/Iterator.pm     26396
-usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Binding/Message/Signal.pm 26395
-usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Binding/Message/MethodReturn.pm 26394
-usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Binding/Message/Error.pm 26393
-usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Binding/PendingCall.pm  26392
-usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Service.pm              26391
-usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/RemoteService.pm        26390
-usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/RemoteObject.pm         26389
-usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Binding/Introspector.pm 26388
-usr/share/perl5/XML/Twig.pm                                          26387
-usr/share/perl/5.32.1/UNIVERSAL.pm                                   26386
-usr/lib/x86_64-linux-gnu/perl-base/utf8.pm                           26385
-usr/lib/x86_64-linux-gnu/perl5/5.32/XML/Parser.pm                    26384
-usr/lib/x86_64-linux-gnu/perl5/5.32/XML/Parser/Expat.pm              26383
-usr/lib/x86_64-linux-gnu/perl5/5.32/auto/XML/Parser/Expat/Expat.so   26382
-usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/ASyncReply.pm           26381
-usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Annotation.pm           26380
-usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Test/MockConnection.pm  26379
-usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Error.pm                26378
-usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Test/MockMessage.pm     26377
-usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Test/MockIterator.pm    26376
-usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Binding/Value.pm        26375
-usr/share/perl5/Desktop/Notify/Notification.pm                       26374
-usr/share/perl5/Class/Accessor.pm                                    26373
-usr/lib/x86_64-linux-gnu/perl5/5.32/Sub/Name.pm                      26372
-usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Sub/Name/Name.so            26371
-usr/share/perl/5.32.1/English.pm                                     26370
-usr/share/perl5/Locale/TextDomain.pm                                 26369
-usr/share/perl5/Locale/Messages.pm                                   26368
-usr/share/perl5/Locale/gettext_xs.pm                                 26367
-usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Locale/gettext_xs/gettext_xs.so 26366
-usr/share/perl5/File/ShareDir.pm                                     26365
-usr/share/perl5/Class/Inspector.pm                                   26364
-usr/share/perl5/List/MoreUtils.pm                                    26363
-usr/share/perl5/List/MoreUtils/PP.pm                                 26362
-usr/lib/x86_64-linux-gnu/perl5/5.32/List/MoreUtils/XS.pm             26361
-usr/lib/x86_64-linux-gnu/perl5/5.32/auto/List/MoreUtils/XS/XS.so     26360
-usr/share/perl5/Exporter/Tiny.pm                                     26359
-usr/lib/x86_64-linux-gnu/perl5/5.32/Params/Util.pm                   26358
-usr/lib/x86_64-linux-gnu/perl5/5.32/Params/Util/PP.pm                26357
-usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Params/Util/Util.so         26356
-usr/share/perl5/URI.pm                                               26355
-usr/share/perl5/URI/Escape.pm                                        26354
-usr/lib/systemd/user/exit.target                                     26352
-usr/lib/systemd/user/systemd-exit.service                            26351
-usr/share/icons/hicolor/scalable/status/tor-connected-symbolic.svg   26341
-usr/local/sbin/htpdate                                               26339
-usr/share/perl/5.32.1/version.pm                                     26338
-usr/share/perl/5.32.1/version/regex.pm                               26337
-usr/lib/x86_64-linux-gnu/perl5/5.32/DateTime.pm                      26336
-usr/share/perl5/namespace/autoclean.pm                               26335
-usr/share/perl5/B/Hooks/EndOfScope.pm                                26334
-usr/share/perl5/Module/Implementation.pm                             26332
-usr/local/bin/tails-security-check                                   26331
-usr/share/perl5/Module/Runtime.pm                                    26330
-usr/share/perl5/Try/Tiny.pm                                          26329
-usr/lib/x86_64-linux-gnu/perl/5.32.1/Sub/Util.pm                     26327
-usr/local/bin/tails-upgrade-frontend-wrapper                         26326
-usr/share/perl5/Carp/Assert/More.pm                                  26325
-usr/share/perl5/Carp/Assert.pm                                       26324
-usr/share/perl5/B/Hooks/EndOfScope/XS.pm                             26323
-usr/lib/x86_64-linux-gnu/perl5/5.32/Variable/Magic.pm                26322
-usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Variable/Magic/Magic.so     26321
-usr/share/perl5/Sub/Exporter/Progressive.pm                          26320
-usr/share/perl5/namespace/clean.pm                                   26319
-usr/share/tails/tca/default_bridges.txt                              26318
-usr/share/perl/5.32.1/Fatal.pm                                       26317
-usr/share/perl5/Package/Stash.pm                                     26316
-usr/lib/x86_64-linux-gnu/perl5/5.32/Package/Stash/XS.pm              26315
-usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Package/Stash/XS/XS.so      26314
-usr/share/perl/5.32.1/Tie/RefHash.pm                                 26313
-usr/share/perl5/namespace/clean/_Util.pm                             26312
-usr/lib/x86_64-linux-gnu/perl5/5.32/DateTime/Duration.pm             26311
-usr/lib/x86_64-linux-gnu/perl5/5.32/DateTime/Helpers.pm              26310
-usr/lib/x86_64-linux-gnu/perl5/5.32/DateTime/Types.pm                26309
-usr/lib/x86_64-linux-gnu/perl-base/Config_heavy.pl                   26308
-usr/lib/x86_64-linux-gnu/perl-base/Config_git.pl                     26307
-usr/share/perl5/Specio/Exporter.pm                                   26306
-usr/share/perl5/Specio/Helpers.pm                                    26305
-usr/lib/x86_64-linux-gnu/perl5/5.32/XString.pm                       26304
-usr/lib/x86_64-linux-gnu/perl5/5.32/auto/XString/XString.so          26303
-usr/share/perl/5.32.1/autodie/Util.pm                                26302
-usr/share/perl/5.32.1/autodie/Scope/GuardStack.pm                    26301
-usr/share/perl/5.32.1/autodie/Scope/Guard.pm                         26300
-usr/share/perl5/Specio/Registry.pm                                   26298
-usr/share/perl5/Specio.pm                                            26297
-usr/share/perl5/Specio/Declare.pm                                    26296
-usr/share/perl5/Specio/Coercion.pm                                   26295
-usr/share/perl5/Specio/OO.pm                                         26290
-usr/share/perl5/MRO/Compat.pm                                        26289
-usr/lib/x86_64-linux-gnu/perl/5.32.1/mro.pm                          26288
-usr/lib/x86_64-linux-gnu/perl/5.32.1/auto/mro/mro.so                 26287
-usr/share/perl5/Role/Tiny.pm                                         26286
-usr/local/share/perl/5.32.1/Tails/Download/HTTPS.pm                  26285
-usr/share/perl5/Specio/PartialDump.pm                                26284
-usr/share/perl5/Specio/TypeChecks.pm                                 26283
-usr/share/perl5/Moo/sification.pm                                    26282
-usr/share/perl5/Moo/_strictures.pm                                   26281
-usr/share/perl5/Moo.pm                                               26280
-usr/share/perl5/Moo/_mro.pm                                          26279
-usr/share/perl5/Role/Tiny/With.pm                                    26278
-usr/share/perl5/Specio/Role/Inlinable.pm                             26277
-usr/share/perl5/Moo/_Utils.pm                                        26276
-usr/share/perl5/Eval/Closure.pm                                      26275
-usr/share/perl5/Moo/HandleMoose/_TypeMap.pm                          26274
-usr/share/perl5/Specio/Constraint/Simple.pm                          26273
-usr/share/perl5/Specio/Constraint/Role/Interface.pm                  26272
-usr/share/perl5/Specio/Exception.pm                                  26271
-usr/share/perl5/Devel/StackTrace.pm                                  26270
-usr/share/perl5/Devel/StackTrace/Frame.pm                            26269
-usr/share/perl5/Moo/Object.pm                                        26268
-usr/share/perl5/strictures.pm                                        26267
-usr/share/perl5/Specio/DeclaredAt.pm                                 26266
-usr/share/perl/5.32.1/autodie.pm                                     26265
-usr/share/perl5/Specio/Library/Builtins.pm                           26264
-usr/share/perl5/IPC/System/Simple.pm                                 26263
-usr/share/perl5/Specio/Constraint/Parameterizable.pm                 26262
-usr/share/perl5/Specio/Constraint/Parameterized.pm                   26261
-usr/share/perl/5.32.1/autodie/exception/system.pm                    26260
-usr/share/perl/5.32.1/autodie/exception.pm                           26259
-usr/share/perl5/Specio/Library/Numeric.pm                            26258
-usr/share/perl5/Specio/Library/String.pm                             26257
-usr/lib/x86_64-linux-gnu/perl5/5.32/Function/Parameters.pm           26256
-usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Function/Parameters/Parameters.so 26255
-usr/lib/x86_64-linux-gnu/perl5/5.32/Sub/Identify.pm                  26254
-usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Sub/Identify/Identify.so    26253
-usr/share/perl5/Specio/Constraint/AnyCan.pm                          26252
-usr/share/perl5/Specio/Constraint/Role/CanType.pm                    26251
-usr/share/perl5/Types/Standard.pm                                    26250
-usr/share/perl5/Type/Library.pm                                      26249
-usr/share/perl5/Specio/Constraint/ObjectIsa.pm                       26248
-usr/share/perl5/Eval/TypeTiny.pm                                     26247
-usr/share/perl5/Specio/Constraint/Role/IsaType.pm                    26246
-usr/share/perl5/Type/Tiny.pm                                         26245
-usr/share/perl5/Types/TypeTiny.pm                                    26244
-usr/share/perl5/Specio/Constraint/Enum.pm                            26243
-usr/lib/x86_64-linux-gnu/perl5/5.32/Type/Tiny/XS.pm                  26242
-usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Type/Tiny/XS/XS.so          26241
-usr/share/perl5/Specio/Constraint/Union.pm                           26240
-usr/share/perl5/Specio/Constraint/ObjectCan.pm                       26239
-usr/share/perl5/Params/ValidationCompiler.pm                         26238
-usr/share/perl5/Params/ValidationCompiler/Compiler.pm                26237
-usr/share/perl5/Params/ValidationCompiler/Exceptions.pm              26236
-usr/share/perl5/Exception/Class.pm                                   26235
-usr/share/perl5/Exception/Class/Base.pm                              26234
-usr/share/perl5/Class/Data/Inheritable.pm                            26233
-usr/lib/x86_64-linux-gnu/perl/5.32.1/B.pm                            26232
-usr/lib/x86_64-linux-gnu/perl/5.32.1/auto/B/B.so                     26231
-usr/lib/x86_64-linux-gnu/perl5/5.32/Class/XSAccessor.pm              26230
-usr/lib/x86_64-linux-gnu/perl5/5.32/Class/XSAccessor/Heavy.pm        26229
-usr/share/perl5/Type/Coercion.pm                                     26228
-usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Class/XSAccessor/XSAccessor.so 26227
-usr/share/perl5/DateTime/Locale.pm                                   26226
-usr/lib/x86_64-linux-gnu/perl5/5.32/WWW/Curl/Easy.pm                 26225
-usr/lib/x86_64-linux-gnu/perl5/5.32/WWW/Curl.pm                      26224
-usr/lib/x86_64-linux-gnu/perl5/5.32/auto/WWW/Curl/Curl.so            26223
-usr/share/perl5/DateTime/Locale/Data.pm                              26222
-usr/share/perl5/Method/Generate/Constructor.pm                       26221
-usr/share/perl5/Sub/Quote.pm                                         26220
-usr/share/perl5/Sub/Defer.pm                                         26219
-usr/share/perl5/Method/Generate/Accessor.pm                          26218
-usr/share/perl5/XML/Atom.pm                                          26217
-usr/lib/x86_64-linux-gnu/perl5/5.32/XML/LibXML.pm                    26216
-usr/lib/x86_64-linux-gnu/perl5/5.32/XML/LibXML/Error.pm              26215
-usr/lib/x86_64-linux-gnu/perl5/5.32/XML/LibXML/NodeList.pm           26214
-usr/lib/x86_64-linux-gnu/perl5/5.32/XML/LibXML/Boolean.pm            26213
-usr/lib/x86_64-linux-gnu/perl5/5.32/XML/LibXML/Number.pm             26212
-usr/lib/x86_64-linux-gnu/perl5/5.32/XML/LibXML/Literal.pm            26211
-usr/share/perl5/DateTime/Locale/FromData.pm                          26210
-usr/share/perl5/DateTime/Locale/Util.pm                              26209
-usr/lib/x86_64-linux-gnu/perl5/5.32/XML/LibXML/XPathContext.pm       26208
-usr/share/perl5/DateTime/TimeZone.pm                                 26207
-usr/share/perl5/DateTime/TimeZone/Catalog.pm                         26206
-usr/share/perl5/DateTime/TimeZone/Floating.pm                        26205
-usr/share/perl5/Class/Singleton.pm                                   26204
-usr/share/perl5/DateTime/TimeZone/OffsetOnly.pm                      26203
-usr/share/perl5/DateTime/TimeZone/UTC.pm                             26202
-usr/lib/x86_64-linux-gnu/perl5/5.32/auto/XML/LibXML/LibXML.so        26201
-usr/share/perl5/DateTime/TimeZone/Local.pm                           26200
-usr/share/perl5/DateTime/TimeZone/OlsonDB/Change.pm                  26199
-usr/lib/x86_64-linux-gnu/perl5/5.32/XML/LibXML/AttributeHash.pm      26198
-usr/share/perl5/XML/SAX/Exception.pm                                 26197
-usr/lib/x86_64-linux-gnu/perl-base/integer.pm                        26196
-usr/share/perl5/XML/Atom/ErrorHandler.pm                             26195
-usr/share/perl5/XML/Atom/Feed.pm                                     26194
-usr/share/perl5/XML/Atom/Thing.pm                                    26193
-usr/share/perl5/XML/Atom/Base.pm                                     26192
-usr/share/perl5/XML/Atom/Util.pm                                     26191
-usr/lib/x86_64-linux-gnu/perl5/5.32/auto/DateTime/DateTime.so        26190
-usr/lib/x86_64-linux-gnu/perl5/5.32/DateTime/Infinite.pm             26189
-usr/share/perl5/XML/Atom/Category.pm                                 26188
-usr/share/perl5/XML/Atom/Link.pm                                     26187
-usr/share/perl5/LWP/UserAgent.pm                                     26186
-usr/share/perl5/LWP/MemberMixin.pm                                   26185
-usr/share/perl5/HTTP/Request.pm                                      26184
-usr/share/perl5/HTTP/Message.pm                                      26183
-usr/share/perl5/DateTime/Format/DateParse.pm                         26182
-usr/share/perl5/HTTP/Headers.pm                                      26181
-usr/share/perl5/Date/Parse.pm                                        26180
-usr/share/perl/5.32.1/Time/Local.pm                                  26179
-usr/share/perl5/Time/Zone.pm                                         26178
-usr/lib/x86_64-linux-gnu/perl5/5.32/Clone.pm                         26177
-usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Clone/Clone.so              26176
-usr/lib/x86_64-linux-gnu/perl/5.32.1/File/Spec/Functions.pm          26175
-usr/share/perl5/HTTP/Response.pm                                     26174
-usr/share/perl5/HTTP/Status.pm                                       26173
-usr/share/perl5/HTTP/Date.pm                                         26172
-usr/share/perl5/Getopt/Long/Descriptive.pm                           26171
-usr/share/perl5/LWP.pm                                               26170
-usr/share/perl5/LWP/Protocol.pm                                      26169
-usr/lib/x86_64-linux-gnu/perl5/5.32/Params/Validate.pm               26168
-usr/lib/x86_64-linux-gnu/perl5/5.32/Params/Validate/Constants.pm     26167
-usr/lib/x86_64-linux-gnu/perl5/5.32/Params/Validate/XS.pm            26166
-usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Params/Validate/XS/XS.so    26165
-usr/share/perl5/Getopt/Long/Descriptive/Opts.pm                      26164
-usr/share/perl5/Getopt/Long/Descriptive/Usage.pm                     26163
-usr/share/perl5/Sub/Exporter/Util.pm                                 26162
-usr/share/perl5/Data/OptList.pm                                      26161
-usr/share/perl5/Sub/Install.pm                                       26160
-usr/share/perl5/XML/Atom/Entry.pm                                    26159
-usr/share/perl5/Sub/Exporter.pm                                      26158
-usr/lib/x86_64-linux-gnu/perl/5.32.1/MIME/Base64.pm                  26157
-usr/share/perl5/IPC/Run.pm                                           26156
-usr/lib/x86_64-linux-gnu/perl/5.32.1/auto/MIME/Base64/Base64.so      26155
-usr/share/perl5/XML/Atom/Person.pm                                   26154
-usr/share/perl5/XML/Atom/Content.pm                                  26153
-usr/share/perl5/IPC/Run/Debug.pm                                     26152
-usr/share/perl5/IPC/Run/IO.pm                                        26151
-usr/share/perl5/IPC/Run/Timer.pm                                     26150
-usr/share/perl/5.32.1/open.pm                                        26149
-usr/share/perl5/String/Errf.pm                                       26148
-usr/share/perl5/String/Formatter.pm                                  26147
-usr/lib/x86_64-linux-gnu/perl/5.32.1/Time/Piece.pm                   26146
-usr/lib/x86_64-linux-gnu/perl/5.32.1/Time/Seconds.pm                 26145
-usr/lib/x86_64-linux-gnu/perl/5.32.1/auto/Time/Piece/Piece.so        26144
-usr/lib/x86_64-linux-gnu/perl/5.32.1/threads.pm                      26143
-usr/lib/x86_64-linux-gnu/perl/5.32.1/auto/threads/threads.so         26142
-usr/local/lib/https-get-expired                                      26141
-usr/share/ca-certificates/mozilla/Entrust_Root_Certification_Authority_-_G2.crt 26140
-usr/share/ca-certificates/mozilla/Staat_der_Nederlanden_EV_Root_CA.crt 26139
-usr/share/ca-certificates/mozilla/GlobalSign_Root_CA_-_R3.crt        26138
-usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_2_G3.crt          26137
-usr/share/ca-certificates/mozilla/SSL.com_EV_Root_Certification_Authority_RSA_R2.crt 26136
-usr/share/ca-certificates/mozilla/QuoVadis_Root_CA.crt               26135
-usr/share/ca-certificates/mozilla/Starfield_Services_Root_Certificate_Authority_-_G2.crt 26134
-usr/share/ca-certificates/mozilla/GTS_Root_R3.crt                    26133
-usr/share/ca-certificates/mozilla/CFCA_EV_ROOT.crt                   26132
-usr/share/ca-certificates/mozilla/SSL.com_Root_Certification_Authority_ECC.crt 26131
-usr/share/ca-certificates/mozilla/Global_Chambersign_Root_-_2008.crt 26130
-usr/share/ca-certificates/mozilla/UCA_Extended_Validation_Root.crt   26129
-usr/share/ca-certificates/mozilla/GDCA_TrustAUTH_R5_ROOT.crt         26128
-usr/share/ca-certificates/mozilla/GTS_Root_R1.crt                    26127
-usr/share/ca-certificates/mozilla/Entrust_Root_Certification_Authority_-_EC1.crt 26126
-usr/share/ca-certificates/mozilla/GeoTrust_Primary_Certification_Authority_-_G2.crt 26125
-usr/share/ca-certificates/mozilla/emSign_ECC_Root_CA_-_G3.crt        26124
-usr/share/ca-certificates/mozilla/Hellenic_Academic_and_Research_Institutions_RootCA_2011.crt 26123
-usr/share/ca-certificates/mozilla/SecureSign_RootCA11.crt            26122
-usr/share/ca-certificates/mozilla/GlobalSign_ECC_Root_CA_-_R5.crt    26121
-usr/share/ca-certificates/mozilla/IdenTrust_Public_Sector_Root_CA_1.crt 26120
-usr/share/ca-certificates/mozilla/T-TeleSec_GlobalRoot_Class_2.crt   26119
-usr/share/ca-certificates/mozilla/DigiCert_High_Assurance_EV_Root_CA.crt 26118
-usr/share/ca-certificates/mozilla/emSign_Root_CA_-_G1.crt            26117
-usr/share/ca-certificates/mozilla/CA_Disig_Root_R2.crt               26116
-usr/share/ca-certificates/mozilla/AffirmTrust_Commercial.crt         26115
-usr/share/ca-certificates/mozilla/DST_Root_CA_X3.crt                 26114
-usr/share/ca-certificates/mozilla/Hellenic_Academic_and_Research_Institutions_RootCA_2015.crt 26113
-usr/share/ca-certificates/mozilla/EC-ACC.crt                         26112
-usr/share/ca-certificates/mozilla/DigiCert_Global_Root_CA.crt        26111
-usr/share/ca-certificates/mozilla/Autoridad_de_Certificacion_Firmaprofesional_CIF_A62634068.crt 26110
-usr/share/ca-certificates/mozilla/TrustCor_RootCert_CA-2.crt         26109
-usr/share/ca-certificates/mozilla/Hongkong_Post_Root_CA_1.crt        26108
-usr/share/ca-certificates/mozilla/NAVER_Global_Root_Certification_Authority.crt 26107
-usr/share/ca-certificates/mozilla/Certum_Trusted_Network_CA_2.crt    26106
-usr/share/ca-certificates/mozilla/ISRG_Root_X1.crt                   26105
-usr/share/ca-certificates/mozilla/COMODO_Certification_Authority.crt 26104
-usr/share/ca-certificates/mozilla/emSign_Root_CA_-_C1.crt            26103
-usr/share/ca-certificates/mozilla/Network_Solutions_Certificate_Authority.crt 26102
-usr/share/ca-certificates/mozilla/Certum_Trusted_Network_CA.crt      26101
-usr/share/ca-certificates/mozilla/GlobalSign_Root_CA_-_R2.crt        26100
-usr/share/ca-certificates/mozilla/emSign_ECC_Root_CA_-_C3.crt        26099
-usr/share/ca-certificates/mozilla/Starfield_Root_Certificate_Authority_-_G2.crt 26098
-usr/share/ca-certificates/mozilla/SwissSign_Gold_CA_-_G2.crt         26097
-usr/share/ca-certificates/mozilla/E-Tugra_Certification_Authority.crt 26096
-usr/share/ca-certificates/mozilla/T-TeleSec_GlobalRoot_Class_3.crt   26095
-usr/share/ca-certificates/mozilla/Buypass_Class_2_Root_CA.crt        26094
-usr/share/ca-certificates/mozilla/SwissSign_Silver_CA_-_G2.crt       26093
-usr/share/ca-certificates/mozilla/Staat_der_Nederlanden_Root_CA_-_G3.crt 26092
-usr/share/ca-certificates/mozilla/GlobalSign_Root_CA.crt             26091
-usr/share/ca-certificates/mozilla/TeliaSonera_Root_CA_v1.crt         26090
-usr/share/ca-certificates/mozilla/TrustCor_RootCert_CA-1.crt         26089
-usr/share/ca-certificates/mozilla/Entrust_Root_Certification_Authority_-_G4.crt 26088
-usr/share/ca-certificates/mozilla/TWCA_Global_Root_CA.crt            26087
-usr/share/ca-certificates/mozilla/certSIGN_Root_CA_G2.crt            26086
-usr/share/ca-certificates/mozilla/DigiCert_Global_Root_G2.crt        26085
-usr/share/ca-certificates/mozilla/GTS_Root_R2.crt                    26084
-usr/share/ca-certificates/mozilla/Baltimore_CyberTrust_Root.crt      26083
-usr/share/ca-certificates/mozilla/Hongkong_Post_Root_CA_3.crt        26082
-usr/share/ca-certificates/mozilla/Entrust_Root_Certification_Authority.crt 26081
-usr/share/ca-certificates/mozilla/Amazon_Root_CA_2.crt               26080
-usr/share/ca-certificates/mozilla/SSL.com_Root_Certification_Authority_RSA.crt 26079
-usr/share/ca-certificates/mozilla/XRamp_Global_CA_Root.crt           26078
-usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_1_G3.crt          26077
-usr/share/ca-certificates/mozilla/DigiCert_Trusted_Root_G4.crt       26076
-usr/share/ca-certificates/mozilla/Cybertrust_Global_Root.crt         26075
-usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_3.crt             26074
-usr/share/ca-certificates/mozilla/Hellenic_Academic_and_Research_Institutions_ECC_RootCA_2015.crt 26073
-usr/share/ca-certificates/mozilla/OISTE_WISeKey_Global_Root_GC_CA.crt 26072
-usr/share/ca-certificates/mozilla/TrustCor_ECA-1.crt                 26071
-usr/share/ca-certificates/mozilla/DigiCert_Assured_ID_Root_G3.crt    26070
-usr/share/ca-certificates/mozilla/Microsec_e-Szigno_Root_CA_2009.crt 26069
-usr/share/ca-certificates/mozilla/Amazon_Root_CA_3.crt               26068
-usr/share/ca-certificates/mozilla/certSIGN_ROOT_CA.crt               26067
-usr/share/ca-certificates/mozilla/Microsoft_ECC_Root_Certificate_Authority_2017.crt 26066
-usr/share/ca-certificates/mozilla/Actalis_Authentication_Root_CA.crt 26065
-usr/share/ca-certificates/mozilla/AffirmTrust_Networking.crt         26064
-usr/share/ca-certificates/mozilla/NetLock_Arany_=Class_Gold=_Főtanúsítvány.crt 26063
-usr/share/ca-certificates/mozilla/Trustwave_Global_ECC_P256_Certification_Authority.crt 26062
-usr/share/ca-certificates/mozilla/Sonera_Class_2_Root_CA.crt         26061
-usr/share/ca-certificates/mozilla/AffirmTrust_Premium_ECC.crt        26060
-usr/share/ca-certificates/mozilla/DigiCert_Assured_ID_Root_G2.crt    26059
-usr/share/ca-certificates/mozilla/ACCVRAIZ1.crt                      26058
-usr/share/ca-certificates/mozilla/AC_RAIZ_FNMT-RCM.crt               26057
-usr/share/ca-certificates/mozilla/AffirmTrust_Premium.crt            26056
-usr/share/ca-certificates/mozilla/Amazon_Root_CA_1.crt               26055
-usr/share/ca-certificates/mozilla/Amazon_Root_CA_4.crt               26054
-usr/share/ca-certificates/mozilla/Atos_TrustedRoot_2011.crt          26053
-usr/share/ca-certificates/mozilla/Buypass_Class_3_Root_CA.crt        26052
-usr/share/ca-certificates/mozilla/COMODO_ECC_Certification_Authority.crt 26051
-usr/share/ca-certificates/mozilla/COMODO_RSA_Certification_Authority.crt 26050
-usr/share/ca-certificates/mozilla/Certigna.crt                       26049
-usr/share/ca-certificates/mozilla/Certigna_Root_CA.crt               26048
-usr/share/ca-certificates/mozilla/Chambers_of_Commerce_Root_-_2008.crt 26047
-usr/share/ca-certificates/mozilla/Comodo_AAA_Services_root.crt       26046
-usr/share/ca-certificates/mozilla/D-TRUST_Root_Class_3_CA_2_2009.crt 26045
-usr/share/ca-certificates/mozilla/D-TRUST_Root_Class_3_CA_2_EV_2009.crt 26044
-usr/share/ca-certificates/mozilla/DigiCert_Assured_ID_Root_CA.crt    26043
-usr/share/ca-certificates/mozilla/DigiCert_Global_Root_G3.crt        26042
-usr/share/ca-certificates/mozilla/Entrust.net_Premium_2048_Secure_Server_CA.crt 26041
-usr/share/ca-certificates/mozilla/GTS_Root_R4.crt                    26040
-usr/share/ca-certificates/mozilla/GlobalSign_ECC_Root_CA_-_R4.crt    26039
-usr/share/ca-certificates/mozilla/GlobalSign_Root_CA_-_R6.crt        26038
-usr/share/ca-certificates/mozilla/Go_Daddy_Class_2_CA.crt            26037
-usr/share/ca-certificates/mozilla/Go_Daddy_Root_Certificate_Authority_-_G2.crt 26036
-usr/share/ca-certificates/mozilla/IdenTrust_Commercial_Root_CA_1.crt 26035
-usr/share/ca-certificates/mozilla/Izenpe.com.crt                     26034
-usr/share/ca-certificates/mozilla/Microsoft_RSA_Root_Certificate_Authority_2017.crt 26033
-usr/share/ca-certificates/mozilla/OISTE_WISeKey_Global_Root_GB_CA.crt 26032
-usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_2.crt             26031
-usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_3_G3.crt          26030
-usr/share/ca-certificates/mozilla/SSL.com_EV_Root_Certification_Authority_ECC.crt 26029
-usr/share/ca-certificates/mozilla/SZAFIR_ROOT_CA2.crt                26028
-usr/share/ca-certificates/mozilla/SecureTrust_CA.crt                 26027
-usr/share/ca-certificates/mozilla/Secure_Global_CA.crt               26026
-usr/share/ca-certificates/mozilla/Security_Communication_RootCA2.crt 26025
-usr/share/ca-certificates/mozilla/Security_Communication_Root_CA.crt 26024
-usr/share/ca-certificates/mozilla/Starfield_Class_2_CA.crt           26023
-usr/share/ca-certificates/mozilla/TUBITAK_Kamu_SM_SSL_Kok_Sertifikasi_-_Surum_1.crt 26022
-usr/share/ca-certificates/mozilla/TWCA_Root_Certification_Authority.crt 26021
-usr/share/ca-certificates/mozilla/Trustis_FPS_Root_CA.crt            26020
-usr/share/ca-certificates/mozilla/Trustwave_Global_Certification_Authority.crt 26019
-usr/share/ca-certificates/mozilla/Trustwave_Global_ECC_P384_Certification_Authority.crt 26018
-usr/share/ca-certificates/mozilla/UCA_Global_G2_Root.crt             26017
-usr/share/ca-certificates/mozilla/USERTrust_ECC_Certification_Authority.crt 26016
-usr/share/ca-certificates/mozilla/USERTrust_RSA_Certification_Authority.crt 26015
-usr/share/ca-certificates/mozilla/VeriSign_Universal_Root_Certification_Authority.crt 26014
-usr/share/ca-certificates/mozilla/ePKI_Root_Certification_Authority.crt 26013
-usr/share/ca-certificates/mozilla/e-Szigno_Root_CA_2017.crt          26012
-usr/libexec/ibus-engine-libpinyin                                    26011
-usr/lib/x86_64-linux-gnu/libpinyin.so.13.0.0                         26010
-usr/libexec/ibus-engine-hangul                                       26009
-usr/lib/x86_64-linux-gnu/libhangul.so.1.0.0                          26008
-usr/lib/x86_64-linux-gnu/libopencc.so.1.1.1                          26007
-usr/lib/ibus/ibus-engine-chewing                                     26006
-usr/lib/x86_64-linux-gnu/liblua5.4.so.0.0.0                          26005
-usr/lib/x86_64-linux-gnu/libchewing.so.3.3.1                         26004
-usr/lib/x86_64-linux-gnu/libmarisa.so.0.0.0                          26003
-usr/lib/x86_64-linux-gnu/libgtk-x11-2.0.so.0.2400.33                 26002
-usr/share/libhangul/hanja/hanja.txt                                  26001
-usr/lib/x86_64-linux-gnu/libgdk-x11-2.0.so.0.2400.33                 26000
-usr/lib/x86_64-linux-gnu/gtk-2.0/modules/libgail.so                  25999
-usr/lib/x86_64-linux-gnu/libgailutil.so.18.0.1                       25998
-usr/lib/x86_64-linux-gnu/gtk-2.0/modules/libatk-bridge.so            25997
-usr/share/themes/Adwaita/gtk-2.0/gtkrc                               25996
-usr/share/themes/Adwaita/gtk-2.0/main.rc                             25995
-usr/lib/x86_64-linux-gnu/gtk-2.0/2.10.0/engines/libadwaita.so        25994
-usr/lib/x86_64-linux-gnu/gtk-2.0/2.10.0/engines/libpixmap.so         25993
-usr/share/themes/Adwaita/gtk-2.0/apps.rc                             25992
-usr/share/themes/Adwaita/gtk-2.0/hacks.rc                            25991
-usr/share/themes/Default/gtk-2.0-key/gtkrc                           25990
-usr/share/ibus-hangul/data/symbol.txt                                25989
-usr/share/icons/Adwaita/16x16/actions/edit-find-symbolic.symbolic.png 25988
-usr/share/icons/Adwaita/64x64/actions/view-app-grid-symbolic.symbolic.png 25987
-usr/local/lib/tor-browser/browser/chrome/icons/default/default128.png 25986
-usr/share/pixmaps/tails-installer.svg                                25985
-usr/share/icons/hicolor/scalable/apps/keepassxc.svg                  25984
-usr/share/icons/hicolor/64x64/apps/kleopatra.png                     25983
-usr/share/icons/hicolor/64x64/apps/thunderbird.png                   25982
-usr/local/bin/tor-browser                                            25980
-usr/bin/systemd-run                                                  25979
-usr/local/lib/run-tor-browser-in-netns                               25978
-usr/lib/python3/dist-packages/tailslib/netnsdrop.py                  25977
-usr/bin/tor-browser                                                  25976
-usr/local/lib/tails-shell-library/tor-browser.sh                     25975
-usr/local/lib/tails-shell-library/systemd.sh                         25974
-usr/bin/7z                                                           25973
-usr/lib/p7zip/7z                                                     25972
-usr/lib/p7zip/7z.so                                                  25971
-usr/local/lib/tor-browser/omni.ja                                    25970
-etc/tor-browser/locale-profiles/en-US.js                             25969
-usr/local/lib/tor-browser/firefox.real                               25968
-usr/local/lib/tor-browser/dependentlibs.list                         25967
-usr/local/lib/tor-browser/libnspr4.so                                25966
-usr/local/lib/tor-browser/libplc4.so                                 25965
-usr/local/lib/tor-browser/libplds4.so                                25964
-usr/local/lib/tor-browser/libmozsandbox.so                           25963
-usr/local/lib/tor-browser/liblgpllibs.so                             25962
-usr/local/lib/tor-browser/libnssutil3.so                             25961
-usr/local/lib/tor-browser/libnss3.so                                 25960
-usr/local/lib/tor-browser/libsmime3.so                               25959
-usr/local/lib/tor-browser/libmozsqlite3.so                           25958
-usr/local/lib/tor-browser/libssl3.so                                 25957
-usr/local/lib/tor-browser/libmozgtk.so                               25956
-usr/local/lib/tor-browser/libmozwayland.so                           25955
-usr/local/lib/tor-browser/libxul.so                                  25954
-usr/lib/x86_64-linux-gnu/libdbus-glib-1.so.2.3.4                     25953
-usr/lib/x86_64-linux-gnu/libpci.so.3.7.0                             25952
-usr/local/lib/tor-browser/TorBrowser/Data/Browser/profiles.ini       25951
-usr/local/lib/tor-browser/browser/omni.ja                            25950
-usr/local/lib/tor-browser/defaults/pref/channel-prefs.js             25945
-usr/bin/lsb_release                                                  25941
-usr/local/lib/tor-browser/distribution/policies.json                 25940
-usr/local/share/tor-browser-extensions/{73a6fe31-595d-460b-a920-fcc0f8843232}.xpi 25939
-usr/local/lib/tor-browser/libsoftokn3.so                             25938
-usr/local/lib/tor-browser/libfreeblpriv3.so                          25937
-usr/local/lib/tor-browser/libnssckbi.so                              25936
-etc/ld.so.conf                                                       25935
-etc/ld.so.conf.d/libc.conf                                           25934
-etc/ld.so.conf.d/x86_64-linux-gnu.conf                               25933
-usr/local/lib/tor-browser/libipcclientcerts.so                       25932
-usr/lib/locale/C.UTF-8/LC_IDENTIFICATION                             25931
-usr/lib/locale/C.UTF-8/LC_MEASUREMENT                                25930
-usr/lib/locale/C.UTF-8/LC_TELEPHONE                                  25929
-usr/lib/locale/C.UTF-8/LC_ADDRESS                                    25928
-usr/lib/locale/C.UTF-8/LC_NAME                                       25927
-usr/lib/locale/C.UTF-8/LC_PAPER                                      25926
-usr/lib/locale/C.UTF-8/LC_MONETARY                                   25925
-usr/lib/locale/C.UTF-8/LC_COLLATE                                    25924
-usr/lib/locale/C.UTF-8/LC_TIME                                       25923
-usr/local/lib/tor-browser/browser/features/onboarding@mozilla.org.xpi 25922
-usr/lib/locale/C.UTF-8/LC_NUMERIC                                    25921
-usr/lib/systemd/user/xdg-desktop-portal.service                      25920
-usr/libexec/xdg-desktop-portal                                       25918
-usr/share/xdg-desktop-portal/portals/gnome-keyring.portal            25917
-usr/share/xdg-desktop-portal/portals/gnome-shell.portal              25916
-usr/lib/systemd/user/xdg-document-portal.service                     25915
-usr/libexec/xdg-document-portal                                      25913
-lib/x86_64-linux-gnu/libfuse.so.2.9.9                                25912
-bin/fusermount3                                                      25911
-etc/fuse.conf                                                        25910
-usr/share/icons/Adwaita/32x32/ui/window-close-symbolic.symbolic.png  25909
-usr/local/lib/tor-browser/TorBrowser/Data/fontconfig/fonts.conf      25908
-usr/local/lib/tor-browser/fonts/Arimo-Bold.ttf                       25907
-usr/local/lib/tor-browser/fonts/Arimo-BoldItalic.ttf                 25906
-usr/local/lib/tor-browser/fonts/Arimo-Italic.ttf                     25905
-usr/local/lib/tor-browser/fonts/Arimo-Regular.ttf                    25904
-usr/local/lib/tor-browser/fonts/Cousine-Regular.ttf                  25903
-usr/local/lib/tor-browser/fonts/NotoNaskhArabic-Regular.ttf          25902
-usr/local/lib/tor-browser/fonts/NotoSansAdlam-Regular.ttf            25901
-usr/local/lib/tor-browser/fonts/NotoSansArmenian-Regular.ttf         25900
-usr/local/lib/tor-browser/fonts/NotoSansBalinese-Regular.ttf         25899
-usr/local/lib/tor-browser/fonts/NotoSansBamum-Regular.ttf            25898
-usr/local/lib/tor-browser/fonts/NotoSansBassaVah-Regular.ttf         25897
-usr/local/lib/tor-browser/fonts/NotoSansBatak-Regular.ttf            25896
-usr/local/lib/tor-browser/fonts/NotoSansBengali-Regular.ttf          25895
-usr/local/lib/tor-browser/fonts/NotoSansBuginese-Regular.ttf         25894
-usr/local/lib/tor-browser/fonts/NotoSansBuhid-Regular.ttf            25893
-usr/local/lib/tor-browser/fonts/NotoSansCanadianAboriginal-Regular.ttf 25892
-usr/local/lib/tor-browser/fonts/NotoSansChakma-Regular.ttf           25891
-usr/local/lib/tor-browser/fonts/NotoSansCham-Regular.ttf             25890
-usr/local/lib/tor-browser/fonts/NotoSansCherokee-Regular.ttf         25889
-usr/local/lib/tor-browser/fonts/NotoSansCoptic-Regular.ttf           25888
-usr/local/lib/tor-browser/fonts/NotoSansDeseret-Regular.ttf          25887
-usr/local/lib/tor-browser/fonts/NotoSansDevanagari-Regular.ttf       25886
-usr/local/lib/tor-browser/fonts/NotoSansElbasan-Regular.ttf          25885
-usr/local/lib/tor-browser/fonts/NotoSansEthiopic-Regular.ttf         25884
-usr/local/lib/tor-browser/fonts/NotoSansGeorgian-Regular.ttf         25883
-usr/local/lib/tor-browser/fonts/NotoSansGrantha-Regular.ttf          25882
-usr/local/lib/tor-browser/fonts/NotoSansGujarati-Regular.ttf         25881
-usr/local/lib/tor-browser/fonts/NotoSansGunjalaGondi-Regular.ttf     25880
-usr/local/lib/tor-browser/fonts/NotoSansGurmukhi-Regular.ttf         25879
-usr/local/lib/tor-browser/fonts/NotoSansHanifiRohingya-Regular.ttf   25878
-usr/local/lib/tor-browser/fonts/NotoSansHanunoo-Regular.ttf          25877
-usr/local/lib/tor-browser/fonts/NotoSansHebrew-Regular.ttf           25876
-usr/local/lib/tor-browser/fonts/NotoSansJP-Regular.otf               25875
-usr/local/lib/tor-browser/fonts/NotoSansJavanese-Regular.ttf         25874
-usr/local/lib/tor-browser/fonts/NotoSansKR-Regular.otf               25873
-usr/local/lib/tor-browser/fonts/NotoSansKannada-Regular.ttf          25872
-usr/local/lib/tor-browser/fonts/NotoSansKayahLi-Regular.ttf          25871
-usr/local/lib/tor-browser/fonts/NotoSansKhmer-Regular.ttf            25870
-usr/local/lib/tor-browser/fonts/NotoSansKhojki-Regular.ttf           25869
-usr/local/lib/tor-browser/fonts/NotoSansKhudawadi-Regular.ttf        25868
-usr/local/lib/tor-browser/fonts/NotoSansLao-Regular.ttf              25867
-usr/local/lib/tor-browser/fonts/NotoSansLepcha-Regular.ttf           25866
-usr/local/lib/tor-browser/fonts/NotoSansLimbu-Regular.ttf            25865
-usr/local/lib/tor-browser/fonts/NotoSansLisu-Regular.ttf             25864
-usr/local/lib/tor-browser/fonts/NotoSansMahajani-Regular.ttf         25863
-usr/local/lib/tor-browser/fonts/NotoSansMalayalam-Regular.ttf        25862
-usr/local/lib/tor-browser/fonts/NotoSansMandaic-Regular.ttf          25861
-usr/local/lib/tor-browser/fonts/NotoSansMasaramGondi-Regular.ttf     25860
-usr/local/lib/tor-browser/fonts/NotoSansMedefaidrin-Regular.ttf      25859
-usr/local/lib/tor-browser/fonts/NotoSansMeeteiMayek-Regular.ttf      25858
-usr/local/lib/tor-browser/fonts/NotoSansMendeKikakui-Regular.ttf     25857
-usr/local/lib/tor-browser/fonts/NotoSansMiao-Regular.ttf             25856
-usr/local/lib/tor-browser/fonts/NotoSansModi-Regular.ttf             25855
-usr/local/lib/tor-browser/fonts/NotoSansMongolian-Regular.ttf        25854
-usr/local/lib/tor-browser/fonts/NotoSansMro-Regular.ttf              25853
-usr/local/lib/tor-browser/fonts/NotoSansMultani-Regular.ttf          25852
-usr/local/lib/tor-browser/fonts/NotoSansMyanmar-Regular.ttf          25851
-usr/local/lib/tor-browser/fonts/NotoSansNKo-Regular.ttf              25850
-usr/local/lib/tor-browser/fonts/NotoSansNewTaiLue-Regular.ttf        25849
-usr/local/lib/tor-browser/fonts/NotoSansNewa-Regular.ttf             25848
-usr/local/lib/tor-browser/fonts/NotoSansOlChiki-Regular.ttf          25847
-usr/local/lib/tor-browser/fonts/NotoSansOriya-Regular.ttf            25846
-usr/local/lib/tor-browser/fonts/NotoSansOsage-Regular.ttf            25845
-usr/local/lib/tor-browser/fonts/NotoSansOsmanya-Regular.ttf          25844
-usr/local/lib/tor-browser/fonts/NotoSansPahawhHmong-Regular.ttf      25843
-usr/local/lib/tor-browser/fonts/NotoSansPauCinHau-Regular.ttf        25842
-usr/local/lib/tor-browser/fonts/NotoSansRejang-Regular.ttf           25841
-usr/local/lib/tor-browser/fonts/NotoSansRunic-Regular.ttf            25840
-usr/local/lib/tor-browser/fonts/NotoSansSC-Regular.otf               25839
-usr/local/lib/tor-browser/fonts/NotoSansSamaritan-Regular.ttf        25838
-usr/local/lib/tor-browser/fonts/NotoSansSaurashtra-Regular.ttf       25837
-usr/local/lib/tor-browser/fonts/NotoSansSharada-Regular.ttf          25836
-usr/local/lib/tor-browser/fonts/NotoSansShavian-Regular.ttf          25835
-usr/local/lib/tor-browser/fonts/NotoSansSinhala-Regular.ttf          25834
-usr/local/lib/tor-browser/fonts/NotoSansSoraSompeng-Regular.ttf      25833
-usr/local/lib/tor-browser/fonts/NotoSansSoyombo-Regular.ttf          25832
-usr/local/lib/tor-browser/fonts/NotoSansSundanese-Regular.ttf        25831
-usr/local/lib/tor-browser/fonts/NotoSansSylotiNagri-Regular.ttf      25830
-usr/local/lib/tor-browser/fonts/NotoSansSymbols-Regular.ttf          25829
-usr/local/lib/tor-browser/fonts/NotoSansSymbols2-Regular.ttf         25828
-usr/local/lib/tor-browser/fonts/NotoSansSyriac-Regular.ttf           25827
-usr/local/lib/tor-browser/fonts/NotoSansTC-Regular.otf               25826
-usr/local/lib/tor-browser/fonts/NotoSansTagalog-Regular.ttf          25825
-usr/local/lib/tor-browser/fonts/NotoSansTagbanwa-Regular.ttf         25824
-usr/local/lib/tor-browser/fonts/NotoSansTaiLe-Regular.ttf            25823
-usr/local/lib/tor-browser/fonts/NotoSansTaiTham-Regular.ttf          25822
-usr/local/lib/tor-browser/fonts/NotoSansTaiViet-Regular.ttf          25821
-usr/local/lib/tor-browser/fonts/NotoSansTakri-Regular.ttf            25820
-usr/local/lib/tor-browser/fonts/NotoSansTamil-Regular.ttf            25819
-usr/local/lib/tor-browser/fonts/NotoSansTelugu-Regular.ttf           25818
-usr/local/lib/tor-browser/fonts/NotoSansThaana-Regular.ttf           25817
-usr/local/lib/tor-browser/fonts/NotoSansThai-Regular.ttf             25816
-usr/local/lib/tor-browser/fonts/NotoSansTifinagh-Regular.ttf         25815
-usr/local/lib/tor-browser/fonts/NotoSansTifinaghAPT-Regular.ttf      25814
-usr/local/lib/tor-browser/fonts/NotoSansTifinaghAdrar-Regular.ttf    25813
-usr/local/lib/tor-browser/fonts/NotoSansTifinaghAgrawImazighen-Regular.ttf 25812
-usr/local/lib/tor-browser/fonts/NotoSansTifinaghAhaggar-Regular.ttf  25811
-usr/local/lib/tor-browser/fonts/NotoSansTifinaghAir-Regular.ttf      25810
-usr/local/lib/tor-browser/fonts/NotoSansTifinaghAzawagh-Regular.ttf  25809
-usr/local/lib/tor-browser/fonts/NotoSansTifinaghGhat-Regular.ttf     25808
-usr/local/lib/tor-browser/fonts/NotoSansTifinaghHawad-Regular.ttf    25807
-usr/local/lib/tor-browser/fonts/NotoSansTifinaghRhissaIxa-Regular.ttf 25806
-usr/local/lib/tor-browser/fonts/NotoSansTifinaghSIL-Regular.ttf      25805
-usr/local/lib/tor-browser/fonts/NotoSansTifinaghTawellemmet-Regular.ttf 25804
-usr/local/lib/tor-browser/fonts/NotoSansTirhuta-Regular.ttf          25803
-usr/local/lib/tor-browser/fonts/NotoSansVai-Regular.ttf              25802
-usr/local/lib/tor-browser/fonts/NotoSansWancho-Regular.ttf           25801
-usr/local/lib/tor-browser/fonts/NotoSansWarangCiti-Regular.ttf       25800
-usr/local/lib/tor-browser/fonts/NotoSansYi-Regular.ttf               25799
-usr/local/lib/tor-browser/fonts/NotoSansZanabazarSquare-Regular.ttf  25798
-usr/local/lib/tor-browser/fonts/NotoSerifArmenian-Regular.ttf        25797
-usr/local/lib/tor-browser/fonts/NotoSerifBalinese-Regular.ttf        25796
-usr/local/lib/tor-browser/fonts/NotoSerifBengali-Regular.ttf         25795
-usr/local/lib/tor-browser/fonts/NotoSerifDevanagari-Regular.ttf      25794
-usr/local/lib/tor-browser/fonts/NotoSerifDogra-Regular.ttf           25793
-usr/local/lib/tor-browser/fonts/NotoSerifEthiopic-Regular.ttf        25792
-usr/local/lib/tor-browser/fonts/NotoSerifGeorgian-Regular.ttf        25791
-usr/local/lib/tor-browser/fonts/NotoSerifGrantha-Regular.ttf         25790
-usr/local/lib/tor-browser/fonts/NotoSerifGujarati-Regular.ttf        25789
-usr/local/lib/tor-browser/fonts/NotoSerifGurmukhi-Regular.ttf        25788
-usr/local/lib/tor-browser/fonts/NotoSerifHebrew-Regular.ttf          25787
-usr/local/lib/tor-browser/fonts/NotoSerifKannada-Regular.ttf         25786
-usr/local/lib/tor-browser/fonts/NotoSerifKhmer-Regular.ttf           25785
-usr/local/lib/tor-browser/fonts/NotoSerifKhojki-Regular.ttf          25784
-usr/local/lib/tor-browser/fonts/NotoSerifLao-Regular.ttf             25783
-usr/local/lib/tor-browser/fonts/NotoSerifMalayalam-Regular.ttf       25782
-usr/local/lib/tor-browser/fonts/NotoSerifMyanmar-Regular.ttf         25781
-usr/local/lib/tor-browser/fonts/NotoSerifNyiakengPuachueHmong-Regular.ttf 25780
-usr/local/lib/tor-browser/fonts/NotoSerifSinhala-Regular.ttf         25779
-usr/local/lib/tor-browser/fonts/NotoSerifTamil-Regular.ttf           25778
-usr/local/lib/tor-browser/fonts/NotoSerifTelugu-Regular.ttf          25777
-usr/local/lib/tor-browser/fonts/NotoSerifThai-Regular.ttf            25776
-usr/local/lib/tor-browser/fonts/NotoSerifTibetan-Regular.ttf         25775
-usr/local/lib/tor-browser/fonts/NotoSerifYezidi-Regular.ttf          25774
-usr/local/lib/tor-browser/fonts/STIXMath-Regular.otf                 25773
-usr/local/lib/tor-browser/fonts/Tinos-Bold.ttf                       25772
-usr/local/lib/tor-browser/fonts/Tinos-BoldItalic.ttf                 25771
-usr/local/lib/tor-browser/fonts/Tinos-Italic.ttf                     25770
-usr/local/lib/tor-browser/fonts/Tinos-Regular.ttf                    25769
-usr/local/lib/tor-browser/fonts/TwemojiMozilla.ttf                   25768
-usr/local/lib/tor-browser/browser/chrome/icons/default/default16.png 25767
-usr/local/lib/tor-browser/browser/chrome/icons/default/default32.png 25766
-usr/local/lib/tor-browser/browser/chrome/icons/default/default48.png 25765
-usr/local/lib/tor-browser/browser/chrome/icons/default/default64.png 25764
-usr/share/mime/application/xml-dtd.xml                               25763
-usr/share/mime/audio/mpeg.xml                                        25762
-usr/share/mime/video/mp4.xml                                         25761
-usr/local/lib/tor-browser/libmozavutil.so                            25760
-usr/local/lib/tor-browser/libmozavcodec.so                           25759
-usr/bin/xhost                                                        25758
-usr/local/bin/tails-upgrade-frontend                                 25757
-usr/share/perl/5.32.1/FindBin.pm                                     25756
-usr/lib/x86_64-linux-gnu/perl-base/lib.pm                            25755
-usr/local/share/perl/5.32.1/Tails/IUK/Frontend.pm                    25754
-usr/share/perl/5.32.1/Env.pm                                         25753
-usr/share/perl/5.32.1/Tie/Array.pm                                   25752
-usr/share/perl5/Path/Tiny.pm                                         25751
-usr/local/share/perl/5.32.1/Tails/RunningSystem.pm                   25750
-usr/share/perl5/Sys/Statistics/Linux/MemStats.pm                     25749
-usr/local/share/perl/5.32.1/Tails/Constants.pm                       25748
-usr/share/perl5/MooX/late.pm                                         25747
-usr/share/perl5/Sub/HandlesVia.pm                                    25746
-usr/share/perl5/Exporter/Shiny.pm                                    25745
-usr/share/perl5/Sub/HandlesVia/Toolkit/Moo.pm                        25744
-usr/share/perl5/Sub/HandlesVia/Toolkit.pm                            25743
-usr/share/perl5/Type/Params.pm                                       25742
-usr/share/perl5/Error/TypeTiny.pm                                    25741
-usr/share/perl5/Error/TypeTiny/Assertion.pm                          25740
-usr/share/perl5/Error/TypeTiny/WrongNumberOfParameters.pm            25739
-usr/share/perl5/Sub/HandlesVia/Handler.pm                            25738
-usr/share/perl5/Class/Tiny.pm                                        25737
-usr/share/perl5/Type/Utils.pm                                        25736
-usr/share/perl5/Type/Registry.pm                                     25735
-usr/share/perl5/Type/Parser.pm                                       25734
-usr/local/share/perl/5.32.1/Tails/UDisks.pm                          25733
-usr/share/perl/5.32.1/File/stat.pm                                   25732
-usr/share/perl/5.32.1/Class/Struct.pm                                25731
-usr/share/perl5/Syntax/Keyword/Junction.pm                           25730
-usr/share/perl5/Syntax/Keyword/Junction/All.pm                       25729
-usr/share/perl5/Syntax/Keyword/Junction/Base.pm                      25728
-usr/share/perl/5.32.1/if.pm                                          25727
-usr/share/perl5/Syntax/Keyword/Junction/Any.pm                       25726
-usr/share/perl5/Syntax/Keyword/Junction/None.pm                      25725
-usr/share/perl5/Syntax/Keyword/Junction/One.pm                       25724
-usr/share/perl5/Types/Path/Tiny.pm                                   25723
-usr/share/perl5/Type/Tiny/Class.pm                                   25722
-usr/share/perl5/Type/Tiny/ConstrainedObject.pm                       25721
-usr/share/perl5/Type/Tiny/Intersection.pm                            25720
-usr/lib/x86_64-linux-gnu/perl5/5.32/Unix/Mknod.pm                    25719
-usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Unix/Mknod/Mknod.so         25718
-usr/share/perl5/Moo/Role.pm                                          25717
-usr/local/share/perl/5.32.1/Tails/Role/HasDBus/System.pm             25716
-usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/GLib.pm                 25715
-usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Net/DBus/GLib/GLib.so       25714
-usr/local/share/perl/5.32.1/Tails.pm                                 25713
-usr/local/share/perl/5.32.1/Tails/Role/HasEncoding.pm                25712
-usr/share/perl5/Type/Tiny/Union.pm                                   25711
-usr/local/share/perl/5.32.1/Tails/Role/DisplayError/Gtk3.pm          25710
-usr/share/perl5/Gtk3.pm                                              25709
-usr/lib/x86_64-linux-gnu/perl5/5.32/Cairo/GObject.pm                 25708
-usr/lib/x86_64-linux-gnu/perl5/5.32/Cairo.pm                         25707
-usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Cairo/Cairo.so              25706
-usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Cairo/GObject/GObject.so    25705
-usr/local/share/perl/5.32.1/Tails/IUK/DownloadProgress.pm            25704
-usr/lib/x86_64-linux-gnu/perl/5.32.1/Time/HiRes.pm                   25703
-usr/lib/x86_64-linux-gnu/perl/5.32.1/auto/Time/HiRes/HiRes.so        25702
-usr/share/perl5/Time/Duration.pm                                     25701
-usr/local/share/perl/5.32.1/Tails/IUK/Role/FormatByte.pm             25700
-usr/share/perl5/Number/Format.pm                                     25699
-usr/share/perl5/Types/Standard/HashRef.pm                            25698
-usr/local/share/perl/5.32.1/Tails/IUK/UpgradeDescriptionFile.pm      25697
-usr/share/perl5/MooX/HandlesVia.pm                                   25696
-usr/share/perl5/Dpkg/Version.pm                                      25695
-usr/share/perl5/Dpkg/Gettext.pm                                      25694
-usr/lib/x86_64-linux-gnu/perl-base/feature.pm                        25693
-usr/share/perl5/Dpkg/ErrorHandling.pm                                25692
-usr/share/perl5/Dpkg.pm                                              25691
-usr/share/perl5/YAML/Any.pm                                          25690
-usr/lib/x86_64-linux-gnu/perl5/5.32/YAML/XS.pm                       25689
-usr/lib/x86_64-linux-gnu/perl5/5.32/YAML/XS/LibYAML.pm               25688
-usr/lib/x86_64-linux-gnu/perl5/5.32/auto/YAML/XS/LibYAML/LibYAML.so  25687
-usr/share/perl5/Data/Perl/Collection/Array/MooseLike.pm              25686
-usr/share/perl5/Class/Method/Modifiers.pm                            25685
-usr/share/perl5/Data/Perl/Role/Collection/Array.pm                   25684
-usr/local/share/perl/5.32.1/Tails/IUK/Utils.pm                       25683
-usr/share/perl5/GnuPG/Interface.pm                                   25682
-usr/share/perl/5.32.1/Math/BigInt.pm                                 25681
-usr/share/perl/5.32.1/Math/BigInt/Calc.pm                            25680
-usr/share/perl/5.32.1/Math/BigInt/Lib.pm                             25679
-usr/share/perl5/GnuPG/Options.pm                                     25678
-usr/share/perl5/GnuPG/HashInit.pm                                    25677
-usr/share/perl5/GnuPG/Handles.pm                                     25676
-usr/lib/x86_64-linux-gnu/perl5/5.32/Filesys/Df.pm                    25675
-usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Filesys/Df/Df.so            25674
-usr/share/perl5/MooX/Options.pm                                      25673
-usr/share/perl5/MooX/Options/Role.pm                                 25672
-usr/share/perl5/MooX/Options/Descriptive.pm                          25671
-usr/share/perl5/MooX/Options/Descriptive/Usage.pm                    25670
-usr/lib/x86_64-linux-gnu/perl5/5.32/Text/LineFold.pm                 25669
-usr/share/perl5/MIME/Charset.pm                                      25668
-usr/lib/x86_64-linux-gnu/perl5/5.32/Unicode/LineBreak.pm             25667
-usr/lib/x86_64-linux-gnu/perl5/5.32/Unicode/GCString.pm              25666
-usr/lib/x86_64-linux-gnu/perl5/5.32/Unicode/LineBreak/Constants.pm   25665
-usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Unicode/LineBreak/LineBreak.so 25664
-usr/lib/x86_64-linux-gnu/libsombok.so.3.1.7                          25663
-usr/share/perl5/MooX/Locale/Passthrough.pm                           25662
-usr/local/bin/tails-iuk-get-upgrade-description-file                 25661
-usr/local/share/perl/5.32.1/Tails/IUK/UpgradeDescriptionFile/Download.pm 25660
-usr/share/perl5/Method/Generate/BuildAll.pm                          25659
+usr/share/applications/nautilus-autorun-software.desktop             29890
+usr/share/applications/org.gnome.FileRoller.desktop                  29889
+usr/share/applications/gnome-color-panel.desktop                     29888
+usr/share/applications/gnome-bluetooth-panel.desktop                 29887
+usr/share/applications/org.inkscape.Inkscape.desktop                 29886
+usr/share/applications/python3.9.desktop                             29885
+usr/share/applications/gnome-control-center.desktop                  29884
+usr/share/applications/brasero-nautilus.desktop                      29883
+usr/share/applications/libreoffice-impress.desktop                   29882
+usr/share/applications/audacity.desktop                              29881
+usr/share/applications/gnome-disk-image-mounter.desktop              29880
+usr/share/applications/gimp.desktop                                  29879
+usr/share/applications/gnome-network-panel.desktop                   29878
+usr/share/applications/gnome-removable-media-panel.desktop           29877
+usr/share/applications/gnome-wacom-panel.desktop                     29876
+usr/share/applications/gnome-camera-panel.desktop                    29875
+usr/share/applications/gnome-mouse-panel.desktop                     29874
+usr/share/applications/gnome-keyboard-panel.desktop                  29873
+usr/share/applications/org.gnome.SoundRecorder.desktop               29872
+usr/share/applications/gnome-wifi-panel.desktop                      29871
+usr/share/applications/gnome-sound-panel.desktop                     29870
+usr/share/applications/fr.romainvigier.MetadataCleaner.desktop       29869
+usr/share/applications/brasero.desktop                               29868
+usr/share/applications/yelp.desktop                                  29867
+usr/share/applications/org.freedesktop.IBus.Panel.Extension.Gtk3.desktop 29866
+usr/share/applications/gnome-display-panel.desktop                   29865
+usr/share/applications/gnome-power-panel.desktop                     29864
+usr/share/applications/onioncircuits.desktop                         29863
+usr/share/applications/gnome-system-monitor.desktop                  29862
+usr/share/applications/org.kde.kleopatra.desktop                     29861
+usr/share/applications/org.gnome.Screenshot.desktop                  29860
+usr/share/applications/gnome-region-panel.desktop                    29859
+usr/share/applications/libreoffice-draw.desktop                      29858
+usr/share/applications/gnome-default-apps-panel.desktop              29857
+usr/share/applications/gnome-diagnostics-panel.desktop               29856
+usr/share/applications/org.gnome.Calculator.desktop                  29855
+usr/share/applications/org.gnome.eog.desktop                         29854
+usr/share/applications/org.gnome.Shell.desktop                       29853
+usr/share/applications/kleopatra_import.desktop                      29852
+usr/share/applications/libreoffice-calc.desktop                      29851
+usr/share/applications/gcr-prompter.desktop                          29850
+usr/share/applications/gnome-disk-image-writer.desktop               29849
+usr/share/applications/org.keepassxc.KeePassXC.desktop               29848
+usr/share/applications/gnome-info-overview-panel.desktop             29847
+usr/share/applications/tca.desktop                                   29846
+usr/share/applications/tails-about.desktop                           29845
+usr/share/gnome-shell/gnome-shell-theme.gresource                    29844
+usr/share/gnome-shell/gnome-shell-osk-layouts.gresource              29843
+usr/share/gnome-shell/theme/gnome-classic.css                        29842
+usr/share/locale/en/LC_MESSAGES/gnome-desktop-3.0.mo                 29841
+usr/share/tails/desktop_wallpaper.png                                29840
+usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-png.so 29839
+etc/fonts/fonts.conf                                                 29838
+usr/share/fontconfig/conf.avail/10-hinting-slight.conf               29837
+usr/share/fontconfig/conf.avail/10-scale-bitmap-fonts.conf           29836
+usr/share/fontconfig/conf.avail/11-lcdfilter-default.conf            29835
+etc/fonts/conf.avail/20-unhint-small-dejavu-lgc-sans-mono.conf       29834
+etc/fonts/conf.avail/20-unhint-small-dejavu-lgc-sans.conf            29833
+etc/fonts/conf.avail/20-unhint-small-dejavu-lgc-serif.conf           29832
+etc/fonts/conf.avail/20-unhint-small-dejavu-sans-mono.conf           29831
+etc/fonts/conf.avail/20-unhint-small-dejavu-sans.conf                29830
+etc/fonts/conf.avail/20-unhint-small-dejavu-serif.conf               29829
+usr/share/fontconfig/conf.avail/20-unhint-small-vera.conf            29828
+usr/share/fontconfig/conf.avail/30-metric-aliases.conf               29827
+usr/share/fontconfig/conf.avail/30-opensymbol.conf                   29826
+usr/share/fontconfig/conf.avail/40-nonlatin.conf                     29825
+usr/share/fontconfig/conf.avail/45-generic.conf                      29824
+usr/share/fontconfig/conf.avail/45-latin.conf                        29823
+usr/share/fontconfig/conf.avail/49-sansserif.conf                    29822
+usr/share/fontconfig/conf.avail/50-user.conf                         29821
+usr/share/fontconfig/conf.avail/51-local.conf                        29820
+etc/fonts/conf.avail/57-dejavu-sans-mono.conf                        29819
+etc/fonts/conf.avail/57-dejavu-sans.conf                             29818
+etc/fonts/conf.avail/57-dejavu-serif.conf                            29817
+etc/fonts/conf.avail/58-dejavu-lgc-sans-mono.conf                    29816
+etc/fonts/conf.avail/58-dejavu-lgc-sans.conf                         29815
+etc/fonts/conf.avail/58-dejavu-lgc-serif.conf                        29814
+usr/share/fontconfig/conf.avail/60-generic.conf                      29813
+usr/share/fontconfig/conf.avail/60-latin.conf                        29812
+usr/share/fontconfig/conf.avail/urw-bookman.conf                     29811
+usr/share/fontconfig/conf.avail/urw-c059.conf                        29810
+usr/share/fontconfig/conf.avail/urw-d050000l.conf                    29809
+usr/share/fontconfig/conf.avail/urw-fallback-backwards.conf          29808
+usr/share/fontconfig/conf.avail/urw-fallback-generics.conf           29807
+usr/share/fontconfig/conf.avail/urw-gothic.conf                      29806
+usr/share/fontconfig/conf.avail/urw-nimbus-mono-ps.conf              29805
+usr/share/fontconfig/conf.avail/urw-nimbus-roman.conf                29804
+usr/share/fontconfig/conf.avail/urw-nimbus-sans.conf                 29803
+usr/share/fontconfig/conf.avail/urw-p052.conf                        29802
+usr/share/fontconfig/conf.avail/urw-standard-symbols-ps.conf         29801
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstlibvisual.so            29800
+usr/share/fontconfig/conf.avail/urw-z003.conf                        29799
+etc/fonts/conf.avail/65-culmus.conf                                  29798
+usr/share/fontconfig/conf.avail/65-fonts-persian.conf                29797
+usr/share/fontconfig/conf.avail/65-nonlatin.conf                     29796
+usr/share/fontconfig/conf.avail/69-unifont.conf                      29795
+usr/share/fontconfig/conf.avail/70-fonts-noto-cjk.conf               29794
+usr/share/fontconfig/conf.avail/70-no-bitmaps.conf                   29793
+usr/share/fontconfig/conf.avail/80-delicious.conf                    29792
+usr/share/fontconfig/conf.avail/90-fonts-linux-libertine.conf        29791
+usr/share/fontconfig/conf.avail/90-synthetic.conf                    29790
+usr/share/fontconfig/conf.avail/10-autohint.conf                     29789
+usr/share/fontconfig/conf.avail/10-hinting-full.conf                 29788
+usr/share/fontconfig/conf.avail/10-hinting-medium.conf               29787
+usr/share/fontconfig/conf.avail/10-hinting-none.conf                 29786
+usr/share/fontconfig/conf.avail/10-no-sub-pixel.conf                 29785
+usr/share/fontconfig/conf.avail/10-sub-pixel-bgr.conf                29784
+usr/share/fontconfig/conf.avail/10-sub-pixel-rgb.conf                29783
+usr/share/fontconfig/conf.avail/10-sub-pixel-vbgr.conf               29782
+usr/share/fontconfig/conf.avail/10-sub-pixel-vrgb.conf               29781
+usr/share/fontconfig/conf.avail/10-unhinted.conf                     29780
+usr/share/fontconfig/conf.avail/11-lcdfilter-legacy.conf             29779
+usr/share/fontconfig/conf.avail/11-lcdfilter-light.conf              29778
+usr/share/fontconfig/conf.avail/25-unhint-nonlatin.conf              29777
+usr/share/fontconfig/conf.avail/65-khmer.conf                        29776
+usr/share/fontconfig/conf.avail/70-force-bitmaps.conf                29775
+usr/share/fontconfig/conf.avail/70-yes-bitmaps.conf                  29774
+usr/share/fonts/.uuid                                                29773
+var/cache/fontconfig/ad3800a6-0853-5900-ac2b-6a45e906a034-le64.cache-7 29772
+usr/local/share/fonts/.uuid                                          29771
+var/cache/fontconfig/a19c77ef-2b6e-5d56-80fa-aa461c22a33c-le64.cache-7 29770
+usr/share/fonts/X11/.uuid                                            29769
+var/cache/fontconfig/635775a3-6681-5500-bfb3-fc75bae7ab71-le64.cache-7 29768
+usr/lib/x86_64-linux-gnu/libvisual-0.4.so.0.0.0                      29767
+usr/share/fonts/cMap/.uuid                                           29766
+var/cache/fontconfig/e0df4ba7-1e1e-53f4-99ac-034e136dea90-le64.cache-7 29765
+usr/share/fonts/cmap/.uuid                                           29764
+var/cache/fontconfig/8c262b76-19e2-5a0e-970a-3c6be641c3de-le64.cache-7 29763
+usr/share/fonts/opentype/.uuid                                       29762
+var/cache/fontconfig/c53c919e-4688-5813-a778-9497aaad292b-le64.cache-7 29761
+usr/share/fonts/truetype/.uuid                                       29760
+var/cache/fontconfig/ad91de03-2bc9-5cbd-baed-449447b4cef2-le64.cache-7 29759
+usr/share/fonts/type1/.uuid                                          29758
+var/cache/fontconfig/107a60e4-0cbf-554f-81c5-3e413a233022-le64.cache-7 29757
+usr/share/fonts/X11/Type1/.uuid                                      29756
+var/cache/fontconfig/7037cf17-dab7-5805-ac14-89407957a70b-le64.cache-7 29755
+usr/share/fonts/X11/encodings/.uuid                                  29754
+var/cache/fontconfig/932c83c7-a3fe-5e2e-af19-99a73a1218b0-le64.cache-7 29753
+usr/share/fonts/X11/util/.uuid                                       29752
+var/cache/fontconfig/d6a528ca-d9d3-528a-bbf0-657522efbfb9-le64.cache-7 29751
+usr/share/poppler/cMap/Adobe-CNS1/.uuid                              29750
+var/cache/fontconfig/fe110b8d-52e9-50d6-93d5-7350b6dc3ffc-le64.cache-7 29749
+usr/share/poppler/cMap/Adobe-GB1/.uuid                               29748
+var/cache/fontconfig/cba3b8e3-c250-50f8-9d30-dd9cdff6726c-le64.cache-7 29747
+usr/share/poppler/cMap/Adobe-Japan1/.uuid                            29746
+var/cache/fontconfig/209cd66f-9cd8-59b1-a557-ee9a5b16532d-le64.cache-7 29745
+usr/share/poppler/cMap/Adobe-Japan2/.uuid                            29744
+var/cache/fontconfig/79b9b38c-66eb-5231-ac1a-75f0230ccdac-le64.cache-7 29743
+usr/share/poppler/cMap/Adobe-Korea1/.uuid                            29742
+var/cache/fontconfig/977ff0f2-7245-568d-9f74-ec94f3fe3b0c-le64.cache-7 29741
+usr/share/fonts/opentype/cantarell/.uuid                             29740
+var/cache/fontconfig/be6c95a9-9096-58da-8f8e-7737a63fdb01-le64.cache-7 29739
+usr/share/fonts/opentype/linux-libertine/.uuid                       29738
+var/cache/fontconfig/a4e606c3-ee03-5a47-a10f-679845537ed9-le64.cache-7 29737
+usr/share/fonts/opentype/noto/.uuid                                  29736
+var/cache/fontconfig/7b04aff5-85ee-51c9-95e7-77727a319b86-le64.cache-7 29735
+usr/share/fonts/opentype/urw-base35/.uuid                            29734
+var/cache/fontconfig/8542f4fb-ce2b-5a14-9951-f64eac858fee-le64.cache-7 29733
+usr/share/fonts/truetype/culmus/.uuid                                29732
+var/cache/fontconfig/806bd331-c6ac-5da7-b38d-caee6037f4ad-le64.cache-7 29731
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstlv2.so                  29730
+usr/share/fonts/truetype/dejavu/.uuid                                29729
+var/cache/fontconfig/8f19a5e0-002f-559a-908f-50a33ba095ed-le64.cache-7 29728
+usr/share/fonts/truetype/liberation/.uuid                            29727
+var/cache/fontconfig/d9291cff-b790-56da-811c-af0e14399de4-le64.cache-7 29726
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmatroska.so             29725
+usr/share/fonts/truetype/libreoffice/.uuid                           29724
+var/cache/fontconfig/155a82c9-3c15-5e7a-a02f-59fffe413741-le64.cache-7 29723
+usr/share/fonts/truetype/noto/.uuid                                  29722
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmidi.so                 29721
+var/cache/fontconfig/891027b1-67fe-5175-bb2b-a5d071b33c64-le64.cache-7 29720
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmms.so                  29719
+usr/share/fonts/truetype/quicksand/.uuid                             29718
+usr/lib/x86_64-linux-gnu/libmms.so.0.0.2                             29717
+var/cache/fontconfig/aa54cff1-1622-5d6d-b9ef-589d2941d6ad-le64.cache-7 29716
+usr/share/fonts/type1/urw-base35/.uuid                               29715
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmodplug.so              29714
+var/cache/fontconfig/ad7fe672-dfce-58cc-9779-56f61343393e-le64.cache-7 29713
+usr/lib/x86_64-linux-gnu/libmodplug.so.1.0.0                         29712
+usr/share/fonts/X11/encodings/large/.uuid                            29711
+var/cache/fontconfig/e8b11c96-1f85-5c63-8bb8-ae0627615d20-le64.cache-7 29710
+usr/share/fonts/truetype/dejavu/DejaVuSans.ttf                       29709
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmonoscope.so            29708
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmpeg2dec.so             29707
+usr/lib/x86_64-linux-gnu/libmpeg2.so.0.1.0                           29706
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmpeg2enc.so             29705
+usr/lib/x86_64-linux-gnu/libmjpegutils-2.1.so.0.0.0                  29704
+usr/lib/x86_64-linux-gnu/libmpeg2encpp-2.1.so.0.0.0                  29703
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmpegpsdemux.so          29702
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmpegpsmux.so            29701
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmpegtsdemux.so          29700
+usr/lib/x86_64-linux-gnu/libgstcodecparsers-1.0.so.0.1804.0          29699
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmpegtsmux.so            29698
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmpg123.so               29697
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmplex.so                29696
+usr/lib/x86_64-linux-gnu/libmplex2-2.1.so.0.0.0                      29695
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmsdk.so                 29694
+usr/lib/x86_64-linux-gnu/libmfxhw64.so.1.34                          29693
+usr/share/X11/xkb/rules/evdev.xml                                    29692
+usr/share/xml/iso-codes/iso_639-2.xml                                29691
+usr/share/xml/iso-codes/iso_639-3.xml                                29690
+usr/share/xml/iso-codes/iso_3166-1.xml                               29689
+usr/bin/ibus-daemon                                                  29688
+usr/lib/x86_64-linux-gnu/libgweather-3.so.16.0.0                     29687
+usr/share/ibus/keymaps/us                                            29686
+usr/share/ibus/keymaps/common                                        29685
+usr/share/ibus/keymaps/modifiers                                     29684
+usr/share/ibus/component/chewing.xml                                 29683
+usr/share/ibus/component/dconf.xml                                   29682
+usr/share/ibus/component/gtkextension.xml                            29681
+usr/share/ibus/component/gtkpanel.xml                                29680
+usr/share/ibus/component/hangul.xml                                  29679
+usr/share/ibus/component/libpinyin.xml                               29678
+usr/share/ibus/component/memconf.xml                                 29677
+usr/share/ibus/component/mozc.xml                                    29676
+usr/lib/x86_64-linux-gnu/libgeocode-glib.so.0.0.0                    29675
+usr/lib/ibus-mozc/ibus-engine-mozc                                   29674
+usr/lib/x86_64-linux-gnu/libabsl_strings.so.20200923.0.1             29673
+usr/lib/x86_64-linux-gnu/libabsl_str_format_internal.so.20200923.0.1 29672
+usr/lib/x86_64-linux-gnu/libabsl_throw_delegate.so.20200923.0.1      29671
+usr/lib/x86_64-linux-gnu/libabsl_time_zone.so.20200923.0.1           29670
+usr/lib/x86_64-linux-gnu/libabsl_time.so.20200923.0.1                29669
+usr/lib/x86_64-linux-gnu/libprotobuf.so.23.0.4                       29668
+usr/share/libgweather/Locations.xml                                  29667
+usr/share/zoneinfo/Etc/GMT+12                                        29666
+usr/share/zoneinfo/Africa/Algiers                                    29665
+usr/share/zoneinfo/Africa/Lagos                                      29664
+usr/lib/x86_64-linux-gnu/libabsl_strings_internal.so.20200923.0.1    29663
+usr/share/zoneinfo/Africa/Maputo                                     29662
+usr/share/zoneinfo/Africa/Abidjan                                    29661
+usr/share/zoneinfo/Atlantic/Cape_Verde                               29660
+usr/share/zoneinfo/Africa/Ndjamena                                   29659
+usr/share/zoneinfo/Africa/Nairobi                                    29658
+usr/share/zoneinfo/Africa/Cairo                                      29657
+usr/lib/x86_64-linux-gnu/libabsl_int128.so.20200923.0.1              29656
+usr/lib/x86_64-linux-gnu/libabsl_base.so.20200923.0.1                29655
+usr/lib/x86_64-linux-gnu/libabsl_spinlock_wait.so.20200923.0.1       29654
+usr/lib/x86_64-linux-gnu/libabsl_raw_logging_internal.so.20200923.0.1 29653
+usr/lib/x86_64-linux-gnu/libabsl_log_severity.so.20200923.0.1        29652
+usr/lib/x86_64-linux-gnu/libatomic.so.1.2.0                          29651
+usr/share/zoneinfo/Indian/Kerguelen                                  29650
+usr/share/zoneinfo/Africa/Accra                                      29649
+usr/share/zoneinfo/Africa/Bissau                                     29648
+usr/share/zoneinfo/Africa/Johannesburg                               29647
+usr/share/zoneinfo/Africa/Monrovia                                   29646
+usr/share/zoneinfo/Africa/Tripoli                                    29645
+usr/share/zoneinfo/Indian/Mauritius                                  29644
+usr/share/zoneinfo/Africa/Casablanca                                 29643
+usr/share/zoneinfo/Africa/Windhoek                                   29642
+usr/share/zoneinfo/Indian/Reunion                                    29641
+usr/share/zoneinfo/Africa/Sao_Tome                                   29640
+usr/share/zoneinfo/Indian/Mahe                                       29639
+usr/share/zoneinfo/Africa/Khartoum                                   29638
+usr/share/zoneinfo/Africa/Tunis                                      29637
+usr/share/zoneinfo/Africa/El_Aaiun                                   29636
+usr/share/zoneinfo/Antarctica/Palmer                                 29635
+usr/share/zoneinfo/Antarctica/Rothera                                29634
+usr/share/zoneinfo/Antarctica/Syowa                                  29633
+usr/share/zoneinfo/Antarctica/Mawson                                 29632
+usr/share/zoneinfo/Antarctica/Vostok                                 29631
+usr/share/zoneinfo/Antarctica/Davis                                  29630
+usr/share/zoneinfo/Antarctica/Casey                                  29629
+usr/share/zoneinfo/Antarctica/DumontDUrville                         29628
+usr/share/zoneinfo/Pacific/Auckland                                  29627
+usr/share/zoneinfo/Asia/Kabul                                        29626
+usr/share/zoneinfo/Asia/Yerevan                                      29625
+usr/share/zoneinfo/Asia/Baku                                         29624
+usr/share/zoneinfo/Asia/Dhaka                                        29623
+usr/share/zoneinfo/Asia/Thimphu                                      29622
+usr/share/zoneinfo/Asia/Brunei                                       29621
+usr/share/zoneinfo/Asia/Bangkok                                      29620
+usr/share/zoneinfo/Asia/Shanghai                                     29619
+usr/share/zoneinfo/Asia/Tbilisi                                      29618
+usr/share/zoneinfo/Asia/Hong_Kong                                    29617
+usr/share/zoneinfo/Asia/Kolkata                                      29616
+usr/share/zoneinfo/Asia/Tokyo                                        29615
+usr/share/zoneinfo/Asia/Almaty                                       29614
+usr/share/zoneinfo/Asia/Aqtobe                                       29613
+usr/share/zoneinfo/Asia/Bishkek                                      29612
+usr/share/zoneinfo/Asia/Macau                                        29611
+usr/share/zoneinfo/Asia/Kuala_Lumpur                                 29610
+usr/share/zoneinfo/Indian/Maldives                                   29609
+usr/share/zoneinfo/Asia/Choibalsan                                   29608
+usr/share/zoneinfo/Asia/Hovd                                         29607
+usr/share/zoneinfo/Asia/Ulaanbaatar                                  29606
+usr/share/zoneinfo/Asia/Yangon                                       29605
+usr/share/zoneinfo/Asia/Kathmandu                                    29604
+usr/share/zoneinfo/Asia/Pyongyang                                    29603
+usr/share/zoneinfo/Asia/Karachi                                      29602
+usr/share/zoneinfo/Asia/Manila                                       29601
+usr/share/zoneinfo/Asia/Singapore                                    29600
+usr/share/zoneinfo/Asia/Seoul                                        29599
+usr/share/zoneinfo/Asia/Colombo                                      29598
+usr/share/zoneinfo/Asia/Taipei                                       29597
+usr/share/zoneinfo/Asia/Dushanbe                                     29596
+usr/share/zoneinfo/Asia/Ashgabat                                     29595
+usr/share/zoneinfo/Asia/Tashkent                                     29594
+usr/share/zoneinfo/Asia/Ho_Chi_Minh                                  29593
+usr/share/zoneinfo/America/Port_of_Spain                             29592
+usr/share/ibus/component/simple.xml                                  29591
+usr/share/zoneinfo/America/Barbados                                  29590
+usr/share/zoneinfo/Atlantic/Bermuda                                  29589
+usr/share/zoneinfo/America/Danmarkshavn                              29588
+usr/share/zoneinfo/America/Nuuk                                      29587
+usr/share/zoneinfo/America/Scoresbysund                              29586
+usr/share/zoneinfo/America/Thule                                     29585
+usr/share/zoneinfo/America/Puerto_Rico                               29584
+usr/share/zoneinfo/Pacific/Pago_Pago                                 29583
+usr/share/zoneinfo/Australia/Perth                                   29582
+usr/share/zoneinfo/Australia/Eucla                                   29581
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmulaw.so                29580
+usr/share/ibus/component/unikey.xml                                  29579
+usr/libexec/ibus-engine-unikey                                       29578
+usr/share/zoneinfo/Australia/Adelaide                                29577
+usr/share/zoneinfo/Australia/Broken_Hill                             29576
+usr/share/zoneinfo/Australia/Darwin                                  29575
+usr/share/zoneinfo/Australia/Hobart                                  29574
+usr/share/zoneinfo/Australia/Melbourne                               29573
+usr/share/zoneinfo/Australia/Sydney                                  29572
+usr/share/zoneinfo/Australia/Brisbane                                29571
+usr/share/zoneinfo/Australia/Lord_Howe                               29570
+usr/share/zoneinfo/Indian/Chagos                                     29569
+usr/share/zoneinfo/Indian/Christmas                                  29568
+usr/share/zoneinfo/Indian/Cocos                                      29567
+usr/share/zoneinfo/Pacific/Rarotonga                                 29566
+usr/share/zoneinfo/Pacific/Fiji                                      29565
+usr/share/zoneinfo/Pacific/Tahiti                                    29564
+usr/share/zoneinfo/Pacific/Marquesas                                 29563
+usr/share/zoneinfo/Pacific/Gambier                                   29562
+usr/share/zoneinfo/Pacific/Guam                                      29561
+usr/share/zoneinfo/Asia/Jakarta                                      29560
+usr/share/zoneinfo/Asia/Makassar                                     29559
+usr/share/zoneinfo/Asia/Jayapura                                     29558
+usr/share/zoneinfo/Pacific/Tarawa                                    29557
+usr/share/zoneinfo/Pacific/Enderbury                                 29556
+usr/share/zoneinfo/Pacific/Kiritimati                                29555
+usr/share/zoneinfo/Pacific/Majuro                                    29554
+usr/share/zoneinfo/Pacific/Pohnpei                                   29553
+usr/share/zoneinfo/Pacific/Chuuk                                     29552
+usr/share/zoneinfo/Pacific/Nauru                                     29551
+usr/share/zoneinfo/Pacific/Noumea                                    29550
+usr/share/zoneinfo/Pacific/Chatham                                   29549
+usr/share/zoneinfo/Pacific/Niue                                      29548
+usr/libexec/ibus-dconf                                               29547
+usr/share/zoneinfo/Pacific/Norfolk                                   29546
+usr/share/zoneinfo/Pacific/Palau                                     29545
+usr/share/zoneinfo/Pacific/Port_Moresby                              29544
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmultifile.so            29543
+usr/share/zoneinfo/Pacific/Pitcairn                                  29542
+usr/share/zoneinfo/Pacific/Apia                                      29541
+usr/share/zoneinfo/Pacific/Guadalcanal                               29540
+usr/share/zoneinfo/Asia/Dili                                         29539
+usr/share/zoneinfo/Pacific/Fakaofo                                   29538
+usr/share/zoneinfo/Pacific/Tongatapu                                 29537
+usr/share/zoneinfo/Pacific/Funafuti                                  29536
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmultipart.so            29535
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmusepack.so             29534
+usr/share/zoneinfo/Pacific/Honolulu                                  29533
+usr/libexec/ibus-extension-gtk3                                      29532
+usr/share/zoneinfo/Pacific/Wake                                      29531
+usr/share/zoneinfo/Pacific/Efate                                     29530
+usr/share/zoneinfo/Pacific/Wallis                                    29529
+usr/share/zoneinfo/America/Argentina/Buenos_Aires                    29528
+usr/share/zoneinfo/America/Curacao                                   29527
+usr/share/zoneinfo/America/Nassau                                    29526
+usr/share/zoneinfo/America/Belize                                    29525
+usr/share/zoneinfo/America/La_Paz                                    29524
+usr/share/zoneinfo/America/Araguaina                                 29523
+usr/share/zoneinfo/America/Bahia                                     29522
+usr/share/zoneinfo/America/Belem                                     29521
+usr/share/zoneinfo/America/Boa_Vista                                 29520
+usr/share/zoneinfo/America/Campo_Grande                              29519
+usr/share/zoneinfo/America/Cuiaba                                    29518
+usr/share/zoneinfo/America/Eirunepe                                  29517
+usr/share/zoneinfo/America/Fortaleza                                 29516
+usr/share/zoneinfo/America/Maceio                                    29515
+usr/share/zoneinfo/America/Manaus                                    29514
+usr/share/zoneinfo/America/Noronha                                   29513
+usr/share/zoneinfo/America/Porto_Velho                               29512
+usr/libexec/ibus-portal                                              29511
+usr/share/zoneinfo/America/Recife                                    29510
+usr/share/zoneinfo/America/Rio_Branco                                29509
+usr/share/zoneinfo/America/Sao_Paulo                                 29508
+usr/share/zoneinfo/America/Panama                                    29507
+usr/share/zoneinfo/America/Santiago                                  29506
+usr/share/zoneinfo/Pacific/Easter                                    29505
+usr/share/zoneinfo/America/Bogota                                    29504
+usr/share/zoneinfo/America/Costa_Rica                                29503
+usr/share/zoneinfo/America/Havana                                    29502
+usr/share/zoneinfo/America/Santo_Domingo                             29501
+usr/share/zoneinfo/America/Guayaquil                                 29500
+usr/share/zoneinfo/Pacific/Galapagos                                 29499
+usr/share/zoneinfo/America/El_Salvador                               29498
+usr/share/zoneinfo/Atlantic/Stanley                                  29497
+usr/share/zoneinfo/America/Cayenne                                   29496
+usr/share/zoneinfo/America/Guatemala                                 29495
+usr/share/zoneinfo/America/Guyana                                    29494
+usr/share/zoneinfo/America/Port-au-Prince                            29493
+usr/share/zoneinfo/America/Tegucigalpa                               29492
+usr/share/zoneinfo/America/Jamaica                                   29491
+usr/share/zoneinfo/America/Martinique                                29490
+usr/share/zoneinfo/America/Managua                                   29489
+usr/share/zoneinfo/America/Asuncion                                  29488
+usr/share/zoneinfo/America/Lima                                      29487
+usr/share/zoneinfo/Atlantic/South_Georgia                            29486
+usr/share/zoneinfo/America/Paramaribo                                29485
+usr/share/zoneinfo/America/Grand_Turk                                29484
+usr/share/zoneinfo/America/Montevideo                                29483
+usr/share/zoneinfo/America/Caracas                                   29482
+usr/share/zoneinfo/Europe/Tirane                                     29481
+usr/lib/x86_64-linux-gnu/libmpcdec.so.6.1.0                          29480
+usr/share/zoneinfo/Europe/Andorra                                    29479
+usr/share/zoneinfo/Europe/Vienna                                     29478
+usr/share/zoneinfo/Europe/Minsk                                      29477
+usr/share/zoneinfo/Europe/Brussels                                   29476
+usr/share/zoneinfo/Europe/Belgrade                                   29475
+usr/share/zoneinfo/Europe/Sofia                                      29474
+usr/share/zoneinfo/Asia/Nicosia                                      29473
+usr/share/zoneinfo/Europe/Prague                                     29472
+usr/share/zoneinfo/Europe/Copenhagen                                 29471
+usr/share/zoneinfo/Europe/Tallinn                                    29470
+usr/share/zoneinfo/Atlantic/Faroe                                    29469
+usr/share/zoneinfo/Europe/Helsinki                                   29468
+usr/share/zoneinfo/Europe/Paris                                      29467
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmxf.so                  29466
+usr/share/zoneinfo/Europe/Berlin                                     29465
+usr/share/zoneinfo/Europe/Gibraltar                                  29464
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstnavigationtest.so       29463
+usr/share/zoneinfo/Europe/Athens                                     29462
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstnetsim.so               29461
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstnvcodec.so              29460
+usr/share/zoneinfo/Europe/London                                     29459
+usr/lib/x86_64-linux-gnu/libgstcodecs-1.0.so.0.1804.0                29458
+usr/share/zoneinfo/Europe/Budapest                                   29457
+usr/lib/x86_64-linux-gnu/libgstgl-1.0.so.0.1804.0                    29456
+usr/share/zoneinfo/Atlantic/Reykjavik                                29455
+usr/share/zoneinfo/Europe/Dublin                                     29454
+usr/share/zoneinfo/Europe/Rome                                       29453
+usr/share/zoneinfo/CET                                               29452
+usr/share/zoneinfo/Europe/Riga                                       29451
+usr/share/zoneinfo/Europe/Zurich                                     29450
+usr/share/zoneinfo/Europe/Vilnius                                    29449
+usr/share/zoneinfo/Europe/Luxembourg                                 29448
+usr/share/zoneinfo/Europe/Malta                                      29447
+usr/share/zoneinfo/Europe/Chisinau                                   29446
+usr/share/zoneinfo/Europe/Monaco                                     29445
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstofa.so                  29444
+usr/lib/x86_64-linux-gnu/libofa.so.0.0.0                             29443
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstogg.so                  29442
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstopenal.so               29441
+usr/lib/x86_64-linux-gnu/libopenal.so.1.19.1                         29440
+usr/share/zoneinfo/Europe/Amsterdam                                  29439
+usr/share/zoneinfo/Europe/Oslo                                       29438
+usr/share/zoneinfo/Europe/Warsaw                                     29437
+usr/share/zoneinfo/Atlantic/Azores                                   29436
+usr/share/zoneinfo/Atlantic/Madeira                                  29435
+usr/share/zoneinfo/Europe/Lisbon                                     29434
+usr/share/zoneinfo/Europe/Bucharest                                  29433
+usr/share/zoneinfo/Europe/Kaliningrad                                29432
+usr/share/zoneinfo/Europe/Moscow                                     29431
+usr/share/zoneinfo/Europe/Samara                                     29430
+usr/share/zoneinfo/Asia/Yekaterinburg                                29429
+usr/share/zoneinfo/Asia/Omsk                                         29428
+usr/share/zoneinfo/Asia/Novosibirsk                                  29427
+usr/share/zoneinfo/Asia/Krasnoyarsk                                  29426
+usr/share/zoneinfo/Asia/Irkutsk                                      29425
+usr/share/zoneinfo/Asia/Yakutsk                                      29424
+usr/share/zoneinfo/Asia/Vladivostok                                  29423
+usr/share/zoneinfo/Asia/Magadan                                      29422
+usr/share/zoneinfo/Asia/Kamchatka                                    29421
+usr/share/zoneinfo/Atlantic/Canary                                   29420
+usr/share/zoneinfo/Europe/Madrid                                     29419
+usr/share/zoneinfo/Africa/Ceuta                                      29418
+usr/share/zoneinfo/Europe/Stockholm                                  29417
+usr/share/zoneinfo/Europe/Istanbul                                   29416
+usr/share/zoneinfo/Europe/Kiev                                       29415
+usr/lib/x86_64-linux-gnu/libsndio.so.7.0                             29414
+usr/share/zoneinfo/Asia/Qatar                                        29413
+usr/share/zoneinfo/Asia/Tehran                                       29412
+usr/share/zoneinfo/Asia/Baghdad                                      29411
+usr/share/zoneinfo/Asia/Jerusalem                                    29410
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstopenexr.so              29409
+usr/lib/x86_64-linux-gnu/libIlmImf-2_5.so.25.0.3                     29408
+usr/share/zoneinfo/Asia/Amman                                        29407
+usr/share/zoneinfo/Asia/Riyadh                                       29406
+usr/share/zoneinfo/Asia/Beirut                                       29405
+usr/share/zoneinfo/Asia/Dubai                                        29404
+usr/share/zoneinfo/Asia/Gaza                                         29403
+usr/share/zoneinfo/Asia/Damascus                                     29402
+usr/share/zoneinfo/America/Vancouver                                 29401
+usr/share/zoneinfo/America/Edmonton                                  29400
+usr/share/zoneinfo/America/Dawson_Creek                              29399
+usr/share/zoneinfo/America/Winnipeg                                  29398
+usr/share/zoneinfo/America/Regina                                    29397
+usr/share/zoneinfo/America/Toronto                                   29396
+usr/share/zoneinfo/America/Atikokan                                  29395
+usr/share/zoneinfo/America/Halifax                                   29394
+usr/share/zoneinfo/America/Blanc-Sablon                              29393
+usr/share/zoneinfo/America/St_Johns                                  29392
+usr/share/zoneinfo/America/Tijuana                                   29391
+usr/share/zoneinfo/America/Mazatlan                                  29390
+usr/share/zoneinfo/America/Mexico_City                               29389
+usr/share/zoneinfo/America/Miquelon                                  29388
+usr/share/zoneinfo/America/Adak                                      29387
+usr/share/zoneinfo/America/Anchorage                                 29386
+usr/share/zoneinfo/America/Los_Angeles                               29385
+usr/share/zoneinfo/America/Denver                                    29384
+usr/share/zoneinfo/America/Phoenix                                   29383
+usr/share/zoneinfo/America/Chicago                                   29382
+usr/share/zoneinfo/America/New_York                                  29381
+usr/lib/x86_64-linux-gnu/libHalf-2_5.so.25.0.3                       29380
+usr/lib/x86_64-linux-gnu/libIex-2_5.so.25.0.3                        29379
+usr/lib/x86_64-linux-gnu/libImath-2_5.so.25.0.3                      29378
+usr/lib/x86_64-linux-gnu/libIlmThread-2_5.so.25.0.3                  29377
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstopenjpeg.so             29376
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstopenmpt.so              29375
+usr/lib/x86_64-linux-gnu/libgstbadaudio-1.0.so.0.1804.0              29374
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstopenni2.so              29373
+usr/lib/x86_64-linux-gnu/libOpenNI2.so.0                             29372
+etc/openni2/OpenNI.ini                                               29371
+usr/lib/x86_64-linux-gnu/OpenNI2/Drivers/libDummyDevice.so.0         29370
+usr/lib/x86_64-linux-gnu/OpenNI2/Drivers/libOniFile.so.0             29369
+usr/lib/x86_64-linux-gnu/OpenNI2/Drivers/libPS1080.so.0              29368
+usr/libexec/xdg-permission-store                                     29367
+usr/lib/x86_64-linux-gnu/OpenNI2/Drivers/libPSLink.so.0              29366
+usr/lib/x86_64-linux-gnu/girepository-1.0/NMA-1.0.typelib            29365
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstopus.so                 29364
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstopusparse.so            29363
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstoss4.so                 29362
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstossaudio.so             29361
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstoverlaycomposition.so   29360
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstpango.so                29359
+usr/lib/x86_64-linux-gnu/girepository-1.0/GnomeBluetooth-1.0.typelib 29358
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstpbtypes.so              29357
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstpcapparse.so            29356
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstpipewire.so             29355
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstplayback.so             29354
+usr/lib/x86_64-linux-gnu/libgnome-bluetooth.so.13.0.2                29353
+usr/lib/x86_64-linux-gnu/libcanberra-gtk3.so.0.1.9                   29352
+usr/lib/x86_64-linux-gnu/libnotify.so.4.0.0                          29351
+usr/lib/x86_64-linux-gnu/libgthread-2.0.so.0.6600.8                  29350
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstpng.so                  29349
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstpnm.so                  29348
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstproxy.so                29347
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstpulseaudio.so           29346
+usr/lib/gnome-shell/libgvc.so                                        29345
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstrawparse.so             29344
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstrealmedia.so            29343
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstremovesilence.so        29342
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstreplaygain.so           29341
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstresindvd.so             29340
+usr/lib/x86_64-linux-gnu/libdvdnav.so.4.3.0                          29339
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstrfbsrc.so               29338
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstrist.so                 29337
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstrsvg.so                 29336
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstrtmp.so                 29335
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstrtmp2.so                29334
+usr/lib/x86_64-linux-gnu/libpulse-mainloop-glib.so.0.0.6             29333
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstrtp.so                  29332
+usr/share/xsessions/gnome-classic.desktop                            29331
+usr/share/xsessions/gnome-xorg.desktop                               29330
+usr/share/xsessions/gnome.desktop                                    29329
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstrtpmanager.so           29328
+etc/systemd/sleep.conf                                               29327
+lib/systemd/system/suspend.target                                    29326
+lib/systemd/system/systemd-suspend.service                           29325
+lib/systemd/system/sleep.target                                      29324
+usr/share/gdm/BuiltInSessions/default.desktop                        29323
+var/lib/polkit-1/localauthority/10-vendor.d/systemd-networkd.pkla    29322
+var/lib/polkit-1/localauthority/10-vendor.d/org.freedesktop.NetworkManager.pkla 29321
+var/lib/polkit-1/localauthority/10-vendor.d/gnome-control-center.pkla 29320
+etc/polkit-1/localauthority/10-vendor.d/org.boum.tails.pkla          29319
+etc/polkit-1/localauthority/10-vendor.d/org.boum.tails.cups.pkla     29318
+etc/polkit-1/localauthority/10-vendor.d/org.boum.tails.accounts.pkla 29317
+etc/polkit-1/localauthority/10-vendor.d/org.boum.tails.NetworkManager.pkla 29316
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstrtpmanagerbad.so        29315
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstrtponvif.so             29314
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstrtsp.so                 29313
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsbc.so                  29312
+usr/lib/x86_64-linux-gnu/libsbc.so.1.3.0                             29311
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsctp.so                 29310
+usr/lib/x86_64-linux-gnu/gio/modules/libgiognutls.so                 29309
+usr/lib/x86_64-linux-gnu/libgstsctp-1.0.so.0.1804.0                  29308
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsdpelem.so              29307
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsegmentclip.so          29306
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstshapewipe.so            29305
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstshm.so                  29304
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstshout2.so               29303
+usr/lib/x86_64-linux-gnu/libshout.so.3.2.0                           29302
+usr/lib/x86_64-linux-gnu/libtheora.so.0.3.10                         29301
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsid.so                  29300
+usr/lib/x86_64-linux-gnu/libsidplay.so.1.0.3                         29299
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsiren.so                29298
+etc/ssl/certs/ca-certificates.crt                                    29297
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsmooth.so               29296
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsmoothstreaming.so      29295
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsmpte.so                29294
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsndfile.so              29293
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsoundtouch.so           29292
+usr/lib/x86_64-linux-gnu/libSoundTouch.so.1.0.0                      29291
+usr/lib/x86_64-linux-gnu/gio/modules/libgiolibproxy.so               29290
+lib/x86_64-linux-gnu/libmvec-2.31.so                                 29289
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsoup.so                 29288
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstspandsp.so              29287
+usr/lib/x86_64-linux-gnu/libspandsp.so.2.0.0                         29286
+usr/lib/x86_64-linux-gnu/libproxy.so.1.0.0                           29285
+usr/lib/x86_64-linux-gnu/gio/modules/libgiognomeproxy.so             29284
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstspectrum.so             29283
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstspeed.so                29282
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstspeex.so                29281
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsrt.so                  29280
+usr/bin/gjs-console                                                  29279
+usr/libexec/at-spi2-registryd                                        29276
+usr/libexec/gsd-screensaver-proxy                                    29275
+usr/lib/gnome-settings-daemon-3.0/libgsd.so                          29274
+usr/libexec/gsd-sound                                                29271
+usr/libexec/gsd-a11y-settings                                        29268
+usr/libexec/gsd-xsettings                                            29265
+usr/libexec/gsd-housekeeping                                         29262
+usr/libexec/gsd-power                                                29259
+usr/libexec/gsd-print-notifications                                  29256
+usr/libexec/gsd-sharing                                              29253
+usr/share/gnome-shell/org.gnome.Shell.Notifications                  29250
+usr/libexec/gsd-usb-protection                                       29249
+usr/libexec/gsd-color                                                29246
+usr/libexec/gsd-keyboard                                             29243
+usr/lib/x86_64-linux-gnu/libcolord.so.2.0.5                          29242
+usr/libexec/gsd-rfkill                                               29239
+usr/libexec/gsd-smartcard                                            29236
+usr/libexec/gsd-wacom                                                29233
+usr/libexec/gsd-datetime                                             29230
+lib/systemd/system/systemd-hostnamed.service                         29227
+usr/libexec/gsd-media-keys                                           29226
+usr/libexec/gsd-printer                                              29224
+usr/lib/x86_64-linux-gnu/nss/libsoftokn3.so                          29223
+usr/libexec/ibus-engine-simple                                       29222
+bin/false                                                            29221
+usr/share/icons/Adwaita/cursors/sb_v_double_arrow                    29220
+usr/share/icons/Adwaita/cursors/sb_h_double_arrow                    29219
+usr/share/icons/Adwaita/cursors/crossed_circle                       29218
+usr/share/icons/Adwaita/cursors/left_ptr_watch                       29217
+usr/share/icons/Adwaita/cursors/dnd-copy                             29216
+usr/share/icons/Adwaita/cursors/link                                 29215
+usr/share/icons/Adwaita/cursors/move                                 29214
+usr/share/icons/Adwaita/cursors/question_arrow                       29213
+usr/share/icons/Adwaita/cursors/hand2                                29212
+usr/share/icons/Adwaita/cursors/X_cursor                             29211
+usr/share/icons/Adwaita/cursors/dnd-link                             29210
+usr/share/icons/Adwaita/cursors/all-scroll                           29209
+usr/share/icons/Adwaita/cursors/bd_double_arrow                      29208
+usr/share/icons/Adwaita/cursors/bottom_left_corner                   29207
+usr/share/icons/Adwaita/cursors/bottom_right_corner                  29206
+usr/share/icons/Adwaita/cursors/bottom_side                          29205
+usr/share/icons/Adwaita/cursors/bottom_tee                           29204
+usr/share/icons/Adwaita/cursors/cell                                 29203
+usr/share/icons/Adwaita/cursors/circle                               29202
+usr/share/icons/Adwaita/cursors/context-menu                         29201
+usr/share/icons/Adwaita/cursors/cross                                29200
+usr/share/icons/Adwaita/cursors/dnd-ask                              29199
+usr/share/icons/Adwaita/cursors/dnd-move                             29198
+usr/share/gnome-shell/org.gnome.Shell.Notifications.src.gresource    29197
+usr/share/icons/Adwaita/cursors/dnd-no-drop                          29196
+usr/share/icons/Adwaita/cursors/dnd-none                             29195
+usr/share/icons/Adwaita/cursors/dotbox                               29194
+usr/share/icons/Adwaita/cursors/right_ptr                            29193
+usr/share/icons/Adwaita/cursors/right_side                           29192
+usr/share/icons/Adwaita/cursors/fd_double_arrow                      29191
+usr/share/icons/Adwaita/cursors/hand1                                29190
+usr/share/icons/Adwaita/cursors/grabbing                             29189
+usr/share/icons/Adwaita/cursors/left_side                            29188
+usr/share/icons/Adwaita/cursors/left_tee                             29187
+usr/share/icons/Adwaita/cursors/ll_angle                             29186
+usr/share/icons/Adwaita/cursors/lr_angle                             29185
+usr/share/icons/Adwaita/cursors/top_side                             29184
+usr/lib/x86_64-linux-gnu/libOpenGL.so.0.0.0                          29183
+usr/share/icons/Adwaita/cursors/top_right_corner                     29182
+usr/share/icons/Adwaita/cursors/top_left_corner                      29181
+usr/share/icons/Adwaita/index.theme                                  29180
+usr/lib/x86_64-linux-gnu/nss/libfreeblpriv3.so                       29179
+usr/share/icons/Adwaita/cursors/pencil                               29178
+usr/share/icons/Adwaita/cursors/plus                                 29177
+usr/share/icons/Adwaita/cursors/pointer-move                         29176
+usr/share/icons/Adwaita/cursors/right_tee                            29175
+usr/share/icons/Adwaita/cursors/sb_down_arrow                        29174
+usr/share/icons/Adwaita/cursors/sb_left_arrow                        29173
+usr/share/icons/Adwaita/cursors/sb_right_arrow                       29172
+usr/share/icons/Adwaita/cursors/sb_up_arrow                          29171
+usr/share/icons/Adwaita/cursors/tcross                               29170
+usr/share/icons/Adwaita/cursors/xterm                                29169
+usr/share/icons/Adwaita/cursors/top_tee                              29168
+usr/share/icons/Adwaita/cursors/ul_angle                             29167
+usr/share/icons/Adwaita/cursors/ur_angle                             29166
+usr/share/icons/Adwaita/cursors/vertical-text                        29165
+usr/share/icons/Adwaita/cursors/watch                                29164
+usr/share/icons/Adwaita/cursors/zoom-in                              29163
+usr/share/icons/Adwaita/cursors/zoom-out                             29162
+usr/share/icons/gnome/index.theme                                    29161
+usr/share/icons/hicolor/index.theme                                  29160
+lib/systemd/systemd-hostnamed                                        29159
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsrtp.so                 29158
+usr/lib/x86_64-linux-gnu/libsrtp2.so.1                               29157
+usr/share/icons/Adwaita/16x16/apps/preferences-desktop-accessibility-symbolic.symbolic.png 29156
+usr/share/icons/Adwaita/16x16/ui/pan-down-symbolic.symbolic.png      29155
+usr/share/icons/Adwaita/16x16/status/audio-volume-medium-symbolic.symbolic.png 29154
+usr/share/icons/Adwaita/16x16/actions/system-shutdown-symbolic.symbolic.png 29153
+usr/share/fonts/opentype/cantarell/Cantarell-Regular.otf             29152
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsubenc.so               29151
+usr/share/fonts/truetype/dejavu/DejaVuSansMono.ttf                   29150
+usr/lib/x86_64-linux-gnu/dri/swrast_dri.so                           29149
+usr/share/themes/Default/gtk-3.0/gtk-keys.css                        29148
+usr/lib/x86_64-linux-gnu/libLLVM-11.so.1                             29147
+lib/systemd/system/colord.service                                    29146
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsubparse.so             29145
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstswitchbin.so            29144
+usr/share/ibus/dicts/emoji-en.dict                                   29143
+lib/systemd/system/systemd-localed.service                           29142
+lib/systemd/system/systemd-localed.service.d/locale-gen.conf         29141
+usr/libexec/dconf-service                                            29140
+usr/libexec/colord                                                   29138
+usr/share/gnome-shell/org.gnome.Shell.Screencast                     29136
+usr/lib/x86_64-linux-gnu/libcolordprivate.so.2.0.5                   29133
+usr/lib/x86_64-linux-gnu/libgusb.so.2.0.10                           29132
+lib/udev/hwdb.bin                                                    29127
+usr/lib/x86_64-linux-gnu/libsensors.so.5.0.0                         29126
+usr/lib/x86_64-linux-gnu/colord-plugins/libcolord_sensor_camera.so   29125
+usr/lib/x86_64-linux-gnu/libdrm_amdgpu.so.1.0.0                      29124
+usr/lib/x86_64-linux-gnu/colord-plugins/libcolord_sensor_sane.so     29123
+usr/lib/x86_64-linux-gnu/libvulkan.so.1.2.162                        29122
+usr/lib/x86_64-linux-gnu/colord-plugins/libcolord_sensor_scanner.so  29121
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgsttaglib.so               29120
+usr/lib/x86_64-linux-gnu/libtag.so.1.17.0                            29119
+usr/share/color/icc/colord/BestRGB.icc                               29118
+usr/share/color/icc/colord/BetaRGB.icc                               29117
+usr/share/color/icc/colord/BruceRGB.icc                              29116
+usr/share/color/icc/colord/Crayons.icc                               29115
+usr/share/color/icc/colord/DonRGB4.icc                               29114
+usr/share/color/icc/colord/ECI-RGBv1.icc                             29113
+usr/share/color/icc/colord/ECI-RGBv2.icc                             29112
+usr/share/color/icc/colord/EktaSpacePS5.icc                          29111
+usr/share/color/icc/colord/Gamma5000K.icc                            29110
+usr/share/color/icc/colord/Gamma5500K.icc                            29109
+usr/share/color/icc/colord/Gamma6500K.icc                            29108
+usr/share/color/icc/colord/Rec709.icc                                29107
+usr/lib/x86_64-linux-gnu/libedit.so.2.0.63                           29106
+usr/lib/x86_64-linux-gnu/libz3.so.4                                  29105
+usr/share/gnome-shell/org.gnome.Shell.Screencast.src.gresource       29104
+usr/share/color/icc/colord/WideGamutRGB.icc                          29103
+usr/share/color/icc/ghostscript/a98.icc                              29102
+usr/share/color/icc/ghostscript/default_cmyk.icc                     29101
+usr/lib/x86_64-linux-gnu/girepository-1.0/Gst-1.0.typelib            29100
+lib/systemd/systemd-localed                                          29099
+usr/share/color/icc/ghostscript/default_gray.icc                     29098
+usr/share/color/icc/ghostscript/default_rgb.icc                      29097
+etc/default/keyboard                                                 29096
+usr/share/color/icc/ghostscript/esrgb.icc                            29095
+usr/share/color/icc/ghostscript/gray_to_k.icc                        29094
+usr/share/color/icc/ghostscript/lab.icc                              29093
+usr/share/color/icc/ghostscript/ps_cmyk.icc                          29092
+usr/share/color/icc/ghostscript/ps_gray.icc                          29091
+usr/share/color/icc/ghostscript/ps_rgb.icc                           29090
+usr/share/color/icc/ghostscript/rommrgb.icc                          29089
+usr/share/color/icc/ghostscript/scrgb.icc                            29088
+usr/share/color/icc/ghostscript/sgray.icc                            29087
+usr/share/color/icc/ghostscript/srgb.icc                             29086
+usr/libexec/colord-sane                                              29085
+usr/lib/x86_64-linux-gnu/libsane.so.1.0.31                           29084
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgsttcp.so                  29083
+etc/sane.d/dll.d/airscan                                             29082
+etc/sane.d/dll.d/hplip                                               29081
+etc/sane.d/dll.conf                                                  29080
+usr/lib/x86_64-linux-gnu/sane/libsane-xerox_mfp.so.1.0.31            29079
+etc/sane.d/xerox_mfp.conf                                            29078
+usr/lib/x86_64-linux-gnu/sane/libsane-umax1220u.so.1.0.31            29077
+etc/sane.d/umax1220u.conf                                            29076
+usr/lib/x86_64-linux-gnu/sane/libsane-umax.so.1.0.31                 29075
+etc/sane.d/umax.conf                                                 29074
+usr/lib/x86_64-linux-gnu/sane/libsane-u12.so.1.0.31                  29073
+etc/sane.d/u12.conf                                                  29072
+usr/lib/x86_64-linux-gnu/sane/libsane-teco3.so.1.0.31                29071
+etc/sane.d/teco3.conf                                                29070
+usr/lib/x86_64-linux-gnu/sane/libsane-teco2.so.1.0.31                29069
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstteletext.so             29068
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgsttheora.so               29067
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgsttimecode.so             29066
+usr/lib/x86_64-linux-gnu/libltc.so.11.1.0                            29065
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgsttranscode.so            29064
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstttmlsubs.so             29063
+etc/sane.d/teco2.conf                                                29062
+usr/lib/x86_64-linux-gnu/sane/libsane-teco1.so.1.0.31                29061
+etc/sane.d/teco1.conf                                                29060
+usr/lib/x86_64-linux-gnu/sane/libsane-tamarack.so.1.0.31             29059
+etc/sane.d/tamarack.conf                                             29058
+usr/lib/x86_64-linux-gnu/sane/libsane-sp15c.so.1.0.31                29057
+etc/sane.d/sp15c.conf                                                29056
+usr/lib/x86_64-linux-gnu/sane/libsane-snapscan.so.1.0.31             29055
+etc/sane.d/snapscan.conf                                             29054
+usr/lib/x86_64-linux-gnu/sane/libsane-sm3840.so.1.0.31               29053
+usr/lib/x86_64-linux-gnu/sane/libsane-sm3600.so.1.0.31               29052
+usr/lib/x86_64-linux-gnu/sane/libsane-sharp.so.1.0.31                29051
+etc/sane.d/sharp.conf                                                29050
+usr/lib/x86_64-linux-gnu/sane/libsane-sceptre.so.1.0.31              29049
+etc/sane.d/sceptre.conf                                              29048
+usr/lib/x86_64-linux-gnu/sane/libsane-s9036.so.1.0.31                29047
+etc/sane.d/s9036.conf                                                29046
+usr/lib/x86_64-linux-gnu/sane/libsane-rts8891.so.1.0.31              29045
+etc/sane.d/rts8891.conf                                              29044
+usr/lib/x86_64-linux-gnu/sane/libsane-ricoh2.so.1.0.31               29043
+usr/lib/x86_64-linux-gnu/sane/libsane-ricoh.so.1.0.31                29042
+etc/sane.d/ricoh.conf                                                29041
+usr/lib/x86_64-linux-gnu/sane/libsane-qcam.so.1.0.31                 29040
+etc/sane.d/qcam.conf                                                 29039
+usr/lib/x86_64-linux-gnu/sane/libsane-plustek.so.1.0.31              29038
+etc/sane.d/plustek.conf                                              29037
+usr/lib/x86_64-linux-gnu/sane/libsane-pixma.so.1.0.31                29036
+etc/sane.d/pixma.conf                                                29035
+usr/lib/x86_64-linux-gnu/sane/libsane-pieusb.so.1.0.31               29034
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgsttwolame.so              29033
+etc/sane.d/pieusb.conf                                               29032
+usr/lib/x86_64-linux-gnu/sane/libsane-pie.so.1.0.31                  29031
+etc/sane.d/pie.conf                                                  29030
+usr/lib/x86_64-linux-gnu/sane/libsane-niash.so.1.0.31                29029
+usr/lib/x86_64-linux-gnu/sane/libsane-nec.so.1.0.31                  29028
+etc/sane.d/nec.conf                                                  29027
+usr/lib/x86_64-linux-gnu/sane/libsane-mustek_usb2.so.1.0.31          29026
+usr/lib/x86_64-linux-gnu/sane/libsane-mustek_usb.so.1.0.31           29025
+etc/sane.d/mustek_usb.conf                                           29024
+usr/lib/x86_64-linux-gnu/sane/libsane-mustek.so.1.0.31               29023
+usr/lib/x86_64-linux-gnu/libieee1284.so.3.2.2                        29022
+etc/sane.d/mustek.conf                                               29021
+usr/lib/x86_64-linux-gnu/sane/libsane-microtek2.so.1.0.31            29020
+etc/sane.d/microtek2.conf                                            29019
+usr/lib/x86_64-linux-gnu/sane/libsane-microtek.so.1.0.31             29018
+etc/sane.d/microtek.conf                                             29017
+usr/lib/x86_64-linux-gnu/sane/libsane-matsushita.so.1.0.31           29016
+etc/sane.d/matsushita.conf                                           29015
+usr/lib/x86_64-linux-gnu/sane/libsane-magicolor.so.1.0.31            29014
+usr/lib/x86_64-linux-gnu/libnetsnmp.so.40.0.0                        29013
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgsttypefindfunctions.so    29012
+etc/sane.d/magicolor.conf                                            29011
+usr/lib/x86_64-linux-gnu/sane/libsane-ma1509.so.1.0.31               29010
+etc/sane.d/ma1509.conf                                               29009
+usr/lib/x86_64-linux-gnu/sane/libsane-lexmark.so.1.0.31              29008
+etc/sane.d/lexmark.conf                                              29007
+usr/lib/x86_64-linux-gnu/sane/libsane-leo.so.1.0.31                  29006
+etc/sane.d/leo.conf                                                  29005
+usr/lib/x86_64-linux-gnu/sane/libsane-kvs40xx.so.1.0.31              29004
+usr/lib/x86_64-linux-gnu/sane/libsane-kvs20xx.so.1.0.31              29003
+usr/lib/x86_64-linux-gnu/sane/libsane-kvs1025.so.1.0.31              29002
+usr/lib/x86_64-linux-gnu/sane/libsane-kodakaio.so.1.0.31             29001
+etc/sane.d/kodakaio.conf                                             29000
+usr/lib/x86_64-linux-gnu/sane/libsane-kodak.so.1.0.31                28999
+etc/sane.d/kodak.conf                                                28998
+usr/lib/x86_64-linux-gnu/sane/libsane-ibm.so.1.0.31                  28997
+etc/sane.d/ibm.conf                                                  28996
+usr/lib/x86_64-linux-gnu/sane/libsane-hs2p.so.1.0.31                 28995
+etc/sane.d/hs2p.conf                                                 28994
+usr/lib/x86_64-linux-gnu/sane/libsane-hpsj5s.so.1.0.31               28993
+etc/sane.d/hpsj5s.conf                                               28992
+usr/lib/x86_64-linux-gnu/sane/libsane-hpljm1005.so.1.0.31            28991
+usr/lib/x86_64-linux-gnu/sane/libsane-hp5590.so.1.0.31               28990
+usr/lib/x86_64-linux-gnu/sane/libsane-hp5400.so.1.0.31               28989
+etc/sane.d/hp5400.conf                                               28988
+usr/lib/x86_64-linux-gnu/sane/libsane-hp4200.so.1.0.31               28987
+etc/sane.d/hp4200.conf                                               28986
+usr/lib/x86_64-linux-gnu/sane/libsane-hp3900.so.1.0.31               28985
+etc/sane.d/hp3900.conf                                               28984
+usr/lib/x86_64-linux-gnu/sane/libsane-hp3500.so.1.0.31               28983
+usr/lib/x86_64-linux-gnu/sane/libsane-hp.so.1.0.31                   28982
+etc/sane.d/hp.conf                                                   28981
+usr/lib/x86_64-linux-gnu/sane/libsane-gt68xx.so.1.0.31               28980
+etc/sane.d/gt68xx.conf                                               28979
+usr/lib/x86_64-linux-gnu/sane/libsane-genesys.so.1.0.31              28978
+etc/sane.d/genesys.conf                                              28977
+usr/lib/x86_64-linux-gnu/sane/libsane-fujitsu.so.1.0.31              28976
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstudp.so                  28975
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstuvch264.so              28974
+etc/sane.d/fujitsu.conf                                              28973
+usr/lib/x86_64-linux-gnu/sane/libsane-escl.so.1.0.31                 28972
+usr/lib/x86_64-linux-gnu/sane/libsane-epsonds.so.1.0.31              28971
+etc/sane.d/epsonds.conf                                              28970
+usr/lib/x86_64-linux-gnu/sane/libsane-epson2.so.1.0.31               28969
+etc/sane.d/epson2.conf                                               28968
+usr/lib/x86_64-linux-gnu/sane/libsane-epjitsu.so.1.0.31              28967
+etc/sane.d/epjitsu.conf                                              28966
+usr/lib/x86_64-linux-gnu/sane/libsane-dmc.so.1.0.31                  28965
+etc/sane.d/dmc.conf                                                  28964
+usr/lib/x86_64-linux-gnu/sane/libsane-dell1600n_net.so.1.0.31        28963
+usr/lib/x86_64-linux-gnu/sane/libsane-coolscan3.so.1.0.31            28962
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstv4l2codecs.so           28961
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstva.so                   28960
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvideo4linux2.so         28959
+usr/lib/x86_64-linux-gnu/libv4l2.so.0.0.0                            28958
+usr/lib/x86_64-linux-gnu/libv4lconvert.so.0.0.0                      28957
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvideobox.so             28956
+etc/sane.d/coolscan3.conf                                            28955
+usr/lib/x86_64-linux-gnu/sane/libsane-coolscan.so.1.0.31             28954
+etc/sane.d/coolscan.conf                                             28953
+usr/lib/x86_64-linux-gnu/sane/libsane-cardscan.so.1.0.31             28952
+etc/sane.d/cardscan.conf                                             28951
+usr/lib/x86_64-linux-gnu/sane/libsane-canon_lide70.so.1.0.31         28950
+etc/sane.d/canon_lide70.conf                                         28949
+usr/lib/x86_64-linux-gnu/sane/libsane-canon_dr.so.1.0.31             28948
+etc/sane.d/canon_dr.conf                                             28947
+usr/lib/x86_64-linux-gnu/sane/libsane-canon630u.so.1.0.31            28946
+etc/sane.d/canon630u.conf                                            28945
+usr/lib/x86_64-linux-gnu/sane/libsane-canon.so.1.0.31                28944
+etc/sane.d/canon.conf                                                28943
+usr/lib/x86_64-linux-gnu/sane/libsane-bh.so.1.0.31                   28942
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvideoconvert.so         28941
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvideocrop.so            28940
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvideofilter.so          28939
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvideofiltersbad.so      28938
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvideoframe_audiolevel.so 28937
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvideomixer.so           28936
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvideoparsersbad.so      28935
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvideorate.so            28934
+etc/sane.d/bh.conf                                                   28933
+usr/lib/x86_64-linux-gnu/sane/libsane-avision.so.1.0.31              28932
+etc/sane.d/avision.conf                                              28931
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvideoscale.so           28930
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvideosignal.so          28929
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvideotestsrc.so         28928
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvmnc.so                 28927
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvoaacenc.so             28926
+usr/lib/x86_64-linux-gnu/libvo-aacenc.so.0.0.4                       28925
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvoamrwbenc.so           28924
+usr/lib/x86_64-linux-gnu/libvo-amrwbenc.so.0.0.4                     28923
+usr/lib/x86_64-linux-gnu/sane/libsane-as6e.so.1.0.31                 28922
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvolume.so               28921
+usr/lib/x86_64-linux-gnu/sane/libsane-artec_eplus48u.so.1.0.31       28920
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvorbis.so               28919
+etc/sane.d/artec_eplus48u.conf                                       28918
+usr/lib/x86_64-linux-gnu/sane/libsane-artec.so.1.0.31                28917
+etc/sane.d/artec.conf                                                28916
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvpx.so                  28915
+usr/lib/x86_64-linux-gnu/sane/libsane-apple.so.1.0.31                28914
+etc/sane.d/apple.conf                                                28913
+usr/lib/x86_64-linux-gnu/sane/libsane-agfafocus.so.1.0.31            28912
+etc/sane.d/agfafocus.conf                                            28911
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstwavenc.so               28910
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstwavpack.so              28909
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstwavparse.so             28908
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstwaylandsink.so          28907
+usr/lib/x86_64-linux-gnu/sane/libsane-abaton.so.1.0.31               28906
+etc/sane.d/abaton.conf                                               28905
+usr/lib/x86_64-linux-gnu/sane/libsane-net.so.1.0.31                  28904
+usr/lib/x86_64-linux-gnu/libgstwayland-1.0.so.0.1804.0               28903
+etc/sane.d/net.conf                                                  28902
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstwebp.so                 28901
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstwebrtc.so               28900
+usr/lib/x86_64-linux-gnu/sane/libsane-hpaio.so.1.0.0                 28899
+usr/lib/x86_64-linux-gnu/libgstwebrtc-1.0.so.0.1804.0                28898
+usr/lib/x86_64-linux-gnu/libnice.so.10.9.0                           28897
+usr/lib/x86_64-linux-gnu/libgupnp-igd-1.0.so.4.2.1                   28896
+usr/lib/x86_64-linux-gnu/libgupnp-1.2.so.0.0.0                       28895
+usr/lib/x86_64-linux-gnu/libgssdp-1.2.so.0.0.0                       28894
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstwebrtcdsp.so            28893
+usr/lib/x86_64-linux-gnu/libwebrtc_audio_processing.so.1.0.0         28892
+usr/lib/x86_64-linux-gnu/libhpip.so.0.0.1                            28891
+usr/lib/x86_64-linux-gnu/libhpmud.so.0.0.6                           28890
+usr/lib/x86_64-linux-gnu/libhpdiscovery.so.0.0.1                     28889
+usr/lib/x86_64-linux-gnu/sane/libsane-airscan.so.1                   28888
+etc/sane.d/airscan.conf                                              28887
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstwildmidi.so             28886
+usr/lib/x86_64-linux-gnu/libWildMidi.so.2.1.0                        28885
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstx264.so                 28884
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstx265.so                 28883
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstximagesink.so           28882
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstximagesrc.so            28881
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstxingmux.so              28880
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstxvimagesink.so          28879
+usr/lib/x86_64-linux-gnu/libXv.so.1.0.0                              28878
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgsty4mdec.so               28877
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgsty4menc.so               28876
+usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstzbar.so                 28875
+usr/lib/x86_64-linux-gnu/libzbar.so.0.3.0                            28874
+usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-playlist.so 28873
+usr/lib/x86_64-linux-gnu/libtotem-plparser.so.18.3.4                 28872
+usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-text.so 28871
+usr/share/fonts/X11/Type1/fonts.dir                                  28870
+usr/bin/xkbcomp                                                      28869
+usr/share/X11/xkb/geometry/pc                                        28868
+usr/lib/x86_64-linux-gnu/libGLX_mesa.so.0.0.0                        28867
+usr/lib/x86_64-linux-gnu/libxcb-glx.so.0.0.0                         28866
+usr/libexec/ibus-x11                                                 28863
+usr/lib/gnome-settings-daemon-3.0/gtk-modules/at-spi2-atk.desktop    28862
+usr/bin/spice-vdagent                                                28861
+usr/share/X11/locale/locale.alias                                    28860
+usr/share/X11/locale/locale.dir                                      28859
+usr/share/X11/locale/en_US.UTF-8/XLC_LOCALE                          28858
+usr/lib/x86_64-linux-gnu/gconv/ISO8859-1.so                          28857
+etc/xdg/Xwayland-session.d/00-xrdb                                   28856
+usr/local/lib/tails-greeter                                          28853
+etc/X11/Xsession.options                                             28852
+usr/bin/xrdb                                                         28851
+usr/lib/x86_64-linux-gnu/libXmuu.so.1.0.0                            28850
+etc/X11/Xresources/x11-common                                        28849
+usr/bin/x86_64-linux-gnu-cpp-10                                      28848
+usr/lib/gcc/x86_64-linux-gnu/10/cc1                                  28847
+usr/share/tails/greeter/set-cursor.py                                28846
+usr/lib/python3/dist-packages/gi/__init__.py                         28845
+usr/lib/python3.9/pkgutil.py                                         28844
+usr/lib/x86_64-linux-gnu/libisl.so.23.0.0                            28843
+usr/lib/python3/dist-packages/gi/_gi.cpython-39-x86_64-linux-gnu.so  28842
+usr/lib/x86_64-linux-gnu/libmpc.so.3.2.0                             28841
+usr/lib/x86_64-linux-gnu/libmpfr.so.6.1.0                            28840
+usr/lib/python3/dist-packages/gi/_error.py                           28839
+usr/lib/python3/dist-packages/gi/_gi_cairo.cpython-39-x86_64-linux-gnu.so 28838
+usr/lib/python3/dist-packages/cairo/__init__.py                      28837
+usr/lib/python3/dist-packages/cairo/_cairo.cpython-39-x86_64-linux-gnu.so 28836
+usr/lib/python3/dist-packages/gi/repository/__init__.py              28835
+usr/lib/python3/dist-packages/gi/importer.py                         28834
+usr/lib/python3/dist-packages/gi/module.py                           28833
+usr/lib/python3/dist-packages/gi/types.py                            28832
+usr/lib/python3/dist-packages/gi/_constants.py                       28831
+usr/lib/python3/dist-packages/gi/docstring.py                        28830
+usr/lib/python3/dist-packages/gi/_propertyhelper.py                  28829
+usr/lib/python3/dist-packages/gi/_signalhelper.py                    28828
+usr/lib/python3/dist-packages/gi/overrides/__init__.py               28827
+usr/lib/python3/dist-packages/gi/overrides/GLib.py                   28826
+usr/lib/python3/dist-packages/gi/_ossighelper.py                     28825
+usr/lib/python3/dist-packages/gi/_option.py                          28824
+usr/lib/python3.9/optparse.py                                        28823
+usr/lib/python3/dist-packages/gi/overrides/GObject.py                28822
+usr/lib/python3/dist-packages/gi/overrides/Pango.py                  28821
+usr/lib/python3/dist-packages/gi/overrides/Gio.py                    28820
+usr/lib/python3/dist-packages/gi/overrides/GdkPixbuf.py              28819
+usr/lib/python3/dist-packages/gi/overrides/Gdk.py                    28818
+usr/lib/x86_64-linux-gnu/girepository-1.0/GdkX11-3.0.typelib         28817
+usr/lib/python3/dist-packages/gi/overrides/Gtk.py                    28816
+usr/lib/python3/dist-packages/gi/_gtktemplate.py                     28815
+usr/share/tails/greeter/tails-greeter.py                             28814
+usr/lib/python3.9/logging/config.py                                  28813
+usr/lib/python3.9/logging/handlers.py                                28812
+usr/lib/python3/dist-packages/tailsgreeter/__init__.py               28811
+usr/lib/python3/dist-packages/tailsgreeter/errors.py                 28810
+usr/lib/python3/dist-packages/tailsgreeter/greeter.py                28809
+usr/lib/python3/dist-packages/tailsgreeter/config.py                 28808
+usr/lib/python3/dist-packages/tailsgreeter/gdmclient.py              28807
+usr/lib/python3/dist-packages/tailsgreeter/settings/__init__.py      28806
+usr/lib/python3/dist-packages/tailsgreeter/settings/localization.py  28805
+usr/lib/python3/dist-packages/pycountry/__init__.py                  28804
+usr/lib/python3/dist-packages/pycountry/db.py                        28803
+usr/lib/python3.9/json/__init__.py                                   28802
+usr/lib/python3.9/json/decoder.py                                    28801
+usr/lib/python3.9/json/scanner.py                                    28800
+usr/lib/python3.9/lib-dynload/_json.cpython-39-x86_64-linux-gnu.so   28799
+usr/lib/python3.9/json/encoder.py                                    28798
+usr/lib/python3/dist-packages/pkg_resources/__init__.py              28797
+usr/lib/python3.9/zipfile.py                                         28796
+usr/lib/python3.9/plistlib.py                                        28795
+usr/lib/python3.9/xml/__init__.py                                    28794
+usr/lib/python3.9/xml/parsers/__init__.py                            28793
+usr/lib/python3.9/xml/parsers/expat.py                               28792
+usr/lib/python3.9/ntpath.py                                          28791
+usr/lib/python3/dist-packages/pkg_resources/extern/__init__.py       28790
+usr/lib/python3/dist-packages/pkg_resources/_vendor/__init__.py      28789
+usr/lib/python3/dist-packages/pkg_resources/_vendor/appdirs.py       28788
+usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/__init__.py 28787
+usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/__about__.py 28786
+usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/version.py 28785
+usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/_structures.py 28784
+usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/_typing.py 28783
+usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/specifiers.py 28782
+usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/_compat.py 28781
+usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/utils.py 28780
+usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/requirements.py 28779
+usr/lib/python3/dist-packages/pkg_resources/_vendor/pyparsing.py     28778
+usr/lib/python3.9/pprint.py                                          28777
+usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/markers.py 28776
+usr/lib/python3.9/sysconfig.py                                       28775
+usr/lib/python3/dist-packages/yarl-1.6.3.egg-info/PKG-INFO           28774
+usr/lib/python3/dist-packages/xdg-5.egg-info                         28773
+usr/lib/python3/dist-packages/Werkzeug-1.0.1.egg-info/PKG-INFO       28772
+usr/lib/python3/dist-packages/urllib3-1.26.5.egg-info/PKG-INFO       28771
+usr/lib/python3/dist-packages/typing_extensions-3.7.4.3.egg-info/PKG-INFO 28770
+usr/lib/python3/dist-packages/trezor-0.12.2.egg-info/PKG-INFO        28769
+usr/lib/python3/dist-packages/tinyrpc-0.6.egg-info/PKG-INFO          28768
+usr/lib/python3/dist-packages/systemd_python-234.egg-info            28767
+usr/lib/python3/dist-packages/stem-1.8.0.egg-info                    28766
+usr/lib/python3/dist-packages/six-1.16.0.egg-info/PKG-INFO           28765
+usr/lib/python3/dist-packages/sh-1.14.1.egg-info/PKG-INFO            28764
+usr/lib/python3/dist-packages/requests-2.25.1.egg-info/PKG-INFO      28763
+usr/lib/python3/dist-packages/reportlab-3.5.59.egg-info/PKG-INFO     28762
+usr/lib/python3/dist-packages/qrcode-6.1.egg-info/PKG-INFO           28761
+usr/lib/python3/dist-packages/PyYAML-5.3.1.egg-info                  28760
+usr/lib/python3/dist-packages/pyxdg-0.27.egg-info/PKG-INFO           28759
+usr/lib/python3/dist-packages/pyusb-1.0.2.egg-info/PKG-INFO          28758
+usr/lib/python3/dist-packages/pytz-2021.1.egg-info/PKG-INFO          28757
+usr/lib/python3/dist-packages/python_prctl-1.7.egg-info              28756
+usr/lib/python3/dist-packages/python_pam-1.8.4.egg-info/PKG-INFO     28755
+usr/lib/python3/dist-packages/python_gnupg-0.4.6.egg-info/PKG-INFO   28754
+usr/lib/python3/dist-packages/python_apt-2.2.1.egg-info/PKG-INFO     28753
+usr/lib/python3/dist-packages/PySocks-1.7.1.egg-info/PKG-INFO        28752
+usr/lib/python3/dist-packages/pyserial-3.5b0.egg-info/PKG-INFO       28751
+usr/lib/python3/dist-packages/PyQt5_sip-12.8.1.egg-info/PKG-INFO     28750
+usr/lib/python3/dist-packages/PyPDF2-1.26.0.egg-info                 28749
+usr/lib/python3/dist-packages/pyinotify-0.9.6.egg-info               28748
+usr/lib/python3/dist-packages/PyGObject-3.38.0.egg-info/PKG-INFO     28747
+usr/lib/python3/dist-packages/pydbus-0.6.0.egg-info/PKG-INFO         28746
+usr/lib/python3/dist-packages/pycurl-7.43.0.6.egg-info               28745
+usr/lib/python3/dist-packages/pycups-2.0.1.egg-info                  28744
+usr/lib/python3/dist-packages/pycryptodomex-3.9.7.egg-info/PKG-INFO  28743
+usr/lib/python3/dist-packages/pycountry-20.7.3.egg-info/PKG-INFO     28742
+usr/lib/python3/dist-packages/pycairo-1.16.2.egg-info                28741
+usr/lib/python3/dist-packages/psutil-5.8.0.egg-info/PKG-INFO         28740
+usr/lib/python3/dist-packages/protobuf-3.12.4.egg-info/PKG-INFO      28739
+usr/lib/python3/dist-packages/Pillow-8.1.2.egg-info/PKG-INFO         28738
+usr/lib/python3/dist-packages/pexpect-4.8.0.egg-info                 28737
+usr/lib/python3/dist-packages/onionshare-2.2.egg-info                28736
+usr/lib/python3/dist-packages/onioncircuits-0.7.egg-info             28735
+usr/lib/python3/dist-packages/mutagen-1.45.1.egg-info/PKG-INFO       28734
+usr/lib/python3/dist-packages/multidict-5.1.0.egg-info/PKG-INFO      28733
+usr/lib/python3/dist-packages/mnemonic-0.19.egg-info/PKG-INFO        28732
+usr/lib/python3/dist-packages/MarkupSafe-1.1.1.egg-info/PKG-INFO     28731
+usr/lib/python3/dist-packages/louis-3.16.0.egg-info                  28730
+usr/lib/python3/dist-packages/libusb1-1.9.1.egg-info/PKG-INFO        28729
+usr/lib/python3/dist-packages/Jinja2-2.11.3.egg-info/PKG-INFO        28728
+usr/lib/python3/dist-packages/itsdangerous-1.1.0.egg-info/PKG-INFO   28727
+usr/lib/python3/dist-packages/idna-2.10.egg-info/PKG-INFO            28726
+usr/lib/python3/dist-packages/hidapi-0.9.0.post3.egg-info/PKG-INFO   28725
+usr/lib/python3/dist-packages/Flask-1.1.2.egg-info/PKG-INFO          28724
+usr/lib/python3/dist-packages/Flask_HTTPAuth-3.2.4.egg-info/PKG-INFO 28723
+usr/lib/python3/dist-packages/Electrum-4.0.9.egg-info/PKG-INFO       28722
+usr/lib/python3/dist-packages/ecdsa-0.16.1.egg-info/PKG-INFO         28721
+usr/lib/python3/dist-packages/dogtail-0.9.11.egg-info/PKG-INFO       28720
+usr/lib/python3/dist-packages/dnspython-2.0.0.egg-info/PKG-INFO      28719
+usr/lib/python3/dist-packages/distro-1.5.0.egg-info/PKG-INFO         28718
+usr/lib/python3/dist-packages/dbus_python-1.2.16.egg-info/PKG-INFO   28717
+usr/lib/python3/dist-packages/cupshelpers-1.0.egg-info               28716
+usr/lib/python3/dist-packages/cryptography-3.3.2.egg-info/PKG-INFO   28715
+usr/lib/python3/dist-packages/construct-2.10.58.egg-info/PKG-INFO    28714
+usr/lib/python3/dist-packages/colorama-0.4.4.egg-info/PKG-INFO       28713
+usr/lib/python3/dist-packages/click-7.1.2.egg-info/PKG-INFO          28712
+usr/lib/python3/dist-packages/chardet-4.0.0.egg-info/PKG-INFO        28711
+usr/lib/python3/dist-packages/certifi-2020.6.20.egg-info/PKG-INFO    28710
+usr/lib/python3/dist-packages/btchip_python-0.1.31.egg-info/PKG-INFO 28709
+usr/lib/python3/dist-packages/Brlapi-0.8.2.egg-info                  28708
+usr/lib/python3/dist-packages/bookletimposer-0.3.egg-info            28707
+usr/lib/python3/dist-packages/bitstring-3.1.7.egg-info               28706
+usr/lib/python3/dist-packages/attrs-20.3.0.egg-info/PKG-INFO         28705
+usr/lib/python3/dist-packages/atomicwrites-1.4.0.egg-info/PKG-INFO   28704
+usr/lib/python3/dist-packages/async_timeout-3.0.1.egg-info/PKG-INFO  28703
+usr/lib/python3/dist-packages/aiorpcX-0.18.5.egg-info/PKG-INFO       28702
+usr/lib/python3/dist-packages/aiohttp-3.7.4.egg-info/PKG-INFO        28701
+usr/lib/python3/dist-packages/aiohttp_socks-0.5.3.egg-info/PKG-INFO  28700
+usr/lib/python3/dist-packages/protobuf-3.12.4.egg-info/namespace_packages.txt 28699
+usr/lib/python3/dist-packages/tailsgreeter/settings/admin.py         28698
+usr/lib/python3/dist-packages/tailsgreeter/settings/utils.py         28697
+usr/lib/python3.9/shlex.py                                           28696
+usr/lib/python3/dist-packages/tailsgreeter/settings/localization_settings.py 28695
+usr/lib/python3/dist-packages/tailsgreeter/settings/formats.py       28694
+usr/lib/python3/dist-packages/tailsgreeter/settings/keyboard.py      28693
+usr/lib/python3/dist-packages/tailsgreeter/settings/language.py      28692
+usr/lib/python3/dist-packages/tailsgreeter/settings/macspoof.py      28691
+usr/lib/python3/dist-packages/tailsgreeter/settings/setting.py       28690
+usr/lib/python3/dist-packages/tailsgreeter/settings/network.py       28689
+usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py   28688
+usr/lib/python3/dist-packages/tps/__init__.py                        28687
+usr/lib/x86_64-linux-gnu/girepository-1.0/UDisks-2.0.typelib         28686
+usr/lib/python3/dist-packages/tps/dbus/__init__.py                   28685
+usr/lib/python3/dist-packages/tps/dbus/errors.py                     28684
+usr/lib/python3/dist-packages/tailsgreeter/settings/persistent_storage_create.py 28683
+usr/lib/python3.9/pathlib.py                                         28682
+usr/lib/python3/dist-packages/tailsgreeter/settings/unsafe_browser.py 28681
+usr/lib/python3/dist-packages/tailsgreeter/translatable_window.py    28680
+usr/lib/python3/dist-packages/tailsgreeter/ui/__init__.py            28679
+usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py 28678
+usr/lib/python3/dist-packages/tailsgreeter/ui/setting.py             28677
+usr/lib/python3/dist-packages/tailsgreeter/ui/popover.py             28676
+usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py         28675
+usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py 28674
+usr/lib/python3/dist-packages/tailsgreeter/ui/message_dialog.py      28673
+usr/lib/python3/dist-packages/tailsgreeter/ui/help_window.py         28672
+usr/lib/python3.9/webbrowser.py                                      28671
+usr/lib/x86_64-linux-gnu/girepository-1.0/WebKit2-4.0.typelib        28670
+usr/lib/x86_64-linux-gnu/girepository-1.0/JavaScriptCore-4.0.typelib 28669
+usr/lib/python3/dist-packages/tailsgreeter/ui/region_settings.py     28668
+usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py  28667
+usr/lib/python3/dist-packages/sh.py                                  28666
+usr/lib/python3.9/pty.py                                             28665
+usr/lib/python3.9/tty.py                                             28664
+usr/lib/python3/dist-packages/tailsgreeter/ui/settings_collection.py 28663
+usr/lib/python3.9/configparser.py                                    28662
+usr/share/tails/greeter/tails-logging.conf                           28661
+lib/systemd/system/tails-persistent-storage.service                  28660
+usr/local/lib/persistent-storage/pre-start                           28657
+lib/systemd/systemd-update-utmp                                      28655
+bin/mountpoint                                                       28654
+usr/local/lib/tps                                                    28652
+usr/lib/python3/dist-packages/tps/logging.py                         28619
+usr/lib/python3/dist-packages/tps/service.py                         28618
+usr/lib/python3/dist-packages/tps/executil.py                        28617
+usr/lib/python3/dist-packages/tps/configuration/__init__.py          28616
+usr/lib/python3/dist-packages/tps/configuration/features.py          28615
+usr/lib/python3/dist-packages/tps/configuration/conflicting_app.py   28610
+usr/lib/python3/dist-packages/tps/configuration/mount.py             28603
+usr/lib/python3/dist-packages/tailslib/__init__.py                   28601
+usr/lib/python3/dist-packages/tps/mountutil.py                       28600
+usr/lib/python3/dist-packages/tps/configuration/feature.py           28599
+usr/lib/python3/dist-packages/tps/dbus/object.py                     28598
+usr/lib/python3.9/cProfile.py                                        28597
+usr/lib/python3.9/lib-dynload/_lsprof.cpython-39-x86_64-linux-gnu.so 28595
+usr/lib/python3.9/profile.py                                         28594
+usr/lib/python3.9/pstats.py                                          28592
+usr/lib/python3.9/dataclasses.py                                     28590
+usr/lib/python3/dist-packages/tps/job.py                             28587
+usr/lib/python3/dist-packages/tps/configuration/config_file.py       28586
+usr/lib/python3/dist-packages/tps/device.py                          28585
+usr/lib/python3/dist-packages/tps/udisks_monitor.py                  28584
+usr/share/tails/greeter/supported_locales                            28583
+usr/share/locale/fa/LC_MESSAGES/iso_639-2.mo                         28582
+usr/share/locale/hi/LC_MESSAGES/iso_639-2.mo                         28581
+usr/share/tails/greeter/setting.ui                                   28580
+usr/share/locale/ar/LC_MESSAGES/iso_639-2.mo                         28579
+usr/share/locale/ar/LC_MESSAGES/iso_3166-1.mo                        28578
+usr/share/locale/my/LC_MESSAGES/iso_3166-1.mo                        28577
+usr/share/locale/ca/LC_MESSAGES/iso_639-2.mo                         28576
+usr/share/locale/ca/LC_MESSAGES/iso_3166-1.mo                        28575
+usr/share/locale/km/LC_MESSAGES/iso_3166-1.mo                        28574
+usr/share/locale/zh_CN/LC_MESSAGES/iso_639-2.mo                      28573
+usr/share/locale/zh_CN/LC_MESSAGES/iso_3166-1.mo                     28572
+usr/share/locale/zh_HK/LC_MESSAGES/iso_639-2.mo                      28571
+usr/share/locale/zh_HK/LC_MESSAGES/iso_3166-1.mo                     28570
+usr/share/locale/zh_TW/LC_MESSAGES/iso_639-2.mo                      28569
+usr/share/locale/zh_TW/LC_MESSAGES/iso_3166-1.mo                     28568
+usr/share/locale/hr/LC_MESSAGES/iso_639-2.mo                         28567
+usr/share/locale/hr/LC_MESSAGES/iso_3166-1.mo                        28566
+usr/share/locale/cs/LC_MESSAGES/iso_639-2.mo                         28565
+usr/share/locale/cs/LC_MESSAGES/iso_3166-1.mo                        28564
+usr/share/locale/da/LC_MESSAGES/iso_639-2.mo                         28563
+usr/share/locale/da/LC_MESSAGES/iso_3166-1.mo                        28562
+usr/share/locale/nl/LC_MESSAGES/iso_639-2.mo                         28561
+usr/share/locale/nl/LC_MESSAGES/iso_3166-1.mo                        28560
+usr/share/locale/fi/LC_MESSAGES/iso_639-2.mo                         28559
+usr/share/locale/fi/LC_MESSAGES/iso_3166-1.mo                        28558
+usr/share/locale/fr/LC_MESSAGES/iso_639-2.mo                         28557
+usr/share/locale/fr/LC_MESSAGES/iso_3166-1.mo                        28556
+usr/share/locale/ka/LC_MESSAGES/iso_3166-1.mo                        28555
+usr/share/locale/de/LC_MESSAGES/iso_639-2.mo                         28554
+usr/share/locale/de/LC_MESSAGES/iso_3166-1.mo                        28553
+usr/share/locale/el/LC_MESSAGES/iso_639-2.mo                         28552
+usr/share/locale/el/LC_MESSAGES/iso_3166-1.mo                        28551
+usr/share/locale/he/LC_MESSAGES/iso_639-2.mo                         28550
+usr/share/locale/he/LC_MESSAGES/iso_3166-1.mo                        28549
+usr/share/locale/hu/LC_MESSAGES/iso_639-2.mo                         28548
+usr/share/locale/hu/LC_MESSAGES/iso_3166-1.mo                        28547
+usr/share/locale/id/LC_MESSAGES/iso_639-2.mo                         28546
+usr/share/locale/id/LC_MESSAGES/iso_3166-1.mo                        28545
+usr/share/locale/ga/LC_MESSAGES/iso_639-2.mo                         28544
+usr/share/locale/ga/LC_MESSAGES/iso_3166-1.mo                        28543
+usr/share/locale/it/LC_MESSAGES/iso_639-2.mo                         28542
+usr/share/locale/it/LC_MESSAGES/iso_3166-1.mo                        28541
+usr/share/locale/lt/LC_MESSAGES/iso_639-2.mo                         28540
+usr/share/locale/lt/LC_MESSAGES/iso_3166-1.mo                        28539
+usr/share/locale/mk/LC_MESSAGES/iso_639-2.mo                         28538
+usr/share/locale/mk/LC_MESSAGES/iso_3166-1.mo                        28537
+usr/share/locale/pt_BR/LC_MESSAGES/iso_639-2.mo                      28536
+usr/share/locale/pt_BR/LC_MESSAGES/iso_3166-1.mo                     28535
+usr/share/locale/pt/LC_MESSAGES/iso_639-2.mo                         28534
+usr/share/locale/pt/LC_MESSAGES/iso_3166-1.mo                        28533
+usr/share/locale/ro/LC_MESSAGES/iso_639-2.mo                         28532
+usr/share/locale/ro/LC_MESSAGES/iso_3166-1.mo                        28531
+usr/share/locale/ru/LC_MESSAGES/iso_639-2.mo                         28530
+usr/share/locale/ru/LC_MESSAGES/iso_3166-1.mo                        28529
+usr/share/locale/es/LC_MESSAGES/iso_639-2.mo                         28528
+usr/share/locale/es/LC_MESSAGES/iso_3166-1.mo                        28527
+usr/share/locale/sv/LC_MESSAGES/iso_639-2.mo                         28526
+usr/share/locale/sv/LC_MESSAGES/iso_3166-1.mo                        28525
+usr/share/locale/tr/LC_MESSAGES/iso_639-2.mo                         28524
+usr/share/locale/tr/LC_MESSAGES/iso_3166-1.mo                        28523
+usr/share/locale/fa/LC_MESSAGES/iso_3166-1.mo                        28522
+usr/share/locale/hi/LC_MESSAGES/iso_3166-1.mo                        28521
+usr/share/tails/greeter/region_settings.ui                           28520
+usr/lib/locale/C.UTF-8/LC_MESSAGES/SYS_LC_MESSAGES                   28519
+usr/share/tails/greeter/additional_settings.ui                       28517
+usr/share/locale/en_US/LC_MESSAGES/tails.mo                          28516
+usr/lib/x86_64-linux-gnu/gtk-3.0/3.0.0/immodules.cache               28515
+usr/lib/x86_64-linux-gnu/gtk-3.0/3.0.0/immodules/im-wayland.so       28514
+usr/share/tails/greeter/greeter.css                                  28513
+usr/share/tails/greeter/main.ui                                      28512
+usr/share/icons/tails-persistent-storage.svg                         28511
+usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-svg.so 28510
+usr/share/iso-codes/json/iso_639-3.json                              28509
+usr/share/fonts/opentype/cantarell/Cantarell-Bold.otf                28507
+usr/share/icons/hicolor/scalable/actions/tails-help.svg              28506
+usr/share/icons/hicolor/scalable/actions/tails-language.svg          28505
+usr/share/icons/hicolor/scalable/actions/tails-keyboard-layout.svg   28504
+usr/share/icons/hicolor/scalable/actions/tails-formats.svg           28503
+usr/share/icons/Adwaita/16x16/actions/list-add-symbolic.symbolic.png 28502
+etc/pam.d/gdm-password                                               28499
+lib/x86_64-linux-gnu/security/pam_succeed_if.so                      28498
+lib/systemd/system/user@1000.service.d/timeout.conf                  28494
+etc/gdm3/PostLogin/Default                                           28469
+etc/live/config.d/username.conf                                      28458
+usr/bin/localectl                                                    28457
+usr/share/systemd/language-fallback-map                              28455
+etc/dconf/db/ibus.d/00-upstream-settings                             28453
+etc/dconf/db/local.d/00_Tails_defaults                               28450
+usr/local/lib/tails-unblock-network                                  28446
+usr/local/lib/tails-shell-library/tails-greeter.sh                   28445
+lib/systemd/system/tails-unblock-network.service                     28444
+bin/sync                                                             28442
+usr/lib/systemd/user/gvfs-metadata.service                           28441
+usr/libexec/gvfsd-metadata                                           28438
+lib/systemd/network/99-default.link                                  28437
+lib/systemd/network/73-usb-net-by-mac.link                           28436
+etc/udev/rules.d/00-mac-spoof.rules                                  28435
+lib/udev/rules.d/39-usbmuxd.rules                                    28434
+lib/udev/rules.d/40-usb_modeswitch.rules                             28433
+lib/udev/rules.d/50-firmware.rules                                   28432
+lib/udev/rules.d/50-udev-default.rules                               28431
+lib/udev/rules.d/55-dm.rules                                         28430
+lib/udev/rules.d/56-hpmud.rules                                      28429
+lib/udev/rules.d/56-lvm.rules                                        28428
+lib/udev/rules.d/60-autosuspend.rules                                28427
+lib/udev/rules.d/60-block.rules                                      28426
+lib/udev/rules.d/60-cdrom_id.rules                                   28425
+lib/udev/rules.d/60-crda.rules                                       28424
+lib/udev/rules.d/60-drm.rules                                        28423
+lib/udev/rules.d/60-evdev.rules                                      28422
+lib/udev/rules.d/60-fido-id.rules                                    28421
+lib/udev/rules.d/60-gobi-loader.rules                                28420
+lib/udev/rules.d/60-input-id.rules                                   28419
+lib/udev/rules.d/60-libgphoto2-6.rules                               28418
+lib/udev/rules.d/60-libopenni2-0.rules                               28417
+lib/udev/rules.d/60-libsane1.rules                                   28416
+lib/udev/rules.d/60-open-vm-tools.rules                              28415
+lib/udev/rules.d/60-persistent-alsa.rules                            28414
+lib/udev/rules.d/60-persistent-input.rules                           28413
+lib/udev/rules.d/60-persistent-storage-dm.rules                      28412
+lib/udev/rules.d/60-persistent-storage-tape.rules                    28411
+lib/udev/rules.d/60-persistent-storage.rules                         28410
+lib/udev/rules.d/60-persistent-v4l.rules                             28409
+lib/udev/rules.d/60-python3-btchip.rules                             28408
+lib/udev/rules.d/60-scdaemon.rules                                   28407
+lib/udev/rules.d/60-sensor.rules                                     28406
+lib/udev/rules.d/60-serial.rules                                     28405
+lib/udev/rules.d/60-trezor.rules                                     28404
+lib/udev/rules.d/61-gdm.rules                                        28403
+lib/udev/rules.d/61-gnome-settings-daemon-rfkill.rules               28402
+lib/udev/rules.d/61-mutter.rules                                     28401
+lib/udev/rules.d/64-btrfs.rules                                      28400
+lib/udev/rules.d/65-libwacom.rules                                   28399
+lib/udev/rules.d/66-bilibop.rules                                    28398
+lib/udev/rules.d/69-cd-sensors.rules                                 28397
+lib/udev/rules.d/69-libmtp.rules                                     28396
+lib/udev/rules.d/69-lvm-metad.rules                                  28395
+lib/udev/rules.d/70-joystick.rules                                   28394
+lib/udev/rules.d/70-mouse.rules                                      28393
+lib/udev/rules.d/70-power-switch.rules                               28392
+etc/udev/rules.d/70-protect-boot-medium-for-udisks.rules             28391
+lib/udev/rules.d/70-spice-vdagentd.rules                             28390
+lib/udev/rules.d/70-touchpad.rules                                   28389
+lib/udev/rules.d/70-uaccess.rules                                    28388
+lib/udev/rules.d/71-ipp-usb.rules                                    28387
+lib/udev/rules.d/71-seat.rules                                       28386
+lib/udev/rules.d/73-seat-late.rules                                  28385
+lib/udev/rules.d/73-special-net-names.rules                          28384
+lib/udev/rules.d/75-net-description.rules                            28383
+lib/udev/rules.d/75-probe_mtd.rules                                  28382
+lib/udev/rules.d/77-mm-broadmobi-port-types.rules                    28381
+lib/udev/rules.d/77-mm-cinterion-port-types.rules                    28380
+lib/udev/rules.d/77-mm-dell-port-types.rules                         28379
+lib/udev/rules.d/77-mm-dlink-port-types.rules                        28378
+lib/udev/rules.d/77-mm-ericsson-mbm.rules                            28377
+lib/udev/rules.d/77-mm-fibocom-port-types.rules                      28376
+lib/udev/rules.d/77-mm-foxconn-port-types.rules                      28375
+lib/udev/rules.d/77-mm-haier-port-types.rules                        28374
+lib/udev/rules.d/77-mm-huawei-net-port-types.rules                   28373
+lib/udev/rules.d/77-mm-longcheer-port-types.rules                    28372
+lib/udev/rules.d/77-mm-mtk-port-types.rules                          28371
+lib/udev/rules.d/77-mm-nokia-port-types.rules                        28370
+lib/udev/rules.d/77-mm-pcmcia-device-blacklist.rules                 28369
+lib/udev/rules.d/77-mm-qdl-device-blacklist.rules                    28368
+lib/udev/rules.d/77-mm-quectel-port-types.rules                      28367
+lib/udev/rules.d/77-mm-sierra.rules                                  28366
+lib/udev/rules.d/77-mm-simtech-port-types.rules                      28365
+lib/udev/rules.d/77-mm-telit-port-types.rules                        28364
+lib/udev/rules.d/77-mm-tplink-port-types.rules                       28363
+lib/udev/rules.d/77-mm-ublox-port-types.rules                        28362
+lib/udev/rules.d/77-mm-usb-device-blacklist.rules                    28361
+lib/udev/rules.d/77-mm-usb-serial-adapters-greylist.rules            28322
+lib/udev/rules.d/77-mm-x22x-port-types.rules                         28321
+lib/udev/rules.d/77-mm-zte-port-types.rules                          28320
+lib/udev/rules.d/78-sound-card.rules                                 28319
+lib/udev/rules.d/80-debian-compat.rules                              28318
+lib/udev/rules.d/80-drivers.rules                                    28317
+lib/udev/rules.d/80-ifupdown.rules                                   28316
+lib/udev/rules.d/80-libinput-device-groups.rules                     28315
+lib/udev/rules.d/80-mm-candidate.rules                               28314
+lib/udev/rules.d/80-udisks2.rules                                    28313
+lib/udev/rules.d/84-nm-drivers.rules                                 28312
+lib/udev/rules.d/85-hdparm.rules                                     28311
+usr/lib/udev/rules.d/85-hwclock.rules                                28310
+etc/udev/rules.d/85-nm-unmanage-veth.rules                           28309
+lib/udev/rules.d/85-nm-unmanaged.rules                               28308
+lib/udev/rules.d/85-regulatory.rules                                 28307
+lib/udev/rules.d/90-alsa-restore.rules                               28306
+lib/udev/rules.d/90-bolt.rules                                       28305
+lib/udev/rules.d/90-console-setup.rules                              28304
+lib/udev/rules.d/90-iphone-tether.rules                              28303
+lib/udev/rules.d/90-libinput-fuzz-override.rules                     28302
+lib/udev/rules.d/90-nm-thunderbolt.rules                             28301
+lib/udev/rules.d/90-pipewire-alsa.rules                              28300
+lib/udev/rules.d/90-pulseaudio.rules                                 28299
+lib/udev/rules.d/92-libccid.rules                                    28298
+lib/udev/rules.d/95-cd-devices.rules                                 28297
+lib/udev/rules.d/95-dm-notify.rules                                  28296
+lib/udev/rules.d/95-upower-csr.rules                                 28295
+lib/udev/rules.d/95-upower-hid.rules                                 28294
+lib/udev/rules.d/95-upower-hidpp.rules                               28293
+lib/udev/rules.d/95-upower-wup.rules                                 28292
+lib/udev/rules.d/96-e2scrub.rules                                    28291
+etc/udev/rules.d/99-hide-TailsData.rules                             28290
+lib/udev/rules.d/99-laptop-mode.rules                                28289
+lib/udev/rules.d/99-libsane1.rules                                   28288
+etc/udev/rules.d/99-make-removable-devices-user-writable.rules       28287
+lib/udev/rules.d/99-systemd.rules                                    28285
+lib/udev/rules.d/99-vmware-scsi-udev.rules                           28284
+lib/udev/libinput-device-group                                       28147
+lib/systemd/system/systemd-udev-settle.service                       28137
+lib/udev/lmt-udev                                                    28092
+lib/udev/ata_id                                                      28007
+usr/lib/udev/hwclock-set                                             27953
+lib/udev/hdparm                                                      27952
+lib/udev/libinput-fuzz-extract                                       27946
+sbin/on_ac_power                                                     27945
+usr/lib/pm-utils/power.d/95hdparm-apm                                27890
+lib/udev/libinput-fuzz-to-zero                                       27884
+etc/console-setup/cached_setup_terminal.sh                           27789
+etc/console-setup/cached_setup_font.sh                               27764
+bin/setfont                                                          27762
+usr/share/consolefonts/Uni1-Fixed16.psf.gz                           27752
+usr/local/lib/tails-spoof-mac                                        27748
+lib/modules/6.1.0-5-amd64/kernel/lib/crypto/libarc4.ko               27747
+usr/local/lib/tails-shell-library/hardware.sh                        27746
+usr/local/lib/tails-shell-library/log.sh                             27741
+usr/bin/gettext.sh                                                   27740
+usr/bin/macchanger                                                   27737
+usr/share/macchanger/OUI.list                                        27736
+usr/share/macchanger/wireless.list                                   27734
+usr/libexec/bilibop/test                                             27727
+usr/lib/bilibop/common.sh                                            27725
+lib/crda/setregdomain                                                27717
+etc/default/crda                                                     27716
+lib/systemd/systemd-rfkill                                           27713
+lib/systemd/system/NetworkManager.service                            27686
+lib/systemd/system/NetworkManager-wait-online.service                27685
+lib/systemd/system/NetworkManager-dispatcher.service                 27684
+etc/systemd/system.conf                                              27683
+lib/systemd/system.conf.d/lower-DefaultTimeoutStopSec.conf           27682
+lib/systemd/system-generators/systemd-debug-generator                27681
+lib/systemd/system-generators/systemd-getty-generator                27680
+lib/systemd/system-generators/systemd-cryptsetup-generator           27679
+lib/systemd/system-generators/systemd-hibernate-resume-generator     27678
+lib/systemd/system-generators/systemd-bless-boot-generator           27677
+lib/systemd/system-generators/systemd-fstab-generator                27676
+lib/systemd/system-generators/systemd-run-generator                  27675
+lib/systemd/system-generators/systemd-gpt-auto-generator             27674
+lib/systemd/system-generators/systemd-system-update-generator        27673
+lib/systemd/system-generators/systemd-veritysetup-generator          27672
+lib/systemd/system-generators/lvm2-activation-generator              27671
+lib/systemd/system-generators/systemd-rc-local-generator             27670
+lib/systemd/system-generators/systemd-sysv-generator                 27669
+lib/systemd/system-generators/live-config-getty-generator            27668
+lib/live/init-config.sh                                              27667
+etc/live/config.d/noroot.conf                                        27666
+etc/live/config.d/user-default-groups.conf                           27665
+lib/systemd/system-generators/tor-generator                          27664
+sbin/lvm                                                             27663
+lib/x86_64-linux-gnu/libdevmapper-event.so.1.02.1                    27662
+usr/lib/x86_64-linux-gnu/libaio.so.1.0.1                             27661
+etc/lvm/lvm.conf                                                     27660
+etc/lvm/lvmlocal.conf                                                27659
+lib/systemd/system/alsa-utils.service                                27658
+etc/systemd/system/avahi-daemon.service                              27657
+lib/systemd/system/gdm3.service                                      27656
+lib/systemd/system/gdm.service                                       27655
+lib/systemd/system/hwclock.service                                   27654
+lib/systemd/system/kmod.service                                      27653
+lib/systemd/system/systemd-modules-load.service                      27652
+etc/systemd/system/live-tools.service                                27651
+lib/systemd/system/lvm2.service                                      27650
+lib/systemd/system/plymouth.service                                  27649
+lib/systemd/system/plymouth-quit.service                             27648
+lib/systemd/system/plymouth-log.service                              27647
+lib/systemd/system/plymouth-read-write.service                       27646
+lib/systemd/system/procps.service                                    27645
+lib/systemd/system/systemd-sysctl.service                            27644
+lib/systemd/system/pulseaudio-enable-autospawn.service               27643
+lib/systemd/system/saned.service                                     27642
+lib/systemd/system/speech-dispatcher.service                         27641
+lib/systemd/system/speech-dispatcherd.service                        27640
+lib/systemd/system/spice-vdagent.service                             27639
+lib/systemd/system/spice-vdagentd.service                            27638
+lib/systemd/system/sudo.service                                      27637
+lib/systemd/system/udev.service                                      27636
+lib/systemd/system/systemd-udevd.service                             27635
+lib/systemd/system/x11-common.service                                27634
+etc/init.d/gdomap                                                    27633
+lib/systemd/system/wpa_supplicant.service                            27632
+lib/systemd/system/avahi-daemon.service                              27631
+lib/systemd/system/ModemManager.service                              27630
+lib/systemd/system/systemd-timesyncd.service                         27629
+lib/systemd/system/open-vm-tools.service                             27628
+lib/systemd/system/getty@.service                                    27627
+lib/systemd/system/reboot.target                                     27626
+lib/systemd/system/systemd-logind.service                            27625
+lib/systemd/system/systemd-timedated.service                         27624
+lib/systemd/system/graphical.target                                  27623
+lib/systemd/system/poweroff.target                                   27622
+lib/systemd/system/rescue.target                                     27621
+lib/systemd/system/multi-user.target                                 27620
+lib/systemd/system/systemd-backlight@.service                        27619
+lib/systemd/system/systemd-journald.socket                           27618
+lib/systemd/system/systemd-journald.service                          27617
+lib/systemd/system/syslog.socket                                     27616
+lib/systemd/system/emergency.service                                 27615
+lib/systemd/system/rescue.service                                    27614
+lib/systemd/system/plymouth-start.service                            27613
+lib/systemd/system/systemd-ask-password-plymouth.service             27612
+lib/systemd/system/keyboard-setup.service                            27611
+lib/systemd/system/local-fs-pre.target                               27610
+lib/systemd/system/systemd-udevd-kernel.socket                       27609
+lib/systemd/system/systemd-udevd-control.socket                      27608
+lib/systemd/system/systemd-hwdb-update.service                       27607
+lib/systemd/system/systemd-sysusers.service                          27606
+lib/systemd/system/systemd-udev-trigger.service                      27605
+lib/systemd/system/systemd-ask-password-plymouth.path                27604
+lib/systemd/system/basic.target                                      27603
+lib/systemd/system/live-config.service                               27602
+lib/systemd/system/live-config.service.d/after-tmpfiles.conf         27601
+lib/systemd/system/systemd-tmpfiles-setup.service                    27600
+lib/systemd/system/local-fs.target                                   27599
+lib/systemd/system/emergency.target                                  27598
+lib/systemd/system/slices.target                                     27597
+lib/systemd/system/paths.target                                      27596
+lib/systemd/system/timers.target                                     27595
+lib/systemd/system/systemd-tmpfiles-clean.timer                      27594
+lib/systemd/system/systemd-tmpfiles-clean.service                    27593
+lib/systemd/system/time-set.target                                   27592
+lib/systemd/system/logrotate.timer                                   27591
+lib/systemd/system/time-sync.target                                  27590
+lib/systemd/system/logrotate.service                                 27589
+lib/systemd/system/fstrim.timer                                      27588
+lib/systemd/system/fstrim.service                                    27587
+lib/systemd/system/e2scrub_all.timer                                 27586
+lib/systemd/system/e2scrub_all.service                               27585
+lib/systemd/system/apt-daily.timer                                   27584
+lib/systemd/system/apt-daily.service                                 27583
+lib/systemd/system/dbus.socket                                       27582
+lib/systemd/system/dbus.service                                      27581
+lib/systemd/system/network-pre.target                                27580
+lib/systemd/system/network-online.target                             27579
+lib/systemd/system/networking.service                                27578
+lib/systemd/system/apparmor.service                                  27577
+lib/systemd/system/ifupdown-pre.service                              27576
+lib/systemd/system/network.target                                    27575
+lib/systemd/system/apt-daily-upgrade.timer                           27574
+lib/systemd/system/apt-daily-upgrade.service                         27573
+lib/systemd/system/systemd-journald-audit.socket                     27572
+lib/systemd/system/systemd-journald-dev-log.socket                   27571
+lib/systemd/system/sockets.target                                    27570
+lib/systemd/system/tca-portal.socket                                 27569
+lib/systemd/system/tca-portal.service                                27568
+lib/systemd/system/systemd-initctl.socket                            27567
+lib/systemd/system/systemd-initctl.service                           27566
+lib/systemd/system/pcscd.socket                                      27565
+lib/systemd/system/pcscd.service                                     27564
+lib/systemd/system/dm-event.socket                                   27563
+lib/systemd/system/dm-event.service                                  27562
+lib/systemd/system/cups.socket                                       27561
+lib/systemd/system/cups.service                                      27560
+lib/systemd/system/cups.service.d/after-AppArmor.conf                27559
+lib/systemd/system/systemd-remount-fs.service                        27558
+lib/systemd/system/systemd-fsck-root.service                         27557
+lib/systemd/system/systemd-fsckd.socket                              27556
+lib/systemd/system/systemd-fsckd.service                             27555
+lib/systemd/system/sysinit.target                                    27554
+lib/systemd/system/tails-create-netns.service                        27553
+lib/systemd/system/onion-grater.service                              27552
+lib/systemd/system/systemd-update-utmp.service                       27551
+lib/systemd/system/systemd-update-utmp.service.d/empty-overlayfs-rw-tmpfs.conf 27550
+lib/systemd/system/systemd-tmpfiles-setup-dev.service                27549
+lib/systemd/system/systemd-random-seed.service                       27548
+lib/systemd/system/first-boot-complete.target                        27547
+lib/systemd/system/systemd-pstore.service                            27546
+lib/systemd/system/systemd-machine-id-commit.service                 27545
+lib/systemd/system/systemd-journal-flush.service                     27544
+lib/systemd/system/systemd-boot-system-token.service                 27543
+lib/systemd/system/systemd-binfmt.service                            27542
+lib/systemd/system/systemd-ask-password-console.path                 27541
+lib/systemd/system/systemd-ask-password-console.service              27540
+lib/systemd/system/proc-sys-fs-binfmt_misc.automount                 27539
+lib/systemd/system/lvm2-monitor.service                              27538
+lib/systemd/system/lvm2-lvmpolld.socket                              27537
+lib/systemd/system/lvm2-lvmpolld.service                             27536
+lib/systemd/system/kmod-static-nodes.service                         27535
+lib/systemd/system/haveged.service                                   27534
+lib/systemd/system/ferm.service                                      27533
+lib/systemd/system/cryptsetup.target                                 27532
+lib/systemd/system/blk-availability.service                          27531
+lib/systemd/system/swap.target                                       27530
+lib/systemd/system/shutdown.target                                   27529
+lib/systemd/system/umount.target                                     27528
+lib/systemd/system/proc-sys-fs-binfmt_misc.mount                     27527
+lib/systemd/system/sys-fs-fuse-connections.mount                     27526
+lib/systemd/system/modprobe@.service                                 27525
+lib/systemd/system/sys-kernel-config.mount                           27524
+lib/systemd/system/var-tmp.mount                                     27523
+lib/systemd/system/dev-mqueue.mount                                  27522
+lib/systemd/system/sys-kernel-tracing.mount                          27521
+lib/systemd/system/sys-kernel-debug.mount                            27520
+lib/systemd/system/dev-hugepages.mount                               27519
+lib/systemd/system/run-initramfs.mount                               27518
+lib/systemd/system/initramfs-shutdown.service                        27517
+lib/systemd/system/sound.target                                      27516
+lib/systemd/system/alsa-state.service                                27515
+lib/systemd/system/alsa-restore.service                              27514
+lib/systemd/system/alsa-restore.service.d/dont-store-state-on-shutdown.conf 27513
+lib/systemd/system/smartcard.target                                  27512
+lib/systemd/system/systemd-rfkill.socket                             27511
+lib/systemd/system/systemd-rfkill.service                            27510
+lib/systemd/system/user.slice                                        27509
+lib/systemd/system/systemd-user-sessions.service                     27508
+lib/systemd/system/nss-user-lookup.target                            27507
+lib/systemd/system/remote-fs.target                                  27506
+lib/systemd/system/remote-fs-pre.target                              27505
+lib/systemd/system/lmt-poll.service                                  27504
+lib/systemd/system/console-setup.service                             27503
+lib/systemd/system/console-setup.service.d/override.conf             27502
+lib/systemd/system/systemd-update-utmp-runlevel.service              27501
+lib/systemd/system/udisks2.service                                   27500
+lib/systemd/system/e2scrub_reap.service                              27499
+lib/systemd/system/accounts-daemon.service                           27498
+lib/systemd/system/gdm.service.d/failure.conf                        27497
+lib/systemd/system/gdm.service.d/restart.conf                        27496
+lib/systemd/system/tails-gdm-failed-to-start.service                 27495
+lib/systemd/system/plymouth-quit-wait.service                        27494
+lib/systemd/system/rc-local.service                                  27493
+lib/systemd/system/rc-local.service.d/debian.conf                    27492
+lib/systemd/system/getty.target                                      27491
+lib/systemd/system/getty-static.service                              27490
+lib/systemd/system/getty-pre.target                                  27489
+lib/systemd/system/zramswap.service                                  27488
+lib/systemd/system/tor.service                                       27487
+lib/systemd/system/tor@default.service                               27486
+lib/systemd/system/tor@default.service.d/50-resolv-conf-override.conf 27485
+lib/systemd/system/tor@default.service.d/fix-obfs4proxy.conf         27484
+lib/systemd/system/tor@default.service.d/writable-etc-tor.conf       27483
+lib/systemd/system/tails-wait-until-tor-has-bootstrapped.service     27482
+lib/systemd/system/tails-tor-has-bootstrapped.target                 27481
+lib/systemd/system/tails-tor-has-bootstrapped-flag-file.service      27480
+lib/systemd/system/nss-lookup.target                                 27479
+lib/systemd/system/tails-shutdown-on-media-removal.service           27478
+lib/systemd/system/tails-set-wireless-devices-state.service          27477
+lib/systemd/system/tails-autotest-remote-shell.service               27476
+lib/systemd/system/tails-autotest-broken-gnome-shell.service         27475
+lib/systemd/system/systemd-ask-password-wall.path                    27474
+lib/systemd/system/systemd-ask-password-wall.service                 27473
+lib/systemd/system/rsync.service                                     27472
+lib/systemd/system/vgauth.service                                    27471
+lib/systemd/system/memlockd.service                                  27470
+lib/systemd/system/memlockd.service.d/oom.conf                       27469
+lib/systemd/system/laptop-mode.timer                                 27468
+lib/systemd/system/laptop-mode.service                               27467
+lib/systemd/system/cups-browsed.service                              27466
+lib/systemd/system/cron.service                                      27465
+lib/systemd/system/polkit.service                                    27464
+usr/lib/NetworkManager/nm-dispatcher                                 27461
+usr/sbin/NetworkManager                                              27460
+usr/lib/x86_64-linux-gnu/libndp.so.0.1.0                             27459
+usr/lib/NetworkManager/conf.d/no-mac-addr-change.conf                27458
+etc/NetworkManager/NetworkManager.conf                               27457
+etc/NetworkManager/conf.d/dhcp.conf                                  27456
+etc/NetworkManager/conf.d/dns.conf                                   27455
+etc/NetworkManager/conf.d/spoof-mac.conf                             27454
+etc/os-release                                                       27452
+usr/lib/x86_64-linux-gnu/NetworkManager/1.30.6/libnm-device-plugin-adsl.so 27451
+usr/lib/x86_64-linux-gnu/NetworkManager/1.30.6/libnm-device-plugin-bluetooth.so 27450
+usr/lib/x86_64-linux-gnu/libbluetooth.so.3.19.3                      27449
+usr/lib/x86_64-linux-gnu/NetworkManager/1.30.6/libnm-wwan.so         27448
+usr/bin/nm-online                                                    27446
+usr/lib/x86_64-linux-gnu/NetworkManager/1.30.6/libnm-device-plugin-team.so 27445
+usr/lib/x86_64-linux-gnu/libteamdctl.so.0.1.5                        27444
+usr/lib/x86_64-linux-gnu/libjansson.so.4.13.0                        27443
+usr/lib/x86_64-linux-gnu/NetworkManager/1.30.6/libnm-device-plugin-wifi.so 27442
+usr/lib/x86_64-linux-gnu/NetworkManager/1.30.6/libnm-device-plugin-wwan.so 27441
+usr/sbin/deluser                                                     27440
+usr/lib/x86_64-linux-gnu/NetworkManager/1.30.6/libnm-settings-plugin-ifupdown.so 27439
+etc/NetworkManager/dispatcher.d/00-firewall.sh                       27438
+etc/NetworkManager/dispatcher.d/00-resolv-over-clearnet              27437
+usr/share/perl/5.32.1/File/Find.pm                                   27436
+etc/NetworkManager/dispatcher.d/01-ifupdown                          27435
+etc/NetworkManager/dispatcher.d/01-wait-for-notification-recipient.sh 27434
+etc/NetworkManager/dispatcher.d/10-tor.sh                            27433
+usr/lib/x86_64-linux-gnu/perl-base/File/Basename.pm                  27432
+etc/NetworkManager/dispatcher.d/20-time.sh                           27431
+usr/lib/x86_64-linux-gnu/perl-base/File/Spec.pm                      27430
+usr/lib/x86_64-linux-gnu/perl-base/File/Spec/Unix.pm                 27429
+etc/NetworkManager/dispatcher.d/70-upgrade-additional-software.sh    27428
+usr/lib/x86_64-linux-gnu/perl-base/File/Temp.pm                      27427
+usr/lib/x86_64-linux-gnu/perl-base/File/Path.pm                      27426
+usr/lib/x86_64-linux-gnu/perl-base/Errno.pm                          27425
+usr/lib/x86_64-linux-gnu/perl-base/Carp/Heavy.pm                     27424
+etc/deluser.conf                                                     27423
+usr/bin/passwd                                                       27422
+etc/gdm3/PreSession/Default                                          27419
+etc/profile                                                          27416
+usr/bin/id                                                           27415
+etc/profile.d/bash_completion.sh                                     27414
+etc/profile.d/vte-2.91.sh                                            27413
+usr/lib/systemd/user/gnome-session-wayland@.target                   27411
+usr/lib/systemd/user/tails-dump-user-env.service                     27410
+usr/lib/systemd/user/gnome-session.target                            27409
+usr/lib/systemd/user/gnome-session-monitor.service                   27408
+usr/lib/systemd/user/gnome-session-pre.target                        27407
+usr/lib/systemd/user/gnome-session-initialized.target                27406
+usr/lib/systemd/user/gnome-session-signal-init.service               27405
+usr/lib/systemd/user/graphical-session-pre.target                    27404
+usr/lib/systemd/user/ssh-agent.service                               27403
+usr/lib/systemd/user/gnome-session-wayland.target                    27402
+usr/lib/systemd/user/gnome-session@.target                           27401
+usr/lib/systemd/user/gnome-session@gnome.target.d/gnome.session.conf 27400
+usr/lib/systemd/user/org.gnome.Shell.target                          27399
+usr/lib/systemd/user/org.gnome.Shell@x11.service                     27398
+usr/lib/systemd/user/session.slice                                   27397
+usr/lib/systemd/user/gnome-session-manager.target                    27396
+usr/lib/systemd/user/gnome-session-failed.target                     27395
+usr/lib/systemd/user/gnome-session-failed.service                    27394
+usr/lib/systemd/user/org.gnome.Shell-disable-extensions.service      27393
+usr/lib/systemd/user/org.gnome.Shell@wayland.service                 27392
+usr/lib/systemd/user/org.gnome.SettingsDaemon.XSettings.target       27391
+usr/lib/systemd/user/org.gnome.SettingsDaemon.XSettings.service      27390
+usr/lib/systemd/user/gnome-session-x11-services-ready.target         27389
+usr/lib/systemd/user/gnome-session-x11-services.target               27388
+usr/lib/systemd/user/org.gnome.SettingsDaemon.Wacom.target           27387
+usr/lib/systemd/user/org.gnome.SettingsDaemon.Wacom.service          27386
+usr/lib/systemd/user/org.gnome.SettingsDaemon.UsbProtection.target   27385
+usr/lib/systemd/user/org.gnome.SettingsDaemon.UsbProtection.service  27384
+usr/lib/systemd/user/org.gnome.SettingsDaemon.Sound.target           27383
+usr/lib/systemd/user/org.gnome.SettingsDaemon.Sound.service          27382
+usr/lib/systemd/user/org.gnome.SettingsDaemon.Smartcard.target       27381
+usr/lib/systemd/user/org.gnome.SettingsDaemon.Smartcard.service      27380
+usr/lib/systemd/user/org.gnome.SettingsDaemon.Sharing.target         27379
+usr/lib/systemd/user/org.gnome.SettingsDaemon.Sharing.service        27378
+usr/lib/systemd/user/org.gnome.SettingsDaemon.ScreensaverProxy.target 27377
+usr/lib/systemd/user/org.gnome.SettingsDaemon.ScreensaverProxy.service 27376
+usr/lib/systemd/user/org.gnome.SettingsDaemon.Rfkill.target          27375
+usr/lib/systemd/user/org.gnome.SettingsDaemon.Rfkill.service         27374
+usr/lib/systemd/user/org.gnome.SettingsDaemon.PrintNotifications.target 27373
+usr/lib/systemd/user/org.gnome.SettingsDaemon.PrintNotifications.service 27372
+usr/lib/systemd/user/org.gnome.SettingsDaemon.Power.target           27371
+usr/lib/systemd/user/org.gnome.SettingsDaemon.Power.service          27370
+usr/lib/systemd/user/org.gnome.SettingsDaemon.MediaKeys.target       27369
+usr/lib/systemd/user/org.gnome.SettingsDaemon.MediaKeys.service      27368
+usr/lib/systemd/user/org.gnome.SettingsDaemon.Keyboard.target        27367
+usr/lib/systemd/user/org.gnome.SettingsDaemon.Keyboard.service       27366
+usr/lib/systemd/user/org.gnome.SettingsDaemon.Housekeeping.target    27365
+usr/lib/systemd/user/org.gnome.SettingsDaemon.Housekeeping.service   27364
+usr/lib/systemd/user/org.gnome.SettingsDaemon.Datetime.target        27363
+usr/lib/systemd/user/org.gnome.SettingsDaemon.Datetime.service       27362
+usr/lib/systemd/user/org.gnome.SettingsDaemon.Color.target           27361
+usr/lib/systemd/user/org.gnome.SettingsDaemon.Color.service          27360
+usr/lib/systemd/user/org.gnome.SettingsDaemon.A11ySettings.target    27359
+usr/lib/systemd/user/org.gnome.SettingsDaemon.A11ySettings.service   27358
+usr/lib/systemd/user/gnome-session-manager@.service                  27357
+usr/lib/systemd/user/graphical-session.target                        27356
+usr/lib/systemd/user/gnome-session-shutdown.target                   27355
+usr/lib/systemd/user/gnome-session-restart-dbus.service              27354
+usr/libexec/gnome-session-ctl                                        27352
+usr/lib/openssh/agent-launch                                         27350
+usr/share/gnome-session/sessions/gnome.session                       27346
+usr/lib/systemd/user/gnome-early-initialization.target               27343
+usr/lib/systemd/user/tails-configure-keyboard.service                27342
+usr/lib/systemd/user/tails-add-GNOME-bookmarks.service               27341
+usr/lib/systemd/user/systemd-tmpfiles-setup.service                  27340
+bin/systemd-tmpfiles                                                 27337
+usr/share/user-tmpfiles.d/tor-browser-directory.conf                 27336
+usr/local/lib/tails-configure-keyboard                               27334
+usr/local/lib/add-GNOME-bookmarks                                    27332
+usr/local/lib/tails-shell-library/libgnome-bookmarks.sh              27331
+usr/bin/gio                                                          27329
+usr/bin/gnome-keyring-daemon                                         27324
+usr/bin/start-pulseaudio-x11                                         27316
+usr/bin/xdg-user-dirs-update                                         27312
+etc/xdg/user-dirs.conf                                               27308
+etc/xdg/user-dirs.defaults                                           27307
+etc/dconf/profile/ibus                                               27273
+usr/lib/systemd/user/xdg-permission-store.service                    27272
+usr/share/gnome-shell/search-providers/gnome-control-center-search-provider.ini 27268
+usr/share/gnome-shell/search-providers/gnome-terminal-search-provider.ini 27267
+usr/share/gnome-shell/search-providers/org.gnome.Calculator-search-provider.ini 27266
+usr/share/gnome-shell/search-providers/org.gnome.Nautilus.search-provider.ini 27265
+usr/share/gnome-shell/extensions/apps-menu@gnome-shell-extensions.gcampax.github.com/metadata.json 27264
+usr/share/gnome-shell/extensions/apps-menu@gnome-shell-extensions.gcampax.github.com/extension.js 27263
+usr/lib/x86_64-linux-gnu/girepository-1.0/GMenu-3.0.typelib          27262
+usr/share/gnome-shell/extensions/apps-menu@gnome-shell-extensions.gcampax.github.com/stylesheet.css 27261
+usr/lib/x86_64-linux-gnu/libgnome-menu-3.so.0.0.1                    27260
+etc/xdg/menus/gnome-applications.menu                                27259
+etc/xdg/menus/applications-merged/Tails.menu                         27258
+usr/share/gnome-shell/extensions/auto-move-windows@gnome-shell-extensions.gcampax.github.com/metadata.json 27257
+usr/share/gnome-shell/extensions/date@tails.boum.org/metadata.json   27256
+usr/share/gnome-shell/extensions/date@tails.boum.org/extension.js    27255
+usr/local/lib/tails-get-date                                         27254
+usr/lib/python3.9/zoneinfo/__init__.py                               27249
+usr/lib/python3.9/zoneinfo/_tzpath.py                                27247
+usr/lib/python3.9/_sysconfigdata__x86_64-linux-gnu.py                27244
+usr/lib/python3.9/zoneinfo/_common.py                                27242
+usr/lib/python3.9/lib-dynload/_zoneinfo.cpython-39-x86_64-linux-gnu.so 27240
+usr/share/gnome-shell/extensions/desktop-icons@csoriano/metadata.json 27230
+usr/share/gnome-shell/extensions/desktop-icons@csoriano/extension.js 27229
+usr/share/gnome-shell/extensions/desktop-icons@csoriano/prefs.js     27228
+usr/share/gnome-shell/extensions/desktop-icons@csoriano/desktopManager.js 27227
+usr/share/gnome-shell/extensions/desktop-icons@csoriano/desktopGrid.js 27226
+usr/share/gnome-shell/extensions/desktop-icons@csoriano/createFolderDialog.js 27225
+usr/share/gnome-shell/extensions/desktop-icons@csoriano/desktopIconsUtil.js 27224
+usr/share/gnome-shell/extensions/desktop-icons@csoriano/fileItem.js  27223
+usr/share/gnome-shell/extensions/desktop-icons@csoriano/dbusUtils.js 27222
+usr/share/gnome-shell/extensions/desktop-icons@csoriano/templateManager.js 27221
+usr/share/gnome-shell/extensions/desktop-icons@csoriano/stylesheet.css 27220
+usr/share/gnome-shell/extensions/drive-menu@gnome-shell-extensions.gcampax.github.com/metadata.json 27219
+usr/share/gnome-shell/extensions/horizontal-workspaces@gnome-shell-extensions.gcampax.github.com/metadata.json 27218
+usr/share/gnome-shell/extensions/launch-new-instance@gnome-shell-extensions.gcampax.github.com/metadata.json 27217
+usr/share/gnome-shell/extensions/native-window-placement@gnome-shell-extensions.gcampax.github.com/metadata.json 27216
+usr/share/gnome-shell/extensions/places-menu@gnome-shell-extensions.gcampax.github.com/metadata.json 27215
+usr/share/gnome-shell/extensions/places-menu@gnome-shell-extensions.gcampax.github.com/extension.js 27214
+usr/share/gnome-shell/extensions/places-menu@gnome-shell-extensions.gcampax.github.com/placeDisplay.js 27213
+usr/share/gnome-shell/extensions/places-menu@gnome-shell-extensions.gcampax.github.com/stylesheet.css 27212
+usr/share/gnome-shell/extensions/screenshot-window-sizer@gnome-shell-extensions.gcampax.github.com/metadata.json 27211
+usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/metadata.json 27210
+usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js 27209
+usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/lib.js 27208
+usr/share/gnome-shell/extensions/torstatus@tails.boum.org/metadata.json 27207
+usr/share/gnome-shell/extensions/torstatus@tails.boum.org/extension.js 27206
+usr/share/gnome-shell/extensions/user-theme@gnome-shell-extensions.gcampax.github.com/metadata.json 27205
+usr/share/gnome-shell/extensions/window-list@gnome-shell-extensions.gcampax.github.com/metadata.json 27204
+usr/share/gnome-shell/extensions/window-list@gnome-shell-extensions.gcampax.github.com/extension.js 27203
+usr/share/gnome-shell/extensions/window-list@gnome-shell-extensions.gcampax.github.com/windowPicker.js 27202
+usr/share/gnome-shell/extensions/window-list@gnome-shell-extensions.gcampax.github.com/workspaceIndicator.js 27201
+usr/share/gnome-shell/extensions/window-list@gnome-shell-extensions.gcampax.github.com/stylesheet.css 27200
+usr/share/gnome-shell/extensions/windowsNavigator@gnome-shell-extensions.gcampax.github.com/metadata.json 27199
+usr/share/gnome-shell/extensions/workspace-indicator@gnome-shell-extensions.gcampax.github.com/metadata.json 27198
+usr/share/icons/Adwaita/16x16/status/network-wired-acquiring-symbolic.symbolic.png 27185
+usr/share/icons/Adwaita/16x16/status/network-wired-no-route-symbolic.symbolic.png 27174
+usr/libexec/gsd-disk-utility-notify                                  27171
+usr/share/icons/Adwaita/16x16/devices/network-wired-symbolic.symbolic.png 27170
+usr/bin/xdg-user-dirs-gtk-update                                     27167
+usr/sbin/ferm                                                        27164
+usr/libexec/evolution-data-server/evolution-alarm-notify             27163
+usr/lib/x86_64-linux-gnu/libedataserverui-1.2.so.2.0.0               27160
+usr/lib/x86_64-linux-gnu/libecal-2.0.so.1.0.0                        27159
+usr/local/lib/start-systemd-desktop-target                           27158
+usr/local/lib/end-profile                                            27155
+usr/bin/xargs                                                        27154
+usr/lib/x86_64-linux-gnu/libical-glib.so.3.0.9                       27153
+usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.25.0.0                27152
+usr/libexec/gnome-shell-overrides-migration.sh                       27149
+usr/share/ibus-mozc/ibus-mozc-gnome-initial-setup.sh                 27146
+usr/lib/x86_64-linux-gnu/libgcr-ui-3.so.1.0.0                        27145
+usr/lib/x86_64-linux-gnu/libwebkit2gtk-4.0.so.37.57.8                27144
+usr/lib/x86_64-linux-gnu/perl-base/File/Glob.pm                      27143
+usr/lib/x86_64-linux-gnu/perl-base/auto/File/Glob/Glob.so            27142
+etc/ferm/ferm.conf                                                   27141
+usr/lib/systemd/user/desktop.target                                  27140
+usr/lib/x86_64-linux-gnu/xtables/libipt_REDIRECT.so                  27139
+usr/lib/x86_64-linux-gnu/xtables/libxt_udp.so                        27138
+usr/lib/systemd/user/tails-wait-until-tor-has-bootstrapped.service   27137
+usr/lib/systemd/user/tails-virt-notify-user.service                  27136
+usr/lib/systemd/user/tails-upgrade-frontend.service                  27135
+usr/lib/systemd/user/tails-security-check.service                    27134
+usr/lib/systemd/user/tails-ibus-proxy.service                        27133
+usr/lib/systemd/user/tails-htpdate-notify-user.service               27132
+usr/lib/x86_64-linux-gnu/xtables/libxt_multiport.so                  27131
+usr/lib/x86_64-linux-gnu/xtables/libxt_owner.so                      27130
+usr/lib/x86_64-linux-gnu/xtables/libipt_LOG.so                       27129
+usr/lib/x86_64-linux-gnu/libcamel-1.2.so.62.0.0                      27128
+usr/lib/x86_64-linux-gnu/xtables/libip6t_LOG.so                      27127
+usr/lib/x86_64-linux-gnu/xtables/libip6t_REJECT.so                   27126
+usr/bin/seq                                                          27125
+usr/lib/systemd/user/tails-create-persistent-storage.service         27124
+etc/services                                                         27123
+usr/lib/systemd/user/tails-additional-software-install.service       27122
+usr/lib/systemd/user/tails-a11y-bus-proxy.service                    27121
+usr/lib/systemd/user/at-spi-dbus-bus.service                         27120
+usr/lib/x86_64-linux-gnu/libical.so.3.0.9                            27119
+usr/local/lib/tails-virt-notify-user                                 27114
+usr/local/lib/tails-ibus-proxy                                       27112
+usr/local/lib/tails-htp-notify-user                                  27110
+usr/lib/x86_64-linux-gnu/libgdata.so.22.5.2                          27109
+lib/systemd/system/tails-additional-software-install.service         27108
+usr/local/lib/tails-a11y-bus-proxy                                   27105
+usr/lib/x86_64-linux-gnu/libwpe-1.0.so.1.5.1                         27104
+usr/lib/x86_64-linux-gnu/libWPEBackend-fdo-1.0.so.1.6.3              27103
+usr/lib/x86_64-linux-gnu/libjavascriptcoregtk-4.0.so.18.21.8         27102
+etc/network/if-up.d/ethtool                                          27097
+usr/lib/python3/dist-packages/dbus/__init__.py                       27096
+usr/lib/x86_64-linux-gnu/perl/5.32.1/Data/Dumper.pm                  27095
+usr/lib/python3/dist-packages/dbus/_compat.py                        27094
+usr/lib/x86_64-linux-gnu/perl/5.32.1/auto/Data/Dumper/Dumper.so      27090
+usr/bin/ibus                                                         27089
+usr/local/lib/tails-dbus-proxy                                       27084
+usr/share/perl5/Desktop/Notify.pm                                    27083
+usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus.pm                      27082
+usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Net/DBus/DBus.so            27081
+usr/lib/python3/dist-packages/dbus/exceptions.py                     27080
+usr/lib/python3/dist-packages/dbus/types.py                          27079
+usr/lib/python3/dist-packages/_dbus_bindings.cpython-39-x86_64-linux-gnu.so 27078
+usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Binding/Bus.pm          27076
+usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Binding/Connection.pm   27075
+usr/lib/python3/dist-packages/dbus/_dbus.py                          27074
+usr/lib/python3/dist-packages/dbus/bus.py                            27072
+usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Binding/Message/MethodCall.pm 27071
+usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Binding/Message.pm      27070
+usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Binding/Iterator.pm     27069
+usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Binding/Message/Signal.pm 27068
+usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Binding/Message/MethodReturn.pm 27067
+usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Binding/Message/Error.pm 27066
+usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Binding/PendingCall.pm  27054
+usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Service.pm              27053
+usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/RemoteService.pm        27052
+usr/lib/x86_64-linux-gnu/libwoff2dec.so.1.0.2                        27051
+etc/wpa_supplicant/ifupdown.sh                                       27050
+etc/wpa_supplicant/functions.sh                                      27049
+usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/RemoteObject.pm         27047
+usr/lib/python3/dist-packages/dbus/connection.py                     27045
+usr/lib/python3/dist-packages/dbus/lowlevel.py                       27041
+usr/lib/python3/dist-packages/dbus/proxies.py                        27040
+usr/lib/x86_64-linux-gnu/girepository-1.0/Notify-0.7.typelib         27039
+usr/lib/python3/dist-packages/dbus/_expat_introspect_parser.py       27036
+usr/lib/x86_64-linux-gnu/libharfbuzz-icu.so.0.20704.0                27035
+usr/lib/x86_64-linux-gnu/libwebpdemux.so.2.0.3                       27033
+usr/lib/x86_64-linux-gnu/libenchant-2.so.2.2.15                      27032
+usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Binding/Introspector.pm 27031
+usr/lib/x86_64-linux-gnu/libhyphen.so.0.3.0                          27030
+usr/lib/x86_64-linux-gnu/libXt.so.6.0.0                              27029
+usr/bin/nohup                                                        27028
+usr/lib/x86_64-linux-gnu/libmanette-0.2.so.0                         27027
+usr/local/bin/tails-ask-again                                        27026
+usr/share/perl5/XML/Twig.pm                                          27025
+usr/bin/xdg-dbus-proxy                                               27024
+usr/lib/x86_64-linux-gnu/libssl3.so                                  27023
+usr/lib/x86_64-linux-gnu/libwoff2common.so.1.0.2                     27022
+usr/share/perl/5.32.1/UNIVERSAL.pm                                   27021
+usr/bin/systemd-detect-virt                                          27020
+usr/lib/x86_64-linux-gnu/perl-base/utf8.pm                           27019
+usr/lib/x86_64-linux-gnu/perl5/5.32/XML/Parser.pm                    27018
+usr/lib/x86_64-linux-gnu/perl5/5.32/XML/Parser/Expat.pm              27017
+usr/lib/x86_64-linux-gnu/perl5/5.32/auto/XML/Parser/Expat/Expat.so   27015
+usr/share/fonts/opentype/noto/NotoSansCJK-Regular.ttc                27013
+usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/ASyncReply.pm           27010
+usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Annotation.pm           27009
+usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Test/MockConnection.pm  27008
+usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Error.pm                27007
+usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Test/MockMessage.pm     27006
+usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Test/MockIterator.pm    27005
+usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Binding/Value.pm        27004
+usr/share/perl5/Desktop/Notify/Notification.pm                       27003
+usr/share/perl5/Class/Accessor.pm                                    27002
+usr/lib/x86_64-linux-gnu/perl5/5.32/Sub/Name.pm                      27001
+usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Sub/Name/Name.so            27000
+usr/share/perl/5.32.1/English.pm                                     26999
+usr/share/perl5/Locale/TextDomain.pm                                 26998
+usr/share/perl5/Locale/Messages.pm                                   26997
+usr/share/perl5/Locale/gettext_xs.pm                                 26996
+usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Locale/gettext_xs/gettext_xs.so 26995
+usr/share/perl5/File/ShareDir.pm                                     26994
+usr/share/perl5/Class/Inspector.pm                                   26993
+usr/share/perl5/List/MoreUtils.pm                                    26992
+usr/share/perl5/List/MoreUtils/PP.pm                                 26991
+usr/lib/x86_64-linux-gnu/perl5/5.32/List/MoreUtils/XS.pm             26990
+usr/lib/x86_64-linux-gnu/perl5/5.32/auto/List/MoreUtils/XS/XS.so     26989
+usr/share/perl5/Exporter/Tiny.pm                                     26988
+usr/local/lib/run-with-user-env                                      26987
+usr/lib/x86_64-linux-gnu/perl5/5.32/Params/Util.pm                   26986
+usr/lib/x86_64-linux-gnu/perl5/5.32/Params/Util/PP.pm                26985
+sbin/runuser                                                         26984
+usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Params/Util/Util.so         26983
+usr/share/perl5/URI.pm                                               26982
+usr/share/perl5/URI/Escape.pm                                        26981
+etc/pam.d/runuser                                                    26980
+usr/bin/systemd-run                                                  26979
+usr/share/X11/xkb/symbols/kr                                         26978
+usr/share/icons/hicolor/scalable/status/tor-disconnected-symbolic.svg 26977
+usr/lib/systemd/user/evolution-source-registry.service               26971
+usr/libexec/evolution-source-registry                                26969
+usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0                   26968
+usr/lib/x86_64-linux-gnu/libdb-5.3.so                                26967
+usr/local/lib/dump-user-env                                          26965
+usr/lib/python3/dist-packages/tailslib/userenv.py                    26964
+usr/lib/evolution-data-server/registry-modules/module-cache-reaper.so 26963
+usr/lib/evolution-data-server/registry-modules/module-gnome-online-accounts.so 26962
+usr/lib/evolution-data-server/registry-modules/module-google-backend.so 26961
+usr/lib/evolution-data-server/registry-modules/module-oauth2-services.so 26960
+usr/lib/evolution-data-server/registry-modules/module-outlook-backend.so 26959
+usr/lib/evolution-data-server/registry-modules/module-secret-monitor.so 26958
+usr/lib/evolution-data-server/registry-modules/module-trust-prompt.so 26957
+usr/local/lib/run-with-env                                           26956
+usr/lib/locale/C.UTF-8/LC_CTYPE                                      26953
+usr/bin/nautilus                                                     26950
+usr/share/icons/Adwaita/16x16/ui/pan-end-symbolic.symbolic.png       26949
+usr/lib/evolution-data-server/registry-modules/module-webdav-backend.so 26948
+usr/lib/evolution-data-server/registry-modules/module-yahoo-backend.so 26947
+usr/lib/evolution-data-server/credential-modules/module-credentials-goa.so 26946
+usr/lib/evolution-data-server/camel-providers/libcamelimapx.urls     26945
+usr/lib/evolution-data-server/camel-providers/libcamellocal.urls     26944
+usr/lib/evolution-data-server/camel-providers/libcamelnntp.urls      26943
+usr/lib/evolution-data-server/camel-providers/libcamelpop3.urls      26942
+usr/lib/evolution-data-server/camel-providers/libcamelsendmail.urls  26941
+usr/lib/evolution-data-server/camel-providers/libcamelsmtp.urls      26940
+usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so    26939
+usr/lib/evolution-data-server/camel-providers/libcamelnntp.so        26938
+usr/lib/evolution-data-server/camel-providers/libcamellocal.so       26937
+usr/lib/x86_64-linux-gnu/libnautilus-extension.so.1.5.0              26936
+usr/lib/x86_64-linux-gnu/libgnome-autoar-0.so.0.0.0                  26933
+usr/libexec/gvfsd-trash                                              26932
+usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so        26931
+usr/lib/evolution-data-server/camel-providers/libcamelpop3.so        26930
+usr/lib/evolution-data-server/camel-providers/libcamelimapx.so       26929
+usr/lib/systemd/user/tca.service                                     26928
+usr/local/bin/tca                                                    26926
+usr/share/thumbnailers/evince.thumbnailer                            26924
+usr/share/thumbnailers/gdk-pixbuf-thumbnailer.thumbnailer            26923
+usr/share/thumbnailers/librsvg.thumbnailer                           26922
+usr/share/thumbnailers/totem.thumbnailer                             26921
+usr/share/zoneinfo/zone.tab                                          26920
+usr/share/zoneinfo/EST                                               26919
+usr/share/zoneinfo/Etc/GMT                                           26918
+usr/share/zoneinfo/MST                                               26917
+usr/share/icons/Adwaita/48x48/places/user-trash.png                  26916
+usr/share/pixmaps/whisperback.svg                                    26915
+usr/share/icons/Adwaita/24x24/emblems/emblem-symbolic-link.png       26914
+usr/share/zoneinfo/posix/EST                                         26913
+usr/share/zoneinfo/posix/Etc/GMT                                     26912
+usr/share/zoneinfo/posix/Etc/UTC                                     26911
+usr/lib/python3/dist-packages/tailslib/greeter.py                    26910
+usr/lib/python3/dist-packages/tailslib/shell.py                      26909
+usr/lib/python3/dist-packages/tailslib/persistence.py                26908
+usr/lib/python3/dist-packages/tailslib/utils.py                      26907
+usr/lib/python3/dist-packages/tca/__init__.py                        26906
+usr/lib/python3/dist-packages/tca/config.py                          26905
+usr/share/zoneinfo/posix/MST                                         26904
+usr/lib/systemd/user/evolution-calendar-factory.service              26903
+usr/libexec/evolution-calendar-factory                               26901
+usr/lib/x86_64-linux-gnu/libedata-cal-2.0.so.1.0.0                   26900
+usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libevince-properties-page.so 26899
+usr/lib/x86_64-linux-gnu/libevdocument3.so.4.0.0                     26898
+usr/lib/x86_64-linux-gnu/libsynctex.so.2.0.0                         26897
+usr/lib/x86_64-linux-gnu/evince/4/backends/comicsdocument.evince-backend 26896
+usr/lib/x86_64-linux-gnu/evince/4/backends/djvudocument.evince-backend 26895
+usr/lib/x86_64-linux-gnu/evince/4/backends/dvidocument.evince-backend 26894
+usr/lib/x86_64-linux-gnu/evince/4/backends/pdfdocument.evince-backend 26893
+usr/lib/x86_64-linux-gnu/evince/4/backends/psdocument.evince-backend 26892
+usr/lib/x86_64-linux-gnu/evince/4/backends/tiffdocument.evince-backend 26891
+usr/lib/x86_64-linux-gnu/evince/4/backends/xpsdocument.evince-backend 26890
+usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libgtkhash-properties-nautilus.so 26889
+usr/lib/evolution-data-server/calendar-backends/libecalbackendcaldav.so 26886
+usr/lib/evolution-data-server/calendar-backends/libecalbackendcontacts.so 26885
+usr/lib/x86_64-linux-gnu/libebook-1.2.so.20.1.3                      26884
+usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.3.0.0              26883
+usr/lib/x86_64-linux-gnu/libb2.so.1.0.4                              26882
+usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.26.0.0                 26881
+usr/lib/x86_64-linux-gnu/libphonenumber.so.8.12                      26880
+usr/lib/evolution-data-server/calendar-backends/libecalbackendfile.so 26879
+usr/lib/evolution-data-server/calendar-backends/libecalbackendgtasks.so 26878
+usr/lib/evolution-data-server/calendar-backends/libecalbackendhttp.so 26877
+usr/lib/evolution-data-server/calendar-backends/libecalbackendweather.so 26876
+usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libnautilus-fileroller.so 26875
+usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libnautilus-image-properties.so 26874
+usr/local/lib/connect-drop                                           26873
+usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libnautilus-python.so 26872
+usr/lib/x86_64-linux-gnu/libpython3.9.so.1.0                         26871
+usr/lib/evolution-data-server/calendar-backends/libecalbackendwebdavnotes.so 26870
+usr/lib/systemd/user/evolution-addressbook-factory.service           26869
+usr/libexec/evolution-addressbook-factory                            26867
+usr/lib/python3/dist-packages/prctl.py                               26866
+usr/lib/evolution-data-server/addressbook-backends/libebookbackendcarddav.so 26865
+usr/lib/evolution-data-server/addressbook-backends/libebookbackendfile.so 26864
+usr/lib/evolution-data-server/addressbook-backends/libebookbackendldap.so 26863
+usr/lib/python3/dist-packages/_prctl.cpython-39-x86_64-linux-gnu.so  26861
+usr/local/lib/tca-portal                                             26860
+usr/bin/bwrap                                                        26858
+usr/lib/python3/dist-packages/tca/application.py                     26855
+usr/lib/x86_64-linux-gnu/girepository-1.0/Nautilus-3.0.typelib       26854
+usr/lib/python3/dist-packages/tinyrpc/__init__.py                    26848
+usr/lib/python3/dist-packages/tinyrpc/protocols/__init__.py          26846
+usr/lib/python3/dist-packages/tinyrpc/exc.py                         26844
+usr/lib/python3/dist-packages/tinyrpc/client.py                      26842
+usr/lib/python3/dist-packages/tinyrpc/protocols/jsonrpc.py           26840
+usr/lib/python3/dist-packages/systemd/__init__.py                    26833
+usr/lib/python3/dist-packages/systemd/daemon.py                      26831
+usr/lib/python3/dist-packages/systemd/_daemon.cpython-39-x86_64-linux-gnu.so 26829
+usr/lib/python3/dist-packages/tailslib/logutils.py                   26828
+usr/lib/python3.9/multiprocessing/queues.py                          26823
+usr/share/nautilus-python/extensions/mat2.py                         26822
+usr/lib/python3.9/lib-dynload/_multiprocessing.cpython-39-x86_64-linux-gnu.so 26813
+usr/lib/python3/dist-packages/libmat2/__init__.py                    26812
+usr/lib/python3.9/multiprocessing/connection.py                      26811
+usr/lib/python3/dist-packages/libmat2/exiftool.py                    26810
+usr/lib/python3.9/multiprocessing/util.py                            26808
+usr/lib/python3/dist-packages/libmat2/abstract.py                    26807
+usr/lib/python3/dist-packages/libmat2/bubblewrap.py                  26805
+usr/lib/python3.9/multiprocessing/synchronize.py                     26804
+usr/lib/python3/dist-packages/libmat2/video.py                       26803
+usr/lib/python3/dist-packages/libmat2/parser_factory.py              26801
+usr/lib/python3.9/multiprocessing/popen_fork.py                      26800
+etc/mime.types                                                       26798
+usr/lib/python3/dist-packages/libmat2/archive.py                     26797
+usr/lib/python3/dist-packages/libmat2/audio.py                       26796
+usr/lib/python3/dist-packages/mutagen/__init__.py                    26795
+usr/lib/python3/dist-packages/mutagen/_util.py                       26794
+usr/lib/python3.9/decimal.py                                         26793
+usr/lib/python3.9/lib-dynload/_decimal.cpython-39-x86_64-linux-gnu.so 26792
+usr/lib/x86_64-linux-gnu/libmpdec.so.2.5.1                           26791
+usr/lib/python3.9/numbers.py                                         26790
+usr/lib/python3/dist-packages/mutagen/_file.py                       26789
+usr/lib/python3/dist-packages/mutagen/_tags.py                       26788
+usr/lib/python3/dist-packages/libmat2/epub.py                        26787
+usr/lib/python3.9/uuid.py                                            26786
+usr/lib/python3.9/lib-dynload/_uuid.cpython-39-x86_64-linux-gnu.so   26785
+usr/lib/python3.9/xml/etree/__init__.py                              26784
+usr/lib/python3.9/xml/etree/ElementTree.py                           26782
+usr/lib/python3.9/xml/etree/ElementPath.py                           26781
+usr/lib/python3/dist-packages/libmat2/office.py                      26780
+usr/lib/python3/dist-packages/libmat2/harmless.py                    26779
+usr/lib/python3/dist-packages/libmat2/images.py                      26778
+usr/lib/python3.9/imghdr.py                                          26777
+usr/lib/python3/dist-packages/libmat2/pdf.py                         26776
+usr/lib/python3.9/distutils/__init__.py                              26775
+usr/lib/python3.9/distutils/version.py                               26774
+usr/lib/x86_64-linux-gnu/girepository-1.0/Poppler-0.18.typelib       26773
+usr/lib/python3/dist-packages/libmat2/torrent.py                     26772
+usr/lib/python3/dist-packages/libmat2/web.py                         26771
+usr/lib/python3.9/html/__init__.py                                   26770
+usr/lib/python3.9/html/entities.py                                   26769
+usr/lib/python3.9/html/parser.py                                     26768
+usr/lib/python3.9/_markupbase.py                                     26767
+usr/share/nautilus-python/extensions/onionshare-nautilus.py          26766
+usr/lib/python3/dist-packages/dbus/mainloop/__init__.py              26765
+usr/share/onionshare/locale/am.json                                  26764
+usr/share/onionshare/locale/ar.json                                  26763
+usr/share/onionshare/locale/bg.json                                  26762
+usr/share/onionshare/locale/bn.json                                  26761
+usr/share/onionshare/locale/ca.json                                  26760
+usr/lib/python3/dist-packages/dbus/mainloop/glib.py                  26759
+usr/share/onionshare/locale/cs.json                                  26758
+usr/share/onionshare/locale/da.json                                  26757
+usr/share/onionshare/locale/de.json                                  26756
+usr/lib/python3/dist-packages/_dbus_glib_bindings.cpython-39-x86_64-linux-gnu.so 26755
+usr/share/onionshare/locale/el.json                                  26754
+usr/share/onionshare/locale/en.json                                  26753
+usr/share/onionshare/locale/eo.json                                  26751
+usr/share/onionshare/locale/es.json                                  26750
+usr/share/onionshare/locale/fa.json                                  26749
+usr/share/onionshare/locale/fi.json                                  26747
+usr/share/onionshare/locale/fr.json                                  26746
+usr/share/onionshare/locale/ga.json                                  26745
+usr/lib/python3/dist-packages/tca/ui/__init__.py                     26744
+usr/share/onionshare/locale/gu.json                                  26743
+usr/share/onionshare/locale/he.json                                  26742
+usr/share/onionshare/locale/hi.json                                  26741
+usr/share/onionshare/locale/hu.json                                  26740
+usr/lib/python3/dist-packages/tca/ui/main_window.py                  26739
+usr/share/onionshare/locale/id.json                                  26738
+usr/share/onionshare/locale/is.json                                  26737
+usr/share/onionshare/locale/it.json                                  26736
+usr/share/onionshare/locale/ja.json                                  26735
+usr/share/onionshare/locale/ka.json                                  26734
+usr/share/onionshare/locale/km.json                                  26733
+usr/lib/python3/dist-packages/pytz/__init__.py                       26732
+usr/share/onionshare/locale/ko.json                                  26731
+usr/lib/python3/dist-packages/pytz/exceptions.py                     26730
+usr/share/onionshare/locale/lg.json                                  26729
+usr/share/onionshare/locale/mk.json                                  26728
+usr/share/onionshare/locale/ms.json                                  26727
+usr/lib/python3/dist-packages/pytz/lazy.py                           26726
+usr/share/onionshare/locale/nb.json                                  26725
+usr/share/onionshare/locale/nl.json                                  26724
+usr/share/onionshare/locale/pa.json                                  26723
+usr/share/onionshare/locale/pl.json                                  26722
+usr/share/onionshare/locale/pt_BR.json                               26721
+usr/lib/python3/dist-packages/pytz/tzinfo.py                         26720
+usr/share/onionshare/locale/pt_PT.json                               26719
+usr/share/onionshare/locale/ro.json                                  26718
+usr/share/onionshare/locale/ru.json                                  26717
+usr/share/onionshare/locale/sl.json                                  26716
+usr/share/onionshare/locale/sn.json                                  26715
+usr/share/onionshare/locale/sr_Latn.json                             26714
+usr/share/onionshare/locale/sv.json                                  26713
+usr/lib/python3/dist-packages/pytz/tzfile.py                         26712
+usr/share/onionshare/locale/sw.json                                  26711
+usr/share/onionshare/locale/te.json                                  26710
+usr/share/onionshare/locale/tr.json                                  26709
+usr/share/onionshare/locale/uk.json                                  26708
+usr/share/onionshare/locale/wo.json                                  26707
+usr/share/onionshare/locale/yo.json                                  26706
+usr/share/onionshare/locale/zh_Hans.json                             26705
+usr/share/onionshare/locale/zh_Hant.json                             26704
+usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libnautilus-sendto.so 26703
+usr/lib/python3/dist-packages/tca/ui/asyncutils.py                   26702
+usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libnautilus-wipe.so 26700
+usr/lib/x86_64-linux-gnu/libgsecuredelete.so.0.1.0                   26699
+usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libterminal-nautilus.so 26695
+usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libtotem-properties-page.so 26693
+usr/lib/python3/dist-packages/tca/torutils.py                        26692
+usr/lib/python3/dist-packages/tca/ui/dialogs.py                      26691
+etc/onion-grater.d/onioncircuits.yml                                 26689
+etc/onion-grater.d/onionshare.yml                                    26688
+etc/onion-grater.d/tor-browser.yml                                   26687
+etc/onion-grater.d/tor-connection-assistant.yml                      26686
+usr/share/tails/tca/tca.css                                          26685
+usr/share/tails/tca/main.ui                                          26684
+lib/systemd/system/htpdate.service                                   26683
+etc/default/htpdate.pools                                            26682
+usr/local/lib/tor_variable                                           26680
+usr/share/icons/Adwaita/16x16/ui/window-minimize-symbolic.symbolic.png 26644
+usr/share/icons/Adwaita/16x16/ui/window-maximize-symbolic.symbolic.png 26643
+usr/share/icons/Adwaita/16x16/ui/window-close-symbolic.symbolic.png  26642
+usr/share/icons/Adwaita/16x16/status/image-missing.png               26640
+usr/share/icons/gnome/16x16/status/dialog-warning.png                26634
+usr/share/icons/Adwaita/16x16/legacy/go-previous.png                 26631
+usr/share/doc/tails/website/about/relays.svg                         26627
+usr/share/icons/Adwaita/24x24/mimetypes/application-x-executable.png 26622
+usr/share/icons/tor-connection.svg                                   26618
+usr/share/doc/tails/website/about/walkie-talkie.svg                  26395
+usr/local/lib/tails-get-network-time                                 26394
+usr/lib/python3/dist-packages/pycurl.cpython-39-x86_64-linux-gnu.so  26392
+usr/lib/python3/dist-packages/tailslib/release.py                    26391
+etc/tails-get-network-time-url                                       26390
+etc/gai.conf                                                         26389
+usr/lib/python3.9/_strptime.py                                       26388
+usr/local/lib/tails-set-date                                         26387
+usr/bin/unshare                                                      26386
+usr/share/fonts/truetype/dejavu/DejaVuSansMono-Bold.ttf              26385
+var/lib/systemd/timers/stamp-e2scrub_all.timer                       26384
+usr/local/lib/tor-pt-configuration-helper                            26377
+usr/local/lib/tails-shell-library/common.sh                          26376
+usr/local/lib/tails-shell-library/tor.sh                             26375
+usr/lib/systemd/user/exit.target                                     26369
+usr/lib/systemd/user/systemd-exit.service                            26367
+usr/share/icons/hicolor/scalable/status/tor-connected-symbolic.svg   26361
+usr/local/sbin/htpdate                                               26359
+usr/share/perl/5.32.1/version.pm                                     26358
+usr/share/tails/tca/default_bridges.txt                              26357
+usr/share/perl/5.32.1/version/regex.pm                               26356
+usr/lib/x86_64-linux-gnu/perl5/5.32/DateTime.pm                      26355
+usr/share/perl5/namespace/autoclean.pm                               26354
+usr/share/perl5/B/Hooks/EndOfScope.pm                                26353
+usr/share/perl5/Module/Implementation.pm                             26352
+usr/share/perl5/Module/Runtime.pm                                    26351
+usr/share/perl5/Try/Tiny.pm                                          26350
+usr/lib/x86_64-linux-gnu/perl/5.32.1/Sub/Util.pm                     26349
+usr/share/perl5/B/Hooks/EndOfScope/XS.pm                             26348
+usr/lib/x86_64-linux-gnu/perl5/5.32/Variable/Magic.pm                26347
+usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Variable/Magic/Magic.so     26346
+usr/share/perl5/Sub/Exporter/Progressive.pm                          26345
+usr/share/perl5/namespace/clean.pm                                   26344
+usr/share/perl5/Package/Stash.pm                                     26343
+usr/lib/x86_64-linux-gnu/perl5/5.32/Package/Stash/XS.pm              26342
+usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Package/Stash/XS/XS.so      26341
+usr/share/perl5/namespace/clean/_Util.pm                             26340
+usr/lib/x86_64-linux-gnu/perl5/5.32/DateTime/Duration.pm             26339
+usr/lib/x86_64-linux-gnu/perl5/5.32/DateTime/Helpers.pm              26338
+usr/lib/x86_64-linux-gnu/perl5/5.32/DateTime/Types.pm                26337
+usr/share/perl5/Specio/Exporter.pm                                   26336
+usr/share/perl5/Specio/Helpers.pm                                    26335
+usr/lib/x86_64-linux-gnu/perl5/5.32/XString.pm                       26334
+usr/lib/x86_64-linux-gnu/perl5/5.32/auto/XString/XString.so          26333
+usr/share/perl5/Specio/Registry.pm                                   26332
+usr/share/perl5/Specio.pm                                            26331
+usr/share/perl5/Specio/Declare.pm                                    26330
+usr/share/perl5/Specio/Coercion.pm                                   26329
+usr/share/perl5/Specio/OO.pm                                         26328
+usr/share/perl5/MRO/Compat.pm                                        26327
+usr/lib/x86_64-linux-gnu/perl/5.32.1/mro.pm                          26326
+usr/lib/x86_64-linux-gnu/perl/5.32.1/auto/mro/mro.so                 26325
+usr/share/perl5/Role/Tiny.pm                                         26324
+usr/share/perl5/Specio/PartialDump.pm                                26323
+usr/share/perl5/Specio/TypeChecks.pm                                 26322
+usr/share/perl5/Role/Tiny/With.pm                                    26321
+usr/share/perl5/Specio/Role/Inlinable.pm                             26320
+usr/share/perl5/Eval/Closure.pm                                      26319
+usr/share/perl5/Specio/Constraint/Simple.pm                          26318
+usr/share/perl5/Specio/Constraint/Role/Interface.pm                  26317
+usr/share/perl5/Specio/Exception.pm                                  26316
+usr/share/perl5/Devel/StackTrace.pm                                  26315
+usr/share/perl5/Devel/StackTrace/Frame.pm                            26314
+usr/share/perl5/Specio/DeclaredAt.pm                                 26313
+usr/share/perl5/Specio/Library/Builtins.pm                           26312
+usr/share/perl5/Specio/Constraint/Parameterizable.pm                 26311
+usr/share/perl5/Specio/Constraint/Parameterized.pm                   26310
+usr/share/perl5/Specio/Library/Numeric.pm                            26309
+usr/share/perl5/Specio/Library/String.pm                             26308
+usr/lib/x86_64-linux-gnu/perl5/5.32/Sub/Identify.pm                  26306
+usr/local/bin/tails-security-check                                   26305
+usr/local/bin/tails-upgrade-frontend-wrapper                         26303
+usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Sub/Identify/Identify.so    26302
+usr/share/perl5/Specio/Constraint/AnyCan.pm                          26301
+usr/share/perl5/Specio/Constraint/Role/CanType.pm                    26300
+usr/share/perl5/Specio/Constraint/ObjectIsa.pm                       26299
+usr/share/perl5/Specio/Constraint/Role/IsaType.pm                    26298
+usr/share/perl5/Specio/Constraint/Enum.pm                            26297
+usr/share/perl5/Specio/Constraint/Union.pm                           26296
+usr/share/perl5/Carp/Assert/More.pm                                  26295
+usr/share/perl5/Specio/Constraint/ObjectCan.pm                       26294
+usr/share/perl5/Carp/Assert.pm                                       26293
+usr/share/perl/5.32.1/Fatal.pm                                       26291
+usr/share/perl5/Params/ValidationCompiler.pm                         26290
+usr/share/perl5/Params/ValidationCompiler/Compiler.pm                26289
+usr/share/perl5/Params/ValidationCompiler/Exceptions.pm              26288
+usr/share/perl/5.32.1/Tie/RefHash.pm                                 26287
+usr/share/perl5/Exception/Class.pm                                   26286
+usr/share/perl5/Exception/Class/Base.pm                              26285
+usr/share/perl5/Class/Data/Inheritable.pm                            26284
+usr/lib/x86_64-linux-gnu/perl-base/Config_heavy.pl                   26281
+usr/lib/x86_64-linux-gnu/perl/5.32.1/B.pm                            26280
+usr/lib/x86_64-linux-gnu/perl/5.32.1/auto/B/B.so                     26279
+usr/lib/x86_64-linux-gnu/perl5/5.32/Class/XSAccessor.pm              26278
+usr/lib/x86_64-linux-gnu/perl5/5.32/Class/XSAccessor/Heavy.pm        26276
+usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Class/XSAccessor/XSAccessor.so 26275
+usr/lib/x86_64-linux-gnu/perl-base/Config_git.pl                     26273
+usr/share/perl/5.32.1/autodie/Util.pm                                26272
+usr/share/perl/5.32.1/autodie/Scope/GuardStack.pm                    26271
+usr/share/perl/5.32.1/autodie/Scope/Guard.pm                         26270
+usr/share/perl5/DateTime/Locale.pm                                   26269
+usr/share/perl5/DateTime/Locale/Data.pm                              26268
+usr/share/perl5/DateTime/Locale/FromData.pm                          26267
+usr/share/perl5/DateTime/Locale/Util.pm                              26266
+usr/share/perl5/DateTime/TimeZone.pm                                 26264
+usr/share/perl5/DateTime/TimeZone/Catalog.pm                         26263
+usr/share/perl5/DateTime/TimeZone/Floating.pm                        26262
+usr/share/perl5/Class/Singleton.pm                                   26261
+usr/share/perl5/DateTime/TimeZone/OffsetOnly.pm                      26260
+usr/share/perl5/DateTime/TimeZone/UTC.pm                             26259
+usr/share/perl5/DateTime/TimeZone/Local.pm                           26258
+usr/share/perl5/DateTime/TimeZone/OlsonDB/Change.pm                  26257
+usr/lib/x86_64-linux-gnu/perl-base/integer.pm                        26256
+usr/local/share/perl/5.32.1/Tails/Download/HTTPS.pm                  26255
+usr/lib/x86_64-linux-gnu/perl5/5.32/auto/DateTime/DateTime.so        26254
+usr/lib/x86_64-linux-gnu/perl5/5.32/DateTime/Infinite.pm             26253
+usr/share/perl5/Moo/sification.pm                                    26252
+usr/share/perl5/Moo/_strictures.pm                                   26251
+usr/share/perl5/Moo.pm                                               26250
+usr/share/perl5/Moo/_mro.pm                                          26249
+usr/share/perl5/Moo/_Utils.pm                                        26248
+usr/share/perl5/Moo/HandleMoose/_TypeMap.pm                          26247
+usr/share/perl5/Moo/Object.pm                                        26246
+usr/share/perl5/DateTime/Format/DateParse.pm                         26245
+usr/share/perl5/strictures.pm                                        26244
+usr/share/perl/5.32.1/autodie.pm                                     26243
+usr/share/perl5/IPC/System/Simple.pm                                 26242
+usr/share/perl/5.32.1/autodie/exception/system.pm                    26241
+usr/share/perl/5.32.1/autodie/exception.pm                           26240
+usr/lib/x86_64-linux-gnu/perl5/5.32/Function/Parameters.pm           26239
+usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Function/Parameters/Parameters.so 26238
+usr/share/perl5/Date/Parse.pm                                        26237
+usr/share/perl5/Types/Standard.pm                                    26236
+usr/share/perl5/Type/Library.pm                                      26235
+usr/share/perl/5.32.1/Time/Local.pm                                  26234
+usr/share/perl5/Eval/TypeTiny.pm                                     26233
+usr/share/perl5/Time/Zone.pm                                         26232
+usr/share/perl5/Type/Tiny.pm                                         26231
+usr/share/perl5/Types/TypeTiny.pm                                    26230
+usr/lib/x86_64-linux-gnu/perl5/5.32/Type/Tiny/XS.pm                  26229
+usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Type/Tiny/XS/XS.so          26228
+usr/lib/x86_64-linux-gnu/perl/5.32.1/File/Spec/Functions.pm          26227
+usr/share/perl5/Getopt/Long/Descriptive.pm                           26226
+usr/lib/x86_64-linux-gnu/perl5/5.32/Params/Validate.pm               26225
+usr/lib/x86_64-linux-gnu/perl5/5.32/Params/Validate/Constants.pm     26224
+usr/lib/x86_64-linux-gnu/perl5/5.32/Params/Validate/XS.pm            26223
+usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Params/Validate/XS/XS.so    26222
+usr/share/perl5/Getopt/Long/Descriptive/Opts.pm                      26221
+usr/share/perl5/Getopt/Long/Descriptive/Usage.pm                     26220
+usr/share/perl5/Sub/Exporter/Util.pm                                 26219
+usr/share/perl5/Data/OptList.pm                                      26218
+usr/share/perl5/Type/Coercion.pm                                     26217
+usr/share/perl5/Sub/Install.pm                                       26216
+usr/share/perl5/Sub/Exporter.pm                                      26215
+usr/share/perl5/IPC/Run.pm                                           26214
+usr/share/perl5/IPC/Run/Debug.pm                                     26213
+usr/share/perl5/IPC/Run/IO.pm                                        26212
+usr/share/perl5/IPC/Run/Timer.pm                                     26211
+usr/lib/x86_64-linux-gnu/perl5/5.32/WWW/Curl/Easy.pm                 26210
+usr/lib/x86_64-linux-gnu/perl5/5.32/WWW/Curl.pm                      26209
+usr/lib/x86_64-linux-gnu/perl5/5.32/auto/WWW/Curl/Curl.so            26208
+usr/share/perl/5.32.1/open.pm                                        26207
+usr/share/perl5/String/Errf.pm                                       26206
+usr/share/perl5/String/Formatter.pm                                  26205
+usr/lib/x86_64-linux-gnu/perl/5.32.1/Time/Piece.pm                   26204
+usr/lib/x86_64-linux-gnu/perl/5.32.1/Time/Seconds.pm                 26203
+usr/lib/x86_64-linux-gnu/perl/5.32.1/auto/Time/Piece/Piece.so        26202
+usr/lib/x86_64-linux-gnu/perl/5.32.1/threads.pm                      26201
+usr/lib/x86_64-linux-gnu/perl/5.32.1/auto/threads/threads.so         26200
+usr/share/perl5/Method/Generate/Constructor.pm                       26199
+usr/share/perl5/Sub/Quote.pm                                         26198
+usr/share/perl5/Sub/Defer.pm                                         26197
+usr/share/perl5/Method/Generate/Accessor.pm                          26196
+usr/share/perl5/XML/Atom.pm                                          26195
+usr/lib/x86_64-linux-gnu/perl5/5.32/XML/LibXML.pm                    26194
+usr/lib/x86_64-linux-gnu/perl5/5.32/XML/LibXML/Error.pm              26193
+usr/lib/x86_64-linux-gnu/perl5/5.32/XML/LibXML/NodeList.pm           26192
+usr/lib/x86_64-linux-gnu/perl5/5.32/XML/LibXML/Boolean.pm            26191
+usr/lib/x86_64-linux-gnu/perl5/5.32/XML/LibXML/Number.pm             26190
+usr/lib/x86_64-linux-gnu/perl5/5.32/XML/LibXML/Literal.pm            26189
+usr/lib/x86_64-linux-gnu/perl5/5.32/XML/LibXML/XPathContext.pm       26188
+usr/lib/x86_64-linux-gnu/perl5/5.32/auto/XML/LibXML/LibXML.so        26187
+usr/local/lib/https-get-expired                                      26186
+usr/lib/x86_64-linux-gnu/perl5/5.32/XML/LibXML/AttributeHash.pm      26185
+usr/share/perl5/XML/SAX/Exception.pm                                 26184
+usr/share/perl5/XML/Atom/ErrorHandler.pm                             26183
+usr/share/perl5/XML/Atom/Feed.pm                                     26182
+usr/share/perl5/XML/Atom/Thing.pm                                    26181
+usr/share/perl5/XML/Atom/Base.pm                                     26180
+usr/share/perl5/XML/Atom/Util.pm                                     26179
+usr/share/perl5/XML/Atom/Category.pm                                 26178
+usr/share/perl5/XML/Atom/Link.pm                                     26177
+usr/share/perl5/LWP/UserAgent.pm                                     26176
+usr/share/perl5/LWP/MemberMixin.pm                                   26175
+usr/share/perl5/HTTP/Request.pm                                      26174
+usr/share/perl5/HTTP/Message.pm                                      26173
+usr/share/perl5/HTTP/Headers.pm                                      26172
+usr/lib/x86_64-linux-gnu/perl5/5.32/Clone.pm                         26171
+usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Clone/Clone.so              26170
+usr/share/perl5/HTTP/Response.pm                                     26169
+usr/share/perl5/HTTP/Status.pm                                       26168
+usr/share/perl5/HTTP/Date.pm                                         26167
+usr/share/perl5/LWP.pm                                               26166
+usr/share/perl5/LWP/Protocol.pm                                      26165
+usr/share/perl5/XML/Atom/Entry.pm                                    26164
+usr/lib/x86_64-linux-gnu/perl/5.32.1/MIME/Base64.pm                  26163
+usr/lib/x86_64-linux-gnu/perl/5.32.1/auto/MIME/Base64/Base64.so      26162
+usr/share/perl5/XML/Atom/Person.pm                                   26161
+usr/share/perl5/XML/Atom/Content.pm                                  26160
+usr/share/ca-certificates/mozilla/Entrust_Root_Certification_Authority_-_G2.crt 26159
+usr/share/ca-certificates/mozilla/Staat_der_Nederlanden_EV_Root_CA.crt 26158
+usr/share/ca-certificates/mozilla/GlobalSign_Root_CA_-_R3.crt        26157
+usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_2_G3.crt          26156
+usr/share/ca-certificates/mozilla/SSL.com_EV_Root_Certification_Authority_RSA_R2.crt 26155
+usr/share/ca-certificates/mozilla/QuoVadis_Root_CA.crt               26154
+usr/share/ca-certificates/mozilla/Starfield_Services_Root_Certificate_Authority_-_G2.crt 26153
+usr/share/ca-certificates/mozilla/GTS_Root_R3.crt                    26152
+usr/share/ca-certificates/mozilla/CFCA_EV_ROOT.crt                   26151
+usr/share/ca-certificates/mozilla/SSL.com_Root_Certification_Authority_ECC.crt 26150
+usr/share/ca-certificates/mozilla/Global_Chambersign_Root_-_2008.crt 26149
+usr/share/ca-certificates/mozilla/UCA_Extended_Validation_Root.crt   26148
+usr/share/ca-certificates/mozilla/GDCA_TrustAUTH_R5_ROOT.crt         26147
+usr/share/ca-certificates/mozilla/GTS_Root_R1.crt                    26146
+usr/share/ca-certificates/mozilla/Entrust_Root_Certification_Authority_-_EC1.crt 26145
+usr/share/ca-certificates/mozilla/GeoTrust_Primary_Certification_Authority_-_G2.crt 26144
+usr/share/ca-certificates/mozilla/emSign_ECC_Root_CA_-_G3.crt        26143
+usr/share/ca-certificates/mozilla/Hellenic_Academic_and_Research_Institutions_RootCA_2011.crt 26142
+usr/share/ca-certificates/mozilla/SecureSign_RootCA11.crt            26141
+usr/share/ca-certificates/mozilla/GlobalSign_ECC_Root_CA_-_R5.crt    26140
+usr/share/ca-certificates/mozilla/IdenTrust_Public_Sector_Root_CA_1.crt 26139
+usr/share/ca-certificates/mozilla/T-TeleSec_GlobalRoot_Class_2.crt   26138
+usr/share/ca-certificates/mozilla/DigiCert_High_Assurance_EV_Root_CA.crt 26137
+usr/share/ca-certificates/mozilla/emSign_Root_CA_-_G1.crt            26136
+usr/share/ca-certificates/mozilla/CA_Disig_Root_R2.crt               26135
+usr/share/ca-certificates/mozilla/AffirmTrust_Commercial.crt         26134
+usr/share/ca-certificates/mozilla/DST_Root_CA_X3.crt                 26133
+usr/share/ca-certificates/mozilla/Hellenic_Academic_and_Research_Institutions_RootCA_2015.crt 26132
+usr/share/ca-certificates/mozilla/EC-ACC.crt                         26131
+usr/share/ca-certificates/mozilla/DigiCert_Global_Root_CA.crt        26130
+usr/share/ca-certificates/mozilla/Autoridad_de_Certificacion_Firmaprofesional_CIF_A62634068.crt 26129
+usr/share/ca-certificates/mozilla/TrustCor_RootCert_CA-2.crt         26128
+usr/share/ca-certificates/mozilla/Hongkong_Post_Root_CA_1.crt        26127
+usr/share/ca-certificates/mozilla/NAVER_Global_Root_Certification_Authority.crt 26126
+usr/share/ca-certificates/mozilla/Certum_Trusted_Network_CA_2.crt    26125
+usr/share/ca-certificates/mozilla/ISRG_Root_X1.crt                   26124
+usr/share/ca-certificates/mozilla/COMODO_Certification_Authority.crt 26123
+usr/share/ca-certificates/mozilla/emSign_Root_CA_-_C1.crt            26122
+usr/share/ca-certificates/mozilla/Network_Solutions_Certificate_Authority.crt 26121
+usr/share/ca-certificates/mozilla/Certum_Trusted_Network_CA.crt      26120
+usr/share/ca-certificates/mozilla/GlobalSign_Root_CA_-_R2.crt        26119
+usr/share/ca-certificates/mozilla/emSign_ECC_Root_CA_-_C3.crt        26118
+usr/share/ca-certificates/mozilla/Starfield_Root_Certificate_Authority_-_G2.crt 26117
+usr/share/ca-certificates/mozilla/SwissSign_Gold_CA_-_G2.crt         26116
+usr/share/ca-certificates/mozilla/E-Tugra_Certification_Authority.crt 26115
+usr/share/ca-certificates/mozilla/T-TeleSec_GlobalRoot_Class_3.crt   26114
+usr/share/ca-certificates/mozilla/Buypass_Class_2_Root_CA.crt        26113
+usr/share/ca-certificates/mozilla/SwissSign_Silver_CA_-_G2.crt       26112
+usr/share/ca-certificates/mozilla/Staat_der_Nederlanden_Root_CA_-_G3.crt 26111
+usr/share/ca-certificates/mozilla/GlobalSign_Root_CA.crt             26110
+usr/share/ca-certificates/mozilla/TeliaSonera_Root_CA_v1.crt         26109
+usr/share/ca-certificates/mozilla/TrustCor_RootCert_CA-1.crt         26108
+usr/share/ca-certificates/mozilla/Entrust_Root_Certification_Authority_-_G4.crt 26107
+usr/share/ca-certificates/mozilla/TWCA_Global_Root_CA.crt            26106
+usr/share/ca-certificates/mozilla/certSIGN_Root_CA_G2.crt            26105
+usr/share/ca-certificates/mozilla/DigiCert_Global_Root_G2.crt        26104
+usr/share/ca-certificates/mozilla/GTS_Root_R2.crt                    26103
+usr/share/ca-certificates/mozilla/Baltimore_CyberTrust_Root.crt      26102
+usr/share/ca-certificates/mozilla/Hongkong_Post_Root_CA_3.crt        26101
+usr/share/ca-certificates/mozilla/Entrust_Root_Certification_Authority.crt 26100
+usr/share/ca-certificates/mozilla/Amazon_Root_CA_2.crt               26099
+usr/share/ca-certificates/mozilla/SSL.com_Root_Certification_Authority_RSA.crt 26098
+usr/share/ca-certificates/mozilla/XRamp_Global_CA_Root.crt           26097
+usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_1_G3.crt          26096
+usr/share/ca-certificates/mozilla/DigiCert_Trusted_Root_G4.crt       26095
+usr/share/ca-certificates/mozilla/Cybertrust_Global_Root.crt         26094
+usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_3.crt             26093
+usr/share/ca-certificates/mozilla/Hellenic_Academic_and_Research_Institutions_ECC_RootCA_2015.crt 26092
+usr/share/ca-certificates/mozilla/OISTE_WISeKey_Global_Root_GC_CA.crt 26091
+usr/share/ca-certificates/mozilla/TrustCor_ECA-1.crt                 26090
+usr/share/ca-certificates/mozilla/DigiCert_Assured_ID_Root_G3.crt    26089
+usr/share/ca-certificates/mozilla/Microsec_e-Szigno_Root_CA_2009.crt 26088
+usr/share/ca-certificates/mozilla/Amazon_Root_CA_3.crt               26087
+usr/share/ca-certificates/mozilla/certSIGN_ROOT_CA.crt               26086
+usr/share/ca-certificates/mozilla/Microsoft_ECC_Root_Certificate_Authority_2017.crt 26085
+usr/share/ca-certificates/mozilla/Actalis_Authentication_Root_CA.crt 26084
+usr/share/ca-certificates/mozilla/AffirmTrust_Networking.crt         26083
+usr/share/ca-certificates/mozilla/NetLock_Arany_=Class_Gold=_Főtanúsítvány.crt 26082
+usr/share/ca-certificates/mozilla/Trustwave_Global_ECC_P256_Certification_Authority.crt 26081
+usr/share/ca-certificates/mozilla/Sonera_Class_2_Root_CA.crt         26080
+usr/share/ca-certificates/mozilla/AffirmTrust_Premium_ECC.crt        26079
+usr/share/ca-certificates/mozilla/DigiCert_Assured_ID_Root_G2.crt    26078
+usr/share/ca-certificates/mozilla/ACCVRAIZ1.crt                      26077
+usr/share/ca-certificates/mozilla/AC_RAIZ_FNMT-RCM.crt               26076
+usr/share/ca-certificates/mozilla/AffirmTrust_Premium.crt            26075
+usr/share/ca-certificates/mozilla/Amazon_Root_CA_1.crt               26074
+usr/share/ca-certificates/mozilla/Amazon_Root_CA_4.crt               26073
+usr/share/ca-certificates/mozilla/Atos_TrustedRoot_2011.crt          26072
+usr/share/ca-certificates/mozilla/Buypass_Class_3_Root_CA.crt        26071
+usr/share/ca-certificates/mozilla/COMODO_ECC_Certification_Authority.crt 26070
+usr/share/ca-certificates/mozilla/COMODO_RSA_Certification_Authority.crt 26069
+usr/share/ca-certificates/mozilla/Certigna.crt                       26068
+usr/share/ca-certificates/mozilla/Certigna_Root_CA.crt               26067
+usr/share/ca-certificates/mozilla/Chambers_of_Commerce_Root_-_2008.crt 26066
+usr/share/ca-certificates/mozilla/Comodo_AAA_Services_root.crt       26065
+usr/share/ca-certificates/mozilla/D-TRUST_Root_Class_3_CA_2_2009.crt 26064
+usr/share/ca-certificates/mozilla/D-TRUST_Root_Class_3_CA_2_EV_2009.crt 26063
+usr/share/ca-certificates/mozilla/DigiCert_Assured_ID_Root_CA.crt    26062
+usr/share/ca-certificates/mozilla/DigiCert_Global_Root_G3.crt        26061
+usr/share/ca-certificates/mozilla/Entrust.net_Premium_2048_Secure_Server_CA.crt 26060
+usr/share/ca-certificates/mozilla/GTS_Root_R4.crt                    26059
+usr/share/ca-certificates/mozilla/GlobalSign_ECC_Root_CA_-_R4.crt    26058
+usr/share/ca-certificates/mozilla/GlobalSign_Root_CA_-_R6.crt        26057
+usr/share/ca-certificates/mozilla/Go_Daddy_Class_2_CA.crt            26056
+usr/share/ca-certificates/mozilla/Go_Daddy_Root_Certificate_Authority_-_G2.crt 26055
+usr/share/ca-certificates/mozilla/IdenTrust_Commercial_Root_CA_1.crt 26054
+usr/share/ca-certificates/mozilla/Izenpe.com.crt                     26053
+usr/share/ca-certificates/mozilla/Microsoft_RSA_Root_Certificate_Authority_2017.crt 26052
+usr/share/ca-certificates/mozilla/OISTE_WISeKey_Global_Root_GB_CA.crt 26051
+usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_2.crt             26050
+usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_3_G3.crt          26049
+usr/share/ca-certificates/mozilla/SSL.com_EV_Root_Certification_Authority_ECC.crt 26048
+usr/share/ca-certificates/mozilla/SZAFIR_ROOT_CA2.crt                26047
+usr/share/ca-certificates/mozilla/SecureTrust_CA.crt                 26046
+usr/share/ca-certificates/mozilla/Secure_Global_CA.crt               26045
+usr/share/ca-certificates/mozilla/Security_Communication_RootCA2.crt 26044
+usr/share/ca-certificates/mozilla/Security_Communication_Root_CA.crt 26043
+usr/share/ca-certificates/mozilla/Starfield_Class_2_CA.crt           26042
+usr/share/ca-certificates/mozilla/TUBITAK_Kamu_SM_SSL_Kok_Sertifikasi_-_Surum_1.crt 26041
+usr/share/ca-certificates/mozilla/TWCA_Root_Certification_Authority.crt 26040
+usr/share/ca-certificates/mozilla/Trustis_FPS_Root_CA.crt            26039
+usr/share/ca-certificates/mozilla/Trustwave_Global_Certification_Authority.crt 26038
+usr/share/ca-certificates/mozilla/Trustwave_Global_ECC_P384_Certification_Authority.crt 26037
+usr/share/ca-certificates/mozilla/UCA_Global_G2_Root.crt             26036
+usr/share/ca-certificates/mozilla/USERTrust_ECC_Certification_Authority.crt 26035
+usr/share/ca-certificates/mozilla/USERTrust_RSA_Certification_Authority.crt 26034
+usr/share/ca-certificates/mozilla/VeriSign_Universal_Root_Certification_Authority.crt 26033
+usr/share/ca-certificates/mozilla/ePKI_Root_Certification_Authority.crt 26032
+usr/share/ca-certificates/mozilla/e-Szigno_Root_CA_2017.crt          26031
+usr/libexec/ibus-engine-libpinyin                                    26030
+usr/lib/x86_64-linux-gnu/libpinyin.so.13.0.0                         26029
+usr/libexec/ibus-engine-hangul                                       26028
+usr/lib/x86_64-linux-gnu/libopencc.so.1.1.1                          26027
+usr/lib/x86_64-linux-gnu/libhangul.so.1.0.0                          26026
+usr/lib/ibus/ibus-engine-chewing                                     26025
+usr/lib/x86_64-linux-gnu/liblua5.4.so.0.0.0                          26024
+usr/lib/x86_64-linux-gnu/libchewing.so.3.3.1                         26023
+usr/lib/x86_64-linux-gnu/libgtk-x11-2.0.so.0.2400.33                 26022
+usr/lib/x86_64-linux-gnu/libmarisa.so.0.0.0                          26021
+usr/share/libhangul/hanja/hanja.txt                                  26020
+usr/lib/x86_64-linux-gnu/libgdk-x11-2.0.so.0.2400.33                 26019
+usr/lib/x86_64-linux-gnu/gtk-2.0/modules/libgail.so                  26018
+usr/lib/x86_64-linux-gnu/libgailutil.so.18.0.1                       26017
+usr/lib/x86_64-linux-gnu/gtk-2.0/modules/libatk-bridge.so            26016
+usr/share/themes/Adwaita/gtk-2.0/gtkrc                               26015
+usr/share/themes/Adwaita/gtk-2.0/main.rc                             26014
+usr/lib/x86_64-linux-gnu/gtk-2.0/2.10.0/engines/libadwaita.so        26013
+usr/lib/x86_64-linux-gnu/gtk-2.0/2.10.0/engines/libpixmap.so         26012
+usr/share/themes/Adwaita/gtk-2.0/apps.rc                             26011
+usr/share/themes/Adwaita/gtk-2.0/hacks.rc                            26010
+usr/share/themes/Default/gtk-2.0-key/gtkrc                           26009
+usr/share/ibus-hangul/data/symbol.txt                                26008
+usr/bin/gtk-launch                                                   26007
+usr/local/bin/tor-browser                                            26006
+usr/local/lib/run-tor-browser-in-netns                               26005
+usr/lib/python3/dist-packages/tailslib/netnsdrop.py                  26004
+usr/bin/tor-browser                                                  26003
+usr/local/lib/tails-shell-library/tor-browser.sh                     26002
+usr/local/lib/tails-shell-library/systemd.sh                         26001
+usr/bin/7z                                                           26000
+usr/lib/p7zip/7z                                                     25999
+usr/lib/p7zip/7z.so                                                  25998
+usr/local/lib/tor-browser/omni.ja                                    25997
+etc/tor-browser/locale-profiles/en-US.js                             25996
+usr/local/lib/tor-browser/firefox.real                               25995
+usr/local/lib/tor-browser/dependentlibs.list                         25994
+usr/local/lib/tor-browser/libnspr4.so                                25993
+usr/local/lib/tor-browser/libplc4.so                                 25992
+usr/local/lib/tor-browser/libplds4.so                                25991
+usr/local/lib/tor-browser/libmozsandbox.so                           25990
+usr/local/lib/tor-browser/liblgpllibs.so                             25989
+usr/local/lib/tor-browser/libnssutil3.so                             25988
+usr/local/lib/tor-browser/libnss3.so                                 25987
+usr/local/lib/tor-browser/libsmime3.so                               25986
+usr/local/lib/tor-browser/libmozsqlite3.so                           25985
+usr/local/lib/tor-browser/libssl3.so                                 25984
+usr/local/lib/tor-browser/libmozgtk.so                               25983
+usr/local/lib/tor-browser/libmozwayland.so                           25982
+usr/local/lib/tor-browser/libxul.so                                  25981
+usr/lib/x86_64-linux-gnu/libdbus-glib-1.so.2.3.4                     25980
+usr/lib/x86_64-linux-gnu/libpci.so.3.7.0                             25979
+usr/local/lib/tor-browser/TorBrowser/Data/Browser/profiles.ini       25978
+usr/local/lib/tor-browser/browser/omni.ja                            25977
+usr/local/lib/tor-browser/defaults/pref/channel-prefs.js             25976
+usr/bin/lsb_release                                                  25975
+usr/local/lib/tor-browser/distribution/policies.json                 25974
+usr/local/share/tor-browser-extensions/{73a6fe31-595d-460b-a920-fcc0f8843232}.xpi 25973
+usr/local/lib/tor-browser/libsoftokn3.so                             25972
+usr/local/lib/tor-browser/libfreeblpriv3.so                          25971
+usr/local/lib/tor-browser/libnssckbi.so                              25970
+etc/ld.so.conf                                                       25969
+etc/ld.so.conf.d/libc.conf                                           25968
+etc/ld.so.conf.d/x86_64-linux-gnu.conf                               25967
+usr/local/lib/tor-browser/libipcclientcerts.so                       25966
+usr/lib/locale/C.UTF-8/LC_IDENTIFICATION                             25965
+usr/lib/locale/C.UTF-8/LC_MEASUREMENT                                25964
+usr/lib/locale/C.UTF-8/LC_TELEPHONE                                  25963
+usr/lib/locale/C.UTF-8/LC_ADDRESS                                    25962
+usr/lib/locale/C.UTF-8/LC_NAME                                       25961
+usr/lib/locale/C.UTF-8/LC_PAPER                                      25960
+usr/lib/locale/C.UTF-8/LC_MONETARY                                   25959
+usr/lib/locale/C.UTF-8/LC_COLLATE                                    25958
+usr/lib/locale/C.UTF-8/LC_TIME                                       25957
+usr/lib/locale/C.UTF-8/LC_NUMERIC                                    25956
+usr/local/lib/tor-browser/browser/features/onboarding@mozilla.org.xpi 25955
+usr/lib/systemd/user/xdg-desktop-portal.service                      25954
+usr/libexec/xdg-desktop-portal                                       25952
+usr/share/xdg-desktop-portal/portals/gnome-keyring.portal            25951
+usr/share/xdg-desktop-portal/portals/gnome-shell.portal              25950
+usr/lib/systemd/user/xdg-document-portal.service                     25949
+usr/libexec/xdg-document-portal                                      25947
+lib/x86_64-linux-gnu/libfuse.so.2.9.9                                25946
+bin/fusermount3                                                      25945
+etc/fuse.conf                                                        25944
+usr/share/icons/Adwaita/32x32/ui/window-close-symbolic.symbolic.png  25943
+usr/local/lib/tor-browser/TorBrowser/Data/fontconfig/fonts.conf      25942
+usr/local/lib/tor-browser/fonts/Arimo-Bold.ttf                       25941
+usr/local/lib/tor-browser/fonts/Arimo-BoldItalic.ttf                 25940
+usr/local/lib/tor-browser/fonts/Arimo-Italic.ttf                     25939
+usr/local/lib/tor-browser/fonts/Arimo-Regular.ttf                    25938
+usr/local/lib/tor-browser/fonts/Cousine-Regular.ttf                  25937
+usr/local/lib/tor-browser/fonts/NotoNaskhArabic-Regular.ttf          25936
+usr/local/lib/tor-browser/fonts/NotoSansAdlam-Regular.ttf            25935
+usr/local/lib/tor-browser/fonts/NotoSansArmenian-Regular.ttf         25934
+usr/local/lib/tor-browser/fonts/NotoSansBalinese-Regular.ttf         25933
+usr/local/lib/tor-browser/fonts/NotoSansBamum-Regular.ttf            25932
+usr/local/lib/tor-browser/fonts/NotoSansBassaVah-Regular.ttf         25931
+usr/local/lib/tor-browser/fonts/NotoSansBatak-Regular.ttf            25930
+usr/local/lib/tor-browser/fonts/NotoSansBengali-Regular.ttf          25929
+usr/local/lib/tor-browser/fonts/NotoSansBuginese-Regular.ttf         25928
+usr/local/lib/tor-browser/fonts/NotoSansBuhid-Regular.ttf            25927
+usr/local/lib/tor-browser/fonts/NotoSansCanadianAboriginal-Regular.ttf 25926
+usr/local/lib/tor-browser/fonts/NotoSansChakma-Regular.ttf           25925
+usr/local/lib/tor-browser/fonts/NotoSansCham-Regular.ttf             25924
+usr/local/lib/tor-browser/fonts/NotoSansCherokee-Regular.ttf         25923
+usr/local/lib/tor-browser/fonts/NotoSansCoptic-Regular.ttf           25922
+usr/local/lib/tor-browser/fonts/NotoSansDeseret-Regular.ttf          25921
+usr/local/lib/tor-browser/fonts/NotoSansDevanagari-Regular.ttf       25920
+usr/local/lib/tor-browser/fonts/NotoSansElbasan-Regular.ttf          25919
+usr/local/lib/tor-browser/fonts/NotoSansEthiopic-Regular.ttf         25918
+usr/local/lib/tor-browser/fonts/NotoSansGeorgian-Regular.ttf         25917
+usr/local/lib/tor-browser/fonts/NotoSansGrantha-Regular.ttf          25916
+usr/local/lib/tor-browser/fonts/NotoSansGujarati-Regular.ttf         25915
+usr/local/lib/tor-browser/fonts/NotoSansGunjalaGondi-Regular.ttf     25914
+usr/local/lib/tor-browser/fonts/NotoSansGurmukhi-Regular.ttf         25913
+usr/local/lib/tor-browser/fonts/NotoSansHanifiRohingya-Regular.ttf   25912
+usr/local/lib/tor-browser/fonts/NotoSansHanunoo-Regular.ttf          25911
+usr/local/lib/tor-browser/fonts/NotoSansHebrew-Regular.ttf           25910
+usr/local/lib/tor-browser/fonts/NotoSansJP-Regular.otf               25909
+usr/local/lib/tor-browser/fonts/NotoSansJavanese-Regular.ttf         25908
+usr/local/lib/tor-browser/fonts/NotoSansKR-Regular.otf               25907
+usr/local/lib/tor-browser/fonts/NotoSansKannada-Regular.ttf          25906
+usr/local/lib/tor-browser/fonts/NotoSansKayahLi-Regular.ttf          25905
+usr/local/lib/tor-browser/fonts/NotoSansKhmer-Regular.ttf            25904
+usr/local/lib/tor-browser/fonts/NotoSansKhojki-Regular.ttf           25903
+usr/local/lib/tor-browser/fonts/NotoSansKhudawadi-Regular.ttf        25902
+usr/local/lib/tor-browser/fonts/NotoSansLao-Regular.ttf              25901
+usr/local/lib/tor-browser/fonts/NotoSansLepcha-Regular.ttf           25900
+usr/local/lib/tor-browser/fonts/NotoSansLimbu-Regular.ttf            25899
+usr/local/lib/tor-browser/fonts/NotoSansLisu-Regular.ttf             25898
+usr/local/lib/tor-browser/fonts/NotoSansMahajani-Regular.ttf         25897
+usr/local/lib/tor-browser/fonts/NotoSansMalayalam-Regular.ttf        25896
+usr/local/lib/tor-browser/fonts/NotoSansMandaic-Regular.ttf          25895
+usr/local/lib/tor-browser/fonts/NotoSansMasaramGondi-Regular.ttf     25894
+usr/local/lib/tor-browser/fonts/NotoSansMedefaidrin-Regular.ttf      25893
+usr/local/lib/tor-browser/fonts/NotoSansMeeteiMayek-Regular.ttf      25892
+usr/local/lib/tor-browser/fonts/NotoSansMendeKikakui-Regular.ttf     25891
+usr/local/lib/tor-browser/fonts/NotoSansMiao-Regular.ttf             25890
+usr/local/lib/tor-browser/fonts/NotoSansModi-Regular.ttf             25889
+usr/local/lib/tor-browser/fonts/NotoSansMongolian-Regular.ttf        25888
+usr/local/lib/tor-browser/fonts/NotoSansMro-Regular.ttf              25887
+usr/local/lib/tor-browser/fonts/NotoSansMultani-Regular.ttf          25886
+usr/local/lib/tor-browser/fonts/NotoSansMyanmar-Regular.ttf          25885
+usr/local/lib/tor-browser/fonts/NotoSansNKo-Regular.ttf              25884
+usr/local/lib/tor-browser/fonts/NotoSansNewTaiLue-Regular.ttf        25883
+usr/local/lib/tor-browser/fonts/NotoSansNewa-Regular.ttf             25882
+usr/local/lib/tor-browser/fonts/NotoSansOlChiki-Regular.ttf          25881
+usr/local/lib/tor-browser/fonts/NotoSansOriya-Regular.ttf            25880
+usr/local/lib/tor-browser/fonts/NotoSansOsage-Regular.ttf            25879
+usr/local/lib/tor-browser/fonts/NotoSansOsmanya-Regular.ttf          25878
+usr/local/lib/tor-browser/fonts/NotoSansPahawhHmong-Regular.ttf      25877
+usr/local/lib/tor-browser/fonts/NotoSansPauCinHau-Regular.ttf        25876
+usr/local/lib/tor-browser/fonts/NotoSansRejang-Regular.ttf           25875
+usr/local/lib/tor-browser/fonts/NotoSansRunic-Regular.ttf            25874
+usr/local/lib/tor-browser/fonts/NotoSansSC-Regular.otf               25873
+usr/local/lib/tor-browser/fonts/NotoSansSamaritan-Regular.ttf        25872
+usr/local/lib/tor-browser/fonts/NotoSansSaurashtra-Regular.ttf       25871
+usr/local/lib/tor-browser/fonts/NotoSansSharada-Regular.ttf          25870
+usr/local/lib/tor-browser/fonts/NotoSansShavian-Regular.ttf          25869
+usr/local/lib/tor-browser/fonts/NotoSansSinhala-Regular.ttf          25868
+usr/local/lib/tor-browser/fonts/NotoSansSoraSompeng-Regular.ttf      25867
+usr/local/lib/tor-browser/fonts/NotoSansSoyombo-Regular.ttf          25866
+usr/local/lib/tor-browser/fonts/NotoSansSundanese-Regular.ttf        25865
+usr/local/lib/tor-browser/fonts/NotoSansSylotiNagri-Regular.ttf      25864
+usr/local/lib/tor-browser/fonts/NotoSansSymbols-Regular.ttf          25863
+usr/local/lib/tor-browser/fonts/NotoSansSymbols2-Regular.ttf         25862
+usr/local/lib/tor-browser/fonts/NotoSansSyriac-Regular.ttf           25861
+usr/local/lib/tor-browser/fonts/NotoSansTC-Regular.otf               25860
+usr/local/lib/tor-browser/fonts/NotoSansTagalog-Regular.ttf          25859
+usr/local/lib/tor-browser/fonts/NotoSansTagbanwa-Regular.ttf         25858
+usr/local/lib/tor-browser/fonts/NotoSansTaiLe-Regular.ttf            25857
+usr/local/lib/tor-browser/fonts/NotoSansTaiTham-Regular.ttf          25856
+usr/local/lib/tor-browser/fonts/NotoSansTaiViet-Regular.ttf          25855
+usr/local/lib/tor-browser/fonts/NotoSansTakri-Regular.ttf            25854
+usr/local/lib/tor-browser/fonts/NotoSansTamil-Regular.ttf            25853
+usr/local/lib/tor-browser/fonts/NotoSansTelugu-Regular.ttf           25852
+usr/local/lib/tor-browser/fonts/NotoSansThaana-Regular.ttf           25851
+usr/local/lib/tor-browser/fonts/NotoSansThai-Regular.ttf             25850
+usr/local/lib/tor-browser/fonts/NotoSansTifinagh-Regular.ttf         25849
+usr/local/lib/tor-browser/fonts/NotoSansTifinaghAPT-Regular.ttf      25848
+usr/local/lib/tor-browser/fonts/NotoSansTifinaghAdrar-Regular.ttf    25847
+usr/local/lib/tor-browser/fonts/NotoSansTifinaghAgrawImazighen-Regular.ttf 25846
+usr/local/lib/tor-browser/fonts/NotoSansTifinaghAhaggar-Regular.ttf  25845
+usr/local/lib/tor-browser/fonts/NotoSansTifinaghAir-Regular.ttf      25844
+usr/local/lib/tor-browser/fonts/NotoSansTifinaghAzawagh-Regular.ttf  25843
+usr/local/lib/tor-browser/fonts/NotoSansTifinaghGhat-Regular.ttf     25842
+usr/local/lib/tor-browser/fonts/NotoSansTifinaghHawad-Regular.ttf    25841
+usr/local/lib/tor-browser/fonts/NotoSansTifinaghRhissaIxa-Regular.ttf 25840
+usr/local/lib/tor-browser/fonts/NotoSansTifinaghSIL-Regular.ttf      25839
+usr/local/lib/tor-browser/fonts/NotoSansTifinaghTawellemmet-Regular.ttf 25838
+usr/local/lib/tor-browser/fonts/NotoSansTirhuta-Regular.ttf          25837
+usr/local/lib/tor-browser/fonts/NotoSansVai-Regular.ttf              25836
+usr/local/lib/tor-browser/fonts/NotoSansWancho-Regular.ttf           25835
+usr/local/lib/tor-browser/fonts/NotoSansWarangCiti-Regular.ttf       25834
+usr/local/lib/tor-browser/fonts/NotoSansYi-Regular.ttf               25833
+usr/local/lib/tor-browser/fonts/NotoSansZanabazarSquare-Regular.ttf  25832
+usr/local/lib/tor-browser/fonts/NotoSerifArmenian-Regular.ttf        25831
+usr/local/lib/tor-browser/fonts/NotoSerifBalinese-Regular.ttf        25830
+usr/local/lib/tor-browser/fonts/NotoSerifBengali-Regular.ttf         25829
+usr/local/lib/tor-browser/fonts/NotoSerifDevanagari-Regular.ttf      25828
+usr/local/lib/tor-browser/fonts/NotoSerifDogra-Regular.ttf           25827
+usr/local/lib/tor-browser/fonts/NotoSerifEthiopic-Regular.ttf        25826
+usr/local/lib/tor-browser/fonts/NotoSerifGeorgian-Regular.ttf        25825
+usr/local/lib/tor-browser/fonts/NotoSerifGrantha-Regular.ttf         25824
+usr/local/lib/tor-browser/fonts/NotoSerifGujarati-Regular.ttf        25823
+usr/local/lib/tor-browser/fonts/NotoSerifGurmukhi-Regular.ttf        25822
+usr/local/lib/tor-browser/fonts/NotoSerifHebrew-Regular.ttf          25821
+usr/local/lib/tor-browser/fonts/NotoSerifKannada-Regular.ttf         25820
+usr/local/lib/tor-browser/fonts/NotoSerifKhmer-Regular.ttf           25819
+usr/local/lib/tor-browser/fonts/NotoSerifKhojki-Regular.ttf          25818
+usr/local/lib/tor-browser/fonts/NotoSerifLao-Regular.ttf             25817
+usr/local/lib/tor-browser/fonts/NotoSerifMalayalam-Regular.ttf       25816
+usr/local/lib/tor-browser/fonts/NotoSerifMyanmar-Regular.ttf         25815
+usr/local/lib/tor-browser/fonts/NotoSerifNyiakengPuachueHmong-Regular.ttf 25814
+usr/local/lib/tor-browser/fonts/NotoSerifSinhala-Regular.ttf         25813
+usr/local/lib/tor-browser/fonts/NotoSerifTamil-Regular.ttf           25812
+usr/local/lib/tor-browser/fonts/NotoSerifTelugu-Regular.ttf          25811
+usr/local/lib/tor-browser/fonts/NotoSerifThai-Regular.ttf            25810
+usr/local/lib/tor-browser/fonts/NotoSerifTibetan-Regular.ttf         25809
+usr/local/lib/tor-browser/fonts/NotoSerifYezidi-Regular.ttf          25808
+usr/local/lib/tor-browser/fonts/STIXMath-Regular.otf                 25807
+usr/local/lib/tor-browser/fonts/Tinos-Bold.ttf                       25806
+usr/local/lib/tor-browser/fonts/Tinos-BoldItalic.ttf                 25805
+usr/local/lib/tor-browser/fonts/Tinos-Italic.ttf                     25804
+usr/local/lib/tor-browser/fonts/Tinos-Regular.ttf                    25803
+usr/local/lib/tor-browser/fonts/TwemojiMozilla.ttf                   25802
+usr/bin/xhost                                                        25801
+usr/local/bin/tails-upgrade-frontend                                 25800
+usr/local/lib/tor-browser/browser/chrome/icons/default/default16.png 25799
+usr/local/lib/tor-browser/browser/chrome/icons/default/default32.png 25798
+usr/local/lib/tor-browser/browser/chrome/icons/default/default48.png 25797
+usr/local/lib/tor-browser/browser/chrome/icons/default/default64.png 25796
+usr/local/lib/tor-browser/browser/chrome/icons/default/default128.png 25795
+usr/share/perl/5.32.1/FindBin.pm                                     25794
+usr/lib/x86_64-linux-gnu/perl-base/lib.pm                            25793
+usr/local/share/perl/5.32.1/Tails/IUK/Frontend.pm                    25792
+usr/share/perl/5.32.1/Env.pm                                         25791
+usr/share/perl/5.32.1/Tie/Array.pm                                   25790
+usr/share/perl5/Path/Tiny.pm                                         25789
+usr/share/mime/application/xml-dtd.xml                               25788
+usr/local/share/perl/5.32.1/Tails/RunningSystem.pm                   25787
+usr/share/perl5/Sys/Statistics/Linux/MemStats.pm                     25786
+usr/local/share/perl/5.32.1/Tails/Constants.pm                       25785
+usr/share/perl5/MooX/late.pm                                         25784
+usr/share/perl5/Sub/HandlesVia.pm                                    25783
+usr/share/perl5/Exporter/Shiny.pm                                    25782
+usr/share/perl5/Sub/HandlesVia/Toolkit/Moo.pm                        25781
+usr/share/perl5/Sub/HandlesVia/Toolkit.pm                            25780
+usr/share/perl5/Type/Params.pm                                       25779
+usr/share/perl5/Error/TypeTiny.pm                                    25778
+usr/share/perl5/Error/TypeTiny/Assertion.pm                          25777
+usr/share/perl5/Error/TypeTiny/WrongNumberOfParameters.pm            25776
+usr/share/perl5/Sub/HandlesVia/Handler.pm                            25775
+usr/share/perl5/Class/Tiny.pm                                        25774
+usr/share/perl5/Type/Utils.pm                                        25773
+usr/share/perl5/Type/Registry.pm                                     25772
+usr/share/perl5/Type/Parser.pm                                       25771
+usr/local/share/perl/5.32.1/Tails/UDisks.pm                          25770
+usr/share/perl/5.32.1/File/stat.pm                                   25769
+usr/share/perl/5.32.1/Class/Struct.pm                                25768
+usr/share/perl5/Syntax/Keyword/Junction.pm                           25767
+usr/share/perl5/Syntax/Keyword/Junction/All.pm                       25766
+usr/share/perl5/Syntax/Keyword/Junction/Base.pm                      25765
+usr/share/perl/5.32.1/if.pm                                          25764
+usr/share/perl5/Syntax/Keyword/Junction/Any.pm                       25763
+usr/share/perl5/Syntax/Keyword/Junction/None.pm                      25762
+usr/share/perl5/Syntax/Keyword/Junction/One.pm                       25761
+usr/share/perl5/Types/Path/Tiny.pm                                   25760
+usr/share/perl5/Type/Tiny/Class.pm                                   25759
+usr/share/perl5/Type/Tiny/ConstrainedObject.pm                       25758
+usr/share/perl5/Type/Tiny/Intersection.pm                            25757
+usr/lib/x86_64-linux-gnu/perl5/5.32/Unix/Mknod.pm                    25756
+usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Unix/Mknod/Mknod.so         25755
+usr/share/perl5/Moo/Role.pm                                          25754
+usr/local/share/perl/5.32.1/Tails/Role/HasDBus/System.pm             25753
+usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/GLib.pm                 25752
+usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Net/DBus/GLib/GLib.so       25751
+usr/local/share/perl/5.32.1/Tails.pm                                 25750
+usr/local/share/perl/5.32.1/Tails/Role/HasEncoding.pm                25749
+usr/share/perl5/Type/Tiny/Union.pm                                   25748
+usr/local/share/perl/5.32.1/Tails/Role/DisplayError/Gtk3.pm          25747
+usr/share/perl5/Gtk3.pm                                              25746
+usr/lib/x86_64-linux-gnu/perl5/5.32/Cairo/GObject.pm                 25745
+usr/lib/x86_64-linux-gnu/perl5/5.32/Cairo.pm                         25744
+usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Cairo/Cairo.so              25743
+usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Cairo/GObject/GObject.so    25742
+usr/local/share/perl/5.32.1/Tails/IUK/DownloadProgress.pm            25741
+usr/lib/x86_64-linux-gnu/perl/5.32.1/Time/HiRes.pm                   25740
+usr/lib/x86_64-linux-gnu/perl/5.32.1/auto/Time/HiRes/HiRes.so        25739
+usr/share/perl5/Time/Duration.pm                                     25738
+usr/local/share/perl/5.32.1/Tails/IUK/Role/FormatByte.pm             25737
+usr/share/perl5/Number/Format.pm                                     25736
+usr/share/perl5/Types/Standard/HashRef.pm                            25735
+usr/local/share/perl/5.32.1/Tails/IUK/UpgradeDescriptionFile.pm      25734
+usr/share/perl5/MooX/HandlesVia.pm                                   25733
+usr/share/perl5/Dpkg/Version.pm                                      25732
+usr/share/perl5/Dpkg/Gettext.pm                                      25731
+usr/lib/x86_64-linux-gnu/perl-base/feature.pm                        25730
+usr/share/perl5/Dpkg/ErrorHandling.pm                                25729
+usr/share/perl5/Dpkg.pm                                              25728
+usr/share/perl5/YAML/Any.pm                                          25727
+usr/lib/x86_64-linux-gnu/perl5/5.32/YAML/XS.pm                       25726
+usr/lib/x86_64-linux-gnu/perl5/5.32/YAML/XS/LibYAML.pm               25725
+usr/lib/x86_64-linux-gnu/perl5/5.32/auto/YAML/XS/LibYAML/LibYAML.so  25724
+usr/share/perl5/Data/Perl/Collection/Array/MooseLike.pm              25723
+usr/share/perl5/Class/Method/Modifiers.pm                            25722
+usr/share/perl5/Data/Perl/Role/Collection/Array.pm                   25721
+usr/local/share/perl/5.32.1/Tails/IUK/Utils.pm                       25720
+usr/share/perl5/GnuPG/Interface.pm                                   25719
+usr/share/perl/5.32.1/Math/BigInt.pm                                 25718
+usr/share/perl/5.32.1/Math/BigInt/Calc.pm                            25717
+usr/share/perl/5.32.1/Math/BigInt/Lib.pm                             25716
+usr/share/perl5/GnuPG/Options.pm                                     25715
+usr/share/perl5/GnuPG/HashInit.pm                                    25714
+usr/share/perl5/GnuPG/Handles.pm                                     25713
+usr/lib/x86_64-linux-gnu/perl5/5.32/Filesys/Df.pm                    25712
+usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Filesys/Df/Df.so            25711
+usr/share/perl5/MooX/Options.pm                                      25710
+usr/share/perl5/MooX/Options/Role.pm                                 25709
+usr/share/perl5/MooX/Options/Descriptive.pm                          25708
+usr/share/perl5/MooX/Options/Descriptive/Usage.pm                    25707
+usr/lib/x86_64-linux-gnu/perl5/5.32/Text/LineFold.pm                 25706
+usr/share/perl5/MIME/Charset.pm                                      25705
+usr/lib/x86_64-linux-gnu/perl5/5.32/Unicode/LineBreak.pm             25704
+usr/lib/x86_64-linux-gnu/perl5/5.32/Unicode/GCString.pm              25703
+usr/lib/x86_64-linux-gnu/perl5/5.32/Unicode/LineBreak/Constants.pm   25702
+usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Unicode/LineBreak/LineBreak.so 25701
+usr/lib/x86_64-linux-gnu/libsombok.so.3.1.7                          25700
+usr/share/perl5/MooX/Locale/Passthrough.pm                           25699
+usr/local/bin/tails-iuk-get-upgrade-description-file                 25698
+usr/local/share/perl/5.32.1/Tails/IUK/UpgradeDescriptionFile/Download.pm 25697
+usr/share/mime/audio/mpeg.xml                                        25696
+usr/share/mime/video/mp4.xml                                         25695
+lib/systemd/system/tails-additional-software-upgrade.path            25690
+lib/systemd/system/tails-additional-software-upgrade.service         25689
+usr/local/lib/tor-browser/libmozavutil.so                            25688
+usr/local/lib/tor-browser/libmozavcodec.so                           25687
+usr/share/perl5/Method/Generate/BuildAll.pm                          25686
+usr/share/icons/Adwaita/16x16/actions/edit-find-symbolic.symbolic.png 25684
+usr/share/pixmaps/tails-installer.svg                                25683
+usr/share/icons/Adwaita/64x64/actions/view-app-grid-symbolic.symbolic.png 25682
+usr/share/icons/hicolor/64x64/apps/thunderbird.png                   25681
+usr/share/icons/hicolor/scalable/apps/keepassxc.svg                  25680
+usr/share/icons/hicolor/64x64/apps/kleopatra.png                     25679
+etc/pam.d/cron                                                       25677
-- 
GitLab


From 8983e5fda8ec721cdbb881dee097251ceaec4050 Mon Sep 17 00:00:00 2001
From: intrigeri <intrigeri@boum.org>
Date: Sat, 18 Mar 2023 15:21:37 +0000
Subject: [PATCH 178/187] Mark Tails 5.11 as released.

---
 debian/changelog | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 04abaae5527..8c0ca727ab9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-tails (5.11) UNRELEASED; urgency=medium
+tails (5.11) unstable; urgency=medium
 
   * Upgrade Thunderbird to 102.9.0-1~deb11u1
 
@@ -241,7 +241,7 @@ tails (5.11) UNRELEASED; urgency=medium
         area
       - Enable non-free-firmware archive area for distributions that support it
 
- -- Tails developers <tails@boum.org>  Sat, 18 Mar 2023 13:21:19 +0000
+ -- Tails developers <tails@boum.org>  Sat, 18 Mar 2023 15:21:33 +0000
 
 tails (5.10) unstable; urgency=medium
 
-- 
GitLab


From bb790fa6793965e9c06e69b566c0a3f51ce72c56 Mon Sep 17 00:00:00 2001
From: intrigeri <intrigeri@boum.org>
Date: Sat, 18 Mar 2023 16:20:18 +0000
Subject: [PATCH 179/187] Hotfix: disable bullseye-backports APT source

We don't install anything from there anymore since we switched to installing the
kernel from sid, so our tagged APT snapshot ends up with no bullseye-backports
suite, which breaks APT at build time.
---
 config/chroot_sources/bullseye-backports.binary | 1 -
 config/chroot_sources/bullseye-backports.chroot | 1 -
 2 files changed, 2 deletions(-)
 delete mode 120000 config/chroot_sources/bullseye-backports.binary
 delete mode 100644 config/chroot_sources/bullseye-backports.chroot

diff --git a/config/chroot_sources/bullseye-backports.binary b/config/chroot_sources/bullseye-backports.binary
deleted file mode 120000
index aabb0f6de10..00000000000
--- a/config/chroot_sources/bullseye-backports.binary
+++ /dev/null
@@ -1 +0,0 @@
-bullseye-backports.chroot
\ No newline at end of file
diff --git a/config/chroot_sources/bullseye-backports.chroot b/config/chroot_sources/bullseye-backports.chroot
deleted file mode 100644
index 20deb0c9d12..00000000000
--- a/config/chroot_sources/bullseye-backports.chroot
+++ /dev/null
@@ -1 +0,0 @@
-deb http://ftp.us.debian.org/debian/ bullseye-backports main contrib non-free
-- 
GitLab


From 99074153af560dedfa86a22e094982b45de91865 Mon Sep 17 00:00:00 2001
From: intrigeri <intrigeri@boum.org>
Date: Sat, 18 Mar 2023 17:24:24 +0000
Subject: [PATCH 180/187] Release process: let me use my computer while
 building IUKs

Thanks in advance!
---
 wiki/src/contribute/release_process.mdwn | 1 +
 1 file changed, 1 insertion(+)

diff --git a/wiki/src/contribute/release_process.mdwn b/wiki/src/contribute/release_process.mdwn
index 4f12be9269d..71293a7ea3f 100644
--- a/wiki/src/contribute/release_process.mdwn
+++ b/wiki/src/contribute/release_process.mdwn
@@ -993,6 +993,7 @@ To build the IUKS, run this command:
        git clone "$PUPPET_TAILS_REMOTE"
        time                                                                   \
        sudo                                                                   \
+       nice                                                                   \
        ./puppet-tails/files/jenkins/slaves/isobuilders/wrap_tails_create_iuks \
            --tails-git-remote "file://${RELEASE_CHECKOUT?:}/.git"             \
            --tails-git-commit "${TAG?:}"                                      \
-- 
GitLab


From 4d75999c354188919de4728db4a346ed451805cc Mon Sep 17 00:00:00 2001
From: intrigeri <intrigeri@boum.org>
Date: Sat, 18 Mar 2023 21:06:59 +0000
Subject: [PATCH 181/187] Update upgrade-description files.

---
 .../v2/Tails/5.0/amd64/stable/upgrades.yml       | 16 ++++++++--------
 .../v2/Tails/5.0/amd64/stable/upgrades.yml.pgp   |  8 ++++----
 .../v2/Tails/5.0~beta1/amd64/alpha/upgrades.yml  | 16 ++++++++--------
 .../Tails/5.0~beta1/amd64/alpha/upgrades.yml.pgp |  8 ++++----
 .../v2/Tails/5.0~beta1/amd64/stable/upgrades.yml | 16 ++++++++--------
 .../5.0~beta1/amd64/stable/upgrades.yml.pgp      |  8 ++++----
 .../v2/Tails/5.1.1/amd64/stable/upgrades.yml     | 16 ++++++++--------
 .../v2/Tails/5.1.1/amd64/stable/upgrades.yml.pgp |  8 ++++----
 .../v2/Tails/5.1/amd64/stable/upgrades.yml       | 16 ++++++++--------
 .../v2/Tails/5.1/amd64/stable/upgrades.yml.pgp   |  8 ++++----
 .../v2/Tails/5.10/amd64/stable/upgrades.yml      | 15 +++++++++++++++
 .../v2/Tails/5.10/amd64/stable/upgrades.yml.pgp  |  8 ++++----
 .../v2/Tails/5.11.1/amd64/alpha/upgrades.yml     |  5 +++++
 .../v2/Tails/5.11.1/amd64/alpha/upgrades.yml.pgp |  7 +++++++
 .../v2/Tails/5.11.1/amd64/stable/upgrades.yml    |  5 +++++
 .../Tails/5.11.1/amd64/stable/upgrades.yml.pgp   |  7 +++++++
 .../v2/Tails/5.2/amd64/stable/upgrades.yml       | 16 ++++++++--------
 .../v2/Tails/5.2/amd64/stable/upgrades.yml.pgp   |  8 ++++----
 .../v2/Tails/5.3.1/amd64/stable/upgrades.yml     | 16 ++++++++--------
 .../v2/Tails/5.3.1/amd64/stable/upgrades.yml.pgp |  8 ++++----
 .../v2/Tails/5.3/amd64/stable/upgrades.yml       | 16 ++++++++--------
 .../v2/Tails/5.3/amd64/stable/upgrades.yml.pgp   |  8 ++++----
 .../v2/Tails/5.4/amd64/stable/upgrades.yml       | 16 ++++++++--------
 .../v2/Tails/5.4/amd64/stable/upgrades.yml.pgp   |  8 ++++----
 .../v2/Tails/5.5/amd64/stable/upgrades.yml       | 16 ++++++++--------
 .../v2/Tails/5.5/amd64/stable/upgrades.yml.pgp   |  8 ++++----
 .../v2/Tails/5.6/amd64/stable/upgrades.yml       | 16 ++++++++--------
 .../v2/Tails/5.6/amd64/stable/upgrades.yml.pgp   |  8 ++++----
 .../v2/Tails/5.7/amd64/stable/upgrades.yml       | 16 ++++++++--------
 .../v2/Tails/5.7/amd64/stable/upgrades.yml.pgp   |  8 ++++----
 .../v2/Tails/5.8/amd64/stable/upgrades.yml       | 16 ++++++++--------
 .../v2/Tails/5.8/amd64/stable/upgrades.yml.pgp   |  8 ++++----
 .../v2/Tails/5.8~beta1/amd64/alpha/upgrades.yml  | 10 +++++-----
 .../Tails/5.8~beta1/amd64/alpha/upgrades.yml.pgp |  8 ++++----
 .../v2/Tails/5.8~beta1/amd64/stable/upgrades.yml | 10 +++++-----
 .../5.8~beta1/amd64/stable/upgrades.yml.pgp      |  8 ++++----
 .../v2/Tails/5.9/amd64/stable/upgrades.yml       | 16 ++++++++--------
 .../v2/Tails/5.9/amd64/stable/upgrades.yml.pgp   |  8 ++++----
 .../v2/Tails/6.0/amd64/alpha/upgrades.yml        |  5 +++++
 .../v2/Tails/6.0/amd64/alpha/upgrades.yml.pgp    |  7 +++++++
 .../v2/Tails/6.0/amd64/stable/upgrades.yml       |  5 +++++
 .../v2/Tails/6.0/amd64/stable/upgrades.yml.pgp   |  7 +++++++
 .../v2/Tails/6.0~rc1/amd64/alpha/upgrades.yml    |  5 +++++
 .../Tails/6.0~rc1/amd64/alpha/upgrades.yml.pgp   |  7 +++++++
 .../v2/Tails/6.0~rc1/amd64/stable/upgrades.yml   |  5 +++++
 .../Tails/6.0~rc1/amd64/stable/upgrades.yml.pgp  |  7 +++++++
 46 files changed, 277 insertions(+), 190 deletions(-)
 create mode 100644 wiki/src/upgrade/v2/Tails/5.11.1/amd64/alpha/upgrades.yml
 create mode 100644 wiki/src/upgrade/v2/Tails/5.11.1/amd64/alpha/upgrades.yml.pgp
 create mode 100644 wiki/src/upgrade/v2/Tails/5.11.1/amd64/stable/upgrades.yml
 create mode 100644 wiki/src/upgrade/v2/Tails/5.11.1/amd64/stable/upgrades.yml.pgp
 create mode 100644 wiki/src/upgrade/v2/Tails/6.0/amd64/alpha/upgrades.yml
 create mode 100644 wiki/src/upgrade/v2/Tails/6.0/amd64/alpha/upgrades.yml.pgp
 create mode 100644 wiki/src/upgrade/v2/Tails/6.0/amd64/stable/upgrades.yml
 create mode 100644 wiki/src/upgrade/v2/Tails/6.0/amd64/stable/upgrades.yml.pgp
 create mode 100644 wiki/src/upgrade/v2/Tails/6.0~rc1/amd64/alpha/upgrades.yml
 create mode 100644 wiki/src/upgrade/v2/Tails/6.0~rc1/amd64/alpha/upgrades.yml.pgp
 create mode 100644 wiki/src/upgrade/v2/Tails/6.0~rc1/amd64/stable/upgrades.yml
 create mode 100644 wiki/src/upgrade/v2/Tails/6.0~rc1/amd64/stable/upgrades.yml.pgp

diff --git a/wiki/src/upgrade/v2/Tails/5.0/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/5.0/amd64/stable/upgrades.yml
index d9dffc934db..16997662db7 100644
--- a/wiki/src/upgrade/v2/Tails/5.0/amd64/stable/upgrades.yml
+++ b/wiki/src/upgrade/v2/Tails/5.0/amd64/stable/upgrades.yml
@@ -4,17 +4,17 @@ channel: stable
 initial-install-version: '5.0'
 product-name: Tails
 upgrades:
-- details-url: https://tails.boum.org/news/version_5.10/
+- details-url: https://tails.boum.org/news/version_5.11/
   type: major
   upgrade-paths:
   - target-files:
-    - sha256: 7c0e5e859560de708efeb72436f3997e418f74accedc7efc5c2e2d9f8fdb10d4
-      size: 1332496384
-      url: https://download.tails.net/tails/stable/tails-amd64-5.10/tails-amd64-5.10.iso
+    - sha256: 04ca8571d9d437de6d4f6d36b3972b3cc2d64c8dc9c8234ecb4a28a45f894e28
+      size: 1316044800
+      url: https://download.tails.net/tails/stable/tails-amd64-5.11/tails-amd64-5.11.iso
     type: full
   - target-files:
-    - sha256: 01efe2e43b55363225604b50b89230edb861dc6aab2219b64664c26e84622929
-      size: 657121280
-      url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.0_to_5.10.iuk
+    - sha256: fb855c0208f232f6ae65d4493f2980896bd8794fc71df733bf7b5778d60a13a0
+      size: 641929216
+      url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.0_to_5.11.iuk
     type: incremental
-  version: '5.10'
+  version: '5.11'
diff --git a/wiki/src/upgrade/v2/Tails/5.0/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/5.0/amd64/stable/upgrades.yml.pgp
index fe5399708e3..efa6ff61f55 100644
--- a/wiki/src/upgrade/v2/Tails/5.0/amd64/stable/upgrades.yml.pgp
+++ b/wiki/src/upgrade/v2/Tails/5.0/amd64/stable/upgrades.yml.pgp
@@ -1,7 +1,7 @@
 -----BEGIN PGP SIGNATURE-----
 
-iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCY+zbzQAKCRCQsrS9eu0j
-X6k2AP9QCvnDLaD+6wEQcYmHJxzyQhdbL4IQaYsTtVK66eoU2AEAsmX77Ji9lBVF
-nY+9TewClPnTACOF30p2WqZ7dgo1oA4=
-=dF+9
+iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCZBYn4wAKCRCQsrS9eu0j
+X5X3AQCfenrAXdFnb5quS8l1OFZha1MErOpL+AcZb/IqS0zpLgEA/ZtyI/AbPWk2
+royeuqXZ4YkNYWMBaSGE5m/LS9v6/AE=
+=JORb
 -----END PGP SIGNATURE-----
diff --git a/wiki/src/upgrade/v2/Tails/5.0~beta1/amd64/alpha/upgrades.yml b/wiki/src/upgrade/v2/Tails/5.0~beta1/amd64/alpha/upgrades.yml
index 7ade72bcaeb..9df530af10b 100644
--- a/wiki/src/upgrade/v2/Tails/5.0~beta1/amd64/alpha/upgrades.yml
+++ b/wiki/src/upgrade/v2/Tails/5.0~beta1/amd64/alpha/upgrades.yml
@@ -4,17 +4,17 @@ channel: alpha
 initial-install-version: 5.0~beta1
 product-name: Tails
 upgrades:
-- details-url: https://tails.boum.org/news/version_5.10/
+- details-url: https://tails.boum.org/news/version_5.11/
   type: major
   upgrade-paths:
   - target-files:
-    - sha256: 7c0e5e859560de708efeb72436f3997e418f74accedc7efc5c2e2d9f8fdb10d4
-      size: 1332496384
-      url: https://download.tails.net/tails/stable/tails-amd64-5.10/tails-amd64-5.10.iso
+    - sha256: 04ca8571d9d437de6d4f6d36b3972b3cc2d64c8dc9c8234ecb4a28a45f894e28
+      size: 1316044800
+      url: https://download.tails.net/tails/stable/tails-amd64-5.11/tails-amd64-5.11.iso
     type: full
   - target-files:
-    - sha256: 1e8c7363aa5a63fb791b47e8ca3e1dcd6dc02655a161299db1f9bd017b5bde36
-      size: 678019072
-      url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.0~beta1_to_5.10.iuk
+    - sha256: 5e6395bf19fae350360b022862ff2895ab04d0140d24c15c86f54b4efe6f46a2
+      size: 662839296
+      url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.0~beta1_to_5.11.iuk
     type: incremental
-  version: '5.10'
+  version: '5.11'
diff --git a/wiki/src/upgrade/v2/Tails/5.0~beta1/amd64/alpha/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/5.0~beta1/amd64/alpha/upgrades.yml.pgp
index c686b23961f..887e1ae89e2 100644
--- a/wiki/src/upgrade/v2/Tails/5.0~beta1/amd64/alpha/upgrades.yml.pgp
+++ b/wiki/src/upgrade/v2/Tails/5.0~beta1/amd64/alpha/upgrades.yml.pgp
@@ -1,7 +1,7 @@
 -----BEGIN PGP SIGNATURE-----
 
-iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCY+zb0QAKCRCQsrS9eu0j
-X4SGAP99x6NtalKVhkLSuVOpEGaKvEfSU7HYQHOEX9qyTzba2AEAk6dtXSGpryvI
-7eEFoV/gLjtIdh2Zu5PmDyTXD6f6XAw=
-=vHn7
+iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCZBYn6AAKCRCQsrS9eu0j
+X7dnAQCq4ooE8KJDkBVUwxT6phfgNgPFzgsP3BQISzJjuQnDegEA3tHL+ThUol9G
+Z3zrb1r5HY6vbAp0DuojH4xLnIIv7wU=
+=dcqh
 -----END PGP SIGNATURE-----
diff --git a/wiki/src/upgrade/v2/Tails/5.0~beta1/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/5.0~beta1/amd64/stable/upgrades.yml
index 2a52e802b4a..ddf4042be41 100644
--- a/wiki/src/upgrade/v2/Tails/5.0~beta1/amd64/stable/upgrades.yml
+++ b/wiki/src/upgrade/v2/Tails/5.0~beta1/amd64/stable/upgrades.yml
@@ -4,17 +4,17 @@ channel: stable
 initial-install-version: 5.0~beta1
 product-name: Tails
 upgrades:
-- details-url: https://tails.boum.org/news/version_5.10/
+- details-url: https://tails.boum.org/news/version_5.11/
   type: major
   upgrade-paths:
   - target-files:
-    - sha256: 7c0e5e859560de708efeb72436f3997e418f74accedc7efc5c2e2d9f8fdb10d4
-      size: 1332496384
-      url: https://download.tails.net/tails/stable/tails-amd64-5.10/tails-amd64-5.10.iso
+    - sha256: 04ca8571d9d437de6d4f6d36b3972b3cc2d64c8dc9c8234ecb4a28a45f894e28
+      size: 1316044800
+      url: https://download.tails.net/tails/stable/tails-amd64-5.11/tails-amd64-5.11.iso
     type: full
   - target-files:
-    - sha256: 1e8c7363aa5a63fb791b47e8ca3e1dcd6dc02655a161299db1f9bd017b5bde36
-      size: 678019072
-      url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.0~beta1_to_5.10.iuk
+    - sha256: 5e6395bf19fae350360b022862ff2895ab04d0140d24c15c86f54b4efe6f46a2
+      size: 662839296
+      url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.0~beta1_to_5.11.iuk
     type: incremental
-  version: '5.10'
+  version: '5.11'
diff --git a/wiki/src/upgrade/v2/Tails/5.0~beta1/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/5.0~beta1/amd64/stable/upgrades.yml.pgp
index a188036eb4b..81b9eb0aed6 100644
--- a/wiki/src/upgrade/v2/Tails/5.0~beta1/amd64/stable/upgrades.yml.pgp
+++ b/wiki/src/upgrade/v2/Tails/5.0~beta1/amd64/stable/upgrades.yml.pgp
@@ -1,7 +1,7 @@
 -----BEGIN PGP SIGNATURE-----
 
-iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCY+zb0AAKCRCQsrS9eu0j
-X3U2AQClS7ve0u+c4ze7w+XwMoOdEIyIGdPvS3kXVnL77ZWmGwD7B6Ct0IXYgfen
-A+SqoQkqMSbgBVJ0WBIrrkYECxLjUgM=
-=Cha+
+iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCZBYn5wAKCRCQsrS9eu0j
+XzhoAQC8IXxn712t2ekxTkGdDC1DM8VuCXxtQ4XU2FtSl/vb9wD+NHa8BEHpH612
+vDKzEH54ye2+MtoQ0DICpTdIYED94QE=
+=YFF/
 -----END PGP SIGNATURE-----
diff --git a/wiki/src/upgrade/v2/Tails/5.1.1/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/5.1.1/amd64/stable/upgrades.yml
index 490c0dd16d1..a0e89b9fe9e 100644
--- a/wiki/src/upgrade/v2/Tails/5.1.1/amd64/stable/upgrades.yml
+++ b/wiki/src/upgrade/v2/Tails/5.1.1/amd64/stable/upgrades.yml
@@ -4,17 +4,17 @@ channel: stable
 initial-install-version: 5.1.1
 product-name: Tails
 upgrades:
-- details-url: https://tails.boum.org/news/version_5.10/
+- details-url: https://tails.boum.org/news/version_5.11/
   type: major
   upgrade-paths:
   - target-files:
-    - sha256: 7c0e5e859560de708efeb72436f3997e418f74accedc7efc5c2e2d9f8fdb10d4
-      size: 1332496384
-      url: https://download.tails.net/tails/stable/tails-amd64-5.10/tails-amd64-5.10.iso
+    - sha256: 04ca8571d9d437de6d4f6d36b3972b3cc2d64c8dc9c8234ecb4a28a45f894e28
+      size: 1316044800
+      url: https://download.tails.net/tails/stable/tails-amd64-5.11/tails-amd64-5.11.iso
     type: full
   - target-files:
-    - sha256: bd5b1bc46ce2c59bdc77cdd9bf447520685f2ace4ed9783d8ff55123a63bffcc
-      size: 650170368
-      url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.1.1_to_5.10.iuk
+    - sha256: ffc923a4d101528fa1205d4785e6fcdb82bfec1a3c28795b349bbac369205c89
+      size: 634966016
+      url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.1.1_to_5.11.iuk
     type: incremental
-  version: '5.10'
+  version: '5.11'
diff --git a/wiki/src/upgrade/v2/Tails/5.1.1/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/5.1.1/amd64/stable/upgrades.yml.pgp
index 53564d5a788..4ba6041aee8 100644
--- a/wiki/src/upgrade/v2/Tails/5.1.1/amd64/stable/upgrades.yml.pgp
+++ b/wiki/src/upgrade/v2/Tails/5.1.1/amd64/stable/upgrades.yml.pgp
@@ -1,7 +1,7 @@
 -----BEGIN PGP SIGNATURE-----
 
-iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCY+zb0gAKCRCQsrS9eu0j
-XxQLAP9resWn1U0nFNfdWQOVUZuATplMWwFb+qgTN+RNL5n0nQEA3nKTKl8u5ZZY
-Jb2yBPd94iR+n7mlGQLjmNb+0KdIbQs=
-=nccr
+iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCZBYn6QAKCRCQsrS9eu0j
+X5nQAQCqef3CnObsngK6n2HTnax1nwzTA1zdlCxBMErc942AqQEA2/FZVYMPZRZ9
+bNwq8gEklM2a5iaRTpCwVhnVnMstcg8=
+=F1Kn
 -----END PGP SIGNATURE-----
diff --git a/wiki/src/upgrade/v2/Tails/5.1/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/5.1/amd64/stable/upgrades.yml
index ade73619985..d1a5297b9f0 100644
--- a/wiki/src/upgrade/v2/Tails/5.1/amd64/stable/upgrades.yml
+++ b/wiki/src/upgrade/v2/Tails/5.1/amd64/stable/upgrades.yml
@@ -4,17 +4,17 @@ channel: stable
 initial-install-version: '5.1'
 product-name: Tails
 upgrades:
-- details-url: https://tails.boum.org/news/version_5.10/
+- details-url: https://tails.boum.org/news/version_5.11/
   type: major
   upgrade-paths:
   - target-files:
-    - sha256: 7c0e5e859560de708efeb72436f3997e418f74accedc7efc5c2e2d9f8fdb10d4
-      size: 1332496384
-      url: https://download.tails.net/tails/stable/tails-amd64-5.10/tails-amd64-5.10.iso
+    - sha256: 04ca8571d9d437de6d4f6d36b3972b3cc2d64c8dc9c8234ecb4a28a45f894e28
+      size: 1316044800
+      url: https://download.tails.net/tails/stable/tails-amd64-5.11/tails-amd64-5.11.iso
     type: full
   - target-files:
-    - sha256: dab746b177c00297c48f236a4751b7a49d22e837c906d138dd57fb110ec8e0f8
-      size: 653004800
-      url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.1_to_5.10.iuk
+    - sha256: 8891af7be61ff498845f2ad69c124460737df0590839724d1df6b2bf8d754991
+      size: 637792256
+      url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.1_to_5.11.iuk
     type: incremental
-  version: '5.10'
+  version: '5.11'
diff --git a/wiki/src/upgrade/v2/Tails/5.1/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/5.1/amd64/stable/upgrades.yml.pgp
index e5ddbce1519..89488374a8b 100644
--- a/wiki/src/upgrade/v2/Tails/5.1/amd64/stable/upgrades.yml.pgp
+++ b/wiki/src/upgrade/v2/Tails/5.1/amd64/stable/upgrades.yml.pgp
@@ -1,7 +1,7 @@
 -----BEGIN PGP SIGNATURE-----
 
-iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCY+zb1wAKCRCQsrS9eu0j
-X+qbAP9abuQ0AnomP/u3VusljnuPgEoFWqmCkjDE4BwgWKc+WwD/b5B9UgtiSi35
-HD/rikxUviKUAsALnIEORUUsD975+AI=
-=ac55
+iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCZBYn7gAKCRCQsrS9eu0j
+X5JNAP9b2p2eh/eqgoDI+u2Ni0Ue4CRhaKcRS+iQ0hS0RSPj2gEAq3Df6xnQvlPo
+7xkK0BwmiC7ni+47JI9oS/PCEAKzeg4=
+=9vHx
 -----END PGP SIGNATURE-----
diff --git a/wiki/src/upgrade/v2/Tails/5.10/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/5.10/amd64/stable/upgrades.yml
index 896231f3a0f..3dd3fb01535 100644
--- a/wiki/src/upgrade/v2/Tails/5.10/amd64/stable/upgrades.yml
+++ b/wiki/src/upgrade/v2/Tails/5.10/amd64/stable/upgrades.yml
@@ -3,3 +3,18 @@ build-target: amd64
 channel: stable
 initial-install-version: '5.10'
 product-name: Tails
+upgrades:
+- details-url: https://tails.boum.org/news/version_5.11/
+  type: major
+  upgrade-paths:
+  - target-files:
+    - sha256: 04ca8571d9d437de6d4f6d36b3972b3cc2d64c8dc9c8234ecb4a28a45f894e28
+      size: 1316044800
+      url: https://download.tails.net/tails/stable/tails-amd64-5.11/tails-amd64-5.11.iso
+    type: full
+  - target-files:
+    - sha256: aa8ac7dc4d1d77edef08bd82d7033715c4f35165d60fbdd79821c29d5a28e608
+      size: 430923776
+      url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.10_to_5.11.iuk
+    type: incremental
+  version: '5.11'
diff --git a/wiki/src/upgrade/v2/Tails/5.10/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/5.10/amd64/stable/upgrades.yml.pgp
index 68af70ed9cb..db2b18f85c7 100644
--- a/wiki/src/upgrade/v2/Tails/5.10/amd64/stable/upgrades.yml.pgp
+++ b/wiki/src/upgrade/v2/Tails/5.10/amd64/stable/upgrades.yml.pgp
@@ -1,7 +1,7 @@
 -----BEGIN PGP SIGNATURE-----
 
-iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCY2JWLgAKCRCQsrS9eu0j
-X4WPAQDlxdzT3Q5seEEE87aIc79st68+UmbXP+a6WErqYD133QEA1/7DgtCDq62s
-eMOVD0kW+yYhttVWv1L2h9p4LcOc3Qs=
-=ODEl
+iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCZBYn5gAKCRCQsrS9eu0j
+XwxcAP4/U9RdT1aZTdqM2egdpx16Zb03PGa7IrFgCws9mYNzewD/RZXvmDOc395G
+b947l/TuowpZ09byVyaJhh8bKoAzagI=
+=jkwF
 -----END PGP SIGNATURE-----
diff --git a/wiki/src/upgrade/v2/Tails/5.11.1/amd64/alpha/upgrades.yml b/wiki/src/upgrade/v2/Tails/5.11.1/amd64/alpha/upgrades.yml
new file mode 100644
index 00000000000..95c3e7ba9d0
--- /dev/null
+++ b/wiki/src/upgrade/v2/Tails/5.11.1/amd64/alpha/upgrades.yml
@@ -0,0 +1,5 @@
+---
+build-target: amd64
+channel: alpha
+initial-install-version: 5.11.1
+product-name: Tails
diff --git a/wiki/src/upgrade/v2/Tails/5.11.1/amd64/alpha/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/5.11.1/amd64/alpha/upgrades.yml.pgp
new file mode 100644
index 00000000000..799e99f53b8
--- /dev/null
+++ b/wiki/src/upgrade/v2/Tails/5.11.1/amd64/alpha/upgrades.yml.pgp
@@ -0,0 +1,7 @@
+-----BEGIN PGP SIGNATURE-----
+
+iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCZBYn2wAKCRCQsrS9eu0j
+X6AuAP4yFOmBoDo/GCanpAVqs5dT0kC1QrJmDATWBta/6qaeVQD/aT9cypHZWTPn
+sLLkLbzBT2Ye1Lub3y4Q8E2Qxmpb5w4=
+=ctJO
+-----END PGP SIGNATURE-----
diff --git a/wiki/src/upgrade/v2/Tails/5.11.1/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/5.11.1/amd64/stable/upgrades.yml
new file mode 100644
index 00000000000..2ad2837ad3d
--- /dev/null
+++ b/wiki/src/upgrade/v2/Tails/5.11.1/amd64/stable/upgrades.yml
@@ -0,0 +1,5 @@
+---
+build-target: amd64
+channel: stable
+initial-install-version: 5.11.1
+product-name: Tails
diff --git a/wiki/src/upgrade/v2/Tails/5.11.1/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/5.11.1/amd64/stable/upgrades.yml.pgp
new file mode 100644
index 00000000000..6f850b6831e
--- /dev/null
+++ b/wiki/src/upgrade/v2/Tails/5.11.1/amd64/stable/upgrades.yml.pgp
@@ -0,0 +1,7 @@
+-----BEGIN PGP SIGNATURE-----
+
+iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCZBYnzgAKCRCQsrS9eu0j
+X681AP9cVxs39KixUgfezrZBbXOTS2qhQYvKwUz85w5bn3kM7wEAuaIEAQlm2ZMt
+QVuLBay+wc8TXUFSObJFf4lEvJkCFAE=
+=ElaE
+-----END PGP SIGNATURE-----
diff --git a/wiki/src/upgrade/v2/Tails/5.2/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/5.2/amd64/stable/upgrades.yml
index 8de98eb7baa..34bba7500ce 100644
--- a/wiki/src/upgrade/v2/Tails/5.2/amd64/stable/upgrades.yml
+++ b/wiki/src/upgrade/v2/Tails/5.2/amd64/stable/upgrades.yml
@@ -4,17 +4,17 @@ channel: stable
 initial-install-version: '5.2'
 product-name: Tails
 upgrades:
-- details-url: https://tails.boum.org/news/version_5.10/
+- details-url: https://tails.boum.org/news/version_5.11/
   type: major
   upgrade-paths:
   - target-files:
-    - sha256: 7c0e5e859560de708efeb72436f3997e418f74accedc7efc5c2e2d9f8fdb10d4
-      size: 1332496384
-      url: https://download.tails.net/tails/stable/tails-amd64-5.10/tails-amd64-5.10.iso
+    - sha256: 04ca8571d9d437de6d4f6d36b3972b3cc2d64c8dc9c8234ecb4a28a45f894e28
+      size: 1316044800
+      url: https://download.tails.net/tails/stable/tails-amd64-5.11/tails-amd64-5.11.iso
     type: full
   - target-files:
-    - sha256: 9dcb60e2ea0da624c4602d28c405da10b3c7242c8168a70d7bbd7773fb7fd74e
-      size: 616415232
-      url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.2_to_5.10.iuk
+    - sha256: 85ce822589bf7a8203958daa2a8d72a0a174be47ee4f1641db47f2857967a81b
+      size: 601214976
+      url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.2_to_5.11.iuk
     type: incremental
-  version: '5.10'
+  version: '5.11'
diff --git a/wiki/src/upgrade/v2/Tails/5.2/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/5.2/amd64/stable/upgrades.yml.pgp
index 2a9b5c8597e..9f5df17111c 100644
--- a/wiki/src/upgrade/v2/Tails/5.2/amd64/stable/upgrades.yml.pgp
+++ b/wiki/src/upgrade/v2/Tails/5.2/amd64/stable/upgrades.yml.pgp
@@ -1,7 +1,7 @@
 -----BEGIN PGP SIGNATURE-----
 
-iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCY+zbyAAKCRCQsrS9eu0j
-XwfXAP9OS0vgK2DK633/OnPuFIs4dNKTrl5CcgOu1yvUydOfhQD/YrmS7MACFte8
-m2HxYEMjwWoq224+IXWQ9LGc94KStgc=
-=Vey/
+iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCZBYn3gAKCRCQsrS9eu0j
+X72QAP4l6hg7zPP0oyjuTLrv2eZqw/fkM4YcmmUeKWB0iKQwqwD+Oq8e0K3LbgFD
+DrGQ6WSzKmqJxLo45/41wlMLgWk61gA=
+=pVGO
 -----END PGP SIGNATURE-----
diff --git a/wiki/src/upgrade/v2/Tails/5.3.1/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/5.3.1/amd64/stable/upgrades.yml
index cc4c76cae5f..6986ea6940b 100644
--- a/wiki/src/upgrade/v2/Tails/5.3.1/amd64/stable/upgrades.yml
+++ b/wiki/src/upgrade/v2/Tails/5.3.1/amd64/stable/upgrades.yml
@@ -4,17 +4,17 @@ channel: stable
 initial-install-version: 5.3.1
 product-name: Tails
 upgrades:
-- details-url: https://tails.boum.org/news/version_5.10/
+- details-url: https://tails.boum.org/news/version_5.11/
   type: major
   upgrade-paths:
   - target-files:
-    - sha256: 7c0e5e859560de708efeb72436f3997e418f74accedc7efc5c2e2d9f8fdb10d4
-      size: 1332496384
-      url: https://download.tails.net/tails/stable/tails-amd64-5.10/tails-amd64-5.10.iso
+    - sha256: 04ca8571d9d437de6d4f6d36b3972b3cc2d64c8dc9c8234ecb4a28a45f894e28
+      size: 1316044800
+      url: https://download.tails.net/tails/stable/tails-amd64-5.11/tails-amd64-5.11.iso
     type: full
   - target-files:
-    - sha256: cafec218abf7df37d899c450ecb3cbd965cea721e1a89c5267685b61836d06af
-      size: 606343168
-      url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.3.1_to_5.10.iuk
+    - sha256: 4a1e32d30cd2c1c190e6e859974d93f3d2537dca149ba0dbd30413508318ac60
+      size: 591269888
+      url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.3.1_to_5.11.iuk
     type: incremental
-  version: '5.10'
+  version: '5.11'
diff --git a/wiki/src/upgrade/v2/Tails/5.3.1/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/5.3.1/amd64/stable/upgrades.yml.pgp
index dc8275089e2..0238bb26c04 100644
--- a/wiki/src/upgrade/v2/Tails/5.3.1/amd64/stable/upgrades.yml.pgp
+++ b/wiki/src/upgrade/v2/Tails/5.3.1/amd64/stable/upgrades.yml.pgp
@@ -1,7 +1,7 @@
 -----BEGIN PGP SIGNATURE-----
 
-iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCY+zbzAAKCRCQsrS9eu0j
-X0T+AQDiF5KrzNtEFxnKRxoR9SN1WVskCCz/FoLC0zRZpqJe7wEA9iqGeKS7U9mj
-nZY1E205b+6hXzf/auLrDLpKgwlXPwQ=
-=84Ny
+iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCZBYn4gAKCRCQsrS9eu0j
+X26mAPwPuIoDeXzwdnu+NDYmfzzn7qX68o5H4piTuzvEPO6WkwEA7jMPKwlGXOSD
+gstH96wM4/vuvnBBnbJa9fGf4gPEfAs=
+=gKqi
 -----END PGP SIGNATURE-----
diff --git a/wiki/src/upgrade/v2/Tails/5.3/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/5.3/amd64/stable/upgrades.yml
index 50a457ceeb5..122a1bd8303 100644
--- a/wiki/src/upgrade/v2/Tails/5.3/amd64/stable/upgrades.yml
+++ b/wiki/src/upgrade/v2/Tails/5.3/amd64/stable/upgrades.yml
@@ -4,17 +4,17 @@ channel: stable
 initial-install-version: '5.3'
 product-name: Tails
 upgrades:
-- details-url: https://tails.boum.org/news/version_5.10/
+- details-url: https://tails.boum.org/news/version_5.11/
   type: major
   upgrade-paths:
   - target-files:
-    - sha256: 7c0e5e859560de708efeb72436f3997e418f74accedc7efc5c2e2d9f8fdb10d4
-      size: 1332496384
-      url: https://download.tails.net/tails/stable/tails-amd64-5.10/tails-amd64-5.10.iso
+    - sha256: 04ca8571d9d437de6d4f6d36b3972b3cc2d64c8dc9c8234ecb4a28a45f894e28
+      size: 1316044800
+      url: https://download.tails.net/tails/stable/tails-amd64-5.11/tails-amd64-5.11.iso
     type: full
   - target-files:
-    - sha256: 48ed062df7891b8c55d35ec8c756876834a5346de7576c6bbf56976e73964794
-      size: 606343168
-      url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.3_to_5.10.iuk
+    - sha256: 48f533237a40c8b80e5f494ab1c32bf99692397293b9152879bea37eeb2956a4
+      size: 591269888
+      url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.3_to_5.11.iuk
     type: incremental
-  version: '5.10'
+  version: '5.11'
diff --git a/wiki/src/upgrade/v2/Tails/5.3/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/5.3/amd64/stable/upgrades.yml.pgp
index ca8be63eae8..b764d0eea4e 100644
--- a/wiki/src/upgrade/v2/Tails/5.3/amd64/stable/upgrades.yml.pgp
+++ b/wiki/src/upgrade/v2/Tails/5.3/amd64/stable/upgrades.yml.pgp
@@ -1,7 +1,7 @@
 -----BEGIN PGP SIGNATURE-----
 
-iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCY+zbwQAKCRCQsrS9eu0j
-X2dzAQDb9UjzWCZsNvDR+w+PfL9p1Kczx3lCql7bjHZIjngByQEAxnb2idaebbof
-AF41UJ60a7bec0yPL2wskpx0TSgjjg0=
-=BBhE
+iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCZBYn3AAKCRCQsrS9eu0j
+XyENAP9mWcVGQbL6jXr0yfAMribn9DA9im5tuIaoqu5zJ3LjPQD7BQkDSsosSuG+
+Ks0+ARXZn6P3iqsAr7USbNtIrCI+nAU=
+=/rpP
 -----END PGP SIGNATURE-----
diff --git a/wiki/src/upgrade/v2/Tails/5.4/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/5.4/amd64/stable/upgrades.yml
index bf0a2a242e9..1e2c31ac5a4 100644
--- a/wiki/src/upgrade/v2/Tails/5.4/amd64/stable/upgrades.yml
+++ b/wiki/src/upgrade/v2/Tails/5.4/amd64/stable/upgrades.yml
@@ -4,17 +4,17 @@ channel: stable
 initial-install-version: '5.4'
 product-name: Tails
 upgrades:
-- details-url: https://tails.boum.org/news/version_5.10/
+- details-url: https://tails.boum.org/news/version_5.11/
   type: major
   upgrade-paths:
   - target-files:
-    - sha256: 7c0e5e859560de708efeb72436f3997e418f74accedc7efc5c2e2d9f8fdb10d4
-      size: 1332496384
-      url: https://download.tails.net/tails/stable/tails-amd64-5.10/tails-amd64-5.10.iso
+    - sha256: 04ca8571d9d437de6d4f6d36b3972b3cc2d64c8dc9c8234ecb4a28a45f894e28
+      size: 1316044800
+      url: https://download.tails.net/tails/stable/tails-amd64-5.11/tails-amd64-5.11.iso
     type: full
   - target-files:
-    - sha256: 41219edfbf3ab69024a78e3c49dc22c0370d46027358a545bf072d21862e1d64
-      size: 597336064
-      url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.4_to_5.10.iuk
+    - sha256: e69e13a49eeb513d8079f274aa5f5c2a993160b38c4f009ef4673eb29894e477
+      size: 582250496
+      url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.4_to_5.11.iuk
     type: incremental
-  version: '5.10'
+  version: '5.11'
diff --git a/wiki/src/upgrade/v2/Tails/5.4/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/5.4/amd64/stable/upgrades.yml.pgp
index 001e47af1c1..e3674d83290 100644
--- a/wiki/src/upgrade/v2/Tails/5.4/amd64/stable/upgrades.yml.pgp
+++ b/wiki/src/upgrade/v2/Tails/5.4/amd64/stable/upgrades.yml.pgp
@@ -1,7 +1,7 @@
 -----BEGIN PGP SIGNATURE-----
 
-iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCY+zb0wAKCRCQsrS9eu0j
-X8bJAP0d1pbLsPAPgoEXtffsfV5/gcAY3PHsR1Xh2Qm4VKHudwEAiuWaDCHNQv9c
-JBqGCBZu542hRIqf8uTKbcgqJRa82A4=
-=T7H2
+iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCZBYn6gAKCRCQsrS9eu0j
+X4EhAQCEl38Jeh/pLN+Lvl6NbDpCYuDxjnotYjONyuhSankZ0QD+NatucQ03xNhg
+TD7JxYu+WGvhRjCRkkoVVUgxDZD/tQE=
+=7F7J
 -----END PGP SIGNATURE-----
diff --git a/wiki/src/upgrade/v2/Tails/5.5/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/5.5/amd64/stable/upgrades.yml
index 539d9dd8f52..405f451e2ac 100644
--- a/wiki/src/upgrade/v2/Tails/5.5/amd64/stable/upgrades.yml
+++ b/wiki/src/upgrade/v2/Tails/5.5/amd64/stable/upgrades.yml
@@ -4,17 +4,17 @@ channel: stable
 initial-install-version: '5.5'
 product-name: Tails
 upgrades:
-- details-url: https://tails.boum.org/news/version_5.10/
+- details-url: https://tails.boum.org/news/version_5.11/
   type: major
   upgrade-paths:
   - target-files:
-    - sha256: 7c0e5e859560de708efeb72436f3997e418f74accedc7efc5c2e2d9f8fdb10d4
-      size: 1332496384
-      url: https://download.tails.net/tails/stable/tails-amd64-5.10/tails-amd64-5.10.iso
+    - sha256: 04ca8571d9d437de6d4f6d36b3972b3cc2d64c8dc9c8234ecb4a28a45f894e28
+      size: 1316044800
+      url: https://download.tails.net/tails/stable/tails-amd64-5.11/tails-amd64-5.11.iso
     type: full
   - target-files:
-    - sha256: 1ada8e63d56b0663ef75d5813efe8c5d5a1dc6acec9480b348cc3015c9974375
-      size: 514957312
-      url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.5_to_5.10.iuk
+    - sha256: 8edf02b7c88c7b75aed50d3d062fd721c0f245706950f85e67a7f708724c3d13
+      size: 499847168
+      url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.5_to_5.11.iuk
     type: incremental
-  version: '5.10'
+  version: '5.11'
diff --git a/wiki/src/upgrade/v2/Tails/5.5/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/5.5/amd64/stable/upgrades.yml.pgp
index ba81f4c6d3b..3b6f8533681 100644
--- a/wiki/src/upgrade/v2/Tails/5.5/amd64/stable/upgrades.yml.pgp
+++ b/wiki/src/upgrade/v2/Tails/5.5/amd64/stable/upgrades.yml.pgp
@@ -1,7 +1,7 @@
 -----BEGIN PGP SIGNATURE-----
 
-iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCY+zbzwAKCRCQsrS9eu0j
-Xwy2APwOLTaewrXRlK6GTMA8qMh4o8zaUkcISiHBdoIZT675/wEA1cho0Ul3VFdz
-Vte4IOD0fccwZJ1aBS8qReqJaoD+ywM=
-=eG8b
+iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCZBYn5AAKCRCQsrS9eu0j
+X2qyAQDXd3cI7rHEjI2iebsyV7b9Rq6w4qpowCO4samvUgQSbAEA6A7/fbCfHFjF
+7LQDclVhqaszPgMRjS8uVBO5DQwA8w8=
+=blVU
 -----END PGP SIGNATURE-----
diff --git a/wiki/src/upgrade/v2/Tails/5.6/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/5.6/amd64/stable/upgrades.yml
index 26678cbaf5c..aa9a10b23a2 100644
--- a/wiki/src/upgrade/v2/Tails/5.6/amd64/stable/upgrades.yml
+++ b/wiki/src/upgrade/v2/Tails/5.6/amd64/stable/upgrades.yml
@@ -4,17 +4,17 @@ channel: stable
 initial-install-version: '5.6'
 product-name: Tails
 upgrades:
-- details-url: https://tails.boum.org/news/version_5.10/
+- details-url: https://tails.boum.org/news/version_5.11/
   type: major
   upgrade-paths:
   - target-files:
-    - sha256: 7c0e5e859560de708efeb72436f3997e418f74accedc7efc5c2e2d9f8fdb10d4
-      size: 1332496384
-      url: https://download.tails.net/tails/stable/tails-amd64-5.10/tails-amd64-5.10.iso
+    - sha256: 04ca8571d9d437de6d4f6d36b3972b3cc2d64c8dc9c8234ecb4a28a45f894e28
+      size: 1316044800
+      url: https://download.tails.net/tails/stable/tails-amd64-5.11/tails-amd64-5.11.iso
     type: full
   - target-files:
-    - sha256: 926430c730221bf608c3fd617bdcf99e0fd4965aa66e39ee5c943b6024cf4c15
-      size: 514793472
-      url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.6_to_5.10.iuk
+    - sha256: 76b4a7828425a0b6230089385d988c1536d8ae60339fe4fab6712cbf960b1330
+      size: 499695616
+      url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.6_to_5.11.iuk
     type: incremental
-  version: '5.10'
+  version: '5.11'
diff --git a/wiki/src/upgrade/v2/Tails/5.6/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/5.6/amd64/stable/upgrades.yml.pgp
index 2a2fa697a61..28009aa93c5 100644
--- a/wiki/src/upgrade/v2/Tails/5.6/amd64/stable/upgrades.yml.pgp
+++ b/wiki/src/upgrade/v2/Tails/5.6/amd64/stable/upgrades.yml.pgp
@@ -1,7 +1,7 @@
 -----BEGIN PGP SIGNATURE-----
 
-iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCY+zbxwAKCRCQsrS9eu0j
-XwkTAQD5yVJMnTTh/Yw78BWWqKIYA69sqhwpAdw53Gf0Cufq7gD/WJfnkByQYNNb
-rPl2/u3yxiecMp33qC8AxQ2+KzsUXAs=
-=pAIm
+iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCZBYn3QAKCRCQsrS9eu0j
+X4+WAQDSO0bX8ycaGMIDWMemPwgatldMABF8lRWHKWG3YMDo4AD/dVC2sJrDBZyr
+iTvIVFDlZY1/iuCMF1HkezQFmeAnfQY=
+=DvMR
 -----END PGP SIGNATURE-----
diff --git a/wiki/src/upgrade/v2/Tails/5.7/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/5.7/amd64/stable/upgrades.yml
index 8b5a83c7370..f7ac6d0f442 100644
--- a/wiki/src/upgrade/v2/Tails/5.7/amd64/stable/upgrades.yml
+++ b/wiki/src/upgrade/v2/Tails/5.7/amd64/stable/upgrades.yml
@@ -4,17 +4,17 @@ channel: stable
 initial-install-version: '5.7'
 product-name: Tails
 upgrades:
-- details-url: https://tails.boum.org/news/version_5.10/
+- details-url: https://tails.boum.org/news/version_5.11/
   type: major
   upgrade-paths:
   - target-files:
-    - sha256: 7c0e5e859560de708efeb72436f3997e418f74accedc7efc5c2e2d9f8fdb10d4
-      size: 1332496384
-      url: https://download.tails.net/tails/stable/tails-amd64-5.10/tails-amd64-5.10.iso
+    - sha256: 04ca8571d9d437de6d4f6d36b3972b3cc2d64c8dc9c8234ecb4a28a45f894e28
+      size: 1316044800
+      url: https://download.tails.net/tails/stable/tails-amd64-5.11/tails-amd64-5.11.iso
     type: full
   - target-files:
-    - sha256: 727754d50b1041f7f1e3e5f96a45375516af868b95287c566cd0c1aa94bd0449
-      size: 501575680
-      url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.7_to_5.10.iuk
+    - sha256: 7c4816eff8b919381232707cbe1678344f1ef3d78263a906968f59ee5947f225
+      size: 486404096
+      url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.7_to_5.11.iuk
     type: incremental
-  version: '5.10'
+  version: '5.11'
diff --git a/wiki/src/upgrade/v2/Tails/5.7/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/5.7/amd64/stable/upgrades.yml.pgp
index 91bdf47718e..c0dd75b7ab9 100644
--- a/wiki/src/upgrade/v2/Tails/5.7/amd64/stable/upgrades.yml.pgp
+++ b/wiki/src/upgrade/v2/Tails/5.7/amd64/stable/upgrades.yml.pgp
@@ -1,7 +1,7 @@
 -----BEGIN PGP SIGNATURE-----
 
-iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCY+zbyQAKCRCQsrS9eu0j
-X7/OAP9iE9rU2VsyC/1dzyaoaT6D/0b/Qgg0ESwJKfb4wT5iFwD9FYlv7f9r0Y3o
-C8QJWap8kj8exVTmdis7U+QLTtxihAw=
-=raRF
+iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCZBYn3wAKCRCQsrS9eu0j
+X84+AP9+NH6OZNzwMiMfdTTVDVDoUmqfoIVSfCTPIq5/iIrGDQD/ZHdp/3odzdUx
+hQRc2xCOQPUzt0c1gtExz93SIQe8PAQ=
+=H/Uz
 -----END PGP SIGNATURE-----
diff --git a/wiki/src/upgrade/v2/Tails/5.8/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/5.8/amd64/stable/upgrades.yml
index b9d9aa56125..aec3265dee1 100644
--- a/wiki/src/upgrade/v2/Tails/5.8/amd64/stable/upgrades.yml
+++ b/wiki/src/upgrade/v2/Tails/5.8/amd64/stable/upgrades.yml
@@ -4,17 +4,17 @@ channel: stable
 initial-install-version: '5.8'
 product-name: Tails
 upgrades:
-- details-url: https://tails.boum.org/news/version_5.10/
+- details-url: https://tails.boum.org/news/version_5.11/
   type: major
   upgrade-paths:
   - target-files:
-    - sha256: 7c0e5e859560de708efeb72436f3997e418f74accedc7efc5c2e2d9f8fdb10d4
-      size: 1332496384
-      url: https://download.tails.net/tails/stable/tails-amd64-5.10/tails-amd64-5.10.iso
+    - sha256: 04ca8571d9d437de6d4f6d36b3972b3cc2d64c8dc9c8234ecb4a28a45f894e28
+      size: 1316044800
+      url: https://download.tails.net/tails/stable/tails-amd64-5.11/tails-amd64-5.11.iso
     type: full
   - target-files:
-    - sha256: cc2c7b782e738736dfacac39f038b47818d37b73e4ef6689d1ef869d00838e2c
-      size: 410415104
-      url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.8_to_5.10.iuk
+    - sha256: 65031458afe4dc98e3d06cf552c748cc01ca55bed8def015cf6dd341d8cab762
+      size: 444686336
+      url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.8_to_5.11.iuk
     type: incremental
-  version: '5.10'
+  version: '5.11'
diff --git a/wiki/src/upgrade/v2/Tails/5.8/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/5.8/amd64/stable/upgrades.yml.pgp
index 6e9e9e7f244..5698ba087b9 100644
--- a/wiki/src/upgrade/v2/Tails/5.8/amd64/stable/upgrades.yml.pgp
+++ b/wiki/src/upgrade/v2/Tails/5.8/amd64/stable/upgrades.yml.pgp
@@ -1,7 +1,7 @@
 -----BEGIN PGP SIGNATURE-----
 
-iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCY+zb0AAKCRCQsrS9eu0j
-XyTiAP9GeilzERw/ZXdQ5sGsygRsuIloUrZADFfuIicNNvWxZwEAqAFPJ4fLWQkH
-AYMPcgIYYVgDnbg8xv8S+o3KZ0EpyQU=
-=uM06
+iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCZBYn5QAKCRCQsrS9eu0j
+X0UcAP4q63UCrDHBQ19X57/xd+92WdLKXd2MBDHIxFH8YBsKwgD+L8dzLq0yHljE
+2HSRYY1YiEQQC+cB3Tf81SPBgUsIHAM=
+=+Jm8
 -----END PGP SIGNATURE-----
diff --git a/wiki/src/upgrade/v2/Tails/5.8~beta1/amd64/alpha/upgrades.yml b/wiki/src/upgrade/v2/Tails/5.8~beta1/amd64/alpha/upgrades.yml
index 7a514a87dc5..320ab63a5ed 100644
--- a/wiki/src/upgrade/v2/Tails/5.8~beta1/amd64/alpha/upgrades.yml
+++ b/wiki/src/upgrade/v2/Tails/5.8~beta1/amd64/alpha/upgrades.yml
@@ -4,12 +4,12 @@ channel: alpha
 initial-install-version: 5.8~beta1
 product-name: Tails
 upgrades:
-- details-url: https://tails.boum.org/news/version_5.10/
+- details-url: https://tails.boum.org/news/version_5.11/
   type: major
   upgrade-paths:
   - target-files:
-    - sha256: 7c0e5e859560de708efeb72436f3997e418f74accedc7efc5c2e2d9f8fdb10d4
-      size: 1332496384
-      url: https://download.tails.net/tails/stable/tails-amd64-5.10/tails-amd64-5.10.iso
+    - sha256: 04ca8571d9d437de6d4f6d36b3972b3cc2d64c8dc9c8234ecb4a28a45f894e28
+      size: 1316044800
+      url: https://download.tails.net/tails/stable/tails-amd64-5.11/tails-amd64-5.11.iso
     type: full
-  version: '5.10'
+  version: '5.11'
diff --git a/wiki/src/upgrade/v2/Tails/5.8~beta1/amd64/alpha/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/5.8~beta1/amd64/alpha/upgrades.yml.pgp
index 46abf721427..450871ca37d 100644
--- a/wiki/src/upgrade/v2/Tails/5.8~beta1/amd64/alpha/upgrades.yml.pgp
+++ b/wiki/src/upgrade/v2/Tails/5.8~beta1/amd64/alpha/upgrades.yml.pgp
@@ -1,7 +1,7 @@
 -----BEGIN PGP SIGNATURE-----
 
-iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCY+zbywAKCRCQsrS9eu0j
-XxLTAQD6itTmW1zkAMk+H56e6CrSrv9Usk4cBZUo2r1PeDOA2wD/QFvM7QWGy23+
-a7p0VdBEHVoa4RTgbsLnbjgcSEwtNwM=
-=3bJ5
+iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCZBYn4QAKCRCQsrS9eu0j
+XwiPAQClmernIUHSl/uSuFWKa+f6J2LIdeALsiBcfDQDoKlA+QEA/Pjngx8sQEdU
+jK1Hh1Na3fwyOWWrSVUd+cRnnb2NMwM=
+=GmZr
 -----END PGP SIGNATURE-----
diff --git a/wiki/src/upgrade/v2/Tails/5.8~beta1/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/5.8~beta1/amd64/stable/upgrades.yml
index f20e6c03510..920b45d0901 100644
--- a/wiki/src/upgrade/v2/Tails/5.8~beta1/amd64/stable/upgrades.yml
+++ b/wiki/src/upgrade/v2/Tails/5.8~beta1/amd64/stable/upgrades.yml
@@ -4,12 +4,12 @@ channel: stable
 initial-install-version: 5.8~beta1
 product-name: Tails
 upgrades:
-- details-url: https://tails.boum.org/news/version_5.10/
+- details-url: https://tails.boum.org/news/version_5.11/
   type: major
   upgrade-paths:
   - target-files:
-    - sha256: 7c0e5e859560de708efeb72436f3997e418f74accedc7efc5c2e2d9f8fdb10d4
-      size: 1332496384
-      url: https://download.tails.net/tails/stable/tails-amd64-5.10/tails-amd64-5.10.iso
+    - sha256: 04ca8571d9d437de6d4f6d36b3972b3cc2d64c8dc9c8234ecb4a28a45f894e28
+      size: 1316044800
+      url: https://download.tails.net/tails/stable/tails-amd64-5.11/tails-amd64-5.11.iso
     type: full
-  version: '5.10'
+  version: '5.11'
diff --git a/wiki/src/upgrade/v2/Tails/5.8~beta1/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/5.8~beta1/amd64/stable/upgrades.yml.pgp
index 8ba7147dd84..d5c3d34afc7 100644
--- a/wiki/src/upgrade/v2/Tails/5.8~beta1/amd64/stable/upgrades.yml.pgp
+++ b/wiki/src/upgrade/v2/Tails/5.8~beta1/amd64/stable/upgrades.yml.pgp
@@ -1,7 +1,7 @@
 -----BEGIN PGP SIGNATURE-----
 
-iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCY+zbygAKCRCQsrS9eu0j
-X0oFAP0aiZwd9NzSA2JoSaYLPEYui2Dj4ctCH8qxWfCEBvyCjgEA47QlcHPejTwG
-Jqk4KF4DcDVr4JYUN/xjTsJYgUI9NAk=
-=3rHn
+iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCZBYn4AAKCRCQsrS9eu0j
+X++DAQClPblqmpINAqELLtQ0FhY9iyX8UVEKHoklYWzdo0utZwEAsbH0GpG5y6lf
+Ng2404i5rK+U6eqlxeUvQFP6OB9B4QM=
+=DwUN
 -----END PGP SIGNATURE-----
diff --git a/wiki/src/upgrade/v2/Tails/5.9/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/5.9/amd64/stable/upgrades.yml
index 3956d787ac5..dfbda44b608 100644
--- a/wiki/src/upgrade/v2/Tails/5.9/amd64/stable/upgrades.yml
+++ b/wiki/src/upgrade/v2/Tails/5.9/amd64/stable/upgrades.yml
@@ -4,17 +4,17 @@ channel: stable
 initial-install-version: '5.9'
 product-name: Tails
 upgrades:
-- details-url: https://tails.boum.org/news/version_5.10/
+- details-url: https://tails.boum.org/news/version_5.11/
   type: major
   upgrade-paths:
   - target-files:
-    - sha256: 7c0e5e859560de708efeb72436f3997e418f74accedc7efc5c2e2d9f8fdb10d4
-      size: 1332496384
-      url: https://download.tails.net/tails/stable/tails-amd64-5.10/tails-amd64-5.10.iso
+    - sha256: 04ca8571d9d437de6d4f6d36b3972b3cc2d64c8dc9c8234ecb4a28a45f894e28
+      size: 1316044800
+      url: https://download.tails.net/tails/stable/tails-amd64-5.11/tails-amd64-5.11.iso
     type: full
   - target-files:
-    - sha256: b49b03e4775b1d78b9839a13f1a7c9c43b67e2376e911348647a90e40974b41f
-      size: 198172672
-      url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.9_to_5.10.iuk
+    - sha256: 30d2e232956cf01d3eecf67719911f5b02c3896f2e695ba4af79675bdb45970a
+      size: 439832576
+      url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.9_to_5.11.iuk
     type: incremental
-  version: '5.10'
+  version: '5.11'
diff --git a/wiki/src/upgrade/v2/Tails/5.9/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/5.9/amd64/stable/upgrades.yml.pgp
index bf12070784a..767ae3fa791 100644
--- a/wiki/src/upgrade/v2/Tails/5.9/amd64/stable/upgrades.yml.pgp
+++ b/wiki/src/upgrade/v2/Tails/5.9/amd64/stable/upgrades.yml.pgp
@@ -1,7 +1,7 @@
 -----BEGIN PGP SIGNATURE-----
 
-iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCY+zb1AAKCRCQsrS9eu0j
-X+8JAP9B3SwtUA4VokBrOvuSs5K5idCVeW1b7l4INchsy8YC8wD/YL5Kex/HEYmu
-n1aQWj4owClrLQ1DRenu97GZwLdUAgI=
-=xQrJ
+iHQEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCZBYn6wAKCRCQsrS9eu0j
+X2TzAQDI+lfK9gyl9svTWfUxDtsrPvU0/5SEx6uBGIlywloXfQD3UrGMu4IEAi8E
+ZhtRZZGm75/UjokucmLhHDYaLnzkDA==
+=26YJ
 -----END PGP SIGNATURE-----
diff --git a/wiki/src/upgrade/v2/Tails/6.0/amd64/alpha/upgrades.yml b/wiki/src/upgrade/v2/Tails/6.0/amd64/alpha/upgrades.yml
new file mode 100644
index 00000000000..848af92ecbb
--- /dev/null
+++ b/wiki/src/upgrade/v2/Tails/6.0/amd64/alpha/upgrades.yml
@@ -0,0 +1,5 @@
+---
+build-target: amd64
+channel: alpha
+initial-install-version: '6.0'
+product-name: Tails
diff --git a/wiki/src/upgrade/v2/Tails/6.0/amd64/alpha/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/6.0/amd64/alpha/upgrades.yml.pgp
new file mode 100644
index 00000000000..99eec9041bd
--- /dev/null
+++ b/wiki/src/upgrade/v2/Tails/6.0/amd64/alpha/upgrades.yml.pgp
@@ -0,0 +1,7 @@
+-----BEGIN PGP SIGNATURE-----
+
+iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCZBYn7QAKCRCQsrS9eu0j
+XxcOAQDzyu4JAD3VUc4WHaQByHgjcdTr1DAEjtIHJfqilH7j9wD/RWc7movt2IEb
+WNwTTTLw3svzK7rFmsz8a9kRPVZK1gs=
+=fXjS
+-----END PGP SIGNATURE-----
diff --git a/wiki/src/upgrade/v2/Tails/6.0/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/6.0/amd64/stable/upgrades.yml
new file mode 100644
index 00000000000..5036670aba6
--- /dev/null
+++ b/wiki/src/upgrade/v2/Tails/6.0/amd64/stable/upgrades.yml
@@ -0,0 +1,5 @@
+---
+build-target: amd64
+channel: stable
+initial-install-version: '6.0'
+product-name: Tails
diff --git a/wiki/src/upgrade/v2/Tails/6.0/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/6.0/amd64/stable/upgrades.yml.pgp
new file mode 100644
index 00000000000..9f0837ae64c
--- /dev/null
+++ b/wiki/src/upgrade/v2/Tails/6.0/amd64/stable/upgrades.yml.pgp
@@ -0,0 +1,7 @@
+-----BEGIN PGP SIGNATURE-----
+
+iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCZBYn7AAKCRCQsrS9eu0j
+X46nAQCEmTYzk1P4mR+4FDC4Bl+zxkGz/Og7f1ekBAzS23wubgEAlChKIaRk8z9P
+g3nnx5VMro649meZGJiH6rXsxRP3agg=
+=7ijU
+-----END PGP SIGNATURE-----
diff --git a/wiki/src/upgrade/v2/Tails/6.0~rc1/amd64/alpha/upgrades.yml b/wiki/src/upgrade/v2/Tails/6.0~rc1/amd64/alpha/upgrades.yml
new file mode 100644
index 00000000000..6e311e6a6e8
--- /dev/null
+++ b/wiki/src/upgrade/v2/Tails/6.0~rc1/amd64/alpha/upgrades.yml
@@ -0,0 +1,5 @@
+---
+build-target: amd64
+channel: alpha
+initial-install-version: 6.0~rc1
+product-name: Tails
diff --git a/wiki/src/upgrade/v2/Tails/6.0~rc1/amd64/alpha/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/6.0~rc1/amd64/alpha/upgrades.yml.pgp
new file mode 100644
index 00000000000..52e7a135556
--- /dev/null
+++ b/wiki/src/upgrade/v2/Tails/6.0~rc1/amd64/alpha/upgrades.yml.pgp
@@ -0,0 +1,7 @@
+-----BEGIN PGP SIGNATURE-----
+
+iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCZBYn8AAKCRCQsrS9eu0j
+X30uAQDBw11Ism2g1QF2Gij4HfRAAdHseoRZbLFjsoienx3BHQEA5zCqpn+GuQvD
+XjgQeCw2aAIS0vyabnVzupPSxF9l3ww=
+=tTgM
+-----END PGP SIGNATURE-----
diff --git a/wiki/src/upgrade/v2/Tails/6.0~rc1/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/6.0~rc1/amd64/stable/upgrades.yml
new file mode 100644
index 00000000000..b6786a82946
--- /dev/null
+++ b/wiki/src/upgrade/v2/Tails/6.0~rc1/amd64/stable/upgrades.yml
@@ -0,0 +1,5 @@
+---
+build-target: amd64
+channel: stable
+initial-install-version: 6.0~rc1
+product-name: Tails
diff --git a/wiki/src/upgrade/v2/Tails/6.0~rc1/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/6.0~rc1/amd64/stable/upgrades.yml.pgp
new file mode 100644
index 00000000000..7e46e18b8e3
--- /dev/null
+++ b/wiki/src/upgrade/v2/Tails/6.0~rc1/amd64/stable/upgrades.yml.pgp
@@ -0,0 +1,7 @@
+-----BEGIN PGP SIGNATURE-----
+
+iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCZBYn7wAKCRCQsrS9eu0j
+Xx11AQCorCRYuzxYAWPkMhvj6f8fANs45UGZ9EbS/uH6hXbM3QEAqbr1DevTdyTk
+g7C7PxAqfZ5QIpDyn3Yz6hssLoWABQI=
+=MQla
+-----END PGP SIGNATURE-----
-- 
GitLab


From eaee84fbe92567b25f3ad3a68ee6ce149f140426 Mon Sep 17 00:00:00 2001
From: intrigeri <intrigeri@boum.org>
Date: Sat, 18 Mar 2023 21:07:30 +0000
Subject: [PATCH 182/187] Update IDF for download verification

---
 wiki/src/install/v2/Tails/amd64/stable/latest.json | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/wiki/src/install/v2/Tails/amd64/stable/latest.json b/wiki/src/install/v2/Tails/amd64/stable/latest.json
index 706ff8b526d..1de19625e24 100644
--- a/wiki/src/install/v2/Tails/amd64/stable/latest.json
+++ b/wiki/src/install/v2/Tails/amd64/stable/latest.json
@@ -7,9 +7,9 @@
                 {
                     "target-files": [
                         {
-                            "sha256": "b2a1252d0ca47aac9334132f5ca3e1546b772bea882d9ac1a4f957347e41c282",
-                            "size": 1342177280,
-                            "url": "https://download.tails.net/tails/stable/tails-amd64-5.10/tails-amd64-5.10.img"
+                            "sha256": "d4f05b646ef65efd76767d954e91d9a6f1993e5b3d770111fb360bb75a797d6c",
+                            "size": 1326448640,
+                            "url": "https://download.tails.net/tails/stable/tails-amd64-5.11/tails-amd64-5.11.img"
                         }
                     ],
                     "type": "img"
@@ -17,15 +17,15 @@
                 {
                     "target-files": [
                         {
-                            "sha256": "7c0e5e859560de708efeb72436f3997e418f74accedc7efc5c2e2d9f8fdb10d4",
-                            "size": 1332496384,
-                            "url": "https://download.tails.net/tails/stable/tails-amd64-5.10/tails-amd64-5.10.iso"
+                            "sha256": "04ca8571d9d437de6d4f6d36b3972b3cc2d64c8dc9c8234ecb4a28a45f894e28",
+                            "size": 1316044800,
+                            "url": "https://download.tails.net/tails/stable/tails-amd64-5.11/tails-amd64-5.11.iso"
                         }
                     ],
                     "type": "iso"
                 }
             ],
-            "version": "5.10"
+            "version": "5.11"
         }
     ],
     "product-name": "Tails"
-- 
GitLab


From 336e70d345d095485a11d4d03fd5a92401465613 Mon Sep 17 00:00:00 2001
From: intrigeri <intrigeri@boum.org>
Date: Mon, 20 Mar 2023 09:06:57 +0000
Subject: [PATCH 183/187] Update various website source files for 5.11

---
 ...stable_amd64_img_gpg_signature_output.html |   2 +-
 .../torrents/files/tails-amd64-5.10.img.sig   |   7 --
 .../files/tails-amd64-5.10.img.torrent        | Bin 102805 -> 0 bytes
 .../torrents/files/tails-amd64-5.10.iso.sig   |   7 --
 .../files/tails-amd64-5.10.iso.torrent        | Bin 102065 -> 0 bytes
 ...nifest => tails-amd64-5.11.build-manifest} | 108 ++++++++----------
 .../torrents/files/tails-amd64-5.11.img.sig   |   7 ++
 .../files/tails-amd64-5.11.img.torrent        | Bin 0 -> 101605 bytes
 .../torrents/files/tails-amd64-5.11.iso.sig   |   7 ++
 .../files/tails-amd64-5.11.iso.torrent        | Bin 0 -> 100805 bytes
 ....10.packages => tails-amd64-5.11.packages} |  77 +++++++------
 11 files changed, 99 insertions(+), 116 deletions(-)
 delete mode 100644 wiki/src/torrents/files/tails-amd64-5.10.img.sig
 delete mode 100644 wiki/src/torrents/files/tails-amd64-5.10.img.torrent
 delete mode 100644 wiki/src/torrents/files/tails-amd64-5.10.iso.sig
 delete mode 100644 wiki/src/torrents/files/tails-amd64-5.10.iso.torrent
 rename wiki/src/torrents/files/{tails-amd64-5.10.build-manifest => tails-amd64-5.11.build-manifest} (98%)
 create mode 100644 wiki/src/torrents/files/tails-amd64-5.11.img.sig
 create mode 100644 wiki/src/torrents/files/tails-amd64-5.11.img.torrent
 create mode 100644 wiki/src/torrents/files/tails-amd64-5.11.iso.sig
 create mode 100644 wiki/src/torrents/files/tails-amd64-5.11.iso.torrent
 rename wiki/src/torrents/files/{tails-amd64-5.10.packages => tails-amd64-5.11.packages} (97%)

diff --git a/wiki/src/inc/stable_amd64_img_gpg_signature_output.html b/wiki/src/inc/stable_amd64_img_gpg_signature_output.html
index 111e4c47fe5..7a297ec80c0 100644
--- a/wiki/src/inc/stable_amd64_img_gpg_signature_output.html
+++ b/wiki/src/inc/stable_amd64_img_gpg_signature_output.html
@@ -1,4 +1,4 @@
-gpg:&nbsp;Signature&nbsp;made&nbsp;Wed&nbsp;15&nbsp;Feb&nbsp;2023&nbsp;10:31:15&nbsp;AM&nbsp;UTC<br/>
+gpg:&nbsp;Signature&nbsp;made&nbsp;Sat&nbsp;18&nbsp;Mar&nbsp;2023&nbsp;05:05:41&nbsp;PM&nbsp;UTC<br/>
 gpg:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;using&nbsp;EDDSA&nbsp;key&nbsp;CD4D4351AFA6933F574A9AFB90B2B4BD7AED235F<br/>
 gpg:&nbsp;Good&nbsp;signature&nbsp;from&nbsp;"Tails&nbsp;developers&nbsp;&lt;tails@boum.org&gt;"&nbsp;[full]<br/>
 gpg:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;aka&nbsp;"Tails&nbsp;developers&nbsp;(offline&nbsp;long-term&nbsp;identity&nbsp;key)&nbsp;&lt;tails@boum.org&gt;"&nbsp;[full]<br/>
diff --git a/wiki/src/torrents/files/tails-amd64-5.10.img.sig b/wiki/src/torrents/files/tails-amd64-5.10.img.sig
deleted file mode 100644
index 1c9040925dd..00000000000
--- a/wiki/src/torrents/files/tails-amd64-5.10.img.sig
+++ /dev/null
@@ -1,7 +0,0 @@
------BEGIN PGP SIGNATURE-----
-
-iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCY+y0cwAKCRCQsrS9eu0j
-XyA4AQDdbq65RDcK6lEqSrjK+CymqUqoqHtTVBtk2pjmysANrQEAqYQsRx5bIHrW
-/ok4MKNU3mMKJvkO2uHcig9aHZqIQQk=
-=74sR
------END PGP SIGNATURE-----
diff --git a/wiki/src/torrents/files/tails-amd64-5.10.img.torrent b/wiki/src/torrents/files/tails-amd64-5.10.img.torrent
deleted file mode 100644
index 1eeea617b9d2a403258df7d6409548a7e2dc6de0..0000000000000000000000000000000000000000
GIT binary patch
literal 0
HcmV?d00001

literal 102805
zcma&MQ;;uA5arpnZQHhO+qQYzzHQsK```9$+qP}H=bPP$*@%sKnAfb|Ihik6QBiTs
zxOj{m930&pOwCzYc-+mLco-SoT#QX^&0QGW99>+@9o!hq-5DHREP2@2nVDJtH%)J6
z?doP{_kSTWw_|1d|2dmFIysrUxVpPo{LePFJRIB{+~(%YOgyG8=EiR3W<(}l|FyEW
z{a+IhF*E$n*8k6;wW9-(*?){RGY2OJ8#^ZxC%ZWtkF|q^qZvDog|(fztDPAKkDa-L
zrJI#CGb<YlGbbkt7t?=?ld+qX9SakWo3XW>E4{J383!9ZI|DNlgSEY-x%vMmVqxL>
z-!$9*k!EnU{!j5A<X~)X{(o?!|Id+`g~!R-+|-=te~rSz!NSbOX3p{dR$ZBySlIqk
z^0zM3ud=q3qVL%o1STL_@<e6AFaRNzpJ{53J`JcXtq%%31s!RZ|KHZEy0;en5b|M9
zf$?R6mf5+0KX+xUt`3t!ak1$&W2B~7MdQI#>V8LMax7TH8}Mq5vo&S8o%E>vhGnz0
z<7JSU#@(0R;<OM7f)j{J={=iZTlL>=^La9IO%0@GqJ!`2?&(P%?!S}ba6MP7G7;7#
zW`^$>{0GXz2H2fBoH=hr<HoU5V}My?lr0XyVsWjJI7pWal}2J;05^q4HF?n8l7Fe;
zwLWI3#`F~=nL<Z8G0Xy&cWa@A3jjyMuxn#;B&-)5x9ZBp-Ll?$*l-(jrvja&kaki)
z`^B~@V6_Q|og!JOSa~~HRjEc=jLBD&zTe{5oN~MvQPs`EDe_inK?sy4b=xcYQh6;Z
z2ehiMGWNGx?OQ%SbffILvj~07{isgst{u!f9h*QO6OqxwZE&mE$nSpN>2f0hZIOwm
z*9WalOUR4PBZ+f=l|xXp6h-t9sVFkBHL@>vYMDh&su98o0~E|#kLYrr9G1;8rMX}D
zQpj8PQkYKh?m<#pK5W}A3*7>m%k5O=ZM;X(PWP1|O9Ep6jiqH_ejWb2;oS-OF@*Hk
zXMG3A2>`1!_?HFJRAYj#*64;?3%&+VXbb}5ywlVJ#P>B=oF`Qj!$Sn$u7r3RXevjg
zMV3ezOl64W%($A@!Za5#w5v%-VKpp)OQaM&+{g^jbTXc+x@Q&d(21LW?aK2V5^iyu
z(R-<`0;_a7h8Q~SeDt&ym1*G8(kqNdo?U#z3lnb&h18r2K}9p<dseZ;g!C>os3lM7
zgyx39m;n)z3dxo}`^In6#n>8vFaLQi8wPR94T#l~Kf%?uXk?DLf9&7IlOIVtu}AAF
zb8inC7-qYz{&1?H=n-02Vt{eo{_+I{3!j`p4mxW8EMBd}o@E(xfW8DXcQ%_RAOMds
zJ34xcLM3#x@a;LqwSP1F$G$x-28A{-Ag$BS>-AJ9Q>V8bAdt?GSn#0Mqx)iw62LN;
z@zf-TCjd32wn-&yI92?ic33`Ow`fd*r%l}|{3Yp03U<p?sswLV@;PPMxAK|yZpA9_
zPWdw%3{OcNf+^`cwsC7wflEPE_LJsF83Re}1HV$7Wb>lvPZU@>a^cEQ*3iD0q4>I4
zld&0Me|Oy+w+b8xgddGEKQyUI&X0wP<A*llxrr(>p;oydd76-FW9{eP0xI{N!S|wv
z{Ivd2li7m0Cv)u<xGu%z?#YmW0esjmAxI1FLBr%$F-C<EMWz5X_%f8%RaXM7d8Vua
z1(dFD2s#&i6(-jypfQvWy)Y3@u|{uVNwbF;egP{=$s}S;{<j$b1%zZ_G?*biek7YN
z&ZJlUEs<~nm;mL$IT;Fg^RNNO+gSe8Sy)N@l_3Kq-$~YzeRIe-(dC?NzZiq_M0U7A
zDrE+Yqflvg*ipw%b&hAQm(_w(3q!^;*f;n%XB;Mn%bK*ms;r@kDyCVwT>QfH1@F1R
zWSmPUt~5;0g=L0qwR!ho$1(7hUyM+tkCi35&}&Q6YTuo$f&G)i+JmDMGa;)AFUE{K
zVlf*#GcC%!P21~^ERnL1Ca|Z?RZ7w&N4bMuWCQOyfs#W68v#P57aMnW`C_>59H+Yp
zlBOnp?BZhO^JQ#HjRj870_DU84~yLsNvkgVk_IodBO*>%WZ|!QP(p>~N4Vlpp{<21
z&R&y)F88RkEZ8ozscw@i^%7lk&es#lCG<8|!89DlHUh%J?Ht%Mk%xh~#Nr(jXN*F?
z7T(ArK8`D2sPD=;CU5c02CVi#99;vja2lK9XN?N|?|dSKW%LQBDk;d(oR=7QSs^$N
zF-TXTNLn*;fiBvqMK*Nhe`gZTr{&?o`5fjfu^9p<^w+<>o>3m3#c)_p7!5)jfk6zh
zR7GeTpfriq!~V&?E_$RDip4~0EGY)5*j;^dEU7SjxU}_=Nu-dLF9NDqZ&50_UZV@=
z5B{~IM<#S~c0h267cxdMWLTcjt$aM~`c}&cPh|vbr1CW1*N8|rhTC_nE5=vBhWW%{
z&*i$+1_uzC$D%w4cMwu`8K>5aCjVfOUW(Bux}cL(WX*KW)#8V&*PbagMZ(w?Xx{TX
z{2dfYpXut?pw#~!+Z%AS0+V7&TX=<i@edhfWX2-n$3`E;nWdsejGJO#>$ndrwFJr*
z>wF+ZmLd^ow{H5Zu(STdclr8=sJ7wgx?v{n{#k5PL|)?1I1u$Idh`AdN8@dq)1#(S
z2qYXsXm$BDy7FV8c>rp@mmdi|zBu>+igN3%SOX-6IBPYSsQl6sS}eVyX9b5rQ*^(%
zW$&6`6M556UDG5Mgql*{5Vq4Vh15#%Y3Gg6EFKVqG+cn3u1C4v(dyDY;9gL(&pn)%
zVAES~qecn&w&r?rwTcX36Z6|B9~D?+VV)C+hYS&G!Iz<f7lkvjEL3K|2IM((vN5f-
z`^BCUa-e9m*m?-MDEaYh|AQu(v1RKT$X1w((-@j}&hnEowm1H9IB7)+H{zcyQH|Hz
zX=WYcmn0{YJb!AlC3DFQ`mbI^oXB-0U%FlWvW|miaJnq9Y)GGI(B((t#DzD+(FTb7
zUxhU+B4h)XxN-u%9Yb&W<g11ZWMz<U$9mEgHhYR5Epqc=@KdWiYci99R-Qi7*HV@w
zIVyT(@#jW8owq9j7Q&pG^rh)IF<)2{nG5*RKKb-cBwkU<<v@Bf{V5J$J!$CPh>TZP
z^94~Ny(bM@w;v=8z<>0JWri9(AsKq+Aea3b@cQf1L7TccWY<w@_}61NGLEivvo;QW
z`z5I#Xc=~~a>ccQ8{+{y^I8XQ9U#jPGbq6s(+4l9ot&TiN3RAiRXfO!EU{t)OIlpa
zAA|;>p|TU=^EWYl+j!c8WJtBJ!SAJ*Oou^?sZI>8P9*T|bj%rgq7FMyOl_d|D>5Ie
zZb?8dJCEB}&v6+Wl<TLF5sf4envClJd{Hgjg&G?x>jBi0xcTb~43J-Nz0zaY*U2I+
zHx55)?xK8*($k;WFF3LcI6=>BfwM{t&4fT5+<U@B=jckK!I3J(M9~|j$H{ThuQATP
z-3v^8kD~?|5Cs0h?`w=i6zH*V)h=<*80KoGbG^I(;=-Lu!P40fxZ|&H;JhM!xGBFQ
z-t-?b+^4?5kh&`eSwZ3-C5>8YRCrr&qT-)_ER;Jwy6gOr037%CjD}2y4oKr*4Oa=H
zGiEsix4LtT2Ll*V4=7u>!n>uDT=`hDBD1xNX2r*TL-g7K5E6})TT?)n9m$w>#aAy8
z94Tx>rAG8YggavIx2>Z*VQ7Hrb)gGdy|%;*L;Q+cxC3g<*=9bEGw^@&j}22{By50$
ztFwf!j`lCxGrC^qIVl=NxQmTkP_COfsH`|8GgGZNVLj;j*Ut#^sSbOVS6GXrD-GE;
z2AInls>#@1)*RT2De2$nxCPF^&im#Bmo|x8N-J#WZLNTI?Wk{!=}dh=ECM@N-^2mS
z#qNfb42N6v*=PNv$gwgjv|0qB<mWH}bSviZPs!W47y&s1JXZ|UWE?;4k)MUk>J)kv
zlUH*K49P`hx?IYM`@&(ADH8Lws%SSW(>FQ!e`L1h?S=KuhOss(+Kqvd)5U?!iO@u@
zqm$WHjIt!A^L+D*Obq2W8S%t4=4OX!AfI@#_RsQ;6v}~sHm`E-x7uMFtn_u_LRqoN
z0TgC0;2t6DZ>!0PNws%}P>|vsN}_Km)VKXx6B^zLmqadpV1n-YVJcjWPMuVvDV^}L
ztBHDL3{i6aV_!=>Nd2>1?@4SO%6or`P*aVlcdPK%N~Y2_STNTN6AP;eVkZr8Mw5UH
z1h0CUdjv}i%du*&<iEv%IUXiDzj2BC(k`=4Ia()v|02BZYeT~8oa{5ZCD`fHXd)k8
z#PD`tc6I8s89LH`!9gcw7G4<+ZSr*B&#$m3zhK_8JFfcefU0z$Oi0@>_oW!LM>((t
z$^-YQ#TdF*6%jp2(Vmq<@YmDEEpGD2;7-Ly&T6oTi%-NToP@40V*kdhu$v+DtinN|
zNXv=G1*6`I)ASGsm+v)70rNL(A@JX>e=f!dU7i?qX$hh(D=y%~rpDXGK*>^YDu>+S
ztLt-H!M$#1dU#_V$8JVT;~7m>%g;=j#c&~i+$+G~i7dG51=xwlV{QGuJGIQS{o{$k
zU`CfjTn;wLokB)q?&2ns?E4-Z{r5$h@Nc+Sn9+7IzK?9DL&<)#z_U==j&u~lJ7JsM
zhlu+eArVea`%p<G=~s~X59oARq}ZA8;S2!yu20}R1T#_eEH}PwH@$ZWdJlmMGjR6P
zfPNP(%q<W5FNIQpd9@l2XqZlM%zHFb%`;ofn#K(Vv3Zn83<ml(UgZ)NI+ov_e0{tA
zNM7_XqTEG<FbEhThYCDiwjff^wD*1uLhTib-C*u4AYg@@qT8+v6lLL)pcz*L<6m7n
zkoo|`{AkifcS{Lau`6zf4^NVTA;><w7a!iJ=T~-}SQK{TiTVV3NIH|8ug1nNi1ytg
zD3zFz)4b}GO%B-xCd1=f)Nh~%-fh5<$iBs@R*!@9O&m)?la-!)u0K>p%7k@AWuOAn
zUWRY<+it`-!}T~}@YlZq!Tt~3Bv9MhcC1N5ei|ZQ4>HXCl?DHe_VB*)DR$kk>C|oE
zkw_|F;Ojk4;GMpa>X%>*L5cb#?ZTPZL95-#qY;|>H<ML2Zmv>@P2+^EjL19XEs-<e
zB6=)J%tKR%-iX!Qx2Vvn<(a}T!2$9B2%*0n2Hr$(=V9L9&*W_P#P)Mj3D#fT0|9kb
z9GRyga(OZp-ng&zuIT4@*<PKe1$x3rRDHf=(a&|cMjB^lIe#z4WN^ds?wIC=d<MwW
zP|~j7z6p9jnWRT8?gsmN2Mi<&p@RI<BPN_!I9{=_T;JM=Ej_ehm-bfmH_VztQEV9q
zF|s)MYjdn0apc2O*>{z_&|r+sttrJmNqz;j5z9V}B}S%<e<l_=AK_ACq>KyHcNkfs
zjIP<B%=fWmD_WmiX;0Vm;C)0-7eTIkjjcrmBu@DCBEevhdy8z*Yev93(H2+9K!-6v
zsrUT9r;2(7RT6ZCDmG6CR{!3&*uLD{gf1eG_BKxwI7BHq2}P-*j7I5!j*~GuviN)^
z%_KlmoAbtL#Y-&UIs*IlT@@f^<s@vE%oQAsY(OpQ02e4-<CL*yBkaSrbxb^MDMj5z
z3B!!rb99yY8(>q1AjOZ*MvnUcb@{f-z<3-d+ZR(qB46%kd8;}8OGC|+S;$(@N)w`q
zqlAuROy%?u2CsP4@j<6|zK!l%mCQIM8(Y&32i}kxgdHD?*1+~qgB+A@lZF9|&6+82
zM=;P=(+CS{VQ`AzydkZeFHo;76-W^<)X8~k(Hnr(QAedgvs!Ff&y5F!hm`@Vd+Mir
z!srA<Y$2^+Q>P*dlorxDm-pJtFM`vvIuqc?OSKwS@Y97}0|xicRcl7BxH9552}Q0a
z-k#<Xi)fV*E`n$MM}A=-Qh^?LX6X*;r1ga63+m5l@Dr4ynz8u`B_n|~vqXu=DtRS^
zAhu;|>HewLZKn}w!jtnbb<AUD2k#+DRNWjs)nv0Q>;rqs((@?^!Hrr_i=Om$XR5Ut
zxE1Z<x4tY1PaA$Tu$kf!o@5JE-94R1j~;0x<O)wB6f!#7eg2(@t{|zZ?dT#y>EJup
z;3-1+TzZRN&Cyy2yIVOQti=o$9tLUS)7zgTN#h>`IZYG~pEmUq6&^5Q%Nh9hok<{|
z@p`AlxlmHv93FhciZm~E_7@Pt{TKJp=;q89d~$j^AMK1q1mWr)c`NJjGM`Kk3DC7H
z?b#hNKTJV&A;}UAUp~~xbQ@UWZ+3s+0>{XMzI;9J^;Y<34g)wG86Ce!?+}G=@qdB@
zOZdERS1v!DLq?k}uwK7_(nlRi&lLx>;w9a*Zg*L>s3jRVnI9vNRRz;dY>$J3f3(OB
z@m(<)uY3lGiG=32*>I4l31CF@8{&7)&GM3`dR3h<D{}rjQj_#JJOp6_X5|#}1;U1C
z#wlDzr#)cL-A<(2f)O;eZnHJ7$BicE{u=!U7Fk7$d0uD@kU9@HoQMXxT-!=sTzcIk
zg~=li=bu)4**IUn9<epd#?J(~t8Q07SmL@M(ets$J}UE?+rw=da3u)vZu!L$8)HBN
zqhXE7dbOWrTM}S%A3_7A+kPf8>J=is$zNu+wfmau(|>JBzmVo)rMsQb0~Iq^B=9L@
zMOu#xDFd+n3F!;5XR%_Gf7IK}zvy~>IYRHC=rO5}e)}Araps4OD=Plu`=0Jjd~LWQ
zv@f}+kqgHA;yQRYwic7`d2UlQ<Z^YH(11wrUX7krB@595N-qu|V@1{rE3b|%>6dJ7
zo+Cg$4_LDtF1Ptif*&w~%BwvNKk0C&{$ig`q$r<K%bD-36&fs{vtT#nEx&fka_9=a
zANN_+Po_ryAa`$lQBV->{TBQih|2-jGMuveYr@N|&II(OA`n(!NCwPcpHYze+ZzCq
z<C0@#QnoUyozeIOSlKJR7dY<vU7HFGh|@td#4l(6^RP^d&5VR2wZheccvj4XloK5j
zwzDr2d<_h4;m=?A4*mH1*pc}UMNeH(AH4ACZ}ELp&}U?OyUcU7x5c|#)?;^bdC;2r
zEz%yEmT>_m7H5q@GXceU>zqRqIt%UU+o1|r^IpcWt1X*Qv;CPMaQE%wu2u8iPEN_C
z?vx!&o^wvl1<x%w{^{zz;Rdk8D=k&kd&r12X#_<-|J+;__tt=n7u<FFTc&P+8CQNG
zn-iA+e0HND*-1qga5$rA>q;?jrGVzR**l~L1P>y52+C<8@v5?o{ld9DJcvNVw9NDX
z?`n{J&6b^N)QoZsjM{>grjo_#v(x#zQv(K39Fy%lz+yW}9)mK^`r1??0CH8?&IFbR
z9h60<ai;!bUQBMmej$7?v7p>Vy-)%zO)rXZwo;Glj*z`RN89VA7VNwrdN>;J=KcK8
zDT-nDcz%NZbvQ)7(1-rCJ=9pGjWS3gJuBmOW7t5|KHh*6#tBIL^HpgNP4-G}^tr+E
z4O|!-|EL!yCrke<*M78&CedIQt*kk6M1=n)8)nKzQ6EbZow}pi-!h`^r_3mu+<WGx
z(EVjPW-vF~SdGpw&1F0}Q6k4?{C)rWr!w(8iLE0X3W%hxw8DH{U|Ow3ypyM=5OD{}
z3=<Xq$3a~Rbnxphlm4D?ek?PZhZ1`0gE44}#vl-u0Ke<JjH%rC^y}e`(?Qofpl9--
zA++2}1=d~4dq6_M^)3-obqxg=%vvnt!%hgI#rSNN$+nG<^G}{(oS!BIr(G}4t!k#K
z^H-luiWLLajd2Z=Y=ayZDlGjXmCc{Uz?zGpU{h%58A^<A_F*MsmRxBJYxTCze%Kr~
zGxA$Wx!*Y2JyXd7c{;V#!m5?T4h<r!fFh$K7b<QdstR%alREANwE*_f+R!3`RO2lb
z%+QGTwQupye>0$N_*DkHCa@~@gxkC)8q`ITWa%RQ2JZ)Emus!$nRl_zb+^nD<e1dI
zf>4Gek1a}-EY7~{A2q$&GoS;O<rN<2I<mq_CTJVXy;<rG4}9+A9Mfy?32m(Id8fZ^
z-&E1xyAoZkiyD_*4TU92$bW$_cO911PQOGTX@*f9OT(q4N{YZ>Y;^k-ld@lAPuGKQ
zC9Z-CgNCsbB4OiqP(W5c4<USm)YLadxWp523nKHOqG2U+=GQV%6(fH(GSM$Vsr5Fb
z9|YKyuAk_}d&8c%fFw!bzDHS+EE0xiFXntwNP4+vby<|xxlc6?32#H`5uCvE60y{9
zr1@@W3aS!16&*_-`f77I0L)Ni#tiubTpJ{)C2iDialG%Od;#IH?mro*(5#)(y}Rbu
zW5O!g!fW(@99h~AHmH$#He@;|CZ*;r!QOVRP8PNaMb`&yZ&kTw4zn+ITyXxPg0);v
z7l_@y#Sgy&3x8~Q8gjRFIX&(e#d0Mr3H96S%Cnnv`)C>?lBMAFb1mD<U5{}Hqon?D
z|Mcf!nt!NzOp+(^d#HU#pd>4%2A9=<+E%JtG&~xMMjDVWFKZp3zUgksUwOyQ1~94D
z-~dg2sxc1KbKO_pw-0yb7?ETGEv)UmM>t;89nl&>bgVcrZCr2=)7SG9drG?HP`m0P
zZ1~EGIb&3%7?Mut%b|GfJ~8Zgu10pa(g(5q5x+3E_LiI(vM^kCaX^o%K`Az!gVLpY
z({URvB+ID+?lo~v>F=Pr_Bo1y7Q93l1}Pxo0E@ZdL{P$F?dpn?0W~}aUPM(L{*fq+
znW|$`a;$fDmoXWqG7aQKQZVBP!7^j&stC;7U;_%re8xzNyE-XwW@q00H6qKHy=9(p
zv~W(R{uerdfuC{>g-v9mOPp?LhtO=}x(tc{D;&<{()#T2brX|!*lUy5eT}IW$|!f*
zWAR#@1{3G{rnBvop5ieZEpcIz5D|%WObtgretuqkIYThf4Y=PkBy_XWa6qTf5J4D;
z??PTz12p#sy&B?Bq+*^kFOX1gQ@D6gVAcASlc11%f`jOaKLzdd3BzRQK-#;^4Ku9d
zsys5`=4^>kSM&462FC#vuwG`h)EjylTrN2J38W-EE{mj8jCzpt*jbegT6<weeQt8~
z-v;T&_0`b#h(U7h$yo6A3c?s=AAd6j&Tzmfnu|RQOuk=F?ag4o{h>iD2pb_5NCB>*
z1Y@g02?|eg;>590lofw9_4u?m=wkh3oku`qVvsY|GtY&DsUcUBM+dK*!&hZpZWj&@
zZRtjobQf&hY7zr_7I;^yRpYu1MI0-S;3e-=Vl;~29ua<~Jo%6v!#*t`5r10RH~Snw
zVhJDpSGl_@XM9<Ei@*az{Z^2rF7M$|dvmH6GQ4%RaF1WVV5K-C9)OiR*D~a$ClCNJ
zc&qu#RFCECI-Q(y2F{t};;I;t0x9K<7@d}gG2WlsI%V3Xt3z3xFt+Tk@@f&R$7Iwd
z*5sLj#mB2jjlPQ*_Nz3K_R3rqQ|<O;pl_GU6v=U3d^qIJHm}$ef8~U<3T`3X(nH#&
zv^`T)jmUUxq>6A^D1CmZuS+!lKvvZQe)(iw6y>7#*a0OVJ@45;$7*GjA)ipRx4|CP
zw}I@}>oS!6gea%f)r@gGZwqU+RYq`MhT<`87M&jbu#I9*8w+XW1O^>C083?CSsI|x
zO`djE#+&JtmI7JLScQ}L9(27}WXRGzo<742!P26YUf=n;abJo=b$RA+Mu2nfgZ^W)
zdn5||M+f>eQnH?LC}e)$)<$pdl<uVOYPdZ;ew-x@@nh5`X|)l|8~-XZZrpgeeJn0{
z1)ik7O;j-EF|j|RP3p`yfFzK0+E{c{$`L?1!h{|V&l7SQ%?(jxvvk9-L?>eSSMl-k
z;UDdKyWlh`o%T#k00{8ER>d_U==E6W-p8z74RnSV-aHhq;)Z`-!i$vFCg~~s^gxZI
zUo|hWvWUTYe=QUwq4^#9FjLZ;0h=A!!1kE_6Q4#na*QILxHcxIZio8;E6atm@qXqY
z{VaU^1(DTRI9+W`xWg{ex8?E`l>><7V(I$(pSE(v2$Py0dOA}}4BT-*PR}=l{Xq~r
zo``v@67OIXS5M95W6Z-K1B3<O)N7lulAKe2j?VCj1%k%&2h=f(mcw5f8Q=`$rce>c
z(a#Sk_h$vf4fl0bZN9z%KoL_9{v87O^qAOlnx#Sr{u?%ixTrKslQ^EgusfM)ueU@#
z$kU~^Wr1Dmi>r#@!bmf4O#c@3wK0tDjtl_0`yoUlZN}`go4fL8cm)QIP_4T@dAP|9
z5nF#HvC}zE0`b=2LawSFj90;QBI@&~NAFnAdoFXKQcAlKc!6pJm5OL4eOT@l!0$#M
zWX_v8d07mAhrAADgx7L9&~0bM6&NWRVW_web}%pwjk<Pk)7`PRy?%%O79ei8XitRV
zoAcSlM>oDkG2_ezEo{_@VGJ;8{DZ17&>h3%NCzz1v_0(W?Dh;*#pQ1PjTMqlk<R~>
zYfA%i_Qk!L|K#3nUP_9;;DI(J4$9eT0!hg%QdXkB8F3fw$dWzBw{LY9coj>2%GC-{
zVq}_vKCMzIqqMC{M)kx(mr(O9t#-bhZNV#0L$j@+sr72Q;sfV!G*q?Qz?>=N;lxeQ
zhVB+q&lE7&vs>870b~o<h?CO5!2KCeoiM^x?){5$HmYh!l|A6nV+3d{$@2uL;4-*J
zN;9P~XR`|Qd`E<kwU+}GMm6iSAnv6W=ia0}nw;4xu}~w@QiH~}j8Z67IIH(zbCB_~
zkZZ@N-c%<kmF@ieOX?{4nk(4X|Lf7O=mO(v(v)P`eRdLBky2f^;quD`;u$2CSe0&(
zE$w#{w1WOyqj^Z1daxzNQn$D?Pemb*nrRne4}$}@o+eb!aloQ@cp@Dp|6PUR`@FLB
z{d>R$y7ZR_AjB}?|1N@XdR*Ac*uVpT{JVsdde^Se&*<aT9bVI%4d>WA?bQO(kU1#h
zBa1{6vtGM=*zhlPf`aj$6iMFW<X!$d>)6H@gX#zOfPyaBN1zrgBi_JkdAFKF%4o5t
z8S*2%<xy$!scRKyC5xcaPe)>~r@D$brntzrjVM=g>eVgH*(9VerGwiBBVO<hOoUSn
zt22NW)}(JGWOk<(6&}9uFZE=kvzn2gtb}5_OPkqDEIbc*?=8m;ACLmZ;ki$oI*db@
z73)tAV)C1mTG~9RY^Ju57p)jvPynFRYT~uF@L~N9#@#SX&KN&l0mpbB68R~c^c8LH
zltl-sb*LMnkH-!VGaF_!NVIAOMiJ$>OR<MA;<`!fPsQoiz8GqU6S3n6znv7Lk^9)t
zV&|<I+UDjg=V4<%Nlx8EY8+kp{%TA-VQ|m3^@vj1++B->4OM5`<sI6d9af@k5lY4a
zT7E*)cusm=_@}gBnVkGA=tPudGd|Yj#&^M$i9d>cx_2ruYcAM>Z5hSx&*4Ak*Ez4w
z>`*D4K}hBs+QrMSOm2Ij4!Il@7=qAR=ZeD{2w<Zd%q6Dsc_t!oaMy<G?Dd)LU0{>Q
zU7a{Yd$Sk%SdCmVHz7d%Ch>Ufk@igrIic04;nbQCY3sM174%*TUTqw_Y%PM0#4WqV
zp(N;13+cp~`Qum>pYQbNSDhAlDr;}%y`^vn9!l`Jeno`E+)OwV0^7xhw3yPBr^4Uk
zy(@t$6CgZdZtpO2fu+xvqW%r4<D&#Nv~bZobqp9_zVHi&f1@4<wCn@|vschXZ$YkM
zF42uVP{JZS`20p9_in=4csMDjj?Nr2HU0Br_V})fvSp;jglCbdY=%&F2Fa~`vCTlC
za`W}WUWQ{nEsS{=nfLdFAv9h3zc}0vNNSXEmm>mKDBU`^;di<90aISb905^h_C6^Q
zT=%ZXyvcovUh4LlP(B$12N+m+B4V)QU+i7VkJe9iP0SbN65EAIN_%4=v17Q*$BWw}
z<wJqZ7kt=|FGvM~V%u7Sx+^tG(6~}kPCDy^R&t(@Hg?79lpHPllE4<;-zn*!BxyrB
zPy(>=z&&-a;j1=iYS*nH?J^QWZBj;smWN5(lBWdg2s&3DSP3kX0*{k$bz?u5!4Hgj
zBqrx6QC>hGk#TT2{_0RZx^nV5tAGnL(bn-cQ6e01^iolLRmLUa^^L1%1?R4?*3H<0
zmb<$``x5+nT~kL4MbEBKvYl}{-)MRfyU*Wsd6ggQ(m;l0C`NnYIhVs8)oH7E(&bu?
z)@Xx`exZr8xbYKri9SpZi`j<>a>|P$;RjoCZMaCDp7#b{`R4BCk88H0$aEFg{2w8<
z5CR~h=cn2EsiE@tzaF20-qnR0$)OsnQU**wmkIzZJ=~Wu(Of9YtW|$Uq(z=RaIG4M
zC}#AGx~NRCTxT6*sSaHT(r4Y^Qa;jo2`?1-Xc44xB=r#lvJaOYD|EYe(-NBnuy;cr
z_2|`*({(+a3|nX<4NTxf<TgBKO&9w*UGj6oX>tJ`Oz=+0kS<Bd;1G_cUZtzY>7!PP
zrtqxt$(^HHX{@u>L77rA3h9zbBmuWsE$j=7ygy@wnO`>Iy{l*%wWP?`SN_wPu`<6+
zitv0$n7<-Oe@UsqtN$!wHqLrZ^e)iXlTm)J{<*lXV4YSo`fE2n^ial>Pl9?h*6ZfZ
zc1w$jAZ6VAGs8bVCcs_e(}+YiS^c2H5iPtx*+RPt*(f?tK6-cnZ(@1?{axmd&C_D+
zN}u=xeAWzx?XZ)mv+r^JOvH>+VeQ9|E&=R`dZpZ;9pZF}ulbG&%kNs=FzkhM7(d(>
z!x9F^PQ+VzXr9vtmvs_S@>KhGvt@hFkL6qF>GPXQ6*|?_s(Fy)kyJdOg%8kRkHK8m
zXNm&tvG?I}@GTZXBsq(1AdeNbkEvIo(gH>;!V#d2E}~$)NgNbAUc_}?YLF1)kP{-o
z;jP{^9~8j171;U(KgRQQV?C{+`{xrWGdm^n!$twN>QXXWFWP0~Yd|d=u{^h7hdyHk
zDzTo4NL4@sX%|b?LD0@^)U27KGy?@zr~f`FRE~VXNqyXftSs3BOGzum<63ks$7Lka
zXT*4r;0)J30yX1BbOXAae%r@jyQe>--`YE~5(N6Yno7P6@i^RMpDB=Lm1E`eye41|
zGyr;B6U;`U21l~%x?Oh10c%TpmBWEF66^|OieR*0ZvXM$M`@Q$Hlz_Yb(x|FDw)xx
ztQZS3>!9c(3*-S`4OnSwjkcz)|GZURkG^oihapdKRL>W7r_~u*1%$)DYScY(5YR8e
zg?VPZzh#)2Ch%kdb1Cd=uI(IQ&G+WmA`8JVZ!h{SD6!}7EMGZ<)o}ha3VOC?LSzzH
z;Sk^v2%0-FBvf3RNN`t7&NVd8osk_ImS^zaX!9nQFJ8|<<FJf5_wO`oE~LD0bK<(<
zpA(1|mT<|X7xGgKKOj^<H(GT$NF&&pGWvNaJzlq(7!$;PmJY6~J1`x7=01)Dief(o
zQr1(k9ugUFDrdArOo->sU`z-v;F+qE7EU6OBfe?9bedl?h?{(TNEkGonl<?{>JoYF
z)ln{f$>?q-|NZ_j|EcQhuckY))}MAbCapb#5PTr5euE#R%Vm5<F{yfH*gxUm^SEsQ
z(EaoUNyR`*#`tJD5a%<-c=TcYL=ZSn>I=d8t?(AX`RCcG5v2uR4|{5q*!=F%)_YYo
zF?TaFa*oz{LD7Ik&;%A6lKWB}5cE*U^N-YOry=MpD@0#+pn`e&c+j^{B;ihWrmZZ~
zWMJ-jFaHR!SVxL(AaAg4mAOvH6A<HXpz3(HI~9}-He%I@Y29>6ubY-+wBw9hrhRc0
z-MVY>;g#86J|LJ|M6D1nEZUdN6X)<H^R@1FMqBz(UPR$qv3xZ|=P6J#lSUc4jaIyM
zmYbox5#?MxZ1uC9orN(-YsGFskJ%mG=2kRrLDAWO_oD%-Fs?edX@BgAq{iMC$PFX5
zD0ASeNY?Pe(^Z;p3p)mvkq8NxURLF0F7+){QlstN)WH#%NRKjf)b^Hnc6qRZ3*fd^
zJ&5|VWq0I2y%iw|oAyo6ug~&XO&&>NugBCw($44qY=42x^chi<zydu8T*6;PxeeYX
zzWli$5#CQ^#VI^obL%JE53F0(a|hZu0R1*A5R6zk1@+cBs(0|Y;px6?Y5RbzJ(SBq
z*R=ohGDWTBV&@EGmOSo92e~QL25EKtx2TPYl>+^JTXg8cX^-|@Y_z(LuQ=N0=t?IQ
zcE(jrXraf04WOiAuH?6aZgVC!s}&;zQx}AhfaCZMIrPWXb0skx=@%Y)t|&m?4+aTc
zNhk!vi7@wAG^w9y-c2Lr*l+84(%g&3xvFF_9mM*e6iZfF3z}L)D}<nT{+Cfp_-VRL
z2U5CF1Hr*Yh1wieFReJ25-cw9b8!L|c%RykBIY<g#X!@t*40`Qn;`<{FXEF8ch?w^
zl%iC!YObY8ySp|{I`7`X<D+j|Gwo8)^T8x6vwH&Kz*9{r73#*&76=i-t6=7-KM?7*
z0jcV=hn;Q9QY@bf^J=Aa#}WS<AVu%u_kdHJfBZs5rY{Ry4J6GWB9R(nZHs0Ei}pRm
ztM$_>9LEx&WGc3S0FIJj57jv!;g;`-fu7slq!Rl|1~~4&_w9-^b@GffFw`rX|IOH)
zA#f<ou+=VUzZRUbgf^#O#=sSZkhEE%Rc_i*>cB>)B#B#X07IS?&ft_iKM(0U_K=v8
z6X`;@23WEobCfBS{zn^Qr&BVR+tul_=P@ttK#ZPwIi2o;x^upWl>RT}6FhbwU%y6t
zFuc8DvPR;A02ncKeViMZu*zem$BV}`Go`aVLaE0cT{|&J+(qV=)z|w^;87Pe)F1KO
zZPcB_Ng*^gtfIA|y4EyHHg?p~`Xog=sPXcR&96aRU=YMR$v!1~e#(XLx-(7D_{Gn%
zP5zqeOhxk2IEsu(1;<=$i2tH5^5<5`CYQIMpVP-ZOFg#Ft-cp=+S=6}$i?x%o-<8`
z<)7)z=K(hW<}H`Iy5Vn!&=n;{ON7UN)72>!%(Vu2V27oHg?UeSLA{K*6@qHqGj1Fo
zS)2Cj?&4JyxI1O*hKb)Gr@!|jDXpXQDJU;IaEPc37p{HA1vrdosHTJu!mG5)G|TbU
zjG|khZWO=)ql^3xHq-kN;lpRPap2b(X(MK?J0Pyh6OiXkb$C9iBvISwr@c~7O6bIl
zw^$Tb`IX?%J_u$?>md5-qd%+H9l}f6TG5MBx;~n)f#KdiTu|Jb)cLeLdmq=7;f|QK
z$1B~_8j#alJHOr6(;mL+BVTk<HN%t#-}-ITXRs1GP^_S{nke*#rxgal>V-}T0$kKR
z+!<EL&qT4;a|FY;Fh~OnzPn|(3|(sNWetw8oR0?oLLDa=sdVDv)6=Bar*Y3NVUFW0
z2#p3W66hdo|Cl)%a$s}KH^{CZXr@S$!a$7M0yg{aXRM@}F~*Lj#?HX5oO9a??Li4i
zCz-yZ*auV5hSdQ|(BrhHBn{s(4XjFdQJ<Z<`agfua2;v+8s=CBIRbK@nx7NK3k+Aa
zA(F0A8fbMaIxg~((;kAw6_R8r#v2K&b-D)D{B0tjmAr;-No~L-X73IL_IKPp5`KON
z#eY6!1T*kK+|;VVsKTz#v&?H>b;6Go9gBCe$~<3;)uo(5wYl%Em$QU}a-|OmEY@iE
zq_zFmv*F<sG6kYcNjV{u`uHu4daI7&=>E%5`iyj35^6G)Q8|z}Dmt=^rJxV2l`O_c
zbxKkUD?T~wNoQUzg`}@)TKvKh<UnZ5IC~>VM-8JrqegDI$JcSK<X75x508lYHU)nq
zBQE@-X7Dl9P!>qaDlmH$n>%+0rz*6^E=b4@h4Kp-gddj&IF7v?1z|*iJ{GeN+lMgL
zL9|8*+!c*dc7Hpjhvd^&qI%l0nPU4~5+iBc154&N5xyWe{gxO#MCy|+Z)e8xH`A(^
z%&$*5UOQ{pmFA&Z0yhGo=tG=_YQsz%h-R*(=)A0(*Fd&!JO@0L;&zKq-KRY=yg#_n
z{Npu<!#rRw{t`W|K+<5lrSATD9v0e)sCiCJ&Y7~E)C6eUkGoy+`~`xFcsbmg(0CQ8
z>``Fb7EI=j;fo*+O#GVHEERY+(1)eMCRER^is%WE8BL5DbyDA-CT97xB+Wf%@d5oY
zH(}Sys2mwD|Fw0rBnirgouIeeDS2x2NgDB|opkk#dG0DXq^~46<#%@Kft^TdT0e6<
z3-h*6?DjGKpy$(!h0df&y&hN4<RXlmqDj{mlPwdxq?Dqf$E)%k=RaSc;Pi~}bV+RW
zy_Kus?FSjA8nmks&e3giorn8NIlCz_z%stvsNuu<gSan}su=sab_O!8<a0G~Htn%6
z(L11Ww69RREa%23+RVI3?rT#t3|)X@5APuwFEkRj0Iy}=St}-a=<g3%hjeP!TS)-g
zIseV<V`E%95FXu8VzD=gJ?k^8X*{|Fv{FhlDFJnp?2d3rZn^;w;)uZ|U~xf-TY{^?
zCK5iNmc};a0&hs)dI7LORl6EBcoOG(h?=HVyz<OenB}*0>tp7KipYF0)){R5`=mp<
z?!H-n{CcOgr{Kd*eWXTPMCrsr+?BXr6MAV_<-WdY?HCxzIm(AQL8{0=#t7n)w868r
zK57==UNt!^scgsmoUoEWi;`iR<K&p*XfsG;U!P7GL7+S6o7;hbcPlGW{8SZ_3g*gt
zHCB_yU`o{9zHT3K61Ox)11e0UJhye}IS<4Xv8&Jn$2tYBnACbcP^_3kK&gVdWmAax
z^qqK5Mh8MQ@q12#2KM6#N?=_hG?@Nxu|($$cx~<tqEA_RvWWA3BW_T&=AYePH0`8k
z$tkyhJ;hEU3?=dPm{udYa~onEqj9g3oKwL_#|YUQYwFzJv>jqsSXK+n$C-(pt@(v2
zIN0=7U#g(4OHd(}$n5H=bj!rA^V%*qa`x<v7+~^dUgn1+f9v65i5;iI_HpE<e?0#w
zOMaIVkfY)%td$1#5qyET`;VYtE|9OzLE7x`qbP8}qC30U?W@TU_-5|zDLW?>?Acqh
z%tuZtLggj(GlJ?`;6<!QC8DKnp%!Y8Lm*eoBq(j_Sko9xAZx#|PEfA=z%)We7R!CU
z%f4X`gWg}D8)pKigD#o1Ql=+O>Zv$ii@C}y>y)6$$-pOMbrQEPVhydO*eQf8ej(?8
zjntqBi5-0j|B#cCUUupun9OXx5$8DisD3c@Ubsoq-yaW-CVNmha?SMZ3yEfE^ZZ&N
zgD1R1m}+8kNArN%L}5R5aesOWZ}}*(F`vaX(5n#uVSjpHqF^^m1dBlG$S@9J^8@f&
z6*S#WCyp(&K}5<Zg?b@&3X5#Ig36u4F7=l)gNMZ=2qD+%KkURcDhE^8O=pK(&0e8!
zB4^uh)Z#!Of!8^5+nCEXOu_){Qpr^b2sYDramaiaxz2JaC)`vkzc#=2MIR=Z4us&-
z&pi-7v<n6I&BVg`qRCM>W~eSSe>`n6O4tjtW?4o1i{qplQPfCSOq|{MFH#UTJqhq0
z#*KV#SkDGHf4Gt>IKxsf_CIeVQ#dza(a~b^*=4xP1O9#qnus?tDixH<UP41Lww#KY
zdU|oMxFG1yXPzL~l$3Sb%B=6>S$~LCG5NCCHTg1lk1Qj9<>8<yj3)^7??<#pVdU(J
zG88%2^PVfr;>{uEe}rxDmde=;d}AtOq5{nX{hp5Vm;7_MH6K1j@dv9+>fLO)iU<|h
zDutT4QhVU}sYnC&dgdVAWFx6jEV-ZYQShskQr7XX+-tDjienOnghci@DN8Nwo4@HT
zbBRw4hVgOT=EC<{K~te?T24COuQkx)64Y2U6gj8JWw>E)f>t~){b~UY_?>Ym5VW%h
zTx|jBX1RL|Y3{vAs3bwuopQDxFFS>M*A^uTAUJ44m$pe0kTG{RCWG1Vr&juDc$bS*
z`7D?6(Efqdkwi1&;9RL&sGo8UE<txF%g?umRsPoFQK(OjW*yk55Dbj^s^l2%yPP@a
zk*q3N4UHaEV_tAvjKVihU0e3%>iOtlewrb3yFy-uiBr>39IhU@&rI?YWqqqx#$rh~
zdTRp}o8G0p3erXO3aCs`cf|i!I}Xy0;?Kj6nuW`w5S@2C(lNX4?ESax+wK%GjhlX{
zJHgt#Ba#jnx_boWzcdmX6FAfQa?s_eX+k_VyMpnc`PX_u$uwXG9Uz#EzCeoTqVpwN
zK-^(M<88bimaaA7NEF>e{9&KAVy1QLg<fQwH~Lgm7P1Dg082tbw^0BM)~TH5%~{7*
zSVjIL;bXI`lTEk9FEO0t2-e^BVOkTdz&xAXWhU+Luy8Z=^`uZu$gCPo8SBghH=XCd
z>z7f~)R^P;*d5n77%#9$osQdGj^BTF`iOm}sc3wrCFT9jTk69g9YB8A>;05<_ey{}
zT2ktWLLKQ1#tk0h?W3$UIwq}~U%=yk4z00c)VeiW#*{7!Npd84yURvk>o!@s4j>hR
zxi6qs&59F2W^J^WdS+fs^K?EEoq_0pGq@VDWyIm;5`Lv+OF;7%(6=;bfTs;;SLJu6
zShavO5>Jyne!>?0bwaDcUKW4c^(C`Phy=YQslz;MoTt42JrDX+TBa~l*$SL=nikKg
z-cn7=%=V`jmkaV5#>2;|?b~!)Y)EVZbAHdv`g<9NG?hPCv&ZJAg6Q6Dtt{Q^bS|-r
z4U7!qKscx}K})pDJ=5?~{nuVnz!Fv!i+V4Hak_lG9<KCx$ly(hqnj4yztG?)iSr{m
zYzOZUM4+R~PAAH8I$K0vZJ6)Z^fF8h9blCc5TEF?`3pDt$dz%;Xrt=inI|cY7$ch)
zoWsnVL*XwB{%MnT3zMUC38n*RE=qT>RXC|jB6g&h4SKwSmgO)%W2O|91YOK~F>{t(
zs*Lp2S1UUJJT>&e@q*PB2||@X7Kc~A!=0)5`+6C6MT~_2DZ0S(K$9g#%Dgtmdpdx<
ztIdY5fdiY+Nt*WI?KBG$$wRH|R$Kw{y)3<(A=MwEFPeSw8#jA=Xw?%#=?hU|_!b@L
z;49D)MqF=0zU<&D0pje9TtfQ+^8^vT8&HQCO&4u#a6>gpP;tWw4qwc}WcX3kQgdZN
zc_YWg`gB7b1(B*DDyEV-hIuk|+_$@x3r9jDp}K`T#-Fd3OVR8d78ihC?%*Jo<*v$d
zySbmSc-_wsG>%ki0qHy4TQko6SRd{BnMdL;0i{89@3%wAj@2XiN{zRpZgge9^-ADB
zrOEx{uDDSWX*|O*a`~A*lX<+1Dnz=D2BTr{3N22RY${0lBK?q{RVM9gIrCKrX1Rr@
zNPAG%k*(!it%6+Vb9`zujuaJv<aCa0!R32zM(m}}qGT&ZB!80ahLMlMLlqGatiTbp
zq6I@0K~6`a6Tw#A%Ls0KY4UNfEj)|Z!rvDQ`sp_8-1E<}%}@Eo4uPVUaj3V5KY45W
z6@s$|6SSk<pO-rS6a%R?0&c)b(N&z+d>XwL5(f>A$Qp7EZ%>{xWGnU1`%G^41}(S<
zL$3|)X(hT0aJfu3tNaoPf}Cc`A2UtI^~kGK)2~4C%hU2z(-|bM9HtW<+~00Gz*I0G
z;kxuks~p)etO3rmr2|klVC96~Npm3*j)-4Yj#_99G)NAB3Nfp5d5C(0!x}`^Igffl
zQ$NGKzz%SK1N<11t1F@}Odtwa>0?7mZ|Dz)RuqTb?!rnDPW>_IP$MW#vj8l1FV2A2
zd1l|^`eJAe(kbgef@QOn8<)NWg28gtO0sOgRSege={rjkN!r<UD|*@kFho{3>2_D>
zmsnsMFiT8s-OoWA3oxT@4X}(HbZ`Swl6_>Jz+qQ9yf=FiE1}b$$qgcCut+)Ho0wY&
z8~Yx9q!1WAe-ISO!A@AEn>_jFI?p!c#BKsj&IW<_^Gx3A!fqfgq#xej6;OB!Tv?MU
ze_T|9OgxGEGtdHKGFdW339CQ??x!K?<6SUt$dIGN6fXPLMJdk7UwDT<enzW@SLg$y
zK^OD3d6;ll96jvcK)OO~oSV-jn@HUKTSIX-UUXjJd?nn?Ow6}VK2LLPp=Mec3gia@
z-&&eZ5|YZ4^K%nskl!suKdOe2)1c<-n35{ZnW+EW;*Jj`6c|RL=N$0kZJV_rRhM9B
zqKj$239rVldx4=4?3t5ew(`byvhH$9tgV8h6&hh&>dS<ggPsp4t2C&7p`pzP;A=_X
z+W7LsAOMnuT7dNOCcUyW2L&|$1eeX>YAqZR4wv;}b{!k8!+ySPl`Y?v_AQbsDRMGw
zTro}2rcM9=DLsalo%kb?E5$|Y<0M(RpNb(I?yLsBVG3@$+?#w}k?>D6PV^~>5YcHl
zx8Jk9$(2TI2K2GSoKx-7^8CSGF`2K<#@mC|>D#zQ*tkcv#-maygDWpr23K0tG7_g+
z`}9G<21CE~+K{`H>)HjFc`5K<7ES&6Cj`+|Y0+mKMDW3mzxhG*meD#@(X}i@7YN9W
z=~#Q?->AL}y;XX!>J>q`=qYi+;AO^1OW!AN$o5t}QyXeTFm#-)sYsJGOdm1Rowz?r
zUkI{K3a;mGSQ*~!Cy9lAlj8v;>`hU%YUf6{k+S?&?1nk5u4Xa5;{e~)4-8mAOed0l
z>eiBq68|l;?x3q5VZx^>)R<J<WoMd8;hTEB0@Tn7N)zqlTXK2=c#M!n*-B5LV;XnC
z7Sn*iH&<8X#IR{p>5pzk&XJp@hDrcK&vb>1NX7$c>OO3g`CDMBbhBjbv|M0>6pU}5
z>^+BKLE!nIpk6kQ#=SK>mU_cfP#YOZvf8Tp;E=g&M&N?EE|d0Q1hSWrDe$RZjhAoX
zn4IOqd-V~%RIpL9FmGnDK+YG-kB|5CDrg(HXG-H;?FB9P3V092z=5qWbcH0jC0iZ5
zTSJ$k-45Kpgc>d9dwN%MG~<%o6QaL#HAAw9uB=0+xALce*8nO~QcF#4iY@(<Elk>6
z%G;0eV(%Pe|L4k&$+QW|@Je$lJukf?dGPh%ve~>V<T>5U`9wVZHj`q^;y1}_8($$*
zf-6JLIgC?{;-`d?vW`8P6NFB)x^7RRjHe}<;3;^mB)zuv)-GH9O9t{r>!|Sj+Insy
zRX|9GpVD>b0o1KJ-0{nUsJ(b;FJ1mgsVN7Qz?<*ad?ERno(}=O%sBzZzJ<jKSX0o}
z2jyLAm=ibEkFh*S!=UKQoClk3W-H*UO)%RSU%|xD$B@L5X7Y|Xn2pE+y1H4HL^C1%
zu8HI-DL_7MS;cRQ^#sL@a+$q3M1SM!9Xk?eFSQfWsH{c6Z&r7cS~x75v8Oy~4EL!$
zsw?Iy|9OiUu|B^z-lwiVJHy634jF-svX)-H8ab`0(#Xcy&0gQdQPWIYcoyc)CEHNO
zBT=f4FjgQP&b%3ho*d$5luqum2BG1Kt>=-MDr5WX2qtH)uL-Jn2W~SnPS=)Vv(ld`
zgUn3QyX>*rDuMWtDlmk+|MEUzO0y-iQfAmw_iWsd71{|`$c_X1OQi4G4-LM_PTlGQ
zh&Z{_Qemj9V?3#p7Q(GE6)vVTJ1o^zK@c`htDZNMN|^0^Y;KLIq+aan>tIz4Hc*k0
z3et|_8wBzcZTt8b-}5FPoy2_09qKWlQh3+cFkcmjj7Ffd{&4Wb7~NGe*&}FVG9B6-
znw))u`uPcwE&nR8r5H7aN1e8(P}{_B?uGAx-ZQya@Vdz#xiBX9uxpHvkAe9WteQ;^
zCOrVmfbCEnt6=ZqvVnD1(i)|V@-x?PE8RD_mS8*7X#CgGL7gURI6=^ZfjPdNJ>R?&
z<3aGn9rc{2{?T%*gm?rN48mI3JjFu#<^=vgYCrB42>bAPHU-R7CHIZ8OWr_-ZR(*c
z{4*Qwe*h~$)W1V|W>p^FB{@%+B{b~|S>4uaPML^AxW&F2PC&y&+cjDsOif+H*K`0}
zPG2CEfM))jV)mEnJw^XFlZQ5Q$NBFmfys3HA&q6tKT_(8m0qFe!MG+p80As?d}ic~
z_suW=I-4mn(8H4&p;<}A)ZG&GYuxwxzYbO4s6zL?2?CYE=gd>Lj(h@B@7-WY%6>T6
z%JpBdYg8%3C4D3&GfK^uC6S>gsGn1}_1SFT{+#zTv!lYUL=Ye%T6Sm7PV!32{N+L$
z0cc=_C1D3co~Gj_)M^Zk5~;b!p@YJi!mdyqvo4Uux6MRTi@v3@J}Yb-KW7n%?FIDK
z@cR^A)`(;#<&l9hstr>3silor9N}eId`Q+#f@_`+d-o9b?qQVIGA%I->a<xyatRKk
zQ{~Z3bdefWBt6yY)f>bcStlCxN0F__Ou|H+ZfD*x`T_GVnKHvuU?%;gKmL`^`zGag
zjwmp}Rd#P&rf{I&I$g_1mlo+>MF)g+{I&*lNRsVFB=pmQn=Bg5$cl#^8}k3Y5iR?I
zX$VK`p(cp_&MGy0mp_wSFNd`_t^yn|1xbb}g;+oY<P(X-X=m&_OIGq-_5ZzmKou|q
zJ6>P1eDI>uUN5t$>Z~&momB7RqN%GxBiq$yF&<%i3udKxQ~}CS#Zdt&E^FcC;0fbY
zuYzWfL$<!N!j*MJ*iE~zz-KL{UCOqFjvQ-_U8S)Uw%&5phGS@iG>C?%R$JbpP)yUs
zo~UJvE1Mq2Vc0j3;yh>d>7K#Ycyrx{?=4SpVe_Wq7b9t-3z@(S{W+=cdyJ}rSt-Z_
zVw=?o<ecJ%>UJ*)qQcW+puJBYZA~xNZ6)8o^1bLH^N-yts#N3oWpwyG#EM*)G84u|
zKmyZu_BN%Bpe}fB^`M)uX=xD>SY%s^x-$r1(T$a_VHh0d!2H~QT#oS>^!{W9U%*ik
zoFfjyq~`pZ+8%O+|6RH74ghchQqR0B<uN6e*i<It3$k2>DJUgM&TLhHoPefgNZ)k4
zm2Pb`1ePm6ppz#*dUS!W>a4qllCK0a`*@d;Z?~FW=l+nd%zW7}#tJ-#{*e!1DGM+(
zyr8z4oo5K?2N2*?pa}|f$~ck<n9{b;POuB>YfrQzm!7zaA=qVsE9hK%z^``ym5GU*
zczgF7gU8jnD<=^Ymqcl$2p2}LX6kmpjT$(LOC2=OFa3Nc!O=H>m7qDr1j83k|JDL%
zScDHuvNV_VfCjnd%Z|{$eT*R&VZj3!IVrNxtxCb{Yuo(@p!V80_r|R5eVx3J#aRJ$
zPmm=q9$W#FZkA0UO-<PAKH&4V`h80N-iOw6pUr2M9|^X^O<3=*broj$uia9!2<_8p
zZbJ=1cvCh^ieSgy35;gjuZWB7^4SA^nFfUcI^YV56popd*_m2_*Yzvbzj7{y-?#uH
zI-ZR?ZWIeJS`A9L)Vte~*L<yV`n*#QHzl9I@5JbKK5mO6;Sq*iPIQS82P@b}@`%wu
z#9CM*9gSX%%;~Hr>gskL!{S|;lDmdCHkkR2+owSZN}>{Ya#3eR*+0=;qI5_^Qh3_I
zax}a*hC1&oMjatsYW_w34=A8L==GHBN>Z_pEgi?2N!j6)*AT@nvc;lSf1`Bw$|Mlq
zdbRc0Q`*K)zlF4qYQ*4-2~Ho^U8Pht#g~puU@nl<M<dUjH73Po;cj;;SPnFRraqA0
zV%J|%*RW0mx<o_)6gUO&j)#=zR_*qTz`4jR?^m5*S1kbRFuE|8qJsugL*a~B8dokv
zMRVRK=frCHN2eis5)GwQn4=$54X4;8c3sLCgDU<CyiNQDGjyI+7NNk!1sV!U4SI&(
zGL}fR=NrZU#$$i@U<wt>hl}dZOj3Ne>AGe2j;cL{1U;k_5~PVOD33<OZ;6vY`<I|U
z5sMIYHhfnMt|4sE3re`vqF%6m2^Pew+0GN27e7_JN90Fpxp0H?juM(tC_y*C8by7A
z@aVCf(R$bnorBK}k%nt4pMmsrDf#NWB<v3Gp<Tr+^N1eulUQ2K^0aAC36~m-`!t<H
zUGef4a!?3K<4oo>j1v*GgZZ``Z`7nxNv_>2u%~WQ0r0TQJ0bHv+|a^7!$zzr+gf8*
z<roAaoLcSI<3apsrj)d3q`8s=34^lHp!X2U%1feUw9Kp*am`x`xZy$W!PB7ulLXhG
z<=35&!$`T0qoM}7q>7EePr`@r0jk-GusGBC)!BRO3?X-73lNE%I|`3tABZOr$dhCh
z9^-^_EU71#b6u&v*~_=)!;TaTBQiu*7gx-hDeL||^5XtkJQT8QScy@Qp2GkLWEoOq
zYyf!M!aB_5ns&&IHJ4pVwDiw;;@HC1j<6hEx}o$#^RNlS0Z$<#Qy=h)h^JnhS#U_V
zg$UO?olpv+-#{#^NcZ;<pv^-S_o>DPXlH7$6dKYav3+MnFQgViWNoSrt4X}GEh5)d
zz=KPMFRXYh9p#<?`|V}`qWSN@ruywb*gB5@AL$o67=}btr<=jM?J?Wdym>A<lGBMv
z);vI~AalYTAm9!`8A~Y!Elr-?4O_I|0Zy~2IK`-A4b6GFdw`Wux?s(-K;4Aix<I{M
zIx@{KaAt%wqIs{p!h0gh`Bmr3pD@b#qOp6M*oP4H=IK>nDY9W^Q;*p_4TB{O4h;Wz
zIOf=VF;5!0At*q>{oNB--lv#^40JoAH1_4ADb2``Z%`=RUf5*Ba$$u!!T~jFZ7HKT
zHvO-=3svu!$EZ0XjA{NG<Ccb&gQWUb>MC=!!#OOQz8PY965E<cOJj6Ul!Gd|=|Wg6
z6F^Sl{$y^=lZN18jzNEAG%gvI>#4+7R)I{1#sn%z=uR@%Nc2~%Cv;tl`}5LZIq0*@
za;MwW!a5yNk>#sG>n`9ZTA$6&u(ya19X-EQqp3}vfZ_bPq=?Nh2e!-m-D>}}+xe$L
z<-`Mtv10FPqKcvbdhgIrX|c4ze3fw%aSnC(yfsshyHEji@#9^rR8ll^;*99OaLpic
z^+n&X!b_Yb_nRNXhH%h8f{Q{;CZsc=%%U^T{&-|nMm?dc0n2pDQ?}LVwtzc4qhWeR
z|8#w1EZ{FQa;NBL$ns73DXXd&EEVH!8A<4!3?Sfx6T-TZ9vGfctQZ5*HDo1R%B?g?
zPhk~g7KaSYe@yI@N@77hMn2C^5*JL?HDyvs4_onpAoS9V#nDpyZ_iuCUL|(?5-a*X
zq45gmXYuuaF!@g@C3yUl2J$i144VNJfbv}2aWu6AorAw_trdhxruAtr?F0Vz$W1y5
z3nQvLwB8&9Hsq=k1|%EzMww=}xxlV`*xZI$gZ#bX#0cR02g9n54IdX1r)`fR93S;m
zT!pvIXyW_YxSE%J3L+t0x+#$V_9D>T*=dFt*z0h|wbm9B?g^|q41V4Fs9k`P`j$8)
zOnQN0>7*%SQYjCh$vR#=j~R~RBV3LID)Bu3(jxEc^u?}ZkQ#628$rzms*Ni$U>B=F
zr1cRnY{90ezKU>_se}R@|8vp3#w8OBO&f~D&nX@F8*y<;(IXZK4#OLV-pCRG>+dJb
z=t@-5sU)m2HEW6?04Wq)aUhr-oW^Vqxz*gsDavWVH^|2wic`J3dvsjxtjm7gntew`
zl8R!5@jZQGXX@uGhD7`tmjmHWP!~#7TC2z`Yp7LYd(_`|y+qmJ?L4!UUz^60U%)qc
z`@zE69&%TJP*jH-Az#=Olx${8F=>@oOzph5+-%vg1!-0UL~>0w#wHK<g0E5hS1zpy
za3EsxX1O=$cAmJh|IY840~^N1$$_OYggu_<d;bW_i7N({D(2`<!RmNm*_^e2!{evE
zUrap)7!pnnNifx0D0|&YGMHoM&au$=Ub)&0uFq%=w0crCS2Y&nped48ro)L_i{Z09
z(xPnoc^1Ny{qNRJsc}<=&9HohC8OwVecSx`AL`nF0K1%dbJM{Gp?)?_ZLUf98>43S
z3l8myf`jbFB6x=H8D77xTm&iotMV!9XWvDC$=-p3=S%{ynr<xR_P2u<wo_|E{svYg
zwA<GM4Mk{?kgH?06!;_OlqoM$tn%$<a8kSE)hpu<&Y$*cTAC3gP_g?m>4MO*WPq&z
zg;s=9j;E!tf&zxMw_|SyasNY)QUYDUf299>;#ZO)7kh6=j#P>D(TkHviF*n=@9aTQ
z-b*_}HcR{s&3Jxz`gJ4ra!pNj<Q`nuL3P<^u@Q6zxXD##Hs7)z9?v)p3I2QPQi<Pg
zzRyN4s5qrk7p<|(_k~+GK@!}RclWzHV4<gQSpU=P;}T-{*#np;X0S9Dm=H3eyC^g=
zZ5AQ2`6}>+5q~Cjpe@osvA*aGpR?ea4n>gm#Zc%FIum79c2bZ?z8kH%;JBPs=Mu+;
zpN%=Ow{`l{@63_)I7R3;CBi=cZ#OrL_W@r-=Q2W3jAQm$qW^G01<eU`gh~hz*x|?<
zGu6f<+l-c@BCv}y$v)uO-}IqI0OITu!Uf?%aaTwU!b3l9mc}hjG>+f1BI5i$r{V<(
z1YBuF;xzyVN`%IkZ2NtYP;^SAm6s-bm}ox4w&K+6-MGeyCdX>&Z!S_F!0L6*p2A>n
zMh5OUNfiGu9KAP4v~t{#S+-Y<1cq}57v9g@Ko*12F8?+@2!wE>i-EzFzfPTY(7(IM
zBxd9{nuPdMP3(9>)9u0ycvmtr{+-d_CHd#=*dlq{OA+7w{8|y#kf)tu)UcTeNZDj(
z(*g1mO|^N47$oXPINTrJRe8;oMhpZ7P3Aw~XFe`8kks3!nMJ*s92+p-c26PkAeAeS
zjF3qK3E5@EfWX1Sy^7e{NPoZ+;EKzi;WNi%id2LPyGlJ*!MdXLHyoOw1|pbfLDqq_
zGs71n&A=$%J|YMUU>*Yj#IGkSP)>SZt0z=_j#?k(Ta1WA)q2Y{*k-w)r?L#4FF*4^
zuF_=H;g}H5-ywAw@$$Q~)5i59ASHI$?H8S*PfVajMj?{s?F2fvU<q)FC^GDy>^hRC
zKoNrrDKdX1R0*2*JC$G3pq+D7oSgQT=yrqv-vwYTcYS_akniWI8BsqYXtujs$?Fsa
z>4W>M@C;{ofqbAT{trJA=2G)Jda<L_D6lsF6VZyr9Ku7gBPd|5$P$YJzpfd*bJiHL
zGpegj#dk}$zEpHt1XJ1ZhV=&lFq|Ec*}@J(5re#liHp4T8qTw*UV}yOB`Ga@nU0eW
z*cd$+;JTGomfq$%O4F%@tcR$4*SKJQKy6BgzLjsS8CXw?G)p7Qu3Ro&x3P^~%gydv
z_B8pF0Uc~%5MyqssWepJqA+z^B6Bz#EG^Q~48ZJzNj)J+_qj%2#bPe;6bj8w0r;;-
zkDRi5p!=zCU{MXJOnO)IeUSE5?}MX7u@^R!-glwNl#>IWGP4K8wm?7oN+w2cxT|of
zB)mKco3aRuCo9d7NBgaw>S8HX^3zy)Y?CW4l2)sk(8_aC$qcDu{d=R=&|A+Xq$>~k
zOhn6>%SsHP@~+%{>y?rn^SH4A9g$j|fIZ<#TW0dY4Rl|zbOUG<T!bhZ;!Fal#6_4-
ztYtljh-j!d>DUDp3A`28z+Zkf=c&lptEyg_AIEy=VJ6)(7Psu8lSAvBVEH)<cE(Ud
z>uKYxS~^2SS&1s@yQtZ>GAzZpFFWG~UZ3_Fe=smspT!3;AUppnomd<(&MLs$Rd0pE
zTVDnhX7UWmCGz(;*@l3-VI-jt8h}~Emo?!mC^>|v`*u~4f)QxM;3|NO(PUJr+c`z=
zT{(Zoo3~giXj>bKHTX!!Q3AZqAU_P<hLYiFO4LSLr2B*DpV@bpC{rHC>n=L@REcSu
zrGJvGh`LmVs{uu&xHKtW33Dj`Ym>X+WKGiGqG;`FH9>&m?2KY1wrdhvnA0{k0ahbo
zSmt*U6A=g-7|~9$G&w>LBaUS(oQ$RCHVV=s)!ISLM3kRXThrP6<&Z%<1N+DlCg>D9
zh6t>#aEy5?)TrqPiaiVyV~Q0lLJ#}k)*^WF`Z#~5^6H?7r^MAuQAreTtxN;3m%C=r
zsXe<_Wcy0xd4KjW;(}p#<m6aVm@(y4|J314{)ZE`0VOn={Pc82%*pyqgn{=zZlcI2
z4$e8jB<YRO;fak?9OLt4a>T<h5rIBQ>+{+t$M>g|V>>I7P17^*o&x5@>Jt7z1gZ@<
zL@-fJ{6j5KE%!x9pqr!&|G|V~Pj*-)9zjy^<rG&X_M`{Rutj{XDTe9DV!C))7N;&M
zxL2WRNfGa}C_kVt&(u@G4z58rL_S;@j{|@wD$ZJzAGiMk=Z|{z*pa8(fh`g8{g-RU
zF(l;2Z^nPZBUCU06ifx7Fd+h8XYK7Cv>)hOLn9nX8cs>Eq~s}qVDACTes8j!RG_H3
zH4Up-6MdK(9vuf=_@O<Qd^C3ZN2>`obP@_A9R}m&v(i%hbLqXlHzgO^ag<+GJ4tFm
zq*pt`yOhrHz3vOn5w(hkI+|I$h$$#>SXmoE*1=Qo$Z3CV8b8&7fP0nXd+>|!&T6|E
zlZ;~YmleSpCBn?Gj_B0vYzofq#gRInMdeOxj6a$r5Q!NsZ0$rM$Ck?k1=ESvaU7iQ
z?w3{ZY8>f5l*3gr&{aOZva)nl0<5-25(N!42R#w5iZ7SM#2x4du)(=vXZ0iW==jaJ
zHb%7k#uFqLweo_jONOSN_yzQ=X0+{G6Hyimm@ZRTJMJP((KbGM<W-uK2)EHWwO!>9
z%s@Hb=P6n$@qx~kpQCD>V2Wx}#E_GB++09JorL+u`&2EOA=36*7!{$ln*?hItW|#E
zp4{3IaI{cGzM~tiM{HSWS$`NdM<}Zwo5fXh{^5NOn{4P&H=JdokHw+7xNX2oh31R>
zC;8}HEBQk83mL{-*ac&oc?S^;*_I6HC8f+EXxuh_lxS}}y+#ew(;u>~2tf)*L+CQH
zaI)&++HGZ4?a?|f^3T}XW->G@Q)RIGZsbzqz*R^IpUKO};z&N0lO0nNcoM=xbE8Fz
zMY;o+iH9HF5>2+LN36yhsv~TRKD6YyzQiSCrk95`P@|gy3J&FE!QOIiC<%W|EhD!L
z0Hbb@{1j6(0zS$iFAC6F?8i^)W@#PiXzG8qEFcf5e^syD%k(wm)sV{$xb-n)Fom&v
z-<JEltnG`bF3jsj)l19A2HLWU-A4j<RHG;91K8fId$VJWTfxc=l!mpRlcv^r1*Q+O
zGL6Vpm0q55>F67*;Rfxj5)=6YQNp0*WNX`N&G^GuXRi7izi12N5IKyzk|(O?UnSw=
z9;4aBrnOOSi6|<yqMKO?PAWIhnUu(Z@+;@;35pH=&RYZC<jF`B2C*lxJH;`#`ePO@
zi^*$?H6@D#w%+pq7qR?q%e}m38X3U6i0jrSq>zz`$}l{**)|tto3OAf6X`8G)(I^_
z(m~q?yK+)DOnAsi)MNrZFS$j($w<<CLrCWn4Wt3V`S;@~HsKF+kc08OAjg*2#IUy4
zuf*pB?%fN$)Qxo1tua=v&XVbdACaXf!k$(>qT0S$;ns7q;@cn2soG#&ze7dn!@fLA
zdrE}J?>QyCzE%HojnExTA~t`?e4?0W!ySLR(J4JumU7w(Cp%Qg@U3twG1g|2EEUnU
z3T?5kkow}!h9&}x{7>e9DD%yv;-=9^mjO#k%0p<(Y=li6*FtboIXP8?gI=<zE*#m5
zv7XY47*C61ZSpyH4ngFs|KW);#0qtXvV8nj{3Y~M0oFL}B48zVdmz8>oB8<O7I@C7
zUwH|fQLjjfK=o*g9Oh04L&*~J(zK9&de#d_u1RLDs9&;uOe{*hu?3BcaKmtdeKG#c
z{mYJZ!}le+$|YQ&7*d~GjJkJm*yw<=%ek1F03&Q=={Dc?P98kE1el;leAq-2>I@`X
z0&o>8YouuSV-fs>8q17kS_9<=&|=33Y~IbwB4tl0Rdd5+KTuS#Y*On55}DqVRT<m=
zKB@?(qM#hXGU8|PILt46p83!DcpGoC#O`?-KM0HSnH<x2!#8EZhM+)zbWQ7>c%vw|
zCxNgW?rW+9`10Sz^Ny2REDOcT3wNmLXq!Nhek8yXqrj07NT)q8+HQy>XYolkkc$7+
z%V+Qc$|9Q_w^EgtqBcX5rAbW1gwidS{8_0nTd|PVPUO7Tf!x_SqcYwB)K87U=UQ>*
zF?j+J%abwIhT@V7Q|(yj!whl<jK}{cAzxf6M;BuKUL}u`qP+)#2I!}-JtZx|t|ESw
zLsLMID#2S_J_LMub7CX(#52RR)R40QySRi${`VMKIUVU$5K&`Cizug52#WUOV&+Z*
zJ|<c)&J+H9x^0Lp?bAx#PLR-jO$317r=xGag&FrS$PlRF&8bH9o+Bd`XE!6?pIaV>
zv5aoiu-9r%pqZa9Y`7+!!|aAV^;iDbK^m(tMv%T=M$c&srBV=trjd(w$Ud?$aIZu&
z#qe)XBeLwvE7jiB4YJU(lgMX=IdHZ!JKJ0iL|+Ro+)121wp$=li@d=0ggyqK5sbGN
zh@9b$LRLp6A0g|iFpi~{2qTa|p^avGw0_g39=rJm?D!+wUL^8#%(!Bev_2?(Q)(4L
z=AYBh)aJK2#yrG3bF@Zjxd;bYjT7?AD~+SxtX>&V1yt3H3$sJB{zP(~{2@_@C~S4|
z5-)6L>`YsGwRXCeRy4}aRo@R8E0hg2Ez4299Y}#-2Qqeq4ohQS5$!{M)_D=Jx0Kty
z@jUASS`-eA1x);<_I7U;4(lX{VPC;Vrxjt4ke6cPG6@H1^$znw+TdVjVoN_;U-$TK
z9Zwn~fW_-a^AEK{AC`+whm;DxU^zi#182`9SP53MvkT-vj@3aXzwQ%6{HZFu<Ri9r
z)o0)djk+}-fZtE^O<)nDCT4Fy+?S>TL$|Hg%+t(iSg+MpLg2ipW|NmHy{s7x9D_J=
zSr?NP5V9RJ;pxD&ueY82I>OX;=UrhT{MSY;qQ&0I|CYjMxA$1_4YeK^MgnP&QlwN$
z1~v;$-o3!!3u=L>xdV2Cil>2Gi&;7HtA!}6;@jX{Mw&*-{=TWt4x%9QlFwS!feHZ5
z#`3<X`KSOmH6ztAWU=I!Ujy9~Ndj#`ou^ylmnHk9Ea^iTJVJY2Eco_{#2Q?MtXnD`
z<3eFims(n`g4@h~hfY^D4;TDOEWvswsWC;=y`b}&g&K|v7)78)H4_4CxI$0R8}#7n
z7I5rbn?@o<L=cMZ1aqRGtHxR!pq!gv*+d*Adh)@FmJ-e`%!z5?$t>zh#JwUc@se<I
zefZ%xV)%5-4zWqz0Q+bsy?*W`GkNjS^gbr%1|g`us_|7WKg+;;0*UAM*2ToY0!r<V
zethpWbSRFiDrH2)sRDOsnPZPUjtn_ET%TnZQw!e~-HGu<tOp$LUQ=VKtT0DKOOZyb
zEyCRe{zaW5xg<ni@jdpSZn{KUNG5cV)XnKl=^veGuwXU>v4Bsj3zeC@zB7cI(OHpe
zQVUpN!cGj+u`4bArTS#rWx2!HI0bZGm#!3-i5{r8f%70<!OMx+hjY*juEa?WX`lV`
zPEFkWY_w&))EOQKDB|MUO5#pnMTrf>;XHxcRHAA5%7)(dt?`<MeMm0+)2F26Jpnv)
zW@(@7SJ@9xGyo=i)h&x?VSl{VcM^=*VO-BTLOBT(I@_VW&-E;RpzAnzz&y&UfY`;m
zCjMtyEo?r3SC9vzT|xvc^5!W^-q0zZQXme(FQ<ILk)$GFa~1*VJ&VL87lBR_S}ZzJ
zG#ho!>(k;ix^01GP}5x6;1}!)k(_N*=L{{e%s#uhPJYfA(&O}Mbo%;7YSCTcne~h0
z=@NNHo3e-c_pFM0m+~G`77d5;T7p?<*g`~@;RS`a8~}`aD$b<YEnfYoxdjr93sqjr
zjG?^ZlUtRu{tf)K)=+Z6m((py>`_LL-<|J)FQ={RQ+;AKQf(--^#kr;55b*YvOCye
zddqpH(lOj3+ckA%%}h?WSy?@$Te?ezyo<*Fk-KZu$Qp%GMz7oK&haISFkzHI-a<7Z
z%#1WvHwPFAyAWj)P`-hf5Q*OoFvPiHgl*$0olP@&Q4k(uFU%7G*1NsgwrsWi7%X-N
zPCPjh8TO$iqIw=zi&Y*mzTJAJ=C!*i@+(~!OhYB=1>!@te4`5<pv&qfHd>Uk2bWo}
zKLk<VKJUt3vJkxU@f(?ZWOGn)xK$f8mht(JejuR(Ap^=HQhv!Z@xigC>F2Df%7N63
zFufMUL9St=Cb%Vd@oHjG1zHk!0p-Hij8l5_i+{x46J8ufZ~9Qov0r4E(&DuXyrK9h
z1X$gfJ_mNq6#fdxs)Q#}bb`{?D7)x7g@iu|h&F%?*{I&bS%e-^cc>oOU=Q#KWiH>i
z$PFE;-<6yFwaU7#2cSd>LJgL%r386`t1<;i`EbUHeT^P(6t_6L`XjFdL2Jg-fi1wy
zY7z)3=tSIm!R?!2-ZQOq9nHhBYw_STErs7{7vv=sRMUeo0h4K~%br5(mP@UR4yB|T
z>XI-j#_F2onO|__=|7YE-pLK>9$M(vwJ}`*MnZ;kWA~S3Nsjt=EWk;}vp!6-KtR+*
zu3Vb7g|Bq<kU4^I!vIhl#m9?j4<`PF1ZLOaszG&|`+0dZ9E-=Gr!M;yRw%FsRH9w*
zl2X>LlNR^<OPrQ{-najoFlFi^3fH%0=apYBNhJb7p76?jKA_)EC3SeSRR)D4M6(cy
z@9e<y9E?k@Wma#A_1B4aPs6)AQMIIn8L;-);M*wB13v>|npyqz<7hwJ7snT-0cp5t
z8Jcpx|JAjp%EA`TnC>FyV5anbgyd_hp9<=6H63bQb3ZauDY|xVBN_D28l}jNL^9l!
z(&6cvErw`#t7cEDNyRezQ#_dsPzxj~nMB)NE%S=2I|4;IweBSrykGPP$I8x-t}QDx
z*sxgg);df3)#G_zn9`>Y<`Cx`P2Keq5XXJYY6E(*@0gm*Jv2c2KGY{R7TtTOowIcO
z0W75u5GGP0(*YgQDlbx4n=dk)fEevp40eZE*c_pURN>6~@egy*2AfN_^GoahxMQgC
zBzfx|WyR>qh25>l!B~6yz9)9-cQ)^*=g=K?C0pIvIiwQ!Uq7OoQXeXZ`pwoES@a18
zM$Jb&hUpKrf8Vk?T{F&B+|u|(g0WkPQ&<XZh(;u1WVN&Dt5J#Q@d+EXIb&2^sARK~
zF&(STnUu67PL)rmbVheXR2;77J>I0PUY4%e>uL$&fJgxmVXqYxgugyw70ohXHvU>&
z^8{czaU|JIvd4Q}+>-W;yZI<k76HD>CK3=6=*LwBiLv6&Vjm|=La@w9v+j2Zs7kxk
ztT7<NI4-HuwO|SLG<%z`IPa;}8b2g{;B#FZUmpP#uOrQjk|kW8%meG3k{lWg8Gu)c
zA3fWwe1@S9E}*Y@n82uanzjJ*^5jS(Y9*<(<{2!^fHi(jdKm~LT%I>5#0NudlKR#t
z4x6C#WN8i%4(=+4t0vkBQKmDoXe-5nL7W$ux~j^kMEK{PSm2d#d}XFb^XJ?6)W|AX
z#$Jy#r7K%4+o@ZGKs}#aJorNAVQV&*w~FACt~jg)T;}r%^Wyu1Gdy|fMAWUPd9W`*
ze!H1N`e}jQ3602%=rI+2_*-QbKV1egsO!|NwQSh3X$Huvm?wr#9Y)R-2SFz@P@E?v
zP#DvbjYnQ=GOA}50XMa=GgR2O1Bu!9%s~Z{gq-g_sE)#*3P$c$#}z98C*&aruXN_1
zDIu+7cC3+9RzGPTjKEs+D=XVT9mCT7$b_&CZCnK{lfavSjyAHx?#v{#z{>4@m#E^@
z`H-yde|%DWvJQdQ$2JlKHCHwkyvE%i@V(<|1kerQ#N)qjN~@>#UiyTyJG%r0aAKDA
ztT6WY%7}PFFYxX6nG#Rym6cO{t@=Gf<6O<YGdlYB1+Cm=U`yqhNPQH{T}oSb7Nk<q
z*SFwzHVb$3$(?1MBFYPjpPPd>nbX`)(!(`IlBY@C@0POxj*Xnen*%i>U;cCjIF_{M
zuwk=Rx|5n55%R#G;D3ZvAi~|Br9*@LG8alh9v_@W)tEbox6Qo%7_Nf7BgioFazShr
z5I@<XW~6wauSFqf4zvp<n25&{vK*1^6%Pfk0ob~mkRjDIE$20~`hz%Cx$iRo-8QL=
zSFG(7l78vR<wXq^*!UEvBLBAa5GA-V()C(^Jh1P}6}iRw7*$?#SY;KLI678%{GGOT
zmMClsIt7XZGN@-cQ5`Em>g!LvBc))YF(sYlmEs)3{eIjj{c|H|(PN<~X|%iRdTJah
zyf4*@g?q2LHMB`9-hr8iy`pB^dF%?obx$yS3SoO5&_>hOPnkmhV#i)y-%<ACEgcn=
zioz*%YuxrqM%DlQ1>Da|C=_YsgSP6++L{xLH150#Yui%rh(Cv2uW(dWbi&i7%k8g<
z!hfSAMn&;+!!4``p)l2D5N7DbYrCSyZ;XU}P8HOs2OBE1PQOJqGxi8;ri<yFm-LZq
zJ^oe}2*><PVrdYd)DY12Wb#kFTAHAMRJvM@_!~{WoE*=K?wbFZnd#`@Jid8YNvf;t
z<zMLdgsu5wXzoFMo#YoQH1)ZR?s@ByJTNE_J~?fkk_>i@^?Yd>`50<3{r-;3G}-xO
zuOCj@>9erogM^c{m=iR$eF6kR6;%BEm*N480X$hF*4I&^TfyMihtv3__8!mh=F6<}
z6|kJ<8A}9edsUdKkI`3H8nL?7i+YMW@CFEPdwDqnV;Xm~JE9}TADzqOl>Q*?r=n|?
zi-H#vuVrLAG_*{xNH2jx(mR7gFsalNj2|QAC3CPZRL>2(mrndtKF!ZJ{Vw4-RyWr(
z7_|-jA;lc_y6?7>XN|u_sM>|=@zfeP`Y$~kUgaG(PIXIlJp{JDx>3RD>|*Ap3OfX|
zuF~<_C7agb&S-E1BUh6O#I=sNAcsvBL(t}*p8?$7j2aJaTVgrWDknnlPYrV)o&2Gu
z`8orcBf31!ay(w+|KzOXbU8(p?{;1m1koEz02@$Kfc6v$`$|5gd_qS>>o}33*rpbt
z<DgMOIAGsjBLrAq0N5pnn^GJA&3=^Ln)0XAg)yeZ>L!0AJY4KEiwrK5!O1xDaMl_m
z!LpOdN-AIbW;~4Sp@t^!+&edQE7T1c-rCruPuJKG)>5VNMF3bETZA}eF`c%f?teCv
z;w`&&arV?D2~Buh4RFezYE03Ur2#|KhC!Pd(I~!0JdoqKEO-auY2XwfWRdxCz1&k$
zymZ2`=y>CCUYxgwRcLuhL}5oame?>3%rN$>cZL5Z1fs$muhC4!?MT%lF`hN;SHdP`
zRi_W%*|}EekS5Fb*QYm>6TD=bV7pM2lUPO;rgdhOg6iS@7yE16<hm(OPgEgES)rKl
zKQ)^^`uzc$$BYQKYNnm0Q?jdYdpr0m6b4DZ$`e7g+VVNA@%!}>7J>{7QLHWMKG`=N
zSy+87A1~KdXf;s*rRQZ)3k#dQ)V_|iKD(CFjjGh*xC+cpAY+Vd%vI*}-LnmK!CWGI
zxW0uvml=$c2lwaO=cQy|cVtuYOz};;xe?uJxkqziUU<Wo9E;_4qg~LL3%R&zm{rQ_
z1W6k}IJSd|;KYYx?$k&$!d{YVxEF#IE^qA465)4mOlQfjg7bhpj_GzA>NH~0i#cJ{
z2H>0j!p0yD9lRKC>%z4cNbiBk{zQ+F+HR)bVEx+^z7^W!r3@NG4T<&T06d|<mBnr&
zY|zHap#^?nnX&(i@SdTMn!VuFxgIc$sDUoszP7cF$P>xeXuqbc3Pm>0Bpf6_HIR8S
zC^oBt34Pv3P75-~a;ZCoPF-tX%SLw@RXhF~RB?d`d{Y+HiXp2!JV?T&naxWe6^{xt
zzhC-sQ0S^PSRk~)CpiociP=nKg3nwqw>qyk0jQMtGS^bHZch}><VHg9gX`D!nuth&
zaoM&~tExXOaTrjz0g?%R6q>hapi=<ts(d<oGf->4b0CH5WhykPcJ>vqnv!^o+oQ3{
zSAuNkhUSfYD$jn6HXxN}IQ~SWh^q0NPwIc5YHHaBkV{Z5SCv$7Cnu2F5FG?Q+(_s7
zK-fwZPJ{2ZN3Yaj`-c8&0<`|@@~|JW?v$xo49lTQMD324jR|wYY(n2BEDLtiTdlFm
z&|of%YDbExke#`;A62r{>!69}Kv-!!#~nM|^1hCW2MUR}VZd0g^W7>-&OzIc*k|t~
zLy8+S&?yMdvt-?kCrfQ+e_NJrsFDa+N@gnTY<Aba+(L{fSoVV*C}?=E_c=kaA+zD>
zpQ!n`2A6`GhzQ>yDN6#sh4v0GavwMl8>1QVKIVtQjcCE#lsl(vwUcNrVg5WJTEb=J
zd4xJjb6A3!+Stm!!6Zdm94xJdK-NQ|k=>4P6XGf^vpJ<Q{{dMCb#`#ffoT+*gn6Es
zo6Ynf{NRwY13hkaoU+M!<shPvu(rVXNs!I5jIECn%xKS*<`$Gt#pOTxOl4jYY9k@t
zfWjwxBd{6>lK+HiDr&%~x3?onBkyKjE!qr*)nCj(b)wD@Nof4~vNPy+c3%oW=WvW2
z5(x${a}ZUN%KlH69)!WJL1x*(=;sD0u=2p>S|!yuyKxuMyf|q7S{fQZRNgnIoxvgA
ze~S{^94z&8(~=-1Hjh0D{-q$TR%Fpj8Ad>hDeQvK2*;X?TB~ajj;zR|Uw??Mty!o>
z^7c~O1iRi*D7<xay|Bq+l1CVp4z0IdGiYKWf|PgmAI}XV%?f157LtCXuU>Z6x2Ep2
z1MnS}FDiDjwgLFNj)1vchDbJowGa5D?R!UmoKf>*a!XPpFV{-?IhxQnL%C_F^GYaa
zG&M|C>n;C3k#jXuZBhLR)+(pwCOL4G68i8s98Bh~BmG0WCwdfsL$VowZ|gecFdgK}
z@qtLd6b5AE3R1~N(Hk)0MAbjY;Sk^}ISO~aPqMqr_M(^G)(kv^l_ckIOF-#WI6~qS
zFrpqM`J>xjGqGvdp0%--F1*n+-$u;2&*D}i@<FIz{zGw+9Lm(;HJ33#&?h=Ufuv@|
zt1pzQW+X+LqJyJqadd@f7hYsuy<O`h{3uI@A3J2uN@Xo+05D5N?kYU{a7(K95Oni|
zjYVLX0mp(Vs0k+dmGXM4Ltwl26XNY`rA)CWzc?#^052_|JGJw~it|I<$Wew!93Z7I
zKg!b<THPq&AND<sGP)a%tWEaLb|T9m;t4TZ<c03(cwu%`6~NNfz(A|rcP$^AU_rOR
zN{UR%Rn+p4xAdE><-4<miT&8%l|8=GuE!P>TLvaGDCbf?^!-ZUt@S{f8dTqtAT9dN
zh4$W=cQ+-_1X<04^gB?7fiG88_)<Mu217F>m)CML*=cEO#E?=l(82A%sQUGt?Cxe@
z<|bC1&9QuMFC6_7Fw+4UPh?JOTY%TM;r!DXR7izexj5Kj@2eUevG=4`^ok_HsSH7A
zkbFCYBeuwKIb<ue^5+@&01W1$uneUco@Pa8rHA{EvIr<&*3|CjX<6%2CzfJ@$8mg+
zGWf)|d}_@I(;mQDp+Fy>=o-m%_%?p*uheMlL&Xu)_y5W(@wRGxTG!bCtRw}EFVEyX
z*V0l;jJzzFz#c9e;;SGNG)c1DC04T?RkPVUYhniWcn;<*oD|o+eOzSd7ZqRspr5QY
zc7`q8W_9F%#Pl~nbctpuWNSw166OHnmAr+UKNLo(hD>ZrA>zlojcf$KC^*vrG+4W#
zoH(SgQAjN9z4pk6HsnnTV4R>Jsi}oe2fZj6U%}6#TF#@@9v0?SA&IS1NBl-6Szo=H
zk>lqQm1r8KmrRkwZ0o9g1Uc~{a^4nK?W+1VXRSz}PWmCQw<1RIAu94)Tzw-zLs9dd
zN*HU$h+Vo21sUiuD4JzG`pubS5!aR(ESR-Yq<~{-Mf3b@&tX}WBEZvbPOC6?|9}Z|
zRud1R_j*juT92ypi5Xh?dR{zTE#1c%Vd8L)I|1n$%e;gockIXoKM0`m|AV&BtDTKy
z#_RP5tDBHH*ozv(av)|}FIN_$$X!}?QDARqwA#-XEqWT_O)xkUW&?DAFb6vQ%!xm4
zzGnMEPnj<~i19;DGSz8pJ(Rvl7{|C;wAlJapTFJz;lE5smk&WVc6KLX4=H<ZHNQme
z15NL$dz!vqietZ;uuLWkT^JiTqaOq<g$;1XmnU2dZmW|fwFK0DfP^a~Ro#;zR1?wg
zW)0%p=E-_EzD9ohy)9bmkGgKQ_-e)FXpe6LB1ZD9L5Czj9T>>pd_IAe6Af=ugd3kD
za$jwRD>VMMffG!PVP4^20Ua3aG_)6vEgoN%m%`@j-Ca83_GC>FRXQ>J{d-mvsxNE8
zvhL4rhJTG9g~`(<Mh$M-+1g{1ZBQ`A68&fhe4?ll)W@yaPUhBb5278%jYpb7eJC<v
z{ffw)x`DEnTx2wcz=!imA{^^jA=B!}uwx#U>ZlCNLP|ny`r{@#v_=-2W;DZvMy?R*
zlRNJNE1Vjhv77A85P#b?%~kuvTmHmEu}ht{>Unj5eCeSkBl*oSGcGHimADaGZ$A%0
z%AI;fs_YWf29Vb`iPuYZ2L4ymN3Vprn#C%if@&!7zu5mX=`tBV#w3Y!hg=eq_4*8%
zjQ5+K+_g1}B$CINGXL9b9B6)9C~&+mo-H^aLinWdSV>>u2#(z0Pw{qN>zb;%2LXyh
z!70uWwg}L8PkJL5w=`6QP<*5tfJTvR+1v$qaUKTBX_5@Ef>%YabtSlESr$?<gIyoY
z?(OcX^)gxD(=hI|Ev?>gQCBFM_TF_0RG;&>3d1sYo#3}{SBg5W3w6#3P;H6Rw(_j7
zc@s)AWj~y`0XnoC+LVKX7->j*ip?yMa}fWD49St&#1||>Ll=zcqO4oq)_v|voqkVy
z%7o1H?2B_k1bY&kk|;xHn;)-6kQ@Qn*m=@Z>?!yy%5iB6GM@%75s_)6SD5iWFxy@C
zu0H53rsHDaOtVjO+xyz*x&L7uuGdYe;PNk3Ok~2vCqBU%$?cb>*C2DrSM!brT8S#h
zG^&1fCdPwe!9aWq0Nw-`_>H`yodsOlsc?sm#&}|m>C1{n%s}F&@%ZV#EcI!m_N?;H
zp5fzazs5{(#G9@N=(0iuq}~kv9{XUWUcLay!q#<Ok9{ymvA1r5m-u#G9RdgrX}!$2
z&m{&szk#WxFK7`8`7Rl7QEVXpHfJ2nr&Dg_Fj@?dn!k20!i8ttxHxy@3~hEL2vW*_
ze(hfGIU073+Ohjos<~t*yDM6~YrEn{mXI#SyH9|X^-8AZ9p<=&^AlQSquCy0;u>g2
z9n=VBFDmxI&VaZqWNU4!94t6l12Ci$B}eX#(m2Z;Vt<m&qt_FYCspj=s!=wE0@3sB
zaDhhlg^BPkrk{#1mLQ0;5?J}4vCThlb5FCBTg=_0^l0bmqw?>uhO=@5`RiC`wb>p%
z9zEB`M-~YKO7=7$8rVs6jB#|QNsgZ2&05qfRj9iMdGAVeGTcJ&fys<Csy|&AGT>w|
zX_3$bo5`$(!3wTOYPt5gaYCO_#r>aHA<v4~S=$WljKkwn9n`_ZU_@-EH!%8x0Xn2<
zB;@x3(iuDaBJvS-ZR8{j+>@gN2$cgx(*|!<CPossi?J%>z&H9tmW-9s0~D8ydFTea
zy?d)TOJQM$)o%C-kbdSJ9#JjEOJN8RyJKz7ePaa-E!j~}z^<ZyWgk!O_cA;)3kF^T
z?q{48SKlefE5`BtFokx-jE6pFW6{~`yw={Chp_NnJa+#~Vpg3S0MZ0|tEa~|s4EWL
z{{<arW1OZ^(|vbZEl<7$1qKH495K@TE-g@}>QGTUd_Afg{X*=vdb&N`qkn0Id2O%^
zOdH72m6+!t%J;j7{A;Y79PeC|xdAf+hU`?fsi1*B`o*b+;`T@RsN{cja~joUO)c(E
zbo<`a8MbnTGCdifx*~_}^S+wgBP({0UPw<{71gk3nPZ<1fH^(tCwr=&Il1LEP?#mV
z{C00C&ED!FhO(;Q#f%x389aH)QB;WITwjwlKy#Ot)$!;U=zlD2T*0@r4jLvHFL_>B
zNtPg)(1s^fIXijFCoib+%#PYf=zJgh6cC8m?fRPF7`+`;7Z^m>6>qwf(v##YZl^%J
z%JWbaFG#To5qHSQ%IZzL-;f7Y%9YX*#YsOm?I02R*{^yPfaLCs48?ial=2B``Ss@1
zCWMkH)B}34`oP#XG-5|Csp?|}g)L+WiBtjT1!`A@1+hF+E|)C~E&#m7lY4+|^LEwE
zUAq*V8~#xJ9aS;*+pRah?LdJFG?$T3DN1STo%4Go6uTrD9@2y^5nJuw3CSscE`wrN
zx90$b?taHkbD{{!$^K0vEFDs|%Qep$Zqs^|&G=C~{oX(<j$k`U2RiDai822Tb^3XW
zr?^93Ph}PDXufCsai97<PIg8|TehJZVi}1`CtXIGnPsp?p_uFQg$)$wWZULq7Y{%H
z;mAGy5R#L+DBqsFjabxk$eyk?4>aVWvbzN@r+kh3$>7LfQOAl*g!hRdZ8UfNQ>7z#
zU#zmCr*m}<No{x;O<QW{xgxpX4|+ss1o*#z;oIR@XsW@#E`pYRw6Z-*?tlvj)+!m5
zB7KXzq<#u-zA})v$g|kv;L<9`OS>~$3mXOL1@H32%vGl+%xIQ+JX8$@f|u9!jDU$>
zfcA&iZD$eC7qH@<TZrt|l?yPRa4lh@@N|Ys{~5r4jm9{@nBT8I60$%vv&;r<z9^@S
zzq|9yMp%laUts&Mgi%Y};Ts6QET7_s?D%f6OS3?%td7nj=Bhi6WkqZUR1lijC5tE~
z``{)ISa@2w@9vz{`dfo_GN!+OyFS@Y5Cd-3i(Nj<?wXH$v~-~i$u(V>c>wnaog~dt
zC9(uD59{~fmG>!|>u}}9!S|8~GtaY_xWm%C1!Va8?5JO8bz3BXw439j(5nyejRc0<
zA+9n^cT=U^J2M?$aqCkCY1v4Zs&MUzh<~1Nk%wP4Y0CG`L#|kAkc4A)USA&T?53Es
z-KRX-IyrSLhw<ykF1`ZpAJ)6|4j+KNw#8Eh*Xqz%t%i$wpAM(wsAE0NL$kVnK1Zgm
zVoiHS*Vg)5qw>AzLa(Pi2C?zV1J<T79;fldB0>2Xg%e@yX+hQNOus(KM8tBrq-sEY
zN~&?Xyt*bOG#j06?*#&%?!4yzzV)!DxFp+qK%X?h;~IDplJZ4T{%31pLX~OSTChKv
zX$0Q5;~t`9qgQD~uLTXsRESo$EUfOUR~5WkT0uqzi0-5>$Eg0+NTrLF3*9BMY~0CV
z$4N}_853h#CyOI8oh{n}TfgV_rXKa!>mr9XTMA&t?l@i7Y~RY#lkUeCdK`L5J(AcJ
z|3z!Go3$RmOr{dYQrM)!dqIHT;hrFc)ii5+k#qy~f>M~FPf>4xhp~xBp+;Z!Xtx!h
zdvECkV)dKmZdhSgd4!9l^ogAc0VF83DA16>$G7?O>I;9?g4#v-hb{NH74<ET580GK
zD3AOw5g+3tK6Xjo0WKy9(hkoeVz1XUy@pMT>Nctn$5z998{{k!R>Uy+o|mJuuqmOz
zbg*g2?#+sJjJfQN>#B_EJHUc<#9#8sQC^&|eEx=1%1~|Qcw;^PPHnu0Lb4s_ydZ_^
z{gLI;?VY^$mt5+{^{7juQ3*i~LN5{)Kgy11--lBxs=EVKNExRPja~zU5nWdc1`E)t
zm7xLIq79li9W1k-*cP1wE=oL!`&hU&`6LJfj<)hjn%4bQJ5cQBCfHB>DvA*=P_p*F
z6aYCyjPp>*i<Ud6B+LJUGJ@$xj%~aL)6Km0{9C*W5)}sy6ks`NRzeD71DmZu=ar)o
z4g5aBo`<{qPkB{KVpV&&VwWnkhrxLxMO2?@n2;?xhP=W#DGg#`vI1sA;4;B{{`PqM
z;97?HF};q%>-ETXGE{q`C}?>RP75;pTi0b4G1j#&!T3oW05R8q8L@oq5GTCet(Wv)
z&`Ji%^>7Ge{1wagC2G#TtKsa}9a|(JZubX@oNkO1zQe5zBLYbV7#LNsBD#CX{}U{W
zvu4vm$gHI)se3pqI07&+(wTil4z8T$`D1uA$Z%hEbY4|X6Y%bb;*-jA0n&f2!+%EI
z`BQeOlVudiYiZVmu61L_U|Q4gk}ac{NR1~Go3s_9Y%Sgpn^?Al_PM|;B;@A`&EgQl
z7k|P1@AVqZ7NFncVf35xSIKNVb+ViPE9R4zSnDvGQC-Z04yXPaux97UFk9>i5D<0Z
zu+WqwD-zgrO}@?*aAL198XQ%99CrZ%(1N?`R}oc3iJVg9XzOwFwLSdLU_XPf*&=It
z-PmcSg4kGgNp>f(fm1`+X4)EL&8^ED(#Z@m#fHy(g8w8w^Wl5Q!o+TH33%^3z*HxP
z2m4}5&nrN#Ss<(3<|_6BvtNDh!41}ng>kr7x~7CAebzK-w5#Z3$g0q{HkzAeB=wf#
zw9YB1cvg{$%<`cg#Pt4|ywbD*;`H5dJ`HBIUWa~NLSG6t%v8mYT><z41Ge<O@^>Qk
z>}K#-h@TBc?pus}{boXP$)F<n)0Wwc5D^rJ=`u?u%2`$D6rJF;6e-IF+!T~<Pybga
z#uf^oTk>fo)N6nWU;FEwe3Kd_gNIMVc~Y-nv+7v%$WPQV2ffI%5rrfA*;(EL{~^0`
zsLS`xuD)TC&I$4&+%)5+G(F&0xs`y~o&`Ign!=hs8~2ozxa3scpx#f_z)PF*cF*wY
z&~+RbETEx7fl>F!+et;XeS{s$&mOi%=dcL%gXy6z`<8Jko+6qd!CU!hkf)E0q=q0G
z`jP-bB>0+z>p0x9&9T@Hm>N{v6FQ?*&yqUw0Zmx5{KF*m+b`@;{n|i`eLNpA6LT?p
zCNLYr61LLbK?<!r_gpC|o|ibZJ@$K#hpn~V9t{v|5(6(Br9x3I>#g7u!B_4wK^fM$
zfjT``-F%O{4U`Rm^coI~?eT1}hUk?RXuuqn^%zk-O1n_e8Kf<jdL6laE6Fsy$MwK4
zuZMry18*rvLrGAA6{Kp7*(DHKwr?AO6<4pyBeMlH?F`9^sxP-6Jms+T)pY5mywPi&
zA?oTQS!qvKX*kcA2+vk+7CXQ1V~pGsol7lx?k|7o#GD#0tcB>YWqTNZkaRMi7DdN_
z@|dPe9d!|WaI%%MWAvo2D6v&FZ$7L>VmqT;XVEFz7_ISZ%o=St$(XeNDJE``dQ(cB
z?kt@X8DuG#Acc&lbv~`L75+>rBHCARw%Pn7`^04s3>eBZp>vI+^pZzWvc`&j4F5Sf
z>W;3c;BRNtq%@?(za-u+7C^)bxkDboGrFoCrfWCkA!$(tw~+gHR<ybU>V#tY3lqi8
zV0XFsa@+0(g%gLe|K~>P{3;d;)FguU=}{*<txAo{J8$1T0>=F1O~L}TWvlT}_)T$U
z>0!4iM?trk#eKLQ3&Pj>e1-O|;HhHICrvIpqj>MNE0piYw>=nY_*8&HAbB|Ce=eEk
zU7XvJ8D4O6b5*6l4!NJQS^e>Aws8NeY<LqrFQNE;BX_Xe<P8zJcn#Vld-k`(WQ*Xq
z%5=cLc8z#YSr4O7f62?|ZV?Lz+C^Wz<95*;sUWtr12N2qSY<y^L>)t<d|@$%1ewJs
zPK!~Bi*<nouEPOm20!1X2Io>3&Jw*+Az7~@5nBhcG;lOj$z<7eGo$SItY<sZM6r`Z
zmOk!#S^zyj!oOS8lcqXXzJO4CB}fA7_~zy%>&*l_cNn2%YsE|9!s{2721L9amU2;T
zcyr*~_u%w*W-Ge>E$Yl;L6P_1Zs)RjSXJp&W9|c_j{k9Gp+!OXDRY`1#5c(IGf(O@
zcfGXGId&>pO5iT#WqiTyX2o0NrA<L4Md*rxb6zZ(Y5p3Rog&P=Q5D4Wa7v$O$(969
zI>V7#q|loF(wULWM=_vPRpiXyo_RH$X8HG>Rf@=6!7i~p9g#$luNF|jrA*rL93X97
zoDURsm&2@?f-`_kGw!|()2dZY@K7>Q)sLdHhXXN8xe{SZ|Jb3bJLKg*cJ+<lP!<xs
zgT?whySnI3)#Tn|^0PCH>_{FiT0LAgc%@DG1GGrCiWa=EH8LON`k)2}2tkHKCn_1f
zA4ADub^prYxpm<>)p2G|ppVqeL2XK<*t3q*hm34oqC43s=`OV_|MIG#HH0T|x|Rj4
zWVJ|2k5MmEt9{vYyqPS}-~)1SB~t3EFS;Jr9Y~h4Iw>5NYhdXH28HZ(5q`nI7Xp8r
z7~91R9glp+=Ky>uH4tcw0JoE|74^0GuSnk{UiZ`r4Ii2B0z4&KmWdA=C8z?V@fTM7
zwCxqL6u1#XjiSO)`b+=E1ROmSq7hOSDCN7N561cV*5T*YuXb_^Q}`#*ZkPiHW8g_}
ztHt94RuZ1boUyNjpaX#X8<K7oyMT4R>Mb`T9t$*;bY-8YJwNvpjDg5^8`?NLEnhQ~
zHb}X9E$cHMa@2XH6vzPw)d7X=TR_zlt4Z=yTABfqn3O2(;}_M`f6GN_{9B5U(8G_d
z<=MjlF@S8&3q=TXrWkkQ|K#!5#7b>!gGRMT8hxM&M$=)2&WJG)?%nQ)4Tai1t}7(|
zH*n?-bM3Z-Ge2?k=SF%MkRA<}U9r}t!~#^=iey&S#K-aEkaG*-NCNpIZE9}RDsG;@
zB+)l$JCBIx>ZoEOzh(<8Ejxy(3g7{Of_4!p2IJ@t^`+&&hUKXl1Dy38QMn+dw@n#F
zkSsn9)*)PQ?C1=ecIIa^*EJO!bNBg2|A^-pd(<l`<#&}OH8Y`s-uu<x!#GF#b`24=
zheJ;!Yz>$)2|tMsl7V&X4n7Vn{{eG%?f4nlynT}ywuU_@J)2xE7HJZyWfs#(hp%gY
z%}*!{Fn4#K!$MmIB9}`Za`0Vyp<FV;5+gtgd7@{7-Zsa@rABG{bvHWejwpfn3?Cz7
zy=dgbi-;62QL&xf@+a-Yk$!&Jg*dpuY!Hy2iznWVn-vvct}Phd;^6&_#&xSjR9A<=
z^Y8>JucT@^C0z$qFt#IMLB?TAO_%xPA~^f_?1R!^7XuCYveLFJ6k#XxDZxr{(2F1B
zi{oBxGd!HHebxNU;QVX-%wM{ytD{qm7Q574oJ7h4?w`aV;~aB*Ep~=z&gSkWemXbY
zF!k%3O+=%<2t0J{yVK`+(K}X?$Lcsgz0kGEkI1J)xR}@5yFgT<WDzJn;!ZZW@I(Ul
zYXh6tLoZ?MVKh&mlJlL?ZNVF{(pL#6Mi=@`&+er_N}=m|OYlhjwDNCGj~wiLK4Jaq
z3XmtJ_4&UD_kpxIqu66D$bn*91QlRPpiwZamiTRRY)|9$xNYxRB1n;apw^TRJO-Sc
z;F&Xq^pqetj@l{c*~8<Y=)B}gYO80S3ujR&)!rZPR;bYjWD=c|b{+p%;84i`Z-_^U
zUbH?BAy_R?USFa$8=XB0DsW#;T=q&PVR5y!5TSN<?*vt5%s^UU1*;@KuvJg+D>BNn
zx?K+9-9q4(VW><onmU!V{Q@8=XO1-R2#`Np)CG&A^J%kOPSMwN$cF9_U`s*ibq%;A
zt@%9qUsRvV+HKlAehSKIEWNsF8t?moxDSi`-9~FXJtVv>W~JhTx+TF22|g?fv!^)7
zXXuwD`S%!Z1Z~a-d$~b;l}K!5u5XiJSQe)dZ%7cn?!Ig(CfTt*2s)ysb|K7mtb7;0
zNhLU76-J9avSBNOvy-Zwuo$5+@RPP-wBcZAtbgFkBW=+i_G?y$AbovBgv#Hz3xyfz
zs#Ki~5?Rol?V#cncK*igJtCy-dyA)FB<liOjwKb47wg`TJ3tN?mJD2XT(A}+lSy;k
z>=XbmZ9Oxtmd!Lf=nXMw6eavm)|hr}2(eq&oS*@A%ew;I$Q~Jr1$lt6-@VYTig#V$
zDw7g)BE26Fu1Ljb+|_b9N14CnBCpZ)IhLNU*oBUC^Nde*etW&3L?1aS`!6hMVCtsM
zg;fj5Si=}Fz<_pPUh>m|Vm#5>?}0>Ruf;EBhzwIlN%Jjb@pXuueyTcCcK4j(v~K=x
zW~dF|#N5m6WJXESLb%_(d_xn)OAyu@g<@5L3RNEbK{JfB&xldOt>k}VYMUL7z`0%N
z5oW$DtJE?zPf^wRyJu>%5kX>^?tqE0Ysc%fxYozQ3`smYE}33O(~{7vl?OkqaSt$s
z?7f5_3WaDH)ABO&&6{e4vQ=8oib}Q8($*z4iR}Y~nE%geriv`f$m2}74KnV=E;>oy
zg!MVdn7W8(&nJ{*Vt;%9!&6C<iqeN~0H!1Gu9SN=T(B$B6M;<N0!iw+HeBn1{WRS*
zk68R@1p_ggWZV3N!1?6uz#%JB3V>{<!)_|Hj+jlC{dVvOh|IT(MS7u)3Q1ZbPWv|^
z4m6XMAQ?S^vh>gl{uU!rv-d$8jnaE_Z6kQ7XSv_-cRn`ePGBlo8|OKvUg+l9G&J-f
z>c$xiSnd{w?3>M%8pzOQd>gsl!o<xigTwMd0SElWi8WaJvb%he(kd1iUA?!@j+9h_
zBq5HNsJ_+3skcgTH9|6-!k)wUeIX17zoQ0bfZ&3*M0X<4DN-EbfX6;hmX`c1mm*G6
zxnz0<^FuU9mFiHuq(ECyra@)<Rp~FBoB*1(ud>Wo>F#y+{0x(|p%lbPY*54yN$2Ly
zl~CotUTk<-M8NR>X2IB2N_NfLz|i95n`PV(-HFKZhk<&eQqvfM?7tbGTF{*+nGGkA
z6{Uo+3I3Rl*cT&WhDDAWNMmbQdi?+Vid>DYuYG&nf_M8sxmO}8cc=JC!Ieh{#rhDS
zl?#c(pLZ|@ifBh{>xnH-tN3y+WSkbz=_u${>DG+K<$^k5U;G4J2Z@}Aqc&ec*Id}*
z&{F|OuUc*`Ucu>fJ}^c#`ELg{v{nQUfk}W(r592Imc7|TTZ6mtg(s0Wet)`v$eKCi
zTd-wJKI$Ubz4^**c|Gs@yJy_v;C<_MNq#tLpw!2%!cO$*4h(x4|HN)?x`s(i&lW@4
zQJJ^G4PoP|;SmHC=$=#*qtaF-DQ>#F18l`-(v&7-6JHPZX9T?d^!~M6Kt-1lEIl$r
zw%~#Fu^s-kA$hkD8N?A+mk*wDOp(9l*&U!vXRsQ!qk31poa}w4rJKPSs0KNAi#p_h
zt4)^+Wg3E}`6+w{%SBR?I=E(sbQS3i9w^KMc_N&smVySIiJ8%)hy^LSksFgL{`;*g
zdLyBu%HMu?47PhX`X=is<@wj_06AC)O)P_$KdZxorm;?qsc0vnH&7zAccP;WN#gM;
zMo<9z+OyuM)s(_F_LX~}SLq_>H_Q`&yxN0zoO)M(tgGPs;N6y`xA>=NrB1@<nZY{(
ziV`(F4QygZop*YVQ%2)O2KTYgHG)HH_;<>0L80_eK9$W<oZ+U#9(&fYM<=KDa^q8d
zUwXlp><pj+2hXt9RW(vf+I-eB>0A&DV9bS~k-D7<<07i4rWwnPDir0Keeof7$r~Wl
zzAJ`Jzx}tFxOn*>VILdwQ~KZ}^tg}Ak_@lpVa_ms(aYv^7^=a`p?;;13HS%|zOu<L
z9ZGm#a12eTA~uT?Bcg)GFLfJjxq-e7+_e;U&gt)<ye{Ad*1U@<pbngZnn$L^Ivl0Z
zG;stN)l#s7sx+6Zfy9Z4CK)A0VP%cW-}l<x0NDQyyXa+?nuK|42Q-})B#niG5e>Pt
zaTVEQpzcLDR90Nb<=F~+7>>Qg@6ZYBIlI1O@#|Z;xs^uZ#o)H#LuXveLVnoN&dGU$
zkWt`j>IpNIvQyLUyD{I3Nh5R=)2_71$32U#9rr;m)iX<n`DM8_lN1KO6rQ;y3@QLH
ze!Mc-b5MKae|n^&W(iZ~a?wOk(#{#~Ba!2dv)!V>_O|)&lNlB+cew<+=a@)r{+ST#
z*%R5aMs%>3*eoPx>Z4Rcrhu|9+uzjI2N&0yk{Bi>WIYZ(ra}t-<l9gh%ab?B<ZrGT
z;lB8X4OA<Rc?h=i^?3waFjrh*<;Tk@FDrES4Sl0Bhrd{iC^fs1PUM_jJw~rzxy+j7
z2sem0sF<p-bwhjZ=)`0<w4wZq)jdT#)4&|z>R9FYDcLrEzB5WDGmYpIU33vZ7qWT3
z0(m6N@eG8yO40pV=**BEPZ^!{Xh!NtxNeZsbzx>u+<vW-@CYj-hK90-njGJQkMBhR
z(}*dx`hgeuie><*DFx7}xeOA!f83KE17g7N(+f^sn-@6ZF{^srb!411F3$TYP+8+g
z!X&O!T;qr9T+4ZE(&SXRFh(b2aTD}&nS1+nyD_|~u99o+y5WhlQQ+qfu0cN65yK}C
zi9Hy~=fsTI|KAM|-TYYk;@S93mPgvrbjlcth3v>{&>v0K7grVV%LuAnMQYNm?2QzS
zAaW%{D(2{)>rr4S^0N_;?jgS$&oVRq&7Wl+qqt98z><wf-0hFtxE$LilqC{fo!yy+
zJ`QzOR|43JkhMHNLymhFlCB?z^do^Qhb$f}yL$|J-0I7SYCrYFl14z;D~0)a$NRU8
z`?^^#9DK%<tF+$-C{A$ganrD9ir5!)3R+j!ZcbJ}D9YQ`EP=yYHGF)sf7LZ4;SsGN
zunq$!dYe34Eh=@EE~oCpTlfkz3%5h~^vG8xac~+96(p90+<;TeF$CTPhIrmCt1Scr
z@K^_6dge8QZ)x!+8m^mg)=gwJ;!@m-$Ot?Th&}k!Lsrb~V8K?VIlZx|Pp~+FH9Lu)
zwSU9b6xcbzPK6UPFK`SI=SP_L$lJ^pwl9LB=a$=*;A5GS2hWdwr@p4!0OEwH!ScKe
z80{DX809=7mU^6Wou_TBMW*fp{a8yOxDak9?&yT5$HQ`lt?D@=nSapnH;u(gk8Zx1
zJ>Q<1kNi1cy-?7BWOsXkYg0T~x=@A#jy)mhB*L2g8@K>RuT=N$5M-<~8>`!Kcn{Zz
zN)&mnrxr{&f|^a+!(Ij2)En~^-59YjHI~w8-ZdwV+gvJ-JHl#I1-u}8gXV)0Vy)Q(
zei{)a0=Dv2#oIq_FIY`%N=F~p2f>S|ficC1(Kvos&kBkYuAs=Jiy%7rD0|!K_|j$7
zGI6!C^typXoIsM(vpWhYD?}X#sHFYU;n--Aa~>iv)5h8|x%eD<fm_HKUAHsMSQv6k
zIX||zR{AY|pJV4nmS3XN_RxJymAlV^ZGfKpLBmZWhkh&1OL`=Ww2AC0%5FQDfK6t&
z0QrFiDHmB}cv)<vs01-7kdXNDC9=P?`K~DCCLk8$peiT=yjx}8uD9p-?-LdNYW4|5
ze+>N`1}~rg;b*o3K$CSDUgFz>PR9e?{%N8tYZ{yMfrmC|(arY%#fy27#pyc#c0xTR
zesUl80bs3x_|~v_A*%FSE>ilivGRTz9zuX;3U*w-wn>{A{d3tT73C@oEy3*1IF^X>
z|BndcNxTF`v~XwTwAMm??}q7|cqz-D4O_dMtw0L31m+Kgkf}j&MXTKqF4lfv5GWSQ
z4Ys2Yto?4wvp2Vi*%<AE@z!E+a2VzPPmB8Lo;O7>C>1kNfF_X88JKdvH~eRcftTxz
zcQHp3cVUTH5-@;OM!qR7+^+1Q=!P<jCX>3B_M)%2)1X*W+9tTSqL#Ki8_a1vc@*Cz
zonb}(PfZ|M#LgM#T(zwFaWwl-K|&7Xh-)1z8$OIcwadv@V@){**P|_*TjLvkXdUyM
zydr_Yb6|_P-VdAYjgtdAoC5>xH+Thb8Cx5g?zpVbcVH(WHusDS6G?KX1}u`gTgUq3
z$eNN7QqFnSWa?;X6_Vxisy^J#Jg1UT*wh0aK0Nu30CR>mOBVSp0g4a?{uaEyO!X|z
zXtxHIH55+9l_NJYLIbYI6D5>0Q-iBB3o-1XZ`12ay>wsezX-PzwN=A<m;4S`7#;f$
zqr|1x9z02V21fi2*Fmkl*m$^v(g53#bz$o>XRcn6TVizvYd9WEx*|(?wO#h1d715c
z6#CNqr*Pzx7DNyO99z25VUIT)8i30!So@<_7+m?G;r5V}gLOfc0%Su!PgPEGt+p}T
zF<YVDxwLg=6;~-!H^$1dqq6<Qr~+NeYC~3JUpA!Zr_>7?A&Liqn8YbiG6QJ`Tbw3K
zq^s}~<YHEb6~{H2lLR#F{?9m5_NLlC8b<iTaZ65$s9hVih#@lVqr^E-v2FYM3#yq-
z)xI2J$6eWCR&)g5MsH~PM4BBkT{(tbREkx~xE2R!qw)FoDdy^_PG*<?xR*z_9Arg~
zeGS#G3lxm+3mS5e0$$u_BL|a`L-<N_Dr~VtkkP`KxG5fjUD;w#^Qhnm79T$GD8|h(
z+5is9c1sdKM^8w!7Go@Y`MFg%Ar=+wsd$Qfx!~qma3WlQJ9P-y`&@jEcA{PFX~AU}
zisM;)w6G5ajyOQ_4+El*^pxBasU$1%@ZX&07@xkLh!n0!x9;*G<~X^0t6jWM&X8mu
ziP8uB6acgoaQg1J4g_chx~^`YW1Ww#%l)dmm*y1R6B8i`zao^k7>Wz=VBpl%w31dB
zX$V<hR0RdScew5Zd~6pg6B$}(rH+W3QVLzV6)O>EeR(#J(a*zx24;$D9u|khkFwNI
zOriU6ulT+CuS=qrox$4qw`>NkA1hm2aa*J_mA&alo-uvBYL;4V(6hd_A`H!*m0(O>
z_R9xP#64aQIe7M2A}LNoQ$`OctS=RJ8A2Kp0BCVJL<x+k^UMkF!S%{s&VJSVoIEk=
z7;;i1P2?BNHPQps+(r;LPC9vKatVWxT3?Dcug4;|v!Tm3(F%ywHa6G8yT-Y~%2ME0
zZLltR?j4JcZUwIVC?_t`w`T*$pccd#Dl>ZiB-dEtr8`l$5(;(s#%_x*EKx);!=GKN
zC`t>BJ0zVhZ)3k1<b?+9IJb@Bp5)a%Y$7;#)Xp$+xqj+i$}IyCY~VDC6Dz-F!z|yA
zbNgUURDV-M$~P%4lz5%OVgR2T*gXvz`2V?!RiSxlfpPHlU22VF(kl&_-NQ^)2_ySo
zBK$5S5-wYBGP|QJ#Wb)0S?2ac&1iPF>$B6%s*v7F{m5wX$`{};A_l;3xaN<WH9yPk
zeSK0wGcHJcRi6*RF+w%xQeT{nZ7o?n7-=6SHx`Vvtr^35@oc3%7!U3A?y$W%eEL8J
z2ro8pxn;Ecs?%==KK>elx|+#r2%#Ujj-k$&Gs=7rws?jP(Z>2wZaxqNJxRNr=nNRe
zhIuJHCWpIFtk&eNt2OTU-H7TDlZux)sbC}X3s@zef2$1*sna<>3tR&JgUKCk<hsBc
z^fV6T_=AtMBK!&59@z1|8%R5Wf9SVqcCQzyly(f(L;s++NjO^RkcEf?G!e}t_3C}V
zwo+}4D$%>hFJfqkk*R4}D=Z=!lMVGA!>)8ZQPxkBmCjgp*Rb_BU_xA>n4{O}Y_}5#
zy^dr<wf3F4y{RH=oL;@Uv=WW>8hCg_0}Xk>f{&OA!7!9jYGWDxbXFiL?OK!0Bh<Tz
z5H(p8INL5V4i2;ytYu$m^ZGntrpU#$6;&5BR%<Z7r1{ISub5<Ei5e6e-bKV4Z%60e
z@oQDT7remHss}dne8mILLy29tEUB#bu}S%dPDb>YUFt<%U~+6Fu}*l`$%5fMaHYV~
zcP&6ZvugHsBpzm)zzZq>2HCib?`oMC-w`!cz@+OMec&qUN%utoLd`Tbl4bReYn=M_
zaV(n6cHCFta8dG-Gju}^)9G9KJ0cut+`Ny={L{%0WoIUMtI14N{D_uOk=&AOssh)X
z(zyGxdf9jI0hkZ{3pao5pEM)C(#KP;aL)q;Z|UTca4tDK1b)_E@B6B4+VjIhs+t`4
zl-DGaUOTrQC2B358I>ZLhQM79X;4+0-Y31|1c)+gaRfm60FCy@8dgd5&iZ#Ku#QEn
zM1JIK*2%!SMQfh3BLU?|%Lat8`cA6H(C)z$&}Yo8brAla{?9)QT4exQ)BiTy4oTJd
zGz9S1eB6v^Oc1ZvYNrnnGM0v{f{HYuLX_aotFnAZ!G*{IT)$Q1cOBbobDxtj<bWNq
zrX7ex$Qd2W*0%3=XR16xJVfWpJuP&qxjc{W4`KqcI&`)`_$Y<VQ6-CyRwK6@pSS~J
z$&DmkGA-2#Bl1Z6>Q>u-IyvUbXA-rqGX4`Qo$@ce(7c#%Dp0*YTbNi*vM5iioi$7i
zav}ma+Uoq34-yRV_4%k_HEzw4B2B10dgsFabPApA*lKG*{#NpfB6D%N&7*$01CCo?
zIUW+h8dRPo^;AxHB`UWBjWFfPQ_)P&AtE~Tj@85?Mv}HuGOCpE({MqE@Dwab+zS}g
zjs%ieUwTj&E*1?KsBsA=Z0)LGLKJ-m(T|H@SUQo{r{))pGRqtstpx`ExO&8fzkbCu
z8}3>xIitk{quWd=(~<vjXj)%)cVlMOxCwM$Y}&EZSn8ns-J&GV^1=+DUW0GtGIj~D
zA16yx5xJ9B40kSV5Y`%`(!Cu5d}3?rT7g$DbLGf#Qg<6KuCZn%jRzpidx9k`j0=+$
zPB>BHZGsycvEIZsL-+G{((JZ!QIQ)mUVc&^b5BjAyG0b~SOVE;*BtE7i^KWRe96E)
zxT?7WiOf)WAGOeD5lS(L$@FPmM;y#WZ45R;t~TMx)GvfDMM6y>o|z6BM~lHLI+fWP
zlUZ%J;XFzfXfk&H>>otNniFGv6{XszkwJPC6d0K~X1xDYg|dgQT)t6SLk_7h0j`RL
zg_MAEqoR50)SEH|?Q1fH#>P?>oMz6sf{+$Mg%6anB!P#vTy3&G4ugg$J;Gl_T;N^Z
z3f7d+?%jQbNax6_xt;~lKoMA?DHxeUF&AHnv<dwQZ;<Zu`7nTplqn=FEB150O_K`7
z4gJ@kdZUI5t00;rXo718(;FWXZ(qf^&sl#C%>R4C(vs}BR+1Z5exKX-Hz@Ofqe#ef
zQ>saO`+U4YBvP#W{NgTg7+!<yce;k}kg~V9_6x)H&y4y~@IK+L@-->HjBgBC>FcJQ
zSpyi8o8f));(24S&4!e^Z!9}}qQh??h+Y4cYW7}~%Y(3=1n@FO9W#3*vUybBY)=gQ
z<rin0M&N4!nz$0I#{An0>nL#r1l<bzuJ2MN8dp(+ut&5DO6#*|*7LNR92GPYuAx-&
zJi#5u$zz0BDn-l{c(!E;ebNYgMK0#L$ioA`43$+88_YvVh6`x{I>xVQo+rd?%iAd%
zzLCYHU0(jD*}Q)w>TIXteokgLhPxCC6$+bz3L_`ODqFeJ6Z2IB*h%M5a{&=%gYGuE
z^?#B(<MxXmIvL&~u!HUBbjN^q{$t%r<1hT8eBSO=v5oZQ?P#I37I)6q68NqL>xn5+
zmSKkVVL86GKg*6s)&{wJbR<+phlz^HjfI$;A+}~n)=<;|qvqNSv-mR&@k-~`T2vyo
z<s!Fv<goZH-XY(Ta4~^=biJYX9;l{dM-EKBSd+?S_xxZ*VsS5YLd#=6vjrl+M>5JV
zn9(p5W%yXd*XFukCxMu2&|^8bHP%?m*lfP|RhKmAo%r-V$#6=(A3bE?szbNP0SDy9
z5qBt2W!{MU0;K?NRoLi-GxSLZ3cEfh=iaSoiAjwk`xbnN4D7|O<{DY|U)Iak#L^xC
zryYXy@xuLSw6k%K)TA-p4Qx+@FvJeGz%P;RR-yD6^VGD4I4CT?R=lI?&(XXtRsT<#
zwN)Fk{i`t70A<^q2vz=$I<GPkXvT}K=GzHpDfpBqzcpeb-JN9q)rKZjwov&}ft$go
zZ={?;{jS6zHp|?R*<Fw@>7Xxrz@H+LHoAxW)4#c(s}0E2kt_e-VI3j%*73N-sZ>e?
zQUIYJc?~Fo8<|+^BU8dzptGNz5V=@+yC|)kLd_eztF+_^+fi~ckEeAOV5AR5?vd^(
z*gmO8fFa}{P)73jF0^x9*JHzt^rsxSYWEl-9*b+nMD)^1<jKMQy9gUV`Og9ZK{z*>
zsk~soaq1R7>y1m+OoeFUG!Afkt>UcbyN2%YiOqEhsSRA~z@_TgWF=i6ej1;c$BhG#
zEYma+9AY>Q7)Tc9<mRj6l4}TrKkd*s&u+0dtqG9pN+8;A=ZU+J^bDp@U{pTi24?^3
zQZ-?JewEo!m)uo5ESXPqrjBjEqO|RK*9;tn!x88xNN>tDyq9xcFx8}VHMhDto%I!e
z@&Tw9(oq=l#rr{a3LY-S@pvYeOGI*9$!n)p|Lfh}<04Awj5aygXFL#=w-ZdE(;Wu5
zG}!c5rciF5G2a3o?@90~pEkp*`wQIP5eK_rK_zj2abva>23!wM1IqV`-^7t=aZKMe
zOZM7hf{NHiZ0yI6q+J$Yd~!IG?+g_5Cl~!UrG7i!Y$weKR~3REL3cx14L!+KTF|O>
zX*uhm`w5;sPBobRuoG%awQgc)&L67Aj;Z(i36KZ*wKX(NuVOyD9iWP4u6dC{03i@2
zme5%RT(Qt$JKEKbU<w7OdHRmX^W0VGGnqqi&3mDD*Lm&z7}aH@)t=<umdSbhxX!(7
z^d;YU{E>2FXmuU78zns+yG{gq-Mf_Y=FZx?KOzWmbl_S6_o%ms-gwBbBmeZ2TJC+?
zp-V?u_D`CKPAw*6jw$XM!vj?eRDgMF*VN!5gmd0_7m#D>8kn7(+Vg&<r7(LnR>UOg
zbl~}}uy^?^l)%x<kf_Q$G7+FWT}j;H404bqTt!eg`vESLv4gBjN-ibEHt^Fb+ypPe
zM`A6#;6mUE>AF1&@dOSWa{)2PVq}2-VCHNJkW;if&ISoH0@nkCEt))^4{O^hu9<e`
z=gQYHc^*GBT@F2lbL!#p)H5@bZx%ievTng1s+AV~S4Ce~7Phz!-uRPb7mEe|LK;Nt
zWdt0QQf}|dcK|`pHG1|5;<fullx0E{RVOHo-NI?pQp*0swY&IdDywcPTkY`tVgJic
zm3P6~@9I5Qg{t$9mp+BrH%_iuVoEiRm!zkla+^)Og?{8iX`Ip(#nGeX-}(ByCCT^Z
zg9xPp!1d3d;jVe-MHpL%5X$LL>u&128J?{w%9fAfK$a5a{t;HEb|}p~7>XG1fbj2u
z_1^t$Ep(&!km4cdS_4thBqhfE+%62LvQGX{9KeUF@RCf!;v-|~-{s@RQuk^OTfn#W
z`j_}g%<{hCj(TJh4jXDY;Hp@`p@KmGf66e!>KN4tnddr`DB~^uUP3;Fu0McBLE=xG
z<J%&$^%ZwVdx!B-@#g<Nq3t8Fr31SNr`pv9(x&JcY6%sVRfEo<M@8Fp4p(bk#vI~b
z!6+mKN_NI!g_Xy$56BA0_uRTRVdF@tb;UV7&ybn`sVxP&R%K08e)?s)mJhdQ+0OGQ
z-O~-Ig^cCA;l<m1VfoW6y3+yHhYz)`P_4w3l?!4~gk>gSr&vKB!v*8$@(K4s<q7iW
zk53QD-AmAhrVU9g|3)9e#-nPwo3aGoIjRa_WPCcXN>!i+ADpbE@Z!&7)daqh1%2Q&
z(70KDH_@#O+epp5vPaQ?dnjgYz(cwOe?C}w=Crv_skfX-9sJhOr#o89K&W}^b!F7!
z!l%t~)$IL&n$Ee1r`TG)+n}+1InDuw=b+_3_-1_`I83-S<S8n23g2Nyo=h)va~R|J
zAm;!mjwuNcx2IYp_0245_R6R?p{PGQFyCx?ekTn*oiR*XV#!6J*etDYmDYK$zQsK5
zAfB$x)5SSZb;V#W#L*_@PT$lYqNjW*ad&_tu-LK4u_oi-&iH!dKZS;(zjd%0${!0x
zecfe`?||+nzy0N`cxOieU~7~+{EHTqnjaWh6!_<0j(=ZCtmzCmii}f-0~n2_RvVto
zNl$FP>uLSWKQ~hzCF%2cI-$9I;I!KJ42?=Q;zM0YS_-IR2PR%PN^N*XlxLX(EU&f#
zwBcT160A^BCH2%X8C&PiApO_3o+X8^{p^=bR3Uw*)#i*DsF)JC<a&Z;y%Md#f^8@l
zAay5RLOc=`dr?*Y$y-$9{!EFHH)h3-$)+42u8I+EO%2zLKM`l(jft*0Q=m+VP;s$2
zexX`bRXxyy&{n`sQ4yOc{y7@M?1`@kmEQ4+8QQ=E9VYf>d7PYxDD7#wR2n;>s8en@
zY4HFokqk#7tJz6cq2VL3;03gNQ(|SFa8vB>HG2J41>k}JPGk_0IO7vNo9AH*#~u7?
zwQh)~S$AdkMIEK8*@mp!hiU!!7Ln{8)1PdHpi|m+AM)D%AO^b@c)5=_`W@TBym~qt
zu10i}F5V(M$Zhwvo0*T{IsL-w_;h_V&+Hs=yXW4CB3Tw-F3Gx0&4jnPB{D5RNA`#!
zG1Sa|4@8O7S8R|Fb*WUD6ijYsBi;$t^S0K~(t@WJJ&>q<PMrSXJ|QGNGK<u3&E^%1
zQ3LptQp)HAGF6*=2h}>uj?I*rPoV~6njP^B7sGN6v)HY@*3X)z==IWgH)(TW=}^fy
z#Rox~W2ESN-jbh$*m#O()ylRj3-6$;rDJtjE6OWry}|zt<^hbhWMJ?A)QGI10kKp%
zGSt^Rr=9;6J-TxnWk-HsYs1DvTF)dTW~o*Tf84csAb@LIv2UmO0Etb5*r|xVeDqt)
z@ETB6o{2lJzX!1#Qd3MDdVkG^C*aj*Ou)Ecf^hO%5Y6Cb{;uq2wBgLM>YbP{6RUQh
zY$94);lXmZFE&_;_GTpXOn!rW(7r=*`x9}6;y^tcJsWQqsI3OUgpPr-I`S;XQd+{;
z0KN!EM9b0VN*ds#U^3OZ4-_?BPJR&$tX9iq8g^tNB?+_VZaZP!+%;RIjtE}$*0v!1
zv(`nzjLSVS{@oZXlbV^kLc$Z(><)GR26vP(b!Yb=!q4%357Spg)|bI?^@}6JW?^DV
z6B1u5XpuWiQ#|Kj+6`pl6h?@8AW4E3EW=z#mU5wAkmGJ*u2g@4QAFl1+YL@~MAiRO
zB>JS*VE!dn6~zMMBJ1vYC<YnnGC4Jxot-h9C?(>4xOJAVqndy$Onvw>?3B1=x_~pA
zUm1?E%kA(3<+mh5*f2!+h(oo{7X@^EywCOiW)mRSW4mKTf*(+`i~vwWM0lCt^u7<d
zC?a`y2X^z3nA&@@eZI`eEiII>BQ+wyao#783k4g!Q27)zu;D<`RR|Y26oBw)c;^Uo
zi<~|#o#Bh@2GVkmjbLVLDO*(Kwe${sdQ_kM-!Aa4<AUqH%e=*89_DPWVA)z3tJHZu
zw^gz+Io)RtYYYn0fXbDZ@>!wV+*1pA=5T;8<twiC7zu>PpqNv>8lWG!=1T0xIez~m
z5DXKt2X>du@zPc?@J;m;F%73+ITxprahH)?PFxo-VzM2AFXw)L=pyccJ|%4uEB!8=
za6T7ycZ<GVa3wAJ<6ELjRo6Bbx!)pe2>(V&)1*btk{bPBx&n;Tf~+Qs3vL&-ojmYk
z>)1W6b|UAGUN^BCKJWPeZ^;k}egAXTcrV(%{lnRY+hJzTBNokV#R*E~P-{Y<W%)NL
z`7D-Mitppv)xk``oIxv5L{qbXTi$h_xEr7LKBuq!4dCc*lv2-w-V^?nimb1B+#=WT
zh&wY(t#EvZVebHknyqIgR_mrQf)W^;@v#Fcn8{43*cPfV@P8KAuo-(P<uAo+oDa3G
z#zUZdn}!g^-sZkN?V#Zb=thI>ymh9bXmNZ8vM75#w_$|mr91J2;<j%NSeL-fZrxTI
z^mCXaqyz15l|eSY@Lfb%&_K=UhFUi~LjqNk;nN9Y5i?_{LBq&LLiEff&xjHt**kNE
zb#Oo65Eg*!a5!51=0~p6`eRN}OL>5vWMTo*%!%5*JM(RJ=_s#0qwH7)8JbHm!a`LH
zAkRHm^9jIiss)R;Ra{04F`uIKEI_U$is_w_vQ#uJ=sU71z?EfsRZxDyEL?!*_7_}H
zl3;8@#eQ83KmI*R-&mzjC?Kx9>XGoA2In2^5guI7WC^$1COtiOa~08*$rjSmNHqm5
z8?BISB5o!NB$Vci7J%w50VcNL5`-GmYZpKglZwI$x;te3s@<zwOqALm`H>^~-56@Y
z7s~jyay<?GA>rnOu&QtM521noV4dr8;vfM3$po&g+Utp5j?nlr%Zb}AHR%E!x)>%i
zXo;0!(4oGY-Rmp7ZCUWQs1S}-*pzvx(2E1|>+bvvJyk=g264ombbRdds|L{vFe%1-
zOJ*Nl?eqTrokXh`e#uhbK={TK_PJuxl$Udrr?YJbUH-GFpShFP@>Xt73do-7O+hyu
zyR?woQP|3sp9hpj6*hLIIi*%EYT5jY+K4hJygk03OxjgOc-NkG3N8aQb(q7Azj)?+
z`B@vKYYk67#$lI+O>&`Q4{WU?=)i83c_WTfAIMC3tX)^{aUV{v-1uEju!&HUAT9gx
zyR`nig+8zJEppyvxR)99b<_n|ad7-%o}lD08%0>1zQyAr0tm7UWB#zMRVqh5dF$~4
zKz&uaNn@8V`gfL{A5&X%T05}xyK930pH})UJudZE_RpobkC@9~{3N6%DeC<*3rM1Y
z<R<Wu<b=P-#ku3myZGNM;Lh|%8>waY#0@pBokc7JSv}jzz1J_OXU%Yo^Brrf?uv1u
zzrL}Nl)mG$KWkOm8Y`<XNgy%ydv@fQQo~yYK>OQ!c;Q%1*FYdtD^pucE8mOQrvWa7
zt7Ncnp&yP1@?J~oF-D-eei9WRuzGN_F_minDqUv72TD=-q!&e;x~Ej|)S&&Z){wfl
zf!`n1B2vSu;(tR`P?BUU2h002SE+u=7ruLY-^3zv9Yc^IEgY#aak;KpqOyJ#%30!1
zT^>2anr8)MWIM4I&nnj)zi=zb9Fy>G9)EX!ZYkyG;B9Y{?2{-B`faGaiYtGbIM#<3
z5*l5+rXhKId>WJv-;MJm;uog1VJe$<Td-6j?^5eTXL`f1)u;(9L+im#R7p-?z);52
z>!W6mDJ!%Sbm0f2*3&U?4eMCf>?05USN|>^XbptLf1V4tSGFmAl}ZjQ$ubaGY>f?o
zMyeA9DNGG`2vip;a}-bP+R>S-`W{tEwsgZ6;_b50bJ?WARV6k+2Cp3Qwsd(6TX^3Y
zIViF2JA|wt@W?^R&Wq29K~_Fev@V0-X9s6Pmj|MlJg8-yt1!wE!NOdrbdy7~jgF|C
zk1g6BhmvLE%2-ad4J}IjmKf~PAuyPM11GVxekxWWjTk3$bm<*KzF{P2lTikx@GhNC
zX$L*}WPO7Oj&IE1C4hBMt4nzE*)3XF4ydND4skfuK`J%RzfScN3WDz7JACC7zc3h5
z5R~*dQH|5?MpY3#=E)5PvfO012hcgzU)if0;St2ip;pWtKi3H{0+iAo;D}yr6={wp
z@l8Z(w#1x~u%v=~RBeyPsd&Ej1Zxw7w%qJiq9QsrvghZ(K6RD~!l*b8kryYvz#<x^
zvvafCrIxE287-qhIpLZ2d+V)RQPh{HLB6*3mX0e+Z=nQ-0h)Mf=Y8D}%!96%$y!w%
z?X*i+-^HS{Dy#VfznH9UD#lXAD{k<UVt)XmsoQLN8=``<O=mD?^TCi%jILt2PX@Sj
zbD`T*O7OE9z>9GnDrzHfobfc1ZGl;ersi7WvdR(M>uMJ}-mM{Xb>~D_Kiot-73aiP
zXKb=W1(r1!FAaW<io38KC@~3MP8av!vI^Ua=H%FZujIt#<~)=6c~Xu93CK!IsDS~^
z7|@;va-eCN&9ixUZ4(apY1@85>Pe6MDoeyYoP(I9MnHs@x(*=Pzd1rbNjM>xY0wGy
z{=px~Sb>?4OQRYeoH62_Zv;=-Z?s9r2OSNM7kdC({s+EkH_5svoGbD8VLZCvBPVdc
z%CDiUIUYB_;e?aqKwU471G1<|ZA3w-9=N`+G8_oHW_meUu)}B=HgmF}W5XE?qyI-W
z<dWin4iO<0EEA6%ewmJE-7fo3<Yo<q#zooMawCD(!`glcSzAjY0MX$*;@1&38bm`j
zUiC3ngk0NltRxt)_TJxe<soZ4c6gTHLdI4fUP9|_$i!3bPXi^%D0~7+iEkWCYS=}a
z-R>UjeK2D+8MJpJ%w_~et|NBRZFwo_SCL71e+PP88_8_^^!1vhRagoDD-JZDh5fs1
zujJgy0C(r(L^1dp4Z_>}O)7`T=?{=JsjvWv{!VvF9G>`QEZFg9O1Kx+4KO=J?rwf+
zv*wDHm#+4wK*#LZ$*91S^sOj`Ps1kdh7GqP81IYoj~LWU7qdq)5DNPFzLE3|zaRE$
zM67dks(S4)x|GB&cD9p(Zl`!Id(MY1|K!^A#h%`3LrvSBl7Oy`<b+Kz*&bPNY6TPH
zr=`KZZVQ-3Ei3&-XgF2BvMhu7$vo_IOc4wZOVTeH+fxqj(t{QY<)M@#!{15d*>5ez
zY`c1I_tji&-V!D}z5h=~n}v#9jKoQ==s_Y$l#m$p0WwuEcZC`CL&{=Ks69lcKGdQ{
z9ds%oFI4b)4|)(k2T+tgjKsMD@Q$XW3t@grahEIxxwk~`IU&#kvB>lpS>g+qp}CjB
zL-K7A)e26)_KLRF4)>uG;z^p(Rm6S$XbdxyV4(NjO)tJDGU7|?n!r!#ciankN>5i(
z&8805Xi#aeQJ$&&tW9Xu#4kh-%Mx3HKFF$|!S7O`*DK}Ka{AS5r)Ub?@eTROjUr6*
zPJdq|#WubTgmXhTtb+>X@2OjvQ#Onolu5z4esHsjUr<!_m`A;0L9_pemM;*=2$)+n
z77h4Z{Pq8mHNG7FhU)aZdXm^eVGFUhoL+-T_$5gDoHZ1HCFtceJeSLdY9_Tg32kt`
z8ypo1pKlK=>)Bp3sHR+I<_a<#wbX5ejZTd%;MdG#+!C;f2UC@qBR59cIRhG9mUn5w
zfg={CFPW4|#AnY$`Tsb&wu<ys)cV}Ntohe(q#B1>)OoG&!y@o;6*W%tlz+$B)dBzW
zfX%~|_E68Buf06BHzw-D@cW{dXnV8=>q9TWft*r^rDT1`tFj_EO5GvqrdbzrK9TY?
z@dHr(l75yF^$wtwwr7L{JsL<Y8qHCyJEAC%ZU9LE-+3;Ci20%F0KgVugO_$=n<=RN
zuGoqnYrpt2hvL2j;}@jJS--4w%^WR9MM@Y5@xYjEa4PF~t|`MLc%0G4Q2vXaQyA_D
zr_?uruPwcLzp2hg897V2YjTgY-^M7U`}XU$okCUHnKLnUQl%2rUJjg9EgPRtou>`R
zEK!aW?2n7UEqq)DL7<3!(;&HHZ-DZ?Zecm6Gy^w+`ArzoHZh6bU6sOSn6I33nA_?X
zpEZnka+d}PXV;}lDa`Y96|YY%I{4brLY%7Mhr5XO3te~Sh`Q?DuB5#SUtu0jN5bCF
z>AJ-|oqrlBf4CKFEdCWb3#QvjDKX`!AL+b}-&N}dETWa$)<1xv|JJNRVMjU`omC;}
z_T!kV>Mtc_4}zkcCi0k44bje{0+}+_Z1h`Dd1a#gzzA?~N-Xs${cIbQx90<w(;y2l
za%F&h3pwp^njSuEtd&{}#bP`p(FB@3nwmG0={Q~8sl+>>=tA05)*05Rd+#WMNq=#y
zW+Ud;xtOlK(;5iWvyTL`MWDeD;MG56pNm+k_&ET}Jfkapc5{UP))w1b!T%h=%sn^5
zif;XYd4d6SKZ3jiVB*ROSgB?5Bku-sBFBR%<|26tA%13`uEDT)0&ym8ouQZdvaC{(
z07TI?<FtAi>*aL(7AQRY%)A3mKA;bD<CVC++BP5=wzPxd)~+;bOg;Be|IcTwz&l^)
zT<xy%5%HorZ|^V+I$BYGM-V^UrTe}d-~$D=_u2k(RJ`!K7sYOq)<KZ4L*T8KIC1d~
zT2mbrvp>_KXS5}N%1Vp9T2?e^%YQW8M2t8@2{%+>EVnT%NjoXYQ7UTShKUPQEhVR6
z{2kydKK)1z;9DSPjdQWm0c)5t54+1A-OlJhaD>of6Tyz?P#oTHgFvsJ;if#+g0a?(
z??di)OSaKO6IvCgEL7*}nYMvufb1|9BTB`EZk_l4f8w<VOKrrhO$pVkDrLdETBnSA
zABZ?JCP1X+c51>j$LD5o%9SbJWXr;|+wck$N{bCOUC1=)N9ICKrq=DH(*F|&_JGbb
za+rOSR~OcU!RQ?Rp5{q+iqhxtk^~7Oxt;XKfY(XroI=;0g?zkD!Z@XV;EBn7y`&up
z$SNKI3%uTF%@X_Gg;&P)=kG+%#u34Ja^I8@AaU4u$qc*|I-c_?BzLV86lS?BJX_oH
z95^vCD2R9T_*xlf0Lg)wAc&>%0;X&L4b7D2LQMiopIHg5&v_yzDQZ}^C7*_7jR^jj
zR2v%~ah?7)bml0A&(gwxK;Sk+^$GO^6Nk}T`B07GhNK3+;wP4_X50K}sm+>JHBXy4
zn0hPoqE|@)(spN*o`H7Pj);iQ11+??DtNaM)U$Lnv&C4A8C@0qWE?byJ%A+mv2T%U
zP<9zB0G)A>rVv;6=cNiTJI4w<v0xN4oZKaHTzfXuy5;9{cI3D%tdh=LtlUd6qyGRS
zP2C6?8yIAf9U>e+Y?>flM!(qO7NM1MxF(}%>ptZE->_61&9a?h&k`fyw_PL|T!G~8
z9E|0})}Ce;7g<=b(3*j-ZMbRc6Zy85iNa~ZrACZEmI!Pnnr94*K5lA5XwI5YNmQC2
zaemv7HMW7@c@MW{BE2rAi8z=ZXq_q5(IYwTjVZ$UjM`M%?8{#B6N@m+DkraO9d?Tk
z=i~;6Vj!OtVxsrk>svf-fqjgKmzX&0)Jo&3Ol`|Lt{s$=kWS$+*P2sUdW*Z-+Nood
z%A32HaVMhp#evFapasbxa=2LmIe$K{7HDv-!NS=1CXXNzqPIDN)?)SnE>4z>;o*|q
zpG;Wl96PuOf5<1}@$$ffcJ-LvkZV_Uo-py?=qQH^^zqqO)k*34?r!!jbYv;XWUt}Z
z!z?^P2&*~lyKh7?Y#HdA&|m+W15T|@C7q-H2iED>UZ~_rIE*{5ahaf68P2&1$ds@8
zs(!I*w3kA57Wt5mhT*Nbo9Fu`<;3^l=H<OOU!8Fegw1kx?j5T+0HNHJ-94pBT8jLk
zcaxuAfmnWjfkA6>yYl%yGglY0A#$nt*7Aai#k*roTDu`ms*VG`ak}jQKE=zNKagF#
zd~-#569I)KyA6|6xG&yAcpaPTY}ftemJrL`fH?txQpG00p`MRdp9)1DHbn+(+o0YD
z-oYLh0SlFhaJn44f9I++xS9;>9`TveNZ&kn_ht}~FF{aI`U15-<aS`3z~Mgfea9T6
zKkte#1(Y$F7s|zK^Mgp%$6c@bPr}^|ZeH9kWD$+4$KEfm(R=PUdbQNMiyF2NS3Yk{
zs2d&gW7_r%W(IcM5sHcAI995#a_~MD<nX7W*J>bt*ouVnB|bJ}Q+*pOl#ztC-Cc9O
zqz`30uK7vCzvf8eB~1sZ*vS?4uk@3!ZO;i=`lV1CY%$QKYP2f8#0S=8g917T>H~R{
z@G1HpiP8?2ndBE;4dF4*+Be$A?xuk+@Jvb*X&(nOx;v=wXVdK>QV0RE*K_~|(d_K|
zF2$umjHAX0gP7wqG_^b~z5Sl7Ryul*nyO^AUBmizw{9xz7WH&9wJ;#ALOPgw=X|h1
zBf{V}#qY_!otv-@BFfLS7i1rIKn&WS%oiXsGecnjn}?zReJ$=c^lmsbzkUu@pGkP6
zbWV=BS%G80KKWU?zE?zIPzH{Q0D_7_972_I1YgsHU^D{B!Zhp_iePKi#WdF8l<=}^
z?}f=rzB&S1_`nbIO8qdA{QyG`CmEl+e?Z)CstR;)7I!pgjI@tD?%Nz}5_z^pl5x%f
zA=_U_FNiJH(VC<IxddP+u9~Xu_?s-P!}21Bw0vXZZQ?m1V99Njo@>b*gqSbjMh`A{
zGZX(^f|it^P-Uqu-9sz)21%V1<PMO&#+Td{!j|$mS4qYpuU%BgK9R;E9%h_#PxY%?
zqYM@(@d1V)E#}~p)gHH-Ycd&Rwe=_F%;q$EL@$k29^kKZH-8}6WBWXKjGop!8k_R3
zwk_pWwl#TEl|uzTnH6(y-(WQy5DkYw-lrx%{37AyOv?8m)!Pmsz$`RPm>yFe<9vuc
z<KYyCxZ6|=!_~~3Cc!~9e1$oqaM%v73sl-MU_{o?NO+80Zb|Hy`z|d^>(Fme2L()|
z!Bv^b*mrAKKhk{bDvLR9uh57i2i|_Lc(mYa8|OQ@1pNR)tA*(FKAr>IN+*5`a5o@#
zZ9Yz8oy&{h{JoZ@4f*5KZ6)W#M_j_zLpKdQUhqb5LJ;bW6>ElDSs7^a%*?&25Jn+0
zlz=<^jwT^j(Ooa7fSNoC*^H({bcbU!l&tBs{DBJB2}P7iAWaXcMk9Q(N`!`l7#{}P
zwA`$*n`Y#`F)hj@gbZny>I}S>8!1EnZG=m}YR#`V^N!-XebFhJ;I9ir!)isaP_*6e
zfp(((g^@jrG@&?lzS2DhewT_ZR8&fOjtK%SS>bp`?h=l0DnQZJ*rLazoqSQpB;NTy
zE>3w~=~|o1FpiPQEG^S^>xa_HUiDK*=)DV`idp*MYK^jK%OBqfjZf1Q$~1ZSn2`^o
zv}<H}b(^Fr#tp)mi=Z&@RKi90LkFDyXnIfT@=*_7uV?soyBqE@DX71iLWcC?<6G}c
zR8M}|E4cODARe7k*dRy?FW*~$Z{5CXB8$=_%g;{h<dTG+_)wdTLWM0Z=HfI{vCBNu
z{!G<$Yb8qy<OX)(ER1SYman;Ng@eRL43r0(6LEgS%8?1wQHC#^Vr~x-HL)mL&X&wn
z=sI1-ZVB-0fp*UX#h|<x*9S;~)n$6v^}YmSzpmT)H@vTuTXB%pPqGZSp*pn9C%k!m
zK0gtNxCTKJjdPVPgFT@$<t=d5N5z5V0Sz&E@=Ho6Kw0+gPlI~z6CbB+R_TxZM=oxY
z7Kegu<<}fLi`f+}MhZP>^K9yqLV|f)vaF2TD)`{u+V=BaMr(p*lk9S{k7sRcOYEB<
zmdnq`WZ^oi!|U2hh)CZkz>hMb^JVOBg&#rlxzgJU=5<Q}9#<Fle@f9E(<O0uHIV5U
zbUoxYBZZ-0Ws@!28gNy)vlskLLLE<u<3f1Z`}?OV-Yti%eKLA|EK{{Y_hLMGjI?Ko
zVE&0QX%!UsN%4_qTB4Kf+gM+NBMM4|N5Xa=NE&L{<`CB4CJCRzm)^1)yiv}Z^VlFc
z=@Eh*6!3+v0bHnwM{UMp)W&hQ{f6~$HZjA)=n`U=1p+Xd;bS;dT|NIWU}{lR>X$!j
zW_@O#GKze^GD`NiF+t$|fN{w|M{_gfLs?6%B68*`41-hE?zt{1p#|pK;55&Apc)7B
z2S>FWo4CLEjHp+gNOt$c9`qR_Flo2huW2C5L4sG0Gxx3~P;o*9FN*l9$(|xxePckN
zx3CSB(;1w{D4t2W!Q)6+TR5N(syTRCkSuOHzs>R)7ShV~dGX4J+t31GjHi*v34;)u
zck#GAVeOcxL`@AXGQ0k*x{O+Ux~P)?H$ce00N(9npJ1>SEo@}u&9yjXT9GbcRvtDf
zLeX>eKj^9zSVIgHw1AKh|IvNgRvd}0V{;CcY)nNCVlhb4+9sfYBiku;+cs&oD0F9y
zlJNSH7KE*(SoqIwr-9yolPlT2c($YGEd<aI$2Hw+7!3<o1%dBR;mcbV%7c2kNg>%u
z#mj$Y>O<%gAAX_YLCX+2Qls?lvo}*o5)+4bVV)yODz`RqFe*dm*L!203REQVx)z_3
z!5c=T{`fMwX;E0~Yl?^RFL#2ZhS{RUey`?S_cg836Ul%^r5Y6YCjh?PkNEbPz`p}0
z_>>1!>4Q2D<`HYpY#EDezD3v8$mPb0OttCAVPsRX_yxk3n6x~T2m~blnwUBO(fkxj
zUsA;)3u<qC!ncX4l`a}3GZB64It~AgTOA+lB_03GJr7uz_fd|Q%048htU>Q7f794M
z(5S8aaE*8fOph#fp}8MAz^}V#^;XBy<pNiweKmRCfe?r#E9r@hM_@i!xgT~ESsR^L
z`>k4KW!*tJ04i5wgq#g?i0S1PkuM=2N{S1@P{Ghb&<1bsprTxTz*&j+xl6{`dDw36
zzpEBc>ND0w&hqyDa9|lyD^wu)LS&ZXHG08W;&oqHE>&0YQKUUT*?ufeB>T$+*u-E8
z5e5u4;uVC)eZ5tqOk6;Da_>)?#F~6YOwDV9&U$=Rjnn76tg1x#yv(<Vh}?sL6u$41
z4_P4FX{Q=WObG-Mal=-T`ioWDvW<;2_CJ;{j9F7T1iS?C)_}Aa6;gCgTDnA4F@&db
zHl=9AeLEE|9#EIVEBw)4zg0@oN2Lz&8k{+xm;_8aQL8k~dDt4Rc-t&M_bjoaUnnkL
zJji>EK7)JH%9q~+#59sxxx!xb-NG(!qg8O?8rw}0+6wu?+ZTiL{<uu1WU-W{#udg3
zRM!d<0X)P|!o#Q_z2r=7ByaI^fZ11A{qya@$S(FO+kB~qVw22j3JVX@c}3M}z7R`~
zT>-?9!Zu|5M(tv%^}f_VA}pBA#85L|?%_YC+}-fR1t2w5y_+Y6MEgqcUG}J3GK74~
z2~faV_BVUQc)-nefw~Bz4hOcd$Zd&;>Q2<C%_25r@&M`Px%_c-D6KT-mA?Q72hS7i
z9+51otv80|&ZsG^eWZSC@yK;#8Xf0lLmGCHKe5;c$)h+5Ch{x$Dl71y3DtYA9!g0G
zbcRm~&T-2Q52m@U`{S#XdP+jTfLIRKo2#elIvkRkpq*?lre?YMj+H(1gnPyg%Sp9h
zZE_Dt$BNGCaO;Ig#$@!rsStAbnQ2etM^1GwU<l}?eon=S6`w+|EKP$<wWLZ0EV4&{
ztThPt73+Oi9<O+UHW>v#6O1HCBRh@r=3nM)jBtE7Ht+5w^?A4#<s+Wud&p&ImqAma
zQSr||2<)+k_Q}EfbkRv;woMh;qefUsC~W1MQX}DQ!C99EaeMv}N~iUC3}am7=*FtE
z*VS?5at`KMEG5_~TMqH;3GORtVtU*{i<ziS*zA3Z<a!-MbAR$_2efQ+U(3)h@l+0Y
zZxbEq!q>+tCVR{A<jo{sY=+r?i<|*|D%+Ogf^?OPA%Cepora=L_wum&kbPgxyOF1m
znvgSOViB8JpQ>YT$Cv>B_j$NNPgpW}WClhMoWPMZUI(gT0^*8?Y>nsvct1*N1W;ia
zGT$|_a9#5Tw5Ljb%b64~X>hFmJvKx%i~uIuTVA&DWdyU7B5f6M!bw)fIiNw=TX~VI
ziTU3J!~r%(N77h!HJDsOG4MPIG9m_#;^b=)-;wEO9HAj(KE#??%os+nN)yn!r*&rG
z=`3=8=V1VAgli^(cT}9Uf5=&r>eTI<CLFIz5{o%I82t%<$jMTy(w+FFXxf}{-R%^V
zW?6bS5|2Hn(%I14cE{Tl@ampl%i)j`YiSLsI8imK>EF$gVaL6a+w*{`z5GeNkdcb(
z{lDFepX*7Pptw`rVe%ee^f&Pm)Uf)(Z;f|Qi=Rr@<FP}OHShk@`Azpdj|`n>f_wEk
z!*)5}xzRG{539=_4?E_E@f{eRP1iMME(u6AYgx#%kFXA0g6w!ACYx|~@tn!C8#TbW
z>hInb1EW~P{*Kh}MYF-m$0^Swg^6zWtr;V^PH&I-9VK4Pd6aMe>oVhQCMnH^gfK#F
z>*qHfBQj4NUVAh~Y9--#a}<0Yk0J&K>nd<2T~v|0)*M+_W*%v87l1DmZ^0aP8;`%o
z>2)vJl3;lF=>_CFAVC0a5lDlD9Bp}R7^kaNIx)&)RaHe_2oe;Tu~9SUgd2WMohhn@
zjyA|Sy^zwobd*u`FhX3Hzs&i>b@Mz#gu*$sPDR8Vs{ykeAb*W+n^=I=>T2ea&LCFb
z>_X8#dve%0%J)(}g$U>U{+e?!u)T7vm!6OuI}=+qFo;qk;RYcgY5r5UK-7+_qaeDw
zgv1kHiK~~>Y)K1mclt>hw3gJNC^C}2c(4Fu?S12mL7`Re0BaBFzbe6=M)RM^-sLG=
zat8pf^{ap?$?j!^@SDF~S<$<_r;0Jw)C8#DZg6kf0s}WX_5-mH`G{m&=O<f|v3D;q
zwm)N5CdtIWDfu@zbA43B5z1(zju$6)djyQ#ZL1>nc+GqsbVAw=V;vc=g4=l6mJzWq
z`cBIq;j*f#fE^(gr{xfrZN$`>^EEFH!EC$fsca5@)~67L`JUTbv4)d=tLHFBa%pA*
zvu8jg-zVvSvo`P^McFdbiSrfV#k^k%8OMW`yE{@F)FYAtoFih7_@wG?V+YOA$A1_B
zXEplAFA5Rljy|U07jQkk^zO)_r@|AIWIRr;0+r`7+yr=ne?dt@ju{|!k~&mY=Pmz+
z^E3!r#4c-_<Jviv1ChsfI5lE&=2u9QmWycwc;Z48T?67{sD^tnRKMbV?!zX1803z%
z(u&3?HWHS8otZ(bUISHEUs0{%Gayz7^@??V7PP!ZEI=S~DC-x>9W(K`z|!ZXeqkp}
zWlaId0~;Jb()8PI!=~Iml5im@LU=+2q=22@sf;asPlZp4?F+G&ss+yrqos7pZ2kfW
zxJm#uMr@d39iCb2qDL9`iV5Ne(p!z;jkGO1eJgP|)tdHT!mjoEFY}+X?^%TMbZfNc
zC)=C{*+F0C<0yaQJZHPGbV4lX^C(&ue|{aQRE-fgnaX%4+TA1GbvezI!y$C&9|j-O
z1R8*;r9H&(!GdXjon1iFsFVL5Y*1txT}P)~#})Utz<M+U#feQ%VA!+fk{{cZoe@I_
zrKUW|`eZL3ULNW=3B`H4BivEX|I*VA@%UPLOsJ@Dc@7K{Dqr}FyVyAPc92X?)G-*(
zm`iV9uTVSel0+2A*2fC2F^y%9@rzzx-|ffD<a65Ki>361KsbayxFpt~X42OH`W%ZS
zRc}eaW=Ot#ud_s<_I8Bg6I*Y<PstexG4|Qmu`>h=;~xLf-=sLWbG_E!$SRt)jg+L%
zj3_yzT-p72K<s4+HGNA7YWf^Dr5yN-a*((LRiM^A17dFkCgvZb-W4B<IqVEQUO`Lh
z=%YrXX^;Uq*(NL~CT|u%_Ghdaq%_BPtukjo<6r@4FmBohh<pK-kO|r)Lw54TKqkhO
zA^GgKAwjOX*IR(CuulRKtO5D+^J@X=;)NxR3AJB&2W7B|sCK>*Pt0O_R+%rlnXd-8
z6PGBTQHT%&PUMs*uKG2*u#BpI3uWOfjEyv+{NVfILM^Qs!BYhna3L`XIEl~JzoM!A
zWeWvBA{@m|$S^4f7(U175n*rNpyU*t-<$nI0?y)?a)?Qum3*2tQX1UuC3}@=fPOFS
zY<UF=iqGAQ;D_{~Y!#wSWDCoFh<`5wF&YNS51M&uT!(aWtXsA(+=y<}dE>R~_?BSm
zsOj$T6&`#$VuLF*^xW(!&<u`t<EP}lWFDVVp+p*Of?WW?_l!iHX@hy&xRLVIfy0W(
z>){vKW*>f23j@$U5fGN38HI;}#qualXX~XTHF`Y9z$zjqD7=RN#i2kmJ+<)J68L(0
zo{Fvds3P&a{}ctEoIjkvn1Wc>mi0OqCofGFU+VEkJqKK_F@uX>K|-@m$@e3`(=)ua
zjWgRuPN?}A(7O6tHMIa!XqR8<o^j_XuQ9T?t3aU|Sr4|Rnm3hrsM0w~+R`m^AoLGN
zO(0ny*4YB;>j&%XD7B@7A7PSzMHO{fq*&8mMSxGg*%U;d5Knn#=mXy$uemQtYa@6c
z3$@h|jb@$dFT8)JS+HIeA8;<q9z^lsONn-loc<6OkqkpHd&|@QPms|D*AT@GQF$=U
z1M!YYR>iAfd@y3CK_k$vHEU=NKc(vA3~|Q0{q96(+w(K6M30nNM~OLp`<ry5U&hW~
z-14AQi`y)|_iLc9(Yl|W8jUW%zkk53=gTD`QDu!2Jazm%<{G$OBC_-SAU|kxER&QS
zylK3#s%lue`@_q{Vd0tD1mQ{qI}JRJy7miq=H|J#CYc=c4yoWKymTG9Y4?8v#@v>K
zb6ZS3dc~UuhGY}Td88|crxWKs9tb8vC*tPm1rsGe3Fq==S_`Sj64?&}wSqQz7*6+Y
zYIda;kf7{>P`3K3LYf-p#|EdY;A(sC?4<7?DG~(2A52W)Qaj2F6npx*^3%%Orxov3
zj3m0|rTuD*A8tM7+sa+cYk38yLW7+YTU^WZeR;XtAtBR;npt4h`t;3e)rZ=^zYJ$t
zoZhyo9_>RtHpT5$_nF`lXAb)J`L->Bm{ViXeCoOZvnIfOD9uGiumqb>?W;Sd{}4=U
zjix*(9m3q-?O~#T8YW^|f`Zo~)$e~M=KZ*4Y13*xZ7IsOp$@J`PDZQ2N`IunY-R1Q
z6aC{=I<kP=ms&qjg0#nO-oziMt5?1I#+>gz9{JhasjJ%!7Ez@wArG+QSK5p1QC(}F
z5TX|ZEp;@B*QtCn@GuFrmzmu#5qzbsXQBy^JSp|VQtr(X(4zg3<dT@qYMo0buCcNp
z#JZe|_`jS52M*BulR6H*?}8?HREtrh3eZ87FNr6ZY1OtGKM1%r7ItDdrMP0BU|>#X
z&sbcfYZ()*Hioe*7|f8V^FIcg2abaBO{FL~*)M`jaQL9XN89rXS$4bwKZJn(!&$cV
z``wF5Ju-s+Z9))YMiWD1HC}L2>SyM@xFn_*@nG^+GX3D)2U%rS5qCsyVDXBHuvlK?
zIqP!UkPKg~lBqtk!;o$#i!8k2Z|Bt*fs;SsGh(9B!IO>tO)>peb#f8$0xe8s@rEPN
zJ0c~rz=X#)1MO0(x;{t{!xuH(o<~w(amhNmK8UFg8Dad{{_?L}pa);D{w|$x4QBp`
z?4rsSK$-*)Aa<<r7|w^SGW@)S7E_EqQw-&F=0gk5zO-4f87d5M1Isd9E-U~3vPZU%
z6hK^MQ`1r!z5>nItgTYY5U!dPh;K&vxOW>3Yx;arpBeusmRn<UwaT&$1_qwt(`nX8
zNQv)ivROs_TkWPG;E&C{sK>;afBRcA`xoc`!tx1iV+u~(CyV-@;Hqx2Y8$Wso$=#t
zQszvZ0@ZklGBODiiGQoO*UFG6dsxV#Ox<V6rZGw47h=ztgaX(0%DIr@`G}bBa?DxQ
z8``H9$Zd*2_mDO@=tJR0ok9%o3{p#_{U((2V4+hGfV778GJZ<8%E<K6uGGf^PBY=@
z6F*8Rcfl6=UF;&aUnY?e4BPQn)74KOM?BAjnxk}f!%2>Bm&aREYlPGI%P^yaq-r(1
z6gwP{xDX8YzeDQ3UDqrlM%Beh<SVxprx<O3^<RE`Kb=(~1m;-IbT%adC0Zp$s+O)a
zt@bSJ2S)delUb4d*c^m~!C6NQvuh6*RQM`)&VBCa>LYJdnK`^4DI0roY|DaFlr{YW
zmsku^3Vj+``sqOqu`3K`1mQC&WGi#XmqjdA6-{KdhY%z-ZTTGG{0zGNWWb?o6FG@B
z;U6eSpqbc?g@Rkk2v?6cm5_4;rHL7~sfyd?hV;yid}81y_WDfc^_Y1t2r$W<lUhxR
zt7XRJo=C=9VX<ilsIe1@R;d@&2UYl8?-(@pG1vnurD_BE`-3pdsA%^xGL1DO47r;8
zN`TMWg@I7}8f5XQS;Uc5DnnBPE+t}yNeMDJM&Sm^Y%E>VX>l1WAA(<bOxeO0wSjwa
zb|>1$Dg)bC8|RA?L;RT=695{#mR@HoL{rHK*J=7DdN@AuXSzF{wlY&yTBV^>&N%3J
ztyT{$M+{d3&pe6?6dD~v2fYE{Jk@z`$}Oa;?;zD~UJfQ(zrbTj``U=tP3S8D+z~0{
zkb(0Oj;jsv_ZZKdlScX&vdE~vX4s})o5ZriUP#>DJ?bbUxG{&w8-*tbEydSwhAaav
zdWGE1HlyDU&79ba%Sq?%d|_tPK*=(<a#Nfzm0Td$tr2iZB-eZ$TMV88&T%?k9v-hk
zq0?5y@=piuj=gAl`%5Xj`wAkL!DP`us$3*vQcyCsf{(FT1OsQi?CY_#*Ut<r3pCCK
z)ix~s$6$NJSP1}4>XWE3L7YlLAo?ZiC9(ofOro!|%aLv`1@3{*_s$!wjKBT#M;?%R
zEB^3?*DaeJ)@yt!#`CgmhZV@>&qG5j^M2HRLot#3mAd&~^U4_T9hDjElzYDwdgm@L
z{u8Xt^t8Zq)&e^q<k?oMtFRX~+V}VAIF~XCLA_A!LBx^hMh>wp<$X%x=u=jErk??X
zt#;<tPhvh$KFk^$f4x^xdQF1u<VMHHlU;NVa?ZLgaUg&l%sNU*1e;E#Zt1o|+z7Mh
z8;}Kw`zOm4*M+*8wn@HZ>6MzA%ML&k|Cf3Rey#Nsiws>jli2A?1lG$@BZ13mOHXIY
z2M1c0?`v{@-*Fo}$~z{iwzbicPXf9Sx(3cN@^*|SdR}t7uEB3_+(jXl2+obFs^yr)
zBa6O?YO`o?hbcKz`H@2s*;mPh*Kwy3tV-KlmNc#_`{AN{B*G!t5yrJ0m~VVY@`T|4
zlM;^85e6D}tMR*H9;ccI8!Qc(*ME)*<=`&cs17-!8`UsbtK!~V2~U5LDitvmvR~!o
zt`zZkJhlYhb?Op@nYstrM^ShPt#F1SJ)09y{CA{RV_?72lontTu0-L#5p>jm!a`|h
z&cGNk!U3!8Bb#_vdr_DP@q9)SD?_hx(GTX3+LcI}IQ){46Tv!W#3)*rgaP@1`(K+b
zHXf_xDQTTfL9IEZr>6+`qlAEA+|Z0BdYsy&k}IJbtqaNQ05}^M7t8}IjJi|_6QHvL
zZWW6`ay&`{204~92<pQX0G>ShF`6f<b7P-b4@2>4vN3FOc{_EB^K@(BEFAP{E~VS#
z+ZJT@4X^oYzz^^19ksZ6xC~nlsyVPVr}MFdb$9DH<j}Ajj|Oph?Lkef6%;Q-Vv?+K
z%V`%?JVYz(X&-tU3_~fAgM1YE3HK7uAE7_cFmO#(m)k@Igq!Nz|9&MZWr1&ex{${5
zAEtmS5zkX@vMEHrW<n5}l!N}p-ZAATchw_}@9v{d9fvjBnUOY{SA9ko{&S_$c(VKh
z|BC3prUU<_v7wUtte#wu5SiSh=+ecU?7+GWy0SpQpi(F!2|DIaSlGmCHc@K#)T()g
z|8q-O?;=nAR>H4}I5#(CPZ1NDj&%QznK8}?Nj>9s!4Kz_U!>V-0~`nTS}t~jT=^3F
zY-_!k9i&v%*-Ai9tBi;5TTiELx~SZ<aVkY(Ni7Ry<w%GhkwHkjPmSMC*CYQSh!HL=
zv?{Elruyd@pCTMrgJJY{7qJJ;#>wkSUDOyotF?J--|>BMk=$1MMfOR7tsh%~8Iu03
zTAm-?a`zab-cGqIIta1EFo`oEB!hj$kRw_I1i_Xhc6ldEbH(xDf(s7%fqCL|4D}(Y
zcZc^N1l_`66ho`w@$l#8{8wI$E1Ll{5J9yVQ^#(d*^{G2An(sc8sciDLZ_9_vUjXH
zcV!!CHu>h_H<GTB7ZM4RS9Zss?|9xMDI^kKzA7#6bJ$}2GaX$p`R%B$DstTJ7bFyi
zC(GypbdT|Hph+aF#-gc6imZyauzj6iOk$+x^@9{N$W_|019Nljgr6Ags#31J+1#uH
z=OFd%dpJeH(*U2#1W`WYt=iU!{X=zyt(5hVP*L^%bDnrz73>whvzY144NPeIULTJu
zE`jTfMN5rpv@7<eu2mPJ){fE|v8KiApYzvvHbm>Qh{U(_xR^Z3t!Jcsn|v4P|NmM>
zW%b{AvfbH0sDJa<^(CxzSd(V%Ji=_+d72VEFu9|dfpf;FtdO@j=}a8#?RVkthI&Jc
z;18wPOCAeR=1@uaA<VQr80Lz?=9711N?11pzIcKr?y>U{rd@~ZPSU!a5W38US33a%
z%PLoH4iKJ`5mT&K1#q{`r!lbNM?JFcjaqVAM1)6xqQKsoMBthJpNY8M@?4x887~(L
zyAT=eT3$<Sgt%3%->N(%T22T#Q`m5db^Hw6kXB`RnA;N%?euMAV;*ee4A!Q)^Hmhq
zp3Ea&TmH#49wCNbbf!Nli*ldLFMR0nMH>*E{?D3+LkqtLnyX_0#?6AYvb|9ikb8iQ
zL6JNupex*$%B1kL0tEUHW;rF_$D1HLFn>W-(lHUkNu;YTuZ+!pLVz+==RoZ?i%c$+
ziuw`jwjxv&1jpttJEh|<O~9I9uw}{+vD|UZc0iEIr<~2CRN<SfWK>ITzQ-Efdwl$v
zNLYt<hV`99OSk3rA2Y^+y_zsje<DS~>+gjzKA5nuau4i@o7KttqGjpmnc}jde5h=|
zdJQEQ4`BCN@vGTsL=i0T{gP@ZvcMNaXaT`Cb##-MpCrxJ`@$1<?NEil7dvULs4d5+
zh8~Gp({!!_J?+{L)W}QT(Na28r};W1Fshha*NGh1GUwq)FXE%)YjuA$=V~FN@O1?h
z+Q<QNdQ{V!WW*bTtRo(9uP$ufVLu4l-@TQKzS6sekw$Wx36&DNVwMkwpDGis?{%hL
zeu1r=tqXK?A;!(JILi|404xUNgTnW)M>Ez{Nubm0n9nZu^BoF?a1x@0Umk-FWjcws
z6y{M@>}f<hJ|8awi_<%gQa5mx%+9&wy_{0U#84W!?g67&S2Ul_ulEXJd9Hr(gP{&K
zFpN02Eowk=h1xKr<gHtd*sbimUY*P?7vV;Ls6y~<vBou0*(KtUuloY0IFAffbs|n)
z8y$oWz;52Yf%tk?ZZ!!;Mv$ahLUD%?X9t_MK=g_N2H$yliR#E#am;8kwv^v*Y0}l6
z=ba3|V_S(6e!FkVw432Rj%{3~@*^%8q{T;u{R2ii)kVaK|JDz{Hy3o#rG%8ioo^Ur
zZsl8GDlN^h+Kwd}tyxz`2g{?#5)mQ3sps(<Jv*`lU5uXG>IkAlRkbW9%!%bw!T1sR
ze^Q}2?yIw#WK3o|%v_Sc?je)S*lnx*Zkl_o6_m@tO-6N9LDKw`+1i=9R4L}1L=!Tt
z!)&^G0~V&m=n9xW(>3WV`6n?#O^Ci+ZY7;c!#oiZKwRGau3ocC@Tt?hKE@-(YYVcV
zPWBK^Cr<qOLG&5+gvQ7U67;qf*$NjD`ztb;DD+_P1!lg;Bh=l2)h(~5Wc=*C%W;3;
zP0F3(W)L|_3?Nv&Sae8ls*zssgISYSrJ>+^-W+kn_*m)BVKGDQ1ung0ndcDtcU>XP
zFo4$go9_w_0k2dpZmZ)ng1kNgT5lxiSG(a#$8qeFz7ma+E{BctUVtn{%CSj#pSb1t
z;}L90_Wlo9>wfrH1C|9YN$b)Ci)gW_0yL*fX4{f(@fdxB{Lk?cq^$H=-)v+e{zPti
z{DZrz5~hym%s^}D+~Iq`++IQMuLQa)yokL<C<$f>_nSCCo-su5J6-cVONs<0$zoZH
z#R?@VtP(-Lm3Z9t^xoUE=W)yoSVi!2z2NCzAqdJX2KFHC%fZKFfMf2N@Bo3}7&!A)
zYWSF00T<sP1gT><OJrcK6qAA(I90Z}eQh0ca9W|FR9yP}OTi>CX^(bIQK__qn^&Q_
z<^2k00~M<e|KI(^$l%4x{Vv!Q`eA?>tJdd*0{y!=Y9)P{S6;!HYph{S_Zn*;{x~d0
zx*|t47*us6#%VkXOz)col_b9!=J~8zJk+ws>hZ~@cm#Tof9^|J^;Ac$F%Fu5`}qi&
zwR3h&Xc-E3cL)oz4K$)1BO8f<hY=N6Q*EnWT3P+|i(oS9C;)wm)6pF6=*bHX4XzzK
zU7>H-rGw3z!!^z|QE98p+;MFe{-Kw6qAzds;fL30nO41%eB2q^xj|<#y#hCT%!b&c
zoPyc-LM`Fqk;PYdU5)q(+cq@xIE{Umk$^>JI95KcQN&|{bq*&qkZ{j*CNN3ucEaUw
z@BI%kuoj)~#$INL-7HTfX``9ILnmsHb3K+p;u<!ix$YKA(}IOK#H5ftqM$toH6{=@
z_XpcY+aQ}3^@@UITc9}Mkai!6&l}4-$l6P>F75k<U(&5T=rYEy7@GFi`BbY7Fr7f(
zOH|gE`p2(6r)Y(8sYn_)G1z<N?hTsjV;KeLnZoY`Or~GJAtI~zUN5yof%5LZ=dRp{
zD9zxKuZ<I;%}iD0uN&rT0408GHrv$ws)Kbs(&6)lb60ydpR{J57k}g84HI>|lLeR3
z6r#dojUc5Hc;JEX1TmSt;2=eQ9>P2T3?xO>)fl!S&81zYs`!NJ_FoiVKX6klV2U-5
z#hq{<Wot+QSLciO>s}g-umx0ND(QCyJJFmX1x&$>|CW%bZwg5)#cNb_*NV9xLx_%X
z*qoXmNmUbC@sABz(u1D00s!b~Ux||6YaR|*-XTOiI#%WN$s?zg|C@FzTCKNOP(^TY
zF!I>Euug)l>J09?M@!Rl@7}$<Fx>kWh?U@sfD~1Gl}_Jl)%Stq1q-4$^78v4dG+x1
z4TEvDa40@b_kW>C7vIdmvF47pyGAM(Ec6Jgt#UDw|Cmf#`KY>gGB1%7_b^F$dHorc
zjyD`7t^5~0oL~W;a7)$GiaX#l7gvTklM1Bdr)5XVP*rRY+s4jTA|Kji9)9=#oB_6V
zO_635)3O4Ol=2|aZ;V#tVuC-W9hF;YV|vwjv9lcW3eX4UCftUE>9KKz=HNe(b5o*c
z_F`nLd+UjA38FY0rDXss7J9r(vRhx9;&@|JwXsL7V58;_44Jm6pgj>UAmtnnpk+l#
ztZ0Eb7*q5Gr*}jBFTv7IpV8(3{%dh&2{=p)8Gq_;)oI;fnTchjxYQh^xpLVjb{<I;
z4A}<K{*3?U7@2bnTFIRA!u5NrZl@tZFD)gVs!N#y>)9E3FznR8&Sq<<wI5V$x{ja>
z&tj$Hp&+pN#y`}8=@I|ypKX!aJn~6JRqOz0(0+D{ZQkF(AIq@_E@{bkVl9P3+pi)-
zd0y{zu~f3FCNon5tlbD<`CFUsepMc#M9^Ua1T#q)a5<YJv_wsa{xY|v!wPx>{+t)X
ztZIm>$~Axin)boy>+SPc_1lYlvWPuw<P+R^JL6H7%?et-ej72ejC```A0S+dh5?hq
zV}H_B|K5v7EfiMOL#<4s=_ZQ(q+7u^p<h<^GPuN}1u2X(cd{N!NAK%P!~}U+5G$Fh
z2nZA+$(WP{;j&h)x2S{9jH7rRY={*{?_BwD;z;j~^K2MzXe9i2N1s;giZWq9k-dwi
zR-3hl*|j*bcIzel02tIkMNgSH^q(=a+QbDwI&SAzjFk2fawkzJu>BH1S;<?9s8e64
zwYhpK@_3M!I^Yk(KtOf^sy}5ZkeoH5@7fF?WjvO!<)OUyoQKw4Z1QkbCEQx319y6t
z1`_EtZ=~HD*?i3ePc68}lrF#dw<VU|n=0v#1ll=2@^wRqYr)9|4Mny#*Q?$y)I!;J
z`#?W~>*11cbZ^i&($OR}+6%0){jiJuVd7w~e+N92h;0H_>r{Ynru}zz&L?cf)3oe#
zoo3Zw8P2FpDEaEeRw*8^tP0><p?M5(oCH^qnkZb%jJka&?Lewn^-G$pv6Y4)O^RsR
zsbn1jb<=jIZHB4#o86rO0N2+6Wv<n{O0(yHtW4>cnjFWH1dT{6C2}1_j&3X9*#Cx8
zavMR^^}Rz_or%vmv=fqyGJAn4KfqzfeBC7zicU;mZcGnF@Ax6Z-upv9UTxj%Bm=YM
z6%{U9_`Pnp1w&CL8Q+uKGWf9l#kI2co8t9D$4T`0tzzna`6We7rKQO@qrBqFQEpVn
zIU4;AL1_pM0m`0P#W*suE5*$n-*k7sMyV0H4;^=Mvh0!`F>K@3u<HjcSRz&V>~4CB
zD&Wy7x2`#ycj!*r0i97`;F@Z4pQ5ZGu(rtV4nas<_u><b@>`9rV&*ayr<mUwym%qz
zy$5QR7Ax(TG*41U&yZRUV-Os$UE_~oe6MUE9;&t7B3S>&*dmyOAU<23_9qllW1$aj
z9k`ait3xaZrf7soyL<}c&c{?8gHzi}98^+O`}WE@tl|YBY=JTB@4h$~M_XUypA?2P
z|JpYyMQI-1ZOjQ68J~G#*`~)Nm?4bd)-H`rz^8cT7SiY!YIPqhwokoVd&;|*$HMB^
z?K6+~Go09IjhL}?OqCIts5G{ecyYc6sN&W|P+yR-L{q(R_@CiD_hX2MXbgDasJ%{V
zID*%ml2Ktw1Xl(W{Wj*m2m~`mIN-<L@#wK3D6QsAlDbD?4UpP&?wI89ceeMx0ZrrM
zX!+yReAV<9YvPfw)sk_M`szlT;+%c-Li$6WVp!K?v&{a%8BBK8$CzF@4-AHLo}x>?
z+pHmYt;yAF7~IJ`{Mvp_lzk^`t~24;?e7PHFd3`!rf5i|SN@)>WFd<g9n@edJel6f
zun&}s?$_)tK*eZ8)ni_n<Vd;!#pcmlO~t0w+SV)8D}wt5CyZ%ksL#PKvHzPq)JBK5
zCC36Bh%plch_<J|AAD4(QJEMtAVI^0d75jl$)%mAfhyyl9RDM8j~&gyt%c{R8J_aE
zhsM4yRPLLjMl)TQuhe7B{jtHVs<nb1*}NTp)y6Bd=Eg7{h-ipsC)%b%;XH~BT8!N}
zHdew%@bq8B)d<Iln##%+q5ZQGmGPe6s{qeOj-Pmw(i++$O5i*iB4F%(AvUK^TOEI;
z0`1QtRFjG$jqs8*;l9@44f_=hT`$V+{Xu|4Zm~u+u%U}@WTlCJ!=WV4XK3w4V7$G&
z!=`IM=t8uek{(rbo2Wr0Wq3Np{o8;>sISd9YZ<<OZuZGYhmvMD2a&{FSKa*_PEqk|
z2N(yfl`5g!%c8at-^hwJA(G}A4|Dsc{6lI87+D$>DoA#7i6DJBF-u|Hh>?sMnyV}g
zEA^D&>)?urgh=n_Mf#;#b}pmtda~hpAe7fL8bF)i`)!W0Na>UD+->$CU*HKzA+>xh
z_yBfMEilR`I>(b35_tO`@~Zrpm)%r5VYQBSGR$9sf{j{{rV1ZL<fZPH#k;PYdO{Yq
zDQ5fCohQjPewv8C*IoR7Q@3(gT;2&uf5|sN|5F5)+<~wGXfjXORNPc~Oa_nLq<*O<
zsE?ox3QgbBDxhe-o0jRM;{(gBlV+&mdeRF}j^Bn*Ca6OA1MSV2@&29dRw6|s(_~U4
zujQ0(1ur{4bZ}$y`nd-hgV@K1tZti}#=gjFqQEtCO@n>NlkUg<#2$1NCMVMP#FILZ
z`W)qB78k&^5b*fy2B<vJA7AGu$^(0$<cNJrGnvoSlXZ;+N=>T~K+q~CV|$Yr{(8$#
z7v2>~4!dCW<))8x*c|UzG(zFh(%kMm1n7B%uq4zs-I7NmD*Xr48NhE|(<u1TPsX3j
z{02S7?t$KXkusJ4pFMT!619QeU+8@z?Q={~mkg;;E_8uZi_9vwO)Q<L5@u-i361+1
zqbXU$Ry~&*r!Sl9_UT{6l*?qvVkTWxb2OkN4ypu?u&c@iB46a1K%wYGNA$@uvWEzb
z|M_ZdK~b!tV<1IM{huiG$_(-BIGNXcCHw=LnH_k^XjRBdG7<fkWEr{Tc5cIQQ}TbZ
zl7oI<GFD#fh~k7wtjk}FLcJmPqxisul_Vo>naV|6e{s5~j3(6XOIGRokXfgeGNgUL
z?Ds^D1K=feuSk7%_2bZ@dLPpDoiEpK>-;&V1LaTy_;-;$!+>`l6$pLEXwY;oCkYTi
zbduPK5yTXQTcHz&9q;s2lPg>XL}Q48K$fR%a;w?mxi|;hcLQ^=Q0}2myCQ<!>CT``
zE-8`@gfgB6?E8rQlg(OaAln8VYHj#G5nAYVUBx6}Yk@)(Yqdjjj-1n-RBY5hZ_9T%
z{%fTPaqD38;E1NGcnUZ!=S*4rS|ip4s`)X)Dl%u|2IKJlU=Hm}^&R_cJyo?TIO!qf
z6O#fEI^a~Xl`=wAuYo<~J@Tx3x^<xo1rEj0Y6e0j9Q_^uX&iVr`VW}9(MD%`ssb?9
z4?t!Vd;y(3Se{9^k-M@AE@-$H46V}k`w&|xbCSpDC4OTpYcE}I<<HJ`l(pq8;lEJd
zv2@}CR!GWN)3+(EWvV(fxg==Py_mxGj_jDfcTjdTh{}c6@%+g?+EED|*|bm{$2Hpv
zImvMIF-6<<w6Igru^awI%>a&u>*-~#zG`NnEjq!?ac96k^_;Ej{Yuw4d7GD0<9~Hd
zAX~96J!^7R_+|3gSCmI+w~$dM75gV-*W!r$3W6&uS<D-gFx_ehos^-B7IKGAVzmuf
zq!w4v4h*Vt2UiCF072@k(gvOv_c<Pw5M5B8#C>ik1A8j-j88cKp<}gl@wZwOINsjB
z5BT8VEBdiwQBH8sn}FlJp|F=q^xR^MbtdbX=h(Luxyu0k_)|uo6{9eLs)foMo{nCT
zyiK*`1C&t4yl%Qgqh*4@fC&>|8Gp3FG1X?Izup?&?o!5uCZkb#5`WE~{Ml7wn|@EB
z)H|)7ZkW)LOj^9GMp7QIA9rPQ!53;jKSi5HsFD9ix7GFsPDM$RZ80~bHPc6gvvOQK
zWnTv6cv?Ut*fM9oa~(o&)<S_)^wrLnI8T3r7NPAo>=td8ouJK>B6~8pvh6DS-9oM~
zg5WtTeyI2)L8lqFep&tqx{Az7((*6DaTqL~-=7ID-)OX<oz{KS`Gxes?SqFC-*Lyh
z21DZ&E{<?g@m_m_F?B>#IS~*^v2@Wr>4-YV;Xee$x_iR|t}&5Ar)|zd)^#f~_%Fzi
z@=)S>47(jQA5Y9;kZ9>J+#cbZrj!O~yUEEA7;ai-^SQgB$3Kv$6eESi0y`<ZMoZgZ
zH)Ma)?)9UJQ$1O13Wu`mobTLU3*#%?7qF6L7%n=VdPsit&gAE*g)F#*HZ<cM1vLwc
z8vBB^GYm`|o%`rlg<Av1=?mk<8Nlc0eHnSwDHc;zTRC}G(FnIqO?VpcVZcY8F&u>W
zFUpwOa95g4#T<hYyE0awnM#KU{Fd-9U?HJzBtl50ZHFS`r(w7<e&|;IS)QK(b}T{G
z3eM-xKFt2Ru<E`NVuu!j;VQ^8J4MLo6JQl7<hzbv4?oN?2ve~P1FTQUpJj^gh$G4N
z=glCK>6s&s&%U&&1;AN*jOGT>pCgjjh!zQ&D@j6P53Hm=$Dr>%p2>wP5_wPdIc&)K
zW%DBcUAqq^Faiv^2L-66PaB=EEA^1-K56($G4K4A#I@xNGU5THMsSLMQ+nmNJ5jss
zNizxYq)A<YStt(J{2%eon#}c0dk1x3nsCJ@9VaaB1-41gNXkKP#Z1s!S-kn@+A<vE
zVuf{@k{l{y`@BP)RtCfSa5D@PF^eE<>BD`e@+zTv^=mRmW!kg&I``J%Qh4n7wzJB?
zi;<*m+@8VXQ$EAtG;!`YY+Q6HeAw0_VjM0i;hF4lQPI~suN9-~=D>-vfainGMF;wC
zaB%|x{}Y}v5{##45Embhw&{Q#O>57DClL14o~)B3tv`LsMLAK0dF)$rH9-DV6KiL(
z!BbD7MvupwONq^7CTJwfd{5osd}mI>euSz40>>ln%RZk9x6qhv{@n=A41+pfq%^FD
z?3%L}1uCYV*{rtA;X1xtgvR=?@=vaGq|sqFpA6sw(-USd`<n?X?r<+gCr8E}3NdJQ
zVa}K%($eNXb&KPRWxdee&%bk=4qqV!Z*@ThlSg4mAfu=fdZho%GJ+gPICnT;_l+vW
zDkOCrqdA*#Y&R&=2<`Z+)b_Y$@J}L7c~OYzFOEkvUFUmKUL%+<ILU<^Q7<|5y1M7G
zn^|sykA<I^lKE<kWZ_IqN~-K>2BGk|=7!Lm8z7}oGccqw%i^SB9ircZ0?P?wNah{v
zUYGAVf^@`|z+r`r3fgV`Z8HNNMX#2G=rU5bltf1s%{F%r?N9@Xh<YuP{||*{hh>H3
zj3@9urYWL+o3V5iWY3)qo%{#W3uRTUd^9QPaOV?;5<cOD_W2f$;V`c=2y!~)5N2H4
z9gvKe&}}UvW8hzQ&(KW0p5l-nEt)`>*9Y7+@XE~42Pt>TBmv=EDI=rAJ{p$47yDjE
z4aeJgRE>MTO-Z3~y01n~<BY0{rQ7s_^}FKyQb{~Vk-bv2f5F7!K=ej6IfhFCE8|bd
z<X5Gj=1}=i{t%Fabb<|B_ox7ojAk_79y9uN5_)m#>!wdEHHEk?MM&J)-!H!8t~jjh
z%e=giC@16j5rd>w3TG~2nPAp|FO?XatoJW6DqL=b=$xm*{$VS@OwQ*w(&X6jU88;S
zN~f}4q+G&Ry)^aux3cpKM_J5m#5iq?!bR6RD%ljIV3vpcpJ^}Vrt!I%s5=S%4k-^C
z{u_vGWuG;ap`Lpn5GRgOS#6i>N>nBk;W7^NgP4<LKXUpRQNJ-o%D`5Uo`W%nT4YO%
zh{oibj;0`tWKNU8hFp4`X`dlQ1GMc%J-Y+KWp9ZmaL_PBwXs*`<?Tf510kj;@z|Uv
zyoAiG_;^5>W|>J56f^JFoGWf=KJyC-?>fW3eTlv5-K@{XHB!wN49>z$vz%ME$5SIB
zaIN)=)nWv=XL$tw#5~@E-<DBPi$)N69*&)6Z)D{27hfjN&wlTAH{>_!4)sB#vxy?|
zdzGHLHyp$G?0o-#dJF)&()n#2PNubHB2_^BGtbD2#wM;D$X=2EW_vB$AmnRa$tFKX
z<!|aj`DY>o(?<n#43-5PD6Bz6;Fl=xawzfT%AeEgG3AITz<C*=SG%li9Cf}i{0>BL
zNLo`)vmiseCALK0pa_@Yqb2qmJgO|chacam;%d&R<8l$*X2|FCcm8oPrOuqfTx%<*
zx5XEC+F4*Q0G20;=$YWRE$4Caaw@@XG|_g1>Bj->8I8GYXNh=AJ##0ilw_O8<Ha^h
zriDw)Gbg(OTu)IVDCUZdysLzzqZ0?~0ga%c_ZMUt1=yW6JWWG+R%|Tt8tgosX$#K2
zP<;_RBy@T<;()Ce7HJ*nW|=*D(IxtF_=_qe*Aj7sjr**$5j-U?;ZgfM-3h;Q;eAZz
zUF;wtuJHprt3m0GOZU>C(h&M>J?e<&zd4SVUfk)#@309i0hVJj5GhaPgTJC#Ie4nL
znJOw(Y8o2c<uBu?!#7af^%9!w=DNNb*0+`6C(Wr@_*$1U0uA`}YMwep!;Ykbi1b|E
z%$RUDvJN&i?`*9&Yo@i`gNj8(ebU`}%X-*B)E1!pX4wB5g{AHZx*_6gTbQg?qN)gI
z`1wONoel&v!x?!fXsj5Qy398!WhC--98PX=cYT_=GA@F>7)xXTFEJ?k>i`u6)l`!<
zJae0(*_#W9cLX=z(&i)te*(e+ZrzHnUiH8~@8Kt3_*KT}IWiBF`G>WX+pA)tHj4K-
zxheU`dsX+Zx8C~)X)=HKblAlPM2<+zdSz9WHKR}X#zZ1L(2gsNe}DNx(0#K9C+Mgu
zaRK`8XW0c+Kz7w@tqmBEJGv%h@QUGVUNZl*>8MQ|ygUB1e+oNOBrKSvn%arZAXHS+
zG+))g-U24IHAl<7rp9r(eydVK2bVDUkDRlLsUp+yyRJ944vM1XvuSGUk~J|v<?HyN
z(5$?cGSpO+xj~eL3q>SsWP-xS%uPt_rUwC4G6#iuw<SxP^&U2bTAsuhMZ&qwm{SCf
z@=w?<I%MhIy8jtIKSjQU-ro|S*R)MFq#%nYqv~KNYq_pTX6hTu6R!1YYBL1gnM^6%
z68wg*2&77cp`UeEQivzwiC4gk9G6-#sorK~fiAOY!Gu~VN{TD$zCn9nN?8cQlzG-b
zeYR@D!R&CC2CnJ2GdmuRsqhuHWGsW9RyLSdAIW1oQ7@ydPn9{kyyID9{X8gSUbdkX
z>r6Z(8hZT|nG)MAmTt8*bOq<*sU81cESH_!V3|I8n5R-;HUp;0wyA4`f}8QLf&B>X
z!r|txi;x_#<w>u`xfg(D_3Jj+cU7U{HBNi_qf!@_JxBBt<DI|NKuH<kE_0LbSa|8n
zebN$~#TlHelfd*ppl!DoGSM#&nFsD@L<GZ?NCI^4$L~M$ISC!G9s3@+kfxg@!mZ^v
zvx%CxlenXmp0w{(fN@nn8xb4h2Pvq`@wH9sGh<;j2k5G+s_Ssl%U-kKekSq7IC66o
zdRbGdv^D=o^$%DLs&8`V?N!Z{I;FNw&Qv=Q@)Y$m8~vZaA$HwvoQuEsy(0j}gpuT6
zaMiUX87k-E{JMeCF9Mn)q<jRB7fCpgjFT^iL4vm*oP4_o5>NPuPbA?lEYcEeO~4bt
zhLKI-`|_?O4_0f7{x^Fx2zLbL?)5<l$i)-|gSqYwPIrIDJ6)C*sO}KaU6(J`Q~t{I
zP=UF=G&K~zS2mEX8ckMRvWVKO;a!IqMKG&=+hJ5u_vwQ~htiEHR<H(%%2?VYagC#+
z3D)UCM6g5dA3RpZE-ft@rhL-nT*JxGXv=DnmWL<m&~vl1zH&yzn5TAgGQCvT<!->5
z(uo(RHhfq+^8ClNYXJ!P9~dtPa`RBBG%^sr+Ej`j&wDjYP1ua*)5Br4))0AcC^19G
zpmzgjkT{UWAm$&QqfR*4zkDPPZ*(7<w0}E6dtKNX;bp4yblBpaa#`r%LlY04QvgZX
z)VCT$Th0Y*7q1tUhYDr))Ic3%<k9hUybPf(<mIo@`q~LGfwAmDACk?>>(4fXwYK*{
zOkn{f&ZOeDA};s}m@V_}@7eSCqUA!NF}%7HNwuDpF{lI`HOiHvC}AUz)O>=IiDjR_
z2Bl#zVBa~4HO#kFZehd8WKL!5Pn*N^g&FbDUl!2ZZ(C`8iJn-dKoIDOyk*&+IZsqy
zJL)Uh0RF&+QamuBNSV&lf%_cCl2V@-dg~l8(VKNE5-%8e#6}EP?Zd-)F#N4QrsNyn
zQSCGm>w3NSPU1>G3(bc3#x0YU<kQhoubYqmy{}t`N`%KKzQ+3aJ(<Y}^w+SInS-ER
zJh{1~TGGS5%eP+Mt0`$h%NS~s7<t`awmXALKF*1+a7Z+D8mxs00A#(NkW!c~WwU$#
zzQ_%n_5fXS8S&gyoOMb{Gy5_F6`_{bG$O%-kYQ8sfJksM+J+IBV?jN7|6T7kpxpVe
z8jMHPOxL}5=b-ZFHOGIJ7V93aOoH+rP`VJlDu#8nJ<YR0p?sdLN<5JJ(7TTz!UL4i
z!uXO@9e!>&9czTup}KKl(ZIn6uHHpnOf%Hn3&tP-pRyLfj*HjU^84G#{YdT$DBv;u
z;01UDmCR+$td`m#Rp!&;xe=<JvM2~E;To-m%t(CagjO!ZWeahdkqu`!tUroA{5NKc
zXnWXI)uR)0{`p+vW8eOXZH3641`!KhwSplx+wrYBKl@ex7wEfw2m!D-hcjyxs&fG;
z-=euQzo2zuJ0C5w&c)V=q~9;Kg|ruEJ#ubE!TXetA1#B&z2R}FE}|?;vSy+YY-kUO
z-8}(I-^rwt5n{u@TvF4vwZMCPWs;81yqla*7d{nr^%b?5gRz$oHxykY2Ws-U#N+7g
zgqFtr$6ir}Bh&S#o`}!v8I|6)MQDSL=by^HYy}kgSGvDAw~tBKI^JJ14Q|TslHE+S
z9#4v1;V`fm!TvN-*Ir*mu^K#<txTHV#{VT<3~0?+6g;ykgnWFr&u6fU<irOtLA1ZW
zGvCIr$yahd)dE4VDf4(TPxDZ2jexZ&SG#IoHqztm5)8N=J`MW;>;HpA1(2GDjJ_;9
zlg}Cs|E8^R8Fu)Q+5sF!JZuA_>Mgm0sAqRXk?B?w4(?q{f+HbV{y_rS9`+g)+<EvG
z6<VF{G?8AXQBNS8!AJhUjQf>0vHQ{o1+i7fJIu;ZuHKh|u|14(ya_slVj8Z;>K?zu
z{EyDxQUpT>eL6RYS1g`{y?gtg9lRlgku32dK=R{B&IRf);GN67K_e&-N*s*JaP5vN
zw_k2#2A{aY#aU@IJh*Uqb?lhV4Tn69nRtB&dk&8b)^~!sE?J<j+T{roy=_m$7(19~
zPXIr;_D>LB%RWo{S{Y%*;ZvG7G-xoxlG(b?#s9Je0nNu7I_L<q$d^BlDRPF`+;FAK
z|B*EBYuXeM*T~olK4Ra8v=x{?f}B?-{Jp-0-?dZF_m^F~at5^NFIZ_C0Y4lWkIH1w
z<aav-2kP~CJ`^Qb6_LSjq{#Y6WazcUwraAy=%g^n=w3-itOj6e%GE}rDH1XHL!<ZU
ze3;|nN+oa3qO>#NuNH)P%HUQ^PNm3(yolsB_M{d3Ws5&JrMWeVST5FGSepe7<&)(8
zQ5U;JcAM6kx9pT!xf^vABd~AdVQ|tN%UY|(@JQn7ZuUK3C6oEXx(|LY;td;(gs{Rs
z$W9-;j9*_aE<NSBZUSP?<4z{Egtm5<z_ZlMiKYzRHQ`}c9rpDmr;jn&FAWGw+3&X7
z?#~{qiEPzXZs?h)78uDRA^UEemD~kX5hgc(t=49PNuj>aKQ_d@(Yj$}wr$#h+Bk)k
ztXT4-0e50l7woq8w#|S|K%o?!=GbfXfPxgA+bnqrW?`tkRDYGvTzAu+0*824gGmV8
z)!9MbnJ`iVtN<FH%(7@m!JVH6<3*Yu=q?c(Mn(6R>1&gv`&+$?#@c^(i}z#H0Fa0~
z(<~bEt9hOsr5LU_AW=H8r7e`APM~N!+g<>K2wCI3LjK&zs_Yf;_namyoyG#cB`|V&
zccf@zn7|ZVvE~1(PHO0OjP)-5-*!qv-fx0ONB?&H`?)wRw{gx{=9^C~HS}`6dPRXf
z__SG2*ztoP%l3}`F)-x`J;PfSd_je~!5#V#9Os&Rxd2Tffx(VPqdCrNo-Olw?TUht
zfZv3FpXRQ>ReK1_bjZQUH!oQ0`$q3M0^7w^T2)?z21F^p)67pq5?OPH(+92Mic>@F
zSd`KyPz;wbCtvPY3x__atpa;})g+o7v2>p+Qb-OR4-3Uv6#dl48M%t53iEpTt(U^{
zzsQMTf#@4pF$6d4y+S`GhL#~WW=P-{2Sl}Yw&KkA^v_pB6TW}{905PON5+N)1RaxR
zJ%15Les9NA0aj-Lh)G!m^AVkGjK4W;qmjy9A9-!B6y>Oo1)qx@TLR`!{bXgH>`3fc
zzi_(VvKiou?ntVLc+u@;DcH{T7q|4|b|F!UF2|U~ktaBS!-x8J3A)UH=%8uX7uS6D
zmj`{p_kc?|=APS!ugWtnR!Ikfd*7``m!i4YR+WHrM`x12_vZN>{<+`~n1g}2HzOQa
zrua>_wI|E@4Uo3mDAGp@JHtH@=M9p0$-lEp9ITy+#Q$zajQnkgiNl0vu;G-d)Nsj7
zwN|J!NLl$QcHSzDx7?l=5)g>`rtZ?%=XYQ~bAsGrAm4)kPC&800C(Cke%>*!uGehT
z@PMLaF!BOsEtkYq+W#rq+*<Sv9q?~xGDOwuigD}UfbRi8Rb@>@N&WPCy59w~(78a1
zCcaJILRjvGFRVRyr_;FcP#t_v;XLPvap-~TE$xCFIPmYa1#WrTs_4E)$pQAH`%!+S
zb#;x7)3K^LHktCFGufB3_^41wgyWz@)DD$$ES|U^ZX0XU<f>AbWA%E8y}AsH;Lh&8
z$~<Pq5;~w(s=C6qf@wG7{O$P#K)l(l+fv-ciO8(1lINy1Zt!G8kkL`nMi*DCp6Tqk
zB|&Hggo_90+F~5SB76lPiaQ=%)$%x&%!q~J0D$wJABZK8+aOW3x6;)g@7z_zY*>jP
zfWtb30|3B!u8UCH;G@`m#*=eY`pzX=bG_te;%atm1ykEguYh1^{tF`pOQ|Q@&^GR?
z_e6j%ena>^ukp;s(i}lv;|DYO<AeT0(x7WQNIsGr;V22KTpT!NF&qAUs=7G%?J5G-
zHD{vV4U&)n0MdFw<jHq4s$k$EaFj-Ohq63?&{0Pgp_&RqlMZ76C|*>B=n#8n5Bf`6
zs@869nbCDvM7$q!j7D;_?BkPEl$0I8DastF6eu0$M!F8ng-!9bf0QB7C*)FtM~^^-
z*!-W~BsdC%*l+4@?`HFyufQ8lFI^M10LmP;rvpf+q_?*>vs^*Gn}+c$@?x~64UJvh
zp)_RWX~&~Z4320FyBFVa_f_Ch|A;}On>Q<bWF~E)f-khnmUEb}JD+<#%(Y3W%Hg{z
z-=>IG^=XyeVP?>oAd|B#BsKP1q^}F1jfq9O0KvMdH7TvR0Ro1}gSH3+Iz*C1SXS9;
zK44c#4=m0Dp-%_ZmSEJ)xv<})zOwHv25;nJGe_<O$e!8g(~x9;dKD~(hYlR_sc8NP
z2iD(6;Z{O8n52G6?4$0Pq{AGio&UvD-&!Fp(P~2TANV@fmGt1}OM{8sRgB?6gf$DI
zL(4RjZDwrMk7+o*pi}E0rGavI2y=P~!%@XM5=WCA9S*dB_`jU9?4sQ|ipkN!8EhK{
z^<r95tB;~Y*aE0o0WL;NBy0|o0zsmUr0W5#G%vSj)b|GD`EGXVOR0e1RyxA~_X+5Q
zFzgA-PzUKnFXh3yzgt>!TbH#&QrbrccB_7b8;zoi)fK^MkX-<0IsbEO9EEp+y-Q%w
zDQ(X~0cA2gkmex*`SGRiQ(*q7L)Zri8D`&vZbF@9V2GTkFsJh%F98PZM8I`{8n}FI
zTQHX<Rt0ru-Q4>#-}V5w3iY@ED!)5kKM`d0*<Y}SCN9lM$&#JM_p4A&^@>k)pDa{o
zIHe11;{6tHb<w<8QqH+BT*}Lo{5D>3I|%JBWgCdG-g&OLHF|QX>VFSgX*Scxn}!gG
z5X{%oKI71Y@Ka{4h;e+NtV6QYvvo@JX6HKk&9gBmQSBhh42Nu-=pt(}zf7}NvY}-D
z(ULdmPz&x$y09gaE$@GHDMs83Oj%xVWT0Gvsdk%7gy$=d1&!Sa+^4K)OpO9(K?28B
z`(v2-vA_+qHwo2bjs;$K(B}|5{Lbe<6>>}sg5LBOP>M4iv_YC72F!|!G(l)hap(6$
zTxT+PM)PT}?Fp0?ak_)kQ_h&A`Me#9SCJ#7$m&@DtO>WG(RLl*!aW8$SpU-`%<%p>
z{_B#lH_gFE^6BJgjv`#f$IV2DWe}M5hxXxohbNsDhW;rRfb@0;_w{{z9t9f&Op9b^
z@tZbR$NMB#iW}p~)X*(4kt`e|O{qk&f#HoSi8A6ln?+A5$RemHl)<_pY|!ZtklVRV
zv;L9$^^Hh?h(C-1s~xVrGcdzwTI`KG8|8a=hx}e1^<X-b(>}FKdk4|^fPZF4C><(e
zC<-)G1oJJsDk<fqSuC_n0Lj)8b(P-_jDJ{6LdC|FRIxJs%XI~_2?V{jsDItWNCnjz
z>Y_EHy$Mkq#fGNV@smtVXs4-@N&;Jdngdv3S_|aDRrJ}-@@Zq{QE7w>!`7}(u%_ce
zr+nerk(xjo94?n`Id=0-=v!J|p%pRnMw_*!v})h+5;s_&QG)SHS><wo|Jj*}&JKQt
zzhUq-hrl`+k0dFiUB<(M!<VWY_!&PJoiO`sg(I`mpC;2H^c872gmFysB)n3#grvi@
z(Grx_4FUG~e)kwaXlcf#E(~j<q4f$WarFj$Ze^ZN2A-6NZQLCxTD1}=S~gh(Pr$Co
zKyFMmPU)zp_g20@8#d8|ehO1abfE70JNo{90>W;~h(bUAe|^k7b4T_R`bECz9)s-R
zqW-5rXM6!}q`<Es<M7I11z;G^HQSzy7Kh7+NP<qY+d#pw$Q1~_epQovF?%@nB9dp$
zo*9Simk$jn2Xhbppdg!#R{8=2*bM(*KyBW=b1qD?wR#7fYPv4mfv=r{hz#GGRt-NV
z1)+KrD=kZW@#4g<DR<oY9z<HG+#^;(x6)12o`>d2QFGWRy1Dzm5VaFX2KB!4wnD5N
z*w7+qE`qu3ai9C6f~7uypNMVop<x@_8x~!p9fs^RXSOE(R0~4n!^pk;({s{c4_%Di
zO}grl9)1;|f?WOBn*%oI&;v5kem(uaP`Wh+s=!Wos!%GQbOcW5go~#K^Q!w`p?K#=
zHXp6r9Uk!eOx%4*^!?59sX5EuxXpEF86Ym|AxHhg{M=1J9pjPM--{~=9WE4y{rs~j
z2~;9jq(SYi2WG6LQV>UW(J%&HB~Efi8n~tx?BOU+N0dl*$uipE>InBVp{GTDQ3fy)
z>0#jgh85FjNI!_uK*!{J#FMFRXc0F0<9=SeFy{-Mn%}UmV@ZEgcuizgNA<LE-A-U_
zE2&d;a*7jg`QJ1NL=vX_jqh-My<DZerFTws490AmyHb&NR!H())Y0bR3E}hPrT<C)
z<-vT^n9V;~Dd{JYQ@X*VqK>F~0}dm#m_eE2ws%ZRjF(FEa{9|Z;$e&rM{6`pROt;i
zZ+lV2>_8UTrI+nF+aVwti^{M>GRU2HW!cJl$17h9+BZ!grbe{kYanZP>UEMn3EVN@
zHGcuRgM#cHS+UDz)ZAQF#r$-WuJx(S#7-Tx3)=u~P<Q9<6=#w^N&CWx)T_Y>*Q3I-
z#6s$E5=h;ggDN`iSR#(Rt!hh)*;nU}sY-B^2~&b6+(PTz{%L$3YVKfbp5428^noy*
zQhLEP=z3VQ|0TxQIeXNat1aiF>>nOn8g26wAPUii@s$VZjt-yLINc^k%}u9|<ORq&
zQ3itcY|H_miqH79{LWUc_uU&4vJ)S=o#{+eg=yb6kdUQDIm+y0YopcGW$ETtwG~l^
zPfZF|5T&HiV8eiIABce=j2f#PYvo_nX%IgVROnkm`rjhosu^^T12Cf5QF2UDZ!MSo
z)2^%n2ZZN)C#;OGBEpA>`ie~)LOVlKG`HUsm7P(UX|tr+Xm`_G77q14A+L8LEscl2
z&9QaGxx_63Q|_ub(QX|v_D4r;0$hVk;VA4`R8k2AgjD&0HGU`bjMuU>0Bohj4r_4z
zP06tS(-B!ONidz%_t=URq?fIL5A4(B8HFinMj`OhGmc9h|GbA@LwL$!J+O((yz=v3
z)cZE_wH%jg9jc{h#t!y!6^`Ui34(8wX21luXQg;mm%@U*3Z$MF$D+%Q^pdyrjv(VO
zZ{dUlcT4^CYf+^GobJ+30vaMc!sHS1>0!cpd{u%8HLUC?q3H^?x)~`VjovTXM2WmC
z3jwtc$(s~RjNpvK4lGxk_tOjn+TlTTSOLn$(PDm`y3#bG50Cp~fa`!f6c0vBPp(@v
z4MO9?BlP37QBu$?&@7jW3gZtCA}Xb)gP|7lkH9FXkERxy=Y_45a9-^6l|Zd>9%y(7
z0yH9*!|9Hi#hNMpPH4gSA(yUXcp5O&#`4ODE9$Lvo+4%WJp+R1Ty<QWwz<k1rj;57
z@;0(yZ1Jn>uF+LU=xXoiCq!U#R_kg*UKaDn^@zVy<y5#@*~kF-bUJ=Q+S(i_A8+-&
z*O0prm5xNd9B(Va-C%@1jMRK<0J9u<h^ZZhsBCM+w5FZuWE->fz>4z-C3aq-Xm0%R
zM^jV<yNOg`D~RdEpwyN^>I^rIQ#9rBCI5JAuwoqttU$5d>~Tn4ow6NJx^034cMV^m
zw|3Pw)0FB>xY%a4(|T{8;H6AQY<e;>`aM1SjpM+~#=45qHJ(g=kL^P8-6z}7B-e`D
zeJ6-Y)+77|@SPUZg-P-PE*8qO<x4P4R_2yIc6JF0N_@G=ch+eAS!pzQ<-$p?!&k~$
zp1Nc~@@$oTws6E!`9=z8bL|bS^ZFs(kMy0`<99)Pcz|H<eeyQxUd3*Kg1PbfsId4i
zTT!}Qp}xEm*Fl~P`LsnjUs<y!F<+Nql@m@J&#ceJJ{eIf9;$?5@J%ME$8vcgpm|Z2
z9S)~Ov(QllEV>3^k~;#qK$?&K*VU^PfT9_}i#~$aVz@ERXE$d@Vt_8D`AdgIuClfj
z?+LLNhS?qJe8jZ;FoWGLcydOxQa30b!3K8v*zkDB29MmAZVQg|uoJ+0i(B7<(9|F3
z3nm-nxHQcGXZgLCz=j#)^xX4&{lY#}1&?P)2PKW+3`sc9mIHMXDin!++Kn!A-7Xct
zg1Tn@N5aD|ifV<YhR%ypkSCscF6(?%`sA#QENAjLf?9+}FrFF3(GjE1PhO!|+RLX*
z>PVq3#ERoowZA57T<a&)oEoP`>v8}1+ie&F@!bD;q_!gLp)sw7_Ttv|8^vNXay>(}
zlF->(?%R!xwFe^f(fW=1G9{we)s7pJ_Rj5oZy7Ft;&7=S6B8!5;BLyTEj&Cq0bfIs
zM*;H-isb|T<h*j7nX#3Mlv>pgtZ5HY|Lj#hX9W4sl^AOts1bg|XT+^ZpY+l!FNU%U
zvSR&FzSWN-b2LMSdhUFrSf09l{%2IYxs3gFEiypnof+R1DI-M4MkL4S^k|FnHffm9
zYlq8=-KUxNR{L)b6+>&ga+=0pwb_n@gFl-n`pSrdekQPrDN@EJk0bl~ve3y~Dh@y_
z<=g?hTm{UEcw&36mf>fJI-2>5^J7fz_tZTG)l}Y_`|06hy~;yJ=i%q!-`Eaq6b!`D
zcsGYW$q9enTq0|aIgbUyBU|yJ5qtwvm7~lj)?1+HW|to<GJ>&&L%qBv(xg7}IktF!
zP}I{aMRTYlr+Oh7q4=H~O15wa7Y+MNew;}F(zArbGvYDt%>70F8jeuV0uUc}rax<|
z!`GF0oR?3qR}Z!sD~O72?Ad+v1!w4Nr3U`m@H8O2qgkj-3o@%^5flv){@0CQ(tI=U
zBPTC!x`0;XoGE37;6gxT5CtG_0-9l~nM-b0<w%`o*Vh%0-_f7VX>DPsT*f}GHTJFk
z!>dluOgclxXBl*;R6t{?V@F$f<xLZdntWhYkPmNJIU2f!^_~_34@PTjc1Khh>+DYc
z3lfJ;M`LeS^lWsNhVRWxy@Z@{SRH*gdOb>o2aD0?24@c27aUfwa-?Mn+~EMwGgQn^
zCZ%kvfrrtx_~e=<&_<PjjMEdPLdhZfmJ<@lQ|}!fq~vU4+$4QD|1<|fBBzMtl^3kH
zqU#;quMwPPpuSRYPtm@UYpcui;L+GVIH%PXf`mQ=*<e7EAy5vJVjY<x-?U^Xzl3DD
zjpevqY5}i<XqZL^LZZ^<n~2vm4!=YtM-w%W!;~RVorLXkF$oK^miH&<nq}!-%m6YG
znm+Auv9J|f|5*+u#LJr3aqj@oX;}ezl1STk9&F)c!6Qh<FTxen#M8cI-N!dWzmyW=
zie}E4tTJ3R=eQCNYq-d$MDGX6y(^$L*pxU6vu!VRj4p)mD*FFYm5+Z6g|}cVf2>8B
zVMW*o3&2%3_vj%KrBc0Os(oI}SBuSZe<&UJE=9ehi0!`j)X*Rj){Wyy_1|wyN_k;j
zEYRW@CAd=L2O=cLKV7IEa>=><;Cm#=ygl&iHrSoxl!d0l{!d8AFx~+O?sqHB%nA(y
zeJWSnnvj)Yi|}`E-}6=E6YAR!0N&HQgRD1OPJF*Fk1;V=@_K?3`{li80+0`uLwKn^
zvZVnbhRy$KNYicd#SD8Edn7O^oGO;rH*}AC+71oDTg|NK9pb5mODwYQwY1!8<y({W
zJ!h#rL@KVS30+>~^SIvd)lDWRVQ{I6eAa+bZghwTH*OQUIg9K_Ma5d@*ew@R%z5V$
zS-DOrLg3c;FMz%|7s>lUG|qB1g8bspuMwM@`v_5B(0jJcO}1&t`Oxlt2_D8&qANos
zO9##RH04;mQ+7<+*{>ShA8~UENWoKCE7W8o#aiOIKCVBiH|!Ya!m0g#o6BAWJ`0O0
zJDb*7(mF!QIv8SFjz)Sp?KQ4&J?OO)%)}X0jdbRNR8m7OfgMaOKW>_oUkY|!EcQrp
z$OZm~C=9Ij(SPDR-~%1gLtO-mhkkvbmPhNa*L?Vi?McG9nHPmVdok-p9b*ak^ODKx
z1KXcqTJ?QqR%f>d+_mMB<U9Iggc^e-UZ-ti(ik?Sqv*q55HGkUjDF&?dN)1?DR%y;
z+mt5P`^-?@IOr4|TRMkb_Z;90nxJwgztj$|0o6n63FZS%D*^j_Mtz!gYOGDcl-T(u
zghDdjhofVG8Lr7Q@bi#gK`HwGNlwS6TWeN`#KGxd^##X`#KMPgu%VbS?hW2Nt%b+-
z@04XRG*`iR?CbMX)7P)be{N9`i$8*b(Du9-;z5?Oj^+F*AMX)BtJlTB({-EIK>-;<
zHJF7b>)z2mRGy4eUS1$F(k)mmZ2}CWCp3ZX!Jt!1<9|Ym79FCi+uIw3?+*m-kRv4M
z#3aqV6zs2$bYlEW(}D%dPKjT94NS#PA$L7V;Z`|~e=Aw!xZJ{+%y|&DbFg^d-Llu-
zLEUJl8O&#?NWlM|nI=g3kBY<~pV?%+vGd&VOez(sENF@T7du32T{3QeT-nW|kE0{z
zv_lrs_sQA6X}+{w6}R|~9Ue@m<*Osr^@ZCv18k8pcrJJjlI?thKaf9~7R!~3Xc}j8
zQNO6ek#8tbGn}|s5)RaFVb|9g8!(PT$7;g%l&8Y(B$&!W2_hDvh%dIRX#Ez^S;x9~
z*SoEeGUeCedcs`Hu|*W}ubgN3gZ&aYKcCUZF4W;}KYZAm%yb|(s5#ooXy!CtzfDZj
ztJ|4U%I7cuP~|$rUXTL_0K=)ADy!wQH;lAPJpAzc@NuIe&!fwybo&gt{H+LvOCQ0c
z+!orf8soG+RL|?Ek8IM^h#)Py>=9oZ=Qm@MmS9zP+~GX_zfOEW6px4BmZ|SL%oO28
zIxk2H9fk^})IxoCvD5&T_hsP(2$VCSaTZMO4Z}+|{NF=eXBCSqIW;#doAuYOq}Ccn
z!=}Nsb<h_oY7&lRrsz2=QX3i(NAOh_JqT}!GCQ+2h#ND^8|;Afw?SSRL#{w7Ou4<a
zx*uSYW#3RlO+!R6i_ZfPT%8imV9A$z{in8+3a9e*#n;>0+LtO+g4qD|uFh&g=`c0$
zjMdN+AfEY9@hOk~Oq)L67Ke_SsZhUBL<83=j;rq%KZ5IHwgDe${g;FV$2A+nt7jmz
zG@2*idQ2^NQKXD6blUNQxn29SA4%x3Tvqr1WGhkn!A|DwoeM@>Faz-C-N$SCI1(7n
z7{QZk8evO7$ZaG78>4pB`53=sH1Wuy6^P4+z_yO>QsayrA=2JDF>$~Pceat8<|{N(
zrj|4q_>`z305fq8$NTWH#fAF|D8)_gS$2)NQpUXk&%F^?D}q{%EWTW`=GZ}eNFY+W
zTG^^)961CLOeAI*m6$d;kzg_3Qc-512eMbE2#*NeV~a*b`wO6rqdzcQKjK8N@Wf7!
z<glZ0^p7_(>YT`ZrM*9{@dCN4TWYEKW%KZ3K~l;(;^qnWuq&ak6x5J@%0V1zV?<#i
zK!maTAyNNft{mO*pFH5ZU(t)*=_VD#Ubfz_Ur3_p0O@r1sGN0S@d%^G6?dOB%D_L$
zbxY}eO}Y8_OY%5APueu$S*}F`?A-vkdGfjkMx*%Oy1$&nXE6SY#`R_Gx8m~bW?%4P
zGrPUL?{D&NHpOQNHF29?mKerCGC0M<kM-j^za}gtMO1L^(pIiZx!zXAfV}|_Rwb0L
zHJ1z>MhoGwZOsD8mG(|?!TcbVuGnfZ*@NlG146vG6ug_vi>DKH!n47`&W>16MXibu
ze&^a4GP?K{RQ~}12x6Jr;VFRUVTGqI?l(Tp_Ml>@j1o6HW}!&_Q{BgFebUOy3E}7k
z`{n>C!KJRk%2deUsRg1@xs?r3P~GD)TzQDuOi3SE9+4KH=u9MCl4ly(hdftvq|yor
zD;>*br>(z60L5A0_rrYJmmmq+524O=!GDVL&VhQkHudwoaE&kVsz%bH*6<l#fl4We
zhIG(X(ljV&28=B~+c)dgK3t3V+b03%tZRSvOa$Z^0-$<$20&gV<hSK?EZ*A<R^a0G
zsVtIao=$v~hr!;p`PlA73BUL3hJrfiZ9C5253he3Wkb2veZHOPbk>84^`W1Js)Kx`
zkSGKn{sp<Wz|$5hQ6Xdt`_?1k?`=>kT_u0AOmn84$Dp8+4^l&mVn=7EoBhT3Lx@`a
z4Q)*L5!oJ^gch*UADbh32rL)5aH6dgm(KDp$<90~3Vm0#jjJY%*Fl~UD;zw-m^yTk
zcrXYl_za3c^$tY$1TMsTL;kAIKqC<Q^X_}|a$V5P5!g2oi@%8<y|2v<<<sk?LX6aa
z&6moqX)!Oila)y7GE`*kVA;WMom_HmgmSlJqLEek#U13A;uZLCs$%Vr<^8}>p;R>i
zT+^!Z;0+|Nc`LBR7KpTVA__H*(PB3Bq{AKPe^?%<m>i!Gs>DiIsj-5t7o(NoUnQaB
z+W-{lnKnMg6k37*L*lPX^07CV$G_Z8yQpo8pn_k5*?6(^ecm6bq+33a^=F0mhARac
zpF@bp@IecWy-KSXT-b&FUe&HEJM=KDniFz`|L1!3GRCP;{Oos8B>fm07ibMc=m19s
zG{pAZs;QE}0u*0dZG6_DRA#ybGvj?$PQ{Xg0H)}}px8-L=)RN%y#am$fYAQ1LH3%=
zOJZrw>Rn(hfm})&9@v_oYQ<a(CY;0~%TH>!!(jcG=7dnFVYnZ^>3t^A<o&yxe5F9d
z_Uv6W9tn_QDZ3}-y(QT3g}L~yuoo#X<t+a@cpYn=p`$rGXd;4Ux6AS<M*ZS0<CjOy
zy^bTyPgJez`T!o|EDkfVq%;`g-Z;8Inem#u>tF-yl*wD!8ge-Y@#GpkL`O#Wu8WSi
zJi8X{Fmlr~8!^M54-J%=H5?xfutRfRy0s+u2i)DzextW@!PFk}bXL7~T161k(96S0
z;!H>ItO#(5LmvofifUg)4Ke+2I5~iah7|hZLi|-F9kYC|-dEs3CbmNpoX}**RZmCN
ziYoT!=XZTFl*RlalMMk`Mp>@=$_QUdxsdSCZQLpbrvUR)%aW*ZLp^1<?AXB8B<`-R
zXdK7~KR*1Q*4Q{Ee5}vJ4XVQCU8&|?sk)DT*1rp^)bAo-h)CEI=&UZR5F48XznQO%
zjk(M#zNxZ`b{Y%Ok$Gp92j&}4d^o6gqa^Q6ZUSGYIc5+zN^|MZ{;S_tiPKf|!q|+R
zH`<uVkzFb;o<}#cxNkoFmXR}0Y{3$|=MopoQ@WFT@vjnEauEX|@=Qkqj<wJQeVnjx
z;#W_SwP^(0gh%zhenYi~iB$l|X_z=OIwLFMg%_jx_37z%u4(F7mJ^wO^MHvZ%V!nH
zP~3`5e>>+~9s_#odPi+!PyHI#SKR$(6&}}GRLn>NEBVD)9e|aZE&Y4rvy)LH){%WG
zlc8EHIV@wPf}R%DfBW~Awg4QB7Yv^tqbRiQK;1pUh_M^|)fcL52tXA&M)UQT>Enr{
zT8e-PrL1V{FAGPDPXbie(idI8rY+^v^#g|8my72kA@C|yFf;f)Mc$s=8u*ovVaV^q
z5x*Er8EjB2P0^K0S1Cwno~XU2C(xt*4;|h8xI9d&)zHNZ1DTcULKb)MjQ95UsSY~5
z_RsP-3T36KR&1Jc9U4ue4hbEj*>-x;{-RV#Wty`n<Hg2|hbl~%7mJgIsr+I*$?&`W
zYA?gQW68(aCvP=RQ~n}It^Mu@3L9X@nI-%OJTf<*W&V`=-z-i>kYpj8{CpUO@(nF6
z$5z@gYHmmVRfwYAj@4)Lc8s6HZa{&~2WgzuGTzq`9H%oQyLFeHlK#@j;##D1o7~^o
zN_maMcFo9rk%<QPvrT+r;;IsRdvyUhP85<@{~%B({sqMy1rp?N+NTASmpr=|GV0Mv
zxY=z3Cn;b*&%^fj$rojDD4Zjr*gY3NR)%05+YU^k8Zej8O%J&4hiskXX55E=vn+#q
zN_xVqG{0ge<gA0mz~~dCNLM-1x~Y)g2KZ2_x6z2$2a?Ab6sRygz;BaU=UzrK0~XC`
zp!+%BD@bv0f@`ksIwKvj&?_~pT=#z6&aT^~mIjbiRe7JL=pId9wZI^}G1`Uvqu+3l
zSlcgx4d-<<mbcK^o`eca?b?3V);j=tst5-vpaAV#o$e!yR&l0o>WEq@4D;928^Ilc
zRc?lq{jCcDVq?&Q%?PjqONFJT#|umr<5)}}hGjTA3`9-3rNK!xSM|c-%1+as5}H+f
z(3P}D2|A#V-B=WFs<)Cr7|lOE8b@YLOJ<m)C%57*F=^1iKJ|CPW|>Kq({>@z$cuNV
zRm5Be-z1-elB3sz9QcIqPQlTtP}x70gByxO$Tn!u2|N}=vw3(CKl+WP9or(UYKsQV
z6g%;Ni81c$%_L9Rq~00-KvI;jUx)e9!<m!dR#{~UwN`Ig%K7vXnLQKl<_<g@Cdo!s
z*ngs%Nf}-K8$e(z(6+hzbtof9{Ojqrn5BxhesRK)!XnOps{*KPAT4~{a<Q^{z}}mP
zSm5oR!IPqdT~Ww`f_7nM@loX%h8Le_5e`$uV>Whx+Kpch7>Qvwh`e-2B0nlw7KpZ)
z^m%vW($T}yFI~YlS^O*(<>xKu7w)pe%~YM}3+iBp$3nQcT{oED|9A`I*hgtJh+hjh
zR&I3u@M5L_Vru~E<<4Z;H13N_i~~Z^fy}N5Vs5jEi?!ofoVXCKDRx_GF`EnybBMl%
zqA@?^BVsRx{~S);CKD_QmXbs1J_T(t_@Uzy^C`l%dICNSxS)nu{+k}~=*RpW8aXI-
zHCS`jkcVY^ki$t}Jb))ya3FP|Z}p0;Y1ahv#8NdpqVL>fnA=jGlx#>2oOK0LD_`Dq
z?K;p+t{w)Tc#M6qCmWI239<gSSmFZ8#&>$wF?|@?cU;PU;}5iWc70IVDQus}?k{J!
zjX_WX0UTe_<zI*W*gC7l(ei35Y~BdXMu&Zs6uZV?v-kd7CMqTIQ<-OmHJ#bar$*R@
z>LCxX`ofsga*2whxk#1P@D=K_aEJgA&ZEeW_|Gw8U!f)9jG>>*NpG_?liZp!)fV_g
zZ?h~M0Zp+#<`VxCOd}sM&r?oR>V@qGRtJC2^elWw?TZ_Z&~7Y3zc*OmKIIo4*$ySE
zD(V@Y*oW;kkA9>H+E6T$|F6Gy>=klp=N;<xR-afW>|YpC&>{2TTxIYIC{pr~W7Q|M
z7V7d){X(OweqdN5dCu>27Gn?85c1*ei0Ixn1+P3}^U04tM$lzR&V3S*bkA7+8}j)r
z_oCd`0*l%H!xpFMuB+lXFZc`Vl-PgJ2ai2%@exnD{7BY<Q+>kza^|_M7YRzdRO?bb
zoxTIAx)a8<><Q}(=c*H(jt9o!my`izDa%RS<Rm&q739l<*+P0EhL1sibG3w0im3p+
zJP$FmtGwygwiTw@P#~qn0{LAcBmCIbV-+Z{t|u@3{awJvJQo7pg5o{SXjAoex%ACg
zly~LZhioF#7#4k9NQm}BwL|il0d3GHAs_0Z>96_UE|u>`O1nu*;U@C>i5H`|PR3l7
z?HBLMz;S_wLhIeL*_pU{bVG<Uhno^6>_ka@oQ878bXMm~dH>Z$udxzX^8L1P2NLNI
z^>yKL7{`WK;9}PBLk6wh>({q%92!ZXvq-mII7shiQ5u_)WYQjV(TmdS;D9mfRs|Tt
zKiT<*bm+94=o1=#G{P{8+knm&dED4CYs%8)`6T?e*YW>n^qM>@P+yX~CCC(w83!`7
zi6+E5GGutOPC)3wm{;B|AceR3x1xh&Gx68BEy1T>x7JyKC?na?2C#L>4M*$bhIbl)
z&9|j&2Y^2}9AP^OX?VcQ2OvRev**(~D{zw@e>)Z}6x6wi^nE*-jjx1!HX&SdbHmzQ
zpn%_QvOB)+lm+z(0{_rJ1z3{_u%teB^5I%Htv+10mK2*JX3NeWYgnq^gTA#Pj5ou;
zQ&~Bmu83ns99;>_C35i-g(>Wsw&unrm^O6g#UEA^;O~Mytrd3nnYbbv=IW<_u{lD)
zpNJ_;r&`Mlsd~fiQodPSa8H@nU~;K=3(HtDJW#0`J#+Gd&JJc*YLs`HjD(uBjQ9-p
z=cy_eg0Ki+V6KDG6I6OJrrer2Q~}A3f{AMAbCmcmxsDGR6?CVMK)=W+FWJ<F`@^Nc
z{x6>@7@G&zc%%V1A)pDDI98J9LmZ-aWMuwXI(Hss;%y5<L-^%(#$PzL@e2!w*G8N#
zi}amn)7`W!%6Oai9aB%eASxaF8Tk!EQ0eX(27jvLa#wJlale7|SG}8uw~Z<~cI|-<
zSSNBlgC$F=%QblQ-;abh00&22Qf1tbeMY#(urf9$#Ssxd?8Q3dV|<uKB~tU}+lK*M
zDQn$o4z|^PydV=w4md0erzuT<O+qXt<@QM+B~)LS63dw>Z0zR)wkb$$^8MROsh))E
z?%7N3h2HESEXRk0J1z{azG)x&RkgwDxBPqt0vyW_$IRQ5N&qeElP`<AUpN&T1tl$G
z?lLd_^)j$(v`O%hjt&DUTM!wIGN_lML)O@Y>mTy=cJVE25%AZ<OXLfZW6DNL9j`~o
zn}x(`2*R!Yfz5JRtZ_<^8VPOpv!~gO=$vrPc|wd4klG#MQ3E5}r8s>wH-9a_Lg`jM
zx|d}4TcFOiEOUmqKa7CXwH}c?0}6F28xRUZ17}s-WSML7GoB&0W6x3{V3%kWa<=Ol
z`5-WF<NP&udai9qE@bllqZ1HVk?xwO0jKID2HvfQ7SVwt%Upf9f4wTw)ENP`Fj+Pq
zHWA`xk{m4W{tP^agc_UabZeo(*zRcasB5IjfL0Ny)v{bVFA_4h!XA$!m~lblPyg8N
zL<N54?JbfZrbI{a$iUQ%*F$pa4%8tY6}*<Y6@DE|RJk9m%|}fg>(NZf0+fJQ@{~x<
z3$1Z04LcH>IJ5_q>XxSB|6{3L2onYEWeDt*W7U|TPb*=WBA);2S=v*8e`Q^C;xY_u
zV7NOJo|~LF&vdUkln^5BLrD!@QaEtRDk>f_-P#L1)OjU6oDDZNJ3aPtr%oC20_G67
zSCxxib{5>KhLS;+dIV>fbH-zS2Lrj_<t})KP^HU!W&krYE?nk~ND2G;Bn~YIoMj`l
zKgkG(l-+S6KhT2?T@)(-VXe{aUweXfTzM#s==#n?!=32offm0Pr>4)swqJ6ATq5v0
zT5)b~n54z=jO$;%g#|}jZ=+<m{z9WzJj?3Wn2bV^kt#DP!a(PZWoEB>br|CR<Y4Ls
zk`s~%?$?-=L@>so1t&Af;@}|tZkfEiegfv{!!}IBx0+@zc$%3|!TOm!B%P@Id1lS~
zK%3f68l&nXDpg_%_jWh$@7>BB9VTGqb_~M!*arNBB}K3F;|#zGPUM1VoPYf#_xdq&
z^~Mp1b-=n;RZ|U93F<nnri>Cp4Mv+*wLIkW0Zbr-qeLsK-QUUHD919OUa(HLn1z!+
z!C|r(Qz5XP#YEND3FTWHPBJ(&DwzL43T@Yd`2a`f$}5Gr6r2CU-D&GGYijNSt&D>$
z&#r%0NfkJ&KU=TySQ5GEX)9#*NI7el<d2)=H1g7VsE{#ksdTTgY%jBx$v*=a?Q#aA
zWkEoCD02kKX`&-4_h!Ko5h79+9covBYIymHjETB6bhT^kW+HZiMBB2S)dKO+JCDRs
zgG74YW<$Q3Z9$&{NBM0}_}2UFMCDPfSCy5ya=!RKAdP^-tXPHHR$zzu+`_aMxhgdM
z(iSQn2~CT>+1sDI9$)@X3cZ87tbKHmX}VseC+eQTg_5_4eB~zOt)W7Q1(j>@e}>DT
zKGx$0?x)VZ(mHMx_4ZJNu{PL>K5yr#=XzK)+pJ;c_zS_q(fgI{<UO*4F^yo4gJg%N
ztaB0+eL~587=K648FY2FVrLu4gxey6{z#-xJ{!oF+J65Lu7(7sEhz>PFNc-yRGxNJ
zB3u)B{549yZwtg^;4SZ;L$>i6Pz5_hZwef~^9%{`{m`ONxz^TAW3~M_0zft<3>9xo
z)Y}Ic=fZ@Dlh1UmJqKfM6x73kUhKJHv%Tppq8mGz>{eyc)>R9yQQT??ufLDuq!{&d
z<YWHPy`;k{B4m0u)}e3D<J5CSIz}y#Co>#Gq-yctV8hTrvJ^7x5UJ>QAC7D2Q+NF1
zBg&qYEoh{-$=vB!C%-@iGId1cJ)iza!<L;)2B52y3snqj>=3}XR4L$9;#Egv*f_!E
zDiFxK2K?620>|{06S2?oLb3tg*T*RSD-4HNPCKg8#dPpR1><U!)B9)Dc5xs`v;f|H
zJmGMRv#rjt_=YoH{_qfJ$ES+!J4b@!0iPTIh?aw!+?TUwe%12snp^PPj_y_aRRX)l
z>Wi1iu$BzZO{)R9EYlCfjPY-4U~47>AMb6o_da&UCF{V&l;!hDmP&<0Z?K-Hh#Cws
z`WLW4F=4eU_$Ol7Y#5e6B24N;qP<ABcLZn*kZ!w4-7n%Hx=}iGX*6m4cMcaoSEobW
zqQ?@!bzY`&zY>xEpa%aa-g}?#cKnUE7~KY-y12`BakVI@YuN1vMU^h2q%sa%my{pN
znN^gM5emA&GTZrKtFc*?=GRRtwvnF!W>y0YF%0D~YRkdn%lG2r(m_M_aC$0;<-^ji
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

diff --git a/wiki/src/torrents/files/tails-amd64-5.10.iso.sig b/wiki/src/torrents/files/tails-amd64-5.10.iso.sig
deleted file mode 100644
index b0312d23e6d..00000000000
--- a/wiki/src/torrents/files/tails-amd64-5.10.iso.sig
+++ /dev/null
@@ -1,7 +0,0 @@
------BEGIN PGP SIGNATURE-----
-
-iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCY+y0XwAKCRCQsrS9eu0j
-X90pAQDjNUkAWTMy+STU98AX/dhSmDQx6lgH6EAU0s4RywyOyQEApRbKQuk8jfFD
-FU5wVNEs0ILDuaHZaHzx1kTgSRoXJgM=
-=0qLq
------END PGP SIGNATURE-----
diff --git a/wiki/src/torrents/files/tails-amd64-5.10.iso.torrent b/wiki/src/torrents/files/tails-amd64-5.10.iso.torrent
deleted file mode 100644
index 7995378b8d9356f38801561467bfbd821eb84761..0000000000000000000000000000000000000000
GIT binary patch
literal 0
HcmV?d00001

literal 102065
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

diff --git a/wiki/src/torrents/files/tails-amd64-5.10.build-manifest b/wiki/src/torrents/files/tails-amd64-5.11.build-manifest
similarity index 98%
rename from wiki/src/torrents/files/tails-amd64-5.10.build-manifest
rename to wiki/src/torrents/files/tails-amd64-5.11.build-manifest
index 75b6ad759e7..a074a10b85f 100644
--- a/wiki/src/torrents/files/tails-amd64-5.10.build-manifest
+++ b/wiki/src/torrents/files/tails-amd64-5.11.build-manifest
@@ -1,9 +1,9 @@
 ---
 origin_references:
   debian:
-    reference: '2023010301'
+    reference: '2023022701'
   debian-security:
-    reference: '2023021501'
+    reference: '2023031802'
   torproject:
     reference: '2023011801'
 packages:
@@ -31,7 +31,7 @@ packages:
     version: 1.2.4-1
   - arch: amd64
     package: amd64-microcode
-    version: 3.20220411.1
+    version: 3.20220411.2
   - arch: amd64
     package: apg
     version: 2.2.3.dfsg.1-5+b2
@@ -259,7 +259,7 @@ packages:
     version: 2.3.3op2-3+deb11u2
   - arch: amd64
     package: curl
-    version: 7.74.0-1.3+deb11u5
+    version: 7.74.0-1.3+deb11u7
   - arch: amd64
     package: dash
     version: 0.5.11+git20200708+dd9ef66-5
@@ -281,9 +281,6 @@ packages:
   - arch: amd64
     package: dconf-service
     version: 0.38.0-2
-  - arch: amd64
-    package: dctrl-tools
-    version: 2.24-3+b1
   - arch: all
     package: debconf-i18n
     version: 1.5.77
@@ -326,9 +323,6 @@ packages:
   - arch: all
     package: distro-info-data
     version: 0.51+deb11u3
-  - arch: all
-    package: dkms
-    version: 2.8.4-3
   - arch: amd64
     package: dmeventd
     version: 2:1.02.175-2.1
@@ -421,10 +415,10 @@ packages:
     version: 4.8.0-1
   - arch: all
     package: firmware-amd-graphics
-    version: 20221214-3
+    version: 20230210-2
   - arch: all
     package: firmware-atheros
-    version: 20221214-3
+    version: 20230210-2
   - arch: all
     package: firmware-b43-installer
     version: 1:019-7
@@ -433,43 +427,43 @@ packages:
     version: 1:019-7
   - arch: all
     package: firmware-brcm80211
-    version: 20221214-3
+    version: 20230210-2
   - arch: all
     package: firmware-intel-sound
-    version: 20221214-3
+    version: 20230210-2
   - arch: all
     package: firmware-ipw2x00
-    version: 20221214-3
+    version: 20230210-2
   - arch: all
     package: firmware-iwlwifi
-    version: 20221214-3
+    version: 20230210-2
   - arch: all
     package: firmware-libertas
-    version: 20221214-3
+    version: 20230210-2
   - arch: all
     package: firmware-linux-free
     version: 20200122-1
   - arch: all
     package: firmware-linux-nonfree
-    version: 20221214-3
+    version: 20230210-2
   - arch: all
     package: firmware-linux
-    version: 20221214-3
+    version: 20230210-2
   - arch: all
     package: firmware-misc-nonfree
-    version: 20221214-3
+    version: 20230210-2
   - arch: all
     package: firmware-realtek
-    version: 20221214-3
+    version: 20230210-2
   - arch: all
     package: firmware-sof-signed
-    version: 2.2.3-1
+    version: 2.2.4-1
   - arch: all
     package: firmware-ti-connectivity
-    version: 20221214-3
+    version: 20230210-2
   - arch: all
     package: firmware-zd1211
-    version: 1:1.5-8
+    version: 1:1.5-10
   - arch: all
     package: fontconfig-config
     version: 2.13.1-4.2.0tails1
@@ -655,7 +649,7 @@ packages:
     version: 1.5.23-2.0tails1
   - arch: amd64
     package: gir1.2-javascriptcoregtk-4.0
-    version: 2.38.4-2~deb11u1
+    version: 2.38.5-1~deb11u1
   - arch: amd64
     package: gir1.2-json-1.0
     version: 1.6.2-1
@@ -706,16 +700,16 @@ packages:
     version: 0.99.11-2
   - arch: amd64
     package: gir1.2-webkit2-4.0
-    version: 2.38.4-2~deb11u1
+    version: 2.38.5-1~deb11u1
   - arch: amd64
     package: gir1.2-wnck-3.0
     version: 3.36.0-1
   - arch: all
     package: git-man
-    version: 1:2.30.2-1+deb11u1
+    version: 1:2.30.2-1+deb11u2
   - arch: amd64
     package: git
-    version: 1:2.30.2-1+deb11u1
+    version: 1:2.30.2-1+deb11u2
   - arch: amd64
     package: gjs
     version: 1.66.2-1
@@ -1684,10 +1678,10 @@ packages:
     version: 2.3.3op2-3+deb11u2
   - arch: amd64
     package: libcurl3-gnutls
-    version: 7.74.0-1.3+deb11u5
+    version: 7.74.0-1.3+deb11u7
   - arch: amd64
     package: libcurl4
-    version: 7.74.0-1.3+deb11u5
+    version: 7.74.0-1.3+deb11u7
   - arch: amd64
     package: libdaemon0
     version: 0.14-7.1
@@ -2644,7 +2638,7 @@ packages:
     version: 2.13.1-1.1
   - arch: amd64
     package: libjavascriptcoregtk-4.0-18
-    version: 2.38.4-2~deb11u1
+    version: 2.38.5-1~deb11u1
   - arch: amd64
     package: libjbig0
     version: 2.1-3.1+b2
@@ -3382,7 +3376,7 @@ packages:
     version: 247.3-7+deb11u1
   - arch: amd64
     package: libnss3
-    version: 2:3.61-1+deb11u2
+    version: 2:3.61-1+deb11u3
   - arch: amd64
     package: libntfs-3g883
     version: 1:2017.3.23AR.3-4+deb11u3
@@ -4330,7 +4324,7 @@ packages:
     version: 1.23-2.1
   - arch: amd64
     package: libtiff5
-    version: 4.2.0-1+deb11u3
+    version: 4.2.0-1+deb11u4
   - arch: all
     package: libtime-duration-perl
     version: 1.21-1
@@ -4561,7 +4555,7 @@ packages:
     version: 2:4.13.13+dfsg-1~deb11u5
   - arch: amd64
     package: libwebkit2gtk-4.0-37
-    version: 2.38.4-2~deb11u1
+    version: 2.38.5-1~deb11u1
   - arch: amd64
     package: libwebp6
     version: 0.6.1-2.1
@@ -4902,20 +4896,8 @@ packages:
     package: linux-base
     version: '4.6'
   - arch: amd64
-    package: linux-compiler-gcc-10-x86
-    version: 6.0.12-1~bpo11+1
-  - arch: amd64
-    package: linux-headers-6.0.0-0.deb11.6-amd64
-    version: 6.0.12-1~bpo11+1
-  - arch: all
-    package: linux-headers-6.0.0-0.deb11.6-common
-    version: 6.0.12-1~bpo11+1
-  - arch: amd64
-    package: linux-image-6.0.0-0.deb11.6-amd64
-    version: 6.0.12-1~bpo11+1
-  - arch: amd64
-    package: linux-kbuild-6.0
-    version: 6.0.12-1~bpo11+1
+    package: linux-image-6.1.0-5-amd64
+    version: 6.1.12-1
   - arch: amd64
     package: linux-libc-dev
     version: 5.10.162-1
@@ -5701,37 +5683,37 @@ packages:
     version: 4.1.1-2.1
   - arch: all
     package: thunderbird-l10n-ar
-    version: 1:102.6.0-1~deb11u1
+    version: 1:102.9.0-1~deb11u1
   - arch: all
     package: thunderbird-l10n-de
-    version: 1:102.6.0-1~deb11u1
+    version: 1:102.9.0-1~deb11u1
   - arch: all
     package: thunderbird-l10n-es-es
-    version: 1:102.6.0-1~deb11u1
+    version: 1:102.9.0-1~deb11u1
   - arch: all
     package: thunderbird-l10n-fr
-    version: 1:102.6.0-1~deb11u1
+    version: 1:102.9.0-1~deb11u1
   - arch: all
     package: thunderbird-l10n-id
-    version: 1:102.6.0-1~deb11u1
+    version: 1:102.9.0-1~deb11u1
   - arch: all
     package: thunderbird-l10n-it
-    version: 1:102.6.0-1~deb11u1
+    version: 1:102.9.0-1~deb11u1
   - arch: all
     package: thunderbird-l10n-pt-br
-    version: 1:102.6.0-1~deb11u1
+    version: 1:102.9.0-1~deb11u1
   - arch: all
     package: thunderbird-l10n-ru
-    version: 1:102.6.0-1~deb11u1
+    version: 1:102.9.0-1~deb11u1
   - arch: all
     package: thunderbird-l10n-tr
-    version: 1:102.6.0-1~deb11u1
+    version: 1:102.9.0-1~deb11u1
   - arch: all
     package: thunderbird-l10n-zh-cn
-    version: 1:102.6.0-1~deb11u1
+    version: 1:102.9.0-1~deb11u1
   - arch: amd64
     package: thunderbird
-    version: 1:102.6.0-1~deb11u1
+    version: 1:102.9.0-1~deb11u1
   - arch: all
     package: timgm6mb-soundfont
     version: 1.3-5
@@ -5816,9 +5798,6 @@ packages:
   - arch: amd64
     package: util-linux
     version: 2.36.1-8+deb11u1
-  - arch: all
-    package: v4l2loopback-dkms
-    version: 0.12.5-1
   - arch: all
     package: vim-common
     version: 2:8.2.2434-3+deb11u1
@@ -5836,7 +5815,7 @@ packages:
     version: 3.0.18-0+deb11u1
   - arch: all
     package: webext-ublock-origin-firefox
-    version: 1.44.0+dfsg-1
+    version: 1.46.0+dfsg-1
   - arch: amd64
     package: wget
     version: 1.21-1+deb11u1
@@ -5936,3 +5915,6 @@ packages:
   - arch: amd64
     package: zlib1g
     version: 1:1.2.11.dfsg-2+deb11u2
+  - arch: all
+    package: zram-tools
+    version: 0.3.3.1-1
diff --git a/wiki/src/torrents/files/tails-amd64-5.11.img.sig b/wiki/src/torrents/files/tails-amd64-5.11.img.sig
new file mode 100644
index 00000000000..81b03b7a06f
--- /dev/null
+++ b/wiki/src/torrents/files/tails-amd64-5.11.img.sig
@@ -0,0 +1,7 @@
+-----BEGIN PGP SIGNATURE-----
+
+iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCZBXvZQAKCRCQsrS9eu0j
+X4xyAP98mdYb+MSZgMpdEwRALLs7Bkjb4D9dL2t2FVh81FiGWAEArlfbHmuNScw0
+IfHiPS2ekOFz5vHeJl/Cs8Sj3Ujd4QM=
+=ji1u
+-----END PGP SIGNATURE-----
diff --git a/wiki/src/torrents/files/tails-amd64-5.11.img.torrent b/wiki/src/torrents/files/tails-amd64-5.11.img.torrent
new file mode 100644
index 0000000000000000000000000000000000000000..75d5b3219926170b731665193c4d67797564d659
GIT binary patch
literal 101605
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
N)Xdg50wnI<{U0c;`&a+~

literal 0
HcmV?d00001

diff --git a/wiki/src/torrents/files/tails-amd64-5.11.iso.sig b/wiki/src/torrents/files/tails-amd64-5.11.iso.sig
new file mode 100644
index 00000000000..4212f562df6
--- /dev/null
+++ b/wiki/src/torrents/files/tails-amd64-5.11.iso.sig
@@ -0,0 +1,7 @@
+-----BEGIN PGP SIGNATURE-----
+
+iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCZBXvWwAKCRCQsrS9eu0j
+X9TsAQCX5tLCP0fVZmh5o0nmL1nSPo1ydujcD1OVuImyqkvvCAD/Xn6SEErtyjsd
+S+qc3IeOdeniiif5lPN98aovje6uZA8=
+=AlIl
+-----END PGP SIGNATURE-----
diff --git a/wiki/src/torrents/files/tails-amd64-5.11.iso.torrent b/wiki/src/torrents/files/tails-amd64-5.11.iso.torrent
new file mode 100644
index 0000000000000000000000000000000000000000..7226f1b6eadc00ae4bebc9459b7ca60152de2973
GIT binary patch
literal 100805
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

literal 0
HcmV?d00001

diff --git a/wiki/src/torrents/files/tails-amd64-5.10.packages b/wiki/src/torrents/files/tails-amd64-5.11.packages
similarity index 97%
rename from wiki/src/torrents/files/tails-amd64-5.10.packages
rename to wiki/src/torrents/files/tails-amd64-5.11.packages
index 6436e1c875b..3e0e2ba8586 100644
--- a/wiki/src/torrents/files/tails-amd64-5.10.packages
+++ b/wiki/src/torrents/files/tails-amd64-5.11.packages
@@ -5,7 +5,7 @@ adwaita-icon-theme	3.38.0-1
 adwaita-qt:amd64	1.2.0-2
 aircrack-ng	1:1.6+git20210130.91820bc-1
 alsa-utils	1.2.4-1
-amd64-microcode	3.20220411.1
+amd64-microcode	3.20220411.2
 apg	2.2.3.dfsg.1-5+b2
 apparmor	2.13.6-10
 apparmor-profiles	2.13.6-10
@@ -72,7 +72,7 @@ cups-ipp-utils	2.3.3op2-3+deb11u2
 cups-pk-helper	0.2.6-1+b1
 cups-ppdc	2.3.3op2-3+deb11u2
 cups-server-common	2.3.3op2-3+deb11u2
-curl	7.74.0-1.3+deb11u5
+curl	7.74.0-1.3+deb11u7
 dash	0.5.11+git20200708+dd9ef66-5
 dbus	1.12.24-0+deb11u1
 dbus-user-session	1.12.24-0+deb11u1
@@ -117,23 +117,23 @@ ffmpeg	7:4.3.5-0+deb11u1
 file	1:5.39-3
 file-roller	3.38.1-1
 findutils	4.8.0-1
-firmware-amd-graphics	20221214-3
-firmware-atheros	20221214-3
+firmware-amd-graphics	20230210-2
+firmware-atheros	20230210-2
 firmware-b43-installer	1:019-7
 firmware-b43legacy-installer	1:019-7
-firmware-brcm80211	20221214-3
-firmware-intel-sound	20221214-3
-firmware-ipw2x00	20221214-3
-firmware-iwlwifi	20221214-3
-firmware-libertas	20221214-3
-firmware-linux	20221214-3
+firmware-brcm80211	20230210-2
+firmware-intel-sound	20230210-2
+firmware-ipw2x00	20230210-2
+firmware-iwlwifi	20230210-2
+firmware-libertas	20230210-2
+firmware-linux	20230210-2
 firmware-linux-free	20200122-1
-firmware-linux-nonfree	20221214-3
-firmware-misc-nonfree	20221214-3
-firmware-realtek	20221214-3
-firmware-sof-signed	2.2.3-1
-firmware-ti-connectivity	20221214-3
-firmware-zd1211	1:1.5-8
+firmware-linux-nonfree	20230210-2
+firmware-misc-nonfree	20230210-2
+firmware-realtek	20230210-2
+firmware-sof-signed	2.2.4-1
+firmware-ti-connectivity	20230210-2
+firmware-zd1211	1:1.5-10
 fontconfig	2.13.1-4.2.0tails1
 fontconfig-config	2.13.1-4.2.0tails1
 fonts-cantarell	0.111-3
@@ -190,7 +190,7 @@ gir1.2-gweather-3.0:amd64	3.36.1-3
 gir1.2-handy-1:amd64	1.0.3-2
 gir1.2-harfbuzz-0.0:amd64	2.7.4-1
 gir1.2-ibus-1.0:amd64	1.5.23-2.0tails1
-gir1.2-javascriptcoregtk-4.0:amd64	2.38.4-2~deb11u1
+gir1.2-javascriptcoregtk-4.0:amd64	2.38.5-1~deb11u1
 gir1.2-json-1.0:amd64	1.6.2-1
 gir1.2-mutter-7:amd64	3.38.6-2~deb11u2
 gir1.2-nautilus-3.0:amd64	3.38.2-1+deb11u1
@@ -207,10 +207,10 @@ gir1.2-totem-1.0:amd64	3.38.0-2
 gir1.2-totemplparser-1.0:amd64	3.26.5-5
 gir1.2-udisks-2.0:amd64	2.9.2-2+deb11u1
 gir1.2-upowerglib-1.0:amd64	0.99.11-2
-gir1.2-webkit2-4.0:amd64	2.38.4-2~deb11u1
+gir1.2-webkit2-4.0:amd64	2.38.5-1~deb11u1
 gir1.2-wnck-3.0:amd64	3.36.0-1
-git	1:2.30.2-1+deb11u1
-git-man	1:2.30.2-1+deb11u1
+git	1:2.30.2-1+deb11u2
+git-man	1:2.30.2-1+deb11u2
 gjs	1.66.2-1
 gkbd-capplet	3.26.1-1
 glib-networking:amd64	2.66.0-2
@@ -505,8 +505,8 @@ libcue2:amd64	2.2.1-3
 libcups2:amd64	2.3.3op2-3+deb11u2
 libcupsfilters1:amd64	1.28.7-1+deb11u1
 libcupsimage2:amd64	2.3.3op2-3+deb11u2
-libcurl3-gnutls:amd64	7.74.0-1.3+deb11u5
-libcurl4:amd64	7.74.0-1.3+deb11u5
+libcurl3-gnutls:amd64	7.74.0-1.3+deb11u7
+libcurl4:amd64	7.74.0-1.3+deb11u7
 libdaemon0:amd64	0.14-7.1
 libdata-optlist-perl	0.110-1.1
 libdata-perl-perl	0.002011-1
@@ -806,7 +806,7 @@ libiw30:amd64	30~pre9-13.1
 libixml10:amd64	1:1.8.4-2
 libjack-jackd2-0:amd64	1.9.17~dfsg-1
 libjansson4:amd64	2.13.1-1.1
-libjavascriptcoregtk-4.0-18:amd64	2.38.4-2~deb11u1
+libjavascriptcoregtk-4.0-18:amd64	2.38.5-1~deb11u1
 libjbig0:amd64	2.1-3.1+b2
 libjbig2dec0:amd64	0.19-2
 libjim0.79:amd64	0.79+dfsg0-2
@@ -1029,7 +1029,7 @@ libnpth0:amd64	1.6-3
 libnsl2:amd64	1.3.0-2
 libnspr4:amd64	2:4.29-1
 libnss-systemd:amd64	247.3-7+deb11u1
-libnss3:amd64	2:3.61-1+deb11u2
+libnss3:amd64	2:3.61-1+deb11u3
 libntfs-3g883	1:2017.3.23AR.3-4+deb11u3
 libnuma1:amd64	2.0.12-1+b1
 libnumber-compare-perl	0.03-1.1
@@ -1311,7 +1311,7 @@ libthai-data	0.1.28-3
 libthai0:amd64	0.1.28-3
 libtheora0:amd64	1.1.1+dfsg.1-15
 libtie-ixhash-perl	1.23-2.1
-libtiff5:amd64	4.2.0-1+deb11u3
+libtiff5:amd64	4.2.0-1+deb11u4
 libtime-duration-perl	1.21-1
 libtimedate-perl	2.3300-2
 libtinfo6:amd64	6.2+20201114-2
@@ -1383,7 +1383,7 @@ libwayland-cursor0:amd64	1.18.0-2~exp1.1
 libwayland-egl1:amd64	1.18.0-2~exp1.1
 libwayland-server0:amd64	1.18.0-2~exp1.1
 libwbclient0:amd64	2:4.13.13+dfsg-1~deb11u5
-libwebkit2gtk-4.0-37:amd64	2.38.4-2~deb11u1
+libwebkit2gtk-4.0-37:amd64	2.38.5-1~deb11u1
 libwebp6:amd64	0.6.1-2.1
 libwebpdemux2:amd64	0.6.1-2.1
 libwebpmux3:amd64	0.6.1-2.1
@@ -1496,7 +1496,7 @@ libzvbi-common	0.2.35-18
 libzvbi0:amd64	0.2.35-18
 libzxcvbn0:amd64	2.4+dfsg-2
 linux-base	4.6
-linux-image-6.0.0-0.deb11.6-amd64	6.0.12-1~bpo11+1
+linux-image-6.1.0-5-amd64	6.1.12-1
 live-boot	1:20170112
 live-boot-initramfs-tools	1:20170112
 live-config	11.0.3
@@ -1745,17 +1745,17 @@ tegaki-zinnia-japanese	0.3-1.1
 tesseract-ocr	4.1.1-2.1
 tesseract-ocr-eng	1:4.00~git30-7274cfa-1.1
 tesseract-ocr-osd	1:4.00~git30-7274cfa-1.1
-thunderbird	1:102.6.0-1~deb11u1
-thunderbird-l10n-ar	1:102.6.0-1~deb11u1
-thunderbird-l10n-de	1:102.6.0-1~deb11u1
-thunderbird-l10n-es-es	1:102.6.0-1~deb11u1
-thunderbird-l10n-fr	1:102.6.0-1~deb11u1
-thunderbird-l10n-id	1:102.6.0-1~deb11u1
-thunderbird-l10n-it	1:102.6.0-1~deb11u1
-thunderbird-l10n-pt-br	1:102.6.0-1~deb11u1
-thunderbird-l10n-ru	1:102.6.0-1~deb11u1
-thunderbird-l10n-tr	1:102.6.0-1~deb11u1
-thunderbird-l10n-zh-cn	1:102.6.0-1~deb11u1
+thunderbird	1:102.9.0-1~deb11u1
+thunderbird-l10n-ar	1:102.9.0-1~deb11u1
+thunderbird-l10n-de	1:102.9.0-1~deb11u1
+thunderbird-l10n-es-es	1:102.9.0-1~deb11u1
+thunderbird-l10n-fr	1:102.9.0-1~deb11u1
+thunderbird-l10n-id	1:102.9.0-1~deb11u1
+thunderbird-l10n-it	1:102.9.0-1~deb11u1
+thunderbird-l10n-pt-br	1:102.9.0-1~deb11u1
+thunderbird-l10n-ru	1:102.9.0-1~deb11u1
+thunderbird-l10n-tr	1:102.9.0-1~deb11u1
+thunderbird-l10n-zh-cn	1:102.9.0-1~deb11u1
 timgm6mb-soundfont	1.3-5
 tor	0.4.7.13-1~d11.bullseye+1
 tor-geoipdb	0.4.7.13-1~d11.bullseye+1
@@ -1821,3 +1821,4 @@ zbar-tools	0.23.90-1
 zenity	3.32.0-6
 zenity-common	3.32.0-6
 zlib1g:amd64	1:1.2.11.dfsg-2+deb11u2
+zram-tools	0.3.3.1-1
-- 
GitLab


From ff2f1b8420eb8e7f22e338806e26fb6ed3e59f69 Mon Sep 17 00:00:00 2001
From: intrigeri <intrigeri@boum.org>
Date: Mon, 20 Mar 2023 09:16:19 +0000
Subject: [PATCH 184/187] Manual QA: fix off-by-one

---
 wiki/src/contribute/release_process/test.mdwn | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/wiki/src/contribute/release_process/test.mdwn b/wiki/src/contribute/release_process/test.mdwn
index 0e8d35cf038..37ace899153 100644
--- a/wiki/src/contribute/release_process/test.mdwn
+++ b/wiki/src/contribute/release_process/test.mdwn
@@ -254,7 +254,7 @@ prefer UEFI:
    ENTER in the Welcome Screen). Take note of the boot time you measured.
 5. Go through steps 1-4 again, but this time using the previous Tails version.
    Use the same computer and the same USB stick.
-6. Compare the boot times you measured at steps 3 and 4.
+6. Compare the boot times you measured at steps 4 and 5.
    Expected result: the new Tails should not be significantly slower to start
    than the old one.
 
-- 
GitLab


From 9f67129f9d216934ffdc4213e483497d92311fe4 Mon Sep 17 00:00:00 2001
From: sajolida <sajolida@pimienta.org>
Date: Mon, 20 Mar 2023 12:05:32 +0100
Subject: [PATCH 185/187] Write release notes for 5.11 (#19451)

---
 wiki/src/news/version_5.11.mdwn | 80 +++++++++++++++++++++++++++++++++
 1 file changed, 80 insertions(+)
 create mode 100644 wiki/src/news/version_5.11.mdwn

diff --git a/wiki/src/news/version_5.11.mdwn b/wiki/src/news/version_5.11.mdwn
new file mode 100644
index 00000000000..de7ba55a74c
--- /dev/null
+++ b/wiki/src/news/version_5.11.mdwn
@@ -0,0 +1,80 @@
+[[!meta title="Tails 5.11 is out"]]
+[[!meta date="Mon, 20 Mar 2023 11:36:36 +0000"]]
+[[!pagetemplate template="news.tmpl"]]
+[[!tag announce]]
+
+<h1 id="features">New features</h1>
+
+- Tails now uses the [`zram` Linux kernel
+  module](https://en.wikipedia.org/wiki/Zram) to extend the capacity of the computer's memory.
+
+  You can run more applications or use your session for longer periods of time.
+  Tails will handle more load before freezing and become slow more
+  progressively.
+
+- You can record screencasts using the integrate feature of GNOME. We
+  configured this feature to allow unlimited screencasts. See [[screenshot and
+  screencast|doc/sensitive_documents/screenshot_and_screencast]].
+
+<h1 id="changes">Changes and updates</h1>
+
+- Update *Tor Browser* to [12.0.4](https://blog.torproject.org/new-release-tor-browser-1204).
+
+- Update *Thunderbird* to [102.9.0](https://www.thunderbird.net/en-US/thunderbird/102.9.0/releasenotes/).
+
+- Redesigned the unlocking section of the Welcome Screen.
+
+  [[!img doc/first_steps/welcome_screen/unlock_persistent_storage.png link="no" alt=""]]
+
+For more details, read our [[!tails_gitweb debian/changelog desc="changelog"]].
+
+<h1 id="issues">Known issues</h1>
+
+<!--
+
+Copy the known issues from the previous version if they haven't been
+solved or move them to /support/known_issues if more appropriate.
+
+-->
+
+None specific to this release.
+
+See the list of [[long-standing issues|support/known_issues]].
+
+<h1 id="get">Get Tails 5.11</h1>
+
+## To upgrade your Tails USB stick and keep your persistent storage
+
+- Automatic upgrades are available from Tails 5.0 or later to 5.11.
+
+  You can [[reduce the size of the download|doc/upgrade#reduce]] of future
+  automatic upgrades by doing a manual upgrade to the latest version.
+
+- If you cannot do an automatic upgrade or if Tails fails to start after an
+  automatic upgrade, please try to do a [[manual upgrade|doc/upgrade/#manual]].
+
+## To install Tails on a new USB stick
+
+Follow our installation instructions:
+
+  - [[Install from Windows|install/windows]]
+  - [[Install from macOS|install/mac]]
+  - [[Install from Linux|install/linux]]
+  - [[Install from Debian or Ubuntu using the command line and GnuPG|install/expert]]
+
+<div class="caution"><p>The Persistent Storage on the USB stick will be lost if
+you install instead of upgrading.</p></div>
+
+## To download only
+
+If you don't need installation or upgrade instructions, you can download
+Tails 5.11 directly:
+
+  - [[For USB sticks (USB image)|install/download]]
+  - [[For DVDs and virtual machines (ISO image)|install/download-iso]]
+
+<h1 id="next">What's coming up?</h1>
+
+Tails 5.12 is [[scheduled|contribute/calendar]] for April 18.
+
+Have a look at our [[!tails_roadmap]] to see where we are heading to.
-- 
GitLab


From 8180d449811f06f05668300a5fd80158bedc0dd3 Mon Sep 17 00:00:00 2001
From: intrigeri <intrigeri@boum.org>
Date: Mon, 20 Mar 2023 11:42:19 +0000
Subject: [PATCH 186/187] Fix typo

---
 wiki/src/news/version_5.11.mdwn | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/wiki/src/news/version_5.11.mdwn b/wiki/src/news/version_5.11.mdwn
index de7ba55a74c..17ccdb8385b 100644
--- a/wiki/src/news/version_5.11.mdwn
+++ b/wiki/src/news/version_5.11.mdwn
@@ -12,7 +12,7 @@
   Tails will handle more load before freezing and become slow more
   progressively.
 
-- You can record screencasts using the integrate feature of GNOME. We
+- You can record screencasts using the integrated feature of GNOME. We
   configured this feature to allow unlimited screencasts. See [[screenshot and
   screencast|doc/sensitive_documents/screenshot_and_screencast]].
 
-- 
GitLab


From c3025460f936d9e9d80786b3c30c642ee6bf439a Mon Sep 17 00:00:00 2001
From: intrigeri <intrigeri@boum.org>
Date: Mon, 20 Mar 2023 11:52:04 +0000
Subject: [PATCH 187/187] Releasing version 5.11

---
 wiki/src/news/version_5.11.de.po              | 244 ++++++++++++++++++
 wiki/src/news/version_5.11.es.po              | 244 ++++++++++++++++++
 wiki/src/news/version_5.11.fr.po              | 244 ++++++++++++++++++
 wiki/src/news/version_5.11.it.po              | 244 ++++++++++++++++++
 wiki/src/news/version_5.11.pt.po              | 244 ++++++++++++++++++
 wiki/src/news/version_5.11.ru.po              | 244 ++++++++++++++++++
 ...nown_security_vulnerabilities_in_5.10.mdwn |  18 ++
 7 files changed, 1482 insertions(+)
 create mode 100644 wiki/src/news/version_5.11.de.po
 create mode 100644 wiki/src/news/version_5.11.es.po
 create mode 100644 wiki/src/news/version_5.11.fr.po
 create mode 100644 wiki/src/news/version_5.11.it.po
 create mode 100644 wiki/src/news/version_5.11.pt.po
 create mode 100644 wiki/src/news/version_5.11.ru.po
 create mode 100644 wiki/src/security/known_security_vulnerabilities_in_5.10.mdwn

diff --git a/wiki/src/news/version_5.11.de.po b/wiki/src/news/version_5.11.de.po
new file mode 100644
index 00000000000..8299d3a7b0c
--- /dev/null
+++ b/wiki/src/news/version_5.11.de.po
@@ -0,0 +1,244 @@
+# SOME DESCRIPTIVE TITLE
+# Copyright (C) YEAR Free Software Foundation, Inc.
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2023-03-20 12:45+0100\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "[[!meta title=\"Tails 5.11 is out\"]]\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "[[!meta date=\"Mon, 20 Mar 2023 11:36:36 +0000\"]]\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "[[!pagetemplate template=\"news.tmpl\"]]\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "[[!tag announce]]\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "<h1 id=\"features\">New features</h1>\n"
+msgstr ""
+
+#. type: Bullet: '- '
+#, markdown-text
+msgid ""
+"Tails now uses the [`zram` Linux kernel "
+"module](https://en.wikipedia.org/wiki/Zram) to extend the capacity of the "
+"computer's memory."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid ""
+"  You can run more applications or use your session for longer periods of "
+"time.\n"
+"  Tails will handle more load before freezing and become slow more\n"
+"  progressively.\n"
+msgstr ""
+
+#. type: Bullet: '- '
+#, markdown-text
+msgid ""
+"You can record screencasts using the integrated feature of GNOME. We "
+"configured this feature to allow unlimited screencasts. See [[screenshot and "
+"screencast|doc/sensitive_documents/screenshot_and_screencast]]."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "<h1 id=\"changes\">Changes and updates</h1>\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid ""
+"- Update *Tor Browser* to "
+"[12.0.4](https://blog.torproject.org/new-release-tor-browser-1204)."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid ""
+"- Update *Thunderbird* to "
+"[102.9.0](https://www.thunderbird.net/en-US/thunderbird/102.9.0/releasenotes/)."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid "- Redesigned the unlocking section of the Welcome Screen."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid ""
+"  [[!img doc/first_steps/welcome_screen/unlock_persistent_storage.png "
+"link=\"no\" alt=\"\"]]\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid ""
+"For more details, read our [[!tails_gitweb debian/changelog "
+"desc=\"changelog\"]]."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "<h1 id=\"issues\">Known issues</h1>\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "<!--\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid ""
+"Copy the known issues from the previous version if they haven't been solved "
+"or move them to /support/known_issues if more appropriate."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "-->\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid "None specific to this release."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid "See the list of [[long-standing issues|support/known_issues]]."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "<h1 id=\"get\">Get Tails 5.11</h1>\n"
+msgstr ""
+
+#. type: Title ##
+#, markdown-text, no-wrap
+msgid "To upgrade your Tails USB stick and keep your persistent storage"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid "- Automatic upgrades are available from Tails 5.0 or later to 5.11."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid ""
+"  You can [[reduce the size of the download|doc/upgrade#reduce]] of future\n"
+"  automatic upgrades by doing a manual upgrade to the latest version.\n"
+msgstr ""
+
+#. type: Bullet: '- '
+#, markdown-text
+msgid ""
+"If you cannot do an automatic upgrade or if Tails fails to start after an "
+"automatic upgrade, please try to do a [[manual "
+"upgrade|doc/upgrade/#manual]]."
+msgstr ""
+
+#. type: Title ##
+#, markdown-text, no-wrap
+msgid "To install Tails on a new USB stick"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid "Follow our installation instructions:"
+msgstr ""
+
+#. type: Bullet: '  - '
+#, markdown-text
+msgid "[[Install from Windows|install/windows]]"
+msgstr ""
+
+#. type: Bullet: '  - '
+#, markdown-text
+msgid "[[Install from macOS|install/mac]]"
+msgstr ""
+
+#. type: Bullet: '  - '
+#, markdown-text
+msgid "[[Install from Linux|install/linux]]"
+msgstr ""
+
+#. type: Bullet: '  - '
+#, markdown-text
+msgid ""
+"[[Install from Debian or Ubuntu using the command line and "
+"GnuPG|install/expert]]"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid ""
+"<div class=\"caution\"><p>The Persistent Storage on the USB stick will be "
+"lost if\n"
+"you install instead of upgrading.</p></div>\n"
+msgstr ""
+
+#. type: Title ##
+#, markdown-text, no-wrap
+msgid "To download only"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid ""
+"If you don't need installation or upgrade instructions, you can download "
+"Tails 5.11 directly:"
+msgstr ""
+
+#. type: Bullet: '  - '
+#, markdown-text
+msgid "[[For USB sticks (USB image)|install/download]]"
+msgstr ""
+
+#. type: Bullet: '  - '
+#, markdown-text
+msgid "[[For DVDs and virtual machines (ISO image)|install/download-iso]]"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "<h1 id=\"next\">What's coming up?</h1>\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid "Tails 5.12 is [[scheduled|contribute/calendar]] for April 18."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to."
+msgstr ""
diff --git a/wiki/src/news/version_5.11.es.po b/wiki/src/news/version_5.11.es.po
new file mode 100644
index 00000000000..8299d3a7b0c
--- /dev/null
+++ b/wiki/src/news/version_5.11.es.po
@@ -0,0 +1,244 @@
+# SOME DESCRIPTIVE TITLE
+# Copyright (C) YEAR Free Software Foundation, Inc.
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2023-03-20 12:45+0100\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "[[!meta title=\"Tails 5.11 is out\"]]\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "[[!meta date=\"Mon, 20 Mar 2023 11:36:36 +0000\"]]\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "[[!pagetemplate template=\"news.tmpl\"]]\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "[[!tag announce]]\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "<h1 id=\"features\">New features</h1>\n"
+msgstr ""
+
+#. type: Bullet: '- '
+#, markdown-text
+msgid ""
+"Tails now uses the [`zram` Linux kernel "
+"module](https://en.wikipedia.org/wiki/Zram) to extend the capacity of the "
+"computer's memory."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid ""
+"  You can run more applications or use your session for longer periods of "
+"time.\n"
+"  Tails will handle more load before freezing and become slow more\n"
+"  progressively.\n"
+msgstr ""
+
+#. type: Bullet: '- '
+#, markdown-text
+msgid ""
+"You can record screencasts using the integrated feature of GNOME. We "
+"configured this feature to allow unlimited screencasts. See [[screenshot and "
+"screencast|doc/sensitive_documents/screenshot_and_screencast]]."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "<h1 id=\"changes\">Changes and updates</h1>\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid ""
+"- Update *Tor Browser* to "
+"[12.0.4](https://blog.torproject.org/new-release-tor-browser-1204)."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid ""
+"- Update *Thunderbird* to "
+"[102.9.0](https://www.thunderbird.net/en-US/thunderbird/102.9.0/releasenotes/)."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid "- Redesigned the unlocking section of the Welcome Screen."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid ""
+"  [[!img doc/first_steps/welcome_screen/unlock_persistent_storage.png "
+"link=\"no\" alt=\"\"]]\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid ""
+"For more details, read our [[!tails_gitweb debian/changelog "
+"desc=\"changelog\"]]."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "<h1 id=\"issues\">Known issues</h1>\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "<!--\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid ""
+"Copy the known issues from the previous version if they haven't been solved "
+"or move them to /support/known_issues if more appropriate."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "-->\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid "None specific to this release."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid "See the list of [[long-standing issues|support/known_issues]]."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "<h1 id=\"get\">Get Tails 5.11</h1>\n"
+msgstr ""
+
+#. type: Title ##
+#, markdown-text, no-wrap
+msgid "To upgrade your Tails USB stick and keep your persistent storage"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid "- Automatic upgrades are available from Tails 5.0 or later to 5.11."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid ""
+"  You can [[reduce the size of the download|doc/upgrade#reduce]] of future\n"
+"  automatic upgrades by doing a manual upgrade to the latest version.\n"
+msgstr ""
+
+#. type: Bullet: '- '
+#, markdown-text
+msgid ""
+"If you cannot do an automatic upgrade or if Tails fails to start after an "
+"automatic upgrade, please try to do a [[manual "
+"upgrade|doc/upgrade/#manual]]."
+msgstr ""
+
+#. type: Title ##
+#, markdown-text, no-wrap
+msgid "To install Tails on a new USB stick"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid "Follow our installation instructions:"
+msgstr ""
+
+#. type: Bullet: '  - '
+#, markdown-text
+msgid "[[Install from Windows|install/windows]]"
+msgstr ""
+
+#. type: Bullet: '  - '
+#, markdown-text
+msgid "[[Install from macOS|install/mac]]"
+msgstr ""
+
+#. type: Bullet: '  - '
+#, markdown-text
+msgid "[[Install from Linux|install/linux]]"
+msgstr ""
+
+#. type: Bullet: '  - '
+#, markdown-text
+msgid ""
+"[[Install from Debian or Ubuntu using the command line and "
+"GnuPG|install/expert]]"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid ""
+"<div class=\"caution\"><p>The Persistent Storage on the USB stick will be "
+"lost if\n"
+"you install instead of upgrading.</p></div>\n"
+msgstr ""
+
+#. type: Title ##
+#, markdown-text, no-wrap
+msgid "To download only"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid ""
+"If you don't need installation or upgrade instructions, you can download "
+"Tails 5.11 directly:"
+msgstr ""
+
+#. type: Bullet: '  - '
+#, markdown-text
+msgid "[[For USB sticks (USB image)|install/download]]"
+msgstr ""
+
+#. type: Bullet: '  - '
+#, markdown-text
+msgid "[[For DVDs and virtual machines (ISO image)|install/download-iso]]"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "<h1 id=\"next\">What's coming up?</h1>\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid "Tails 5.12 is [[scheduled|contribute/calendar]] for April 18."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to."
+msgstr ""
diff --git a/wiki/src/news/version_5.11.fr.po b/wiki/src/news/version_5.11.fr.po
new file mode 100644
index 00000000000..8299d3a7b0c
--- /dev/null
+++ b/wiki/src/news/version_5.11.fr.po
@@ -0,0 +1,244 @@
+# SOME DESCRIPTIVE TITLE
+# Copyright (C) YEAR Free Software Foundation, Inc.
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2023-03-20 12:45+0100\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "[[!meta title=\"Tails 5.11 is out\"]]\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "[[!meta date=\"Mon, 20 Mar 2023 11:36:36 +0000\"]]\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "[[!pagetemplate template=\"news.tmpl\"]]\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "[[!tag announce]]\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "<h1 id=\"features\">New features</h1>\n"
+msgstr ""
+
+#. type: Bullet: '- '
+#, markdown-text
+msgid ""
+"Tails now uses the [`zram` Linux kernel "
+"module](https://en.wikipedia.org/wiki/Zram) to extend the capacity of the "
+"computer's memory."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid ""
+"  You can run more applications or use your session for longer periods of "
+"time.\n"
+"  Tails will handle more load before freezing and become slow more\n"
+"  progressively.\n"
+msgstr ""
+
+#. type: Bullet: '- '
+#, markdown-text
+msgid ""
+"You can record screencasts using the integrated feature of GNOME. We "
+"configured this feature to allow unlimited screencasts. See [[screenshot and "
+"screencast|doc/sensitive_documents/screenshot_and_screencast]]."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "<h1 id=\"changes\">Changes and updates</h1>\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid ""
+"- Update *Tor Browser* to "
+"[12.0.4](https://blog.torproject.org/new-release-tor-browser-1204)."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid ""
+"- Update *Thunderbird* to "
+"[102.9.0](https://www.thunderbird.net/en-US/thunderbird/102.9.0/releasenotes/)."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid "- Redesigned the unlocking section of the Welcome Screen."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid ""
+"  [[!img doc/first_steps/welcome_screen/unlock_persistent_storage.png "
+"link=\"no\" alt=\"\"]]\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid ""
+"For more details, read our [[!tails_gitweb debian/changelog "
+"desc=\"changelog\"]]."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "<h1 id=\"issues\">Known issues</h1>\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "<!--\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid ""
+"Copy the known issues from the previous version if they haven't been solved "
+"or move them to /support/known_issues if more appropriate."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "-->\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid "None specific to this release."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid "See the list of [[long-standing issues|support/known_issues]]."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "<h1 id=\"get\">Get Tails 5.11</h1>\n"
+msgstr ""
+
+#. type: Title ##
+#, markdown-text, no-wrap
+msgid "To upgrade your Tails USB stick and keep your persistent storage"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid "- Automatic upgrades are available from Tails 5.0 or later to 5.11."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid ""
+"  You can [[reduce the size of the download|doc/upgrade#reduce]] of future\n"
+"  automatic upgrades by doing a manual upgrade to the latest version.\n"
+msgstr ""
+
+#. type: Bullet: '- '
+#, markdown-text
+msgid ""
+"If you cannot do an automatic upgrade or if Tails fails to start after an "
+"automatic upgrade, please try to do a [[manual "
+"upgrade|doc/upgrade/#manual]]."
+msgstr ""
+
+#. type: Title ##
+#, markdown-text, no-wrap
+msgid "To install Tails on a new USB stick"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid "Follow our installation instructions:"
+msgstr ""
+
+#. type: Bullet: '  - '
+#, markdown-text
+msgid "[[Install from Windows|install/windows]]"
+msgstr ""
+
+#. type: Bullet: '  - '
+#, markdown-text
+msgid "[[Install from macOS|install/mac]]"
+msgstr ""
+
+#. type: Bullet: '  - '
+#, markdown-text
+msgid "[[Install from Linux|install/linux]]"
+msgstr ""
+
+#. type: Bullet: '  - '
+#, markdown-text
+msgid ""
+"[[Install from Debian or Ubuntu using the command line and "
+"GnuPG|install/expert]]"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid ""
+"<div class=\"caution\"><p>The Persistent Storage on the USB stick will be "
+"lost if\n"
+"you install instead of upgrading.</p></div>\n"
+msgstr ""
+
+#. type: Title ##
+#, markdown-text, no-wrap
+msgid "To download only"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid ""
+"If you don't need installation or upgrade instructions, you can download "
+"Tails 5.11 directly:"
+msgstr ""
+
+#. type: Bullet: '  - '
+#, markdown-text
+msgid "[[For USB sticks (USB image)|install/download]]"
+msgstr ""
+
+#. type: Bullet: '  - '
+#, markdown-text
+msgid "[[For DVDs and virtual machines (ISO image)|install/download-iso]]"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "<h1 id=\"next\">What's coming up?</h1>\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid "Tails 5.12 is [[scheduled|contribute/calendar]] for April 18."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to."
+msgstr ""
diff --git a/wiki/src/news/version_5.11.it.po b/wiki/src/news/version_5.11.it.po
new file mode 100644
index 00000000000..8299d3a7b0c
--- /dev/null
+++ b/wiki/src/news/version_5.11.it.po
@@ -0,0 +1,244 @@
+# SOME DESCRIPTIVE TITLE
+# Copyright (C) YEAR Free Software Foundation, Inc.
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2023-03-20 12:45+0100\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "[[!meta title=\"Tails 5.11 is out\"]]\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "[[!meta date=\"Mon, 20 Mar 2023 11:36:36 +0000\"]]\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "[[!pagetemplate template=\"news.tmpl\"]]\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "[[!tag announce]]\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "<h1 id=\"features\">New features</h1>\n"
+msgstr ""
+
+#. type: Bullet: '- '
+#, markdown-text
+msgid ""
+"Tails now uses the [`zram` Linux kernel "
+"module](https://en.wikipedia.org/wiki/Zram) to extend the capacity of the "
+"computer's memory."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid ""
+"  You can run more applications or use your session for longer periods of "
+"time.\n"
+"  Tails will handle more load before freezing and become slow more\n"
+"  progressively.\n"
+msgstr ""
+
+#. type: Bullet: '- '
+#, markdown-text
+msgid ""
+"You can record screencasts using the integrated feature of GNOME. We "
+"configured this feature to allow unlimited screencasts. See [[screenshot and "
+"screencast|doc/sensitive_documents/screenshot_and_screencast]]."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "<h1 id=\"changes\">Changes and updates</h1>\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid ""
+"- Update *Tor Browser* to "
+"[12.0.4](https://blog.torproject.org/new-release-tor-browser-1204)."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid ""
+"- Update *Thunderbird* to "
+"[102.9.0](https://www.thunderbird.net/en-US/thunderbird/102.9.0/releasenotes/)."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid "- Redesigned the unlocking section of the Welcome Screen."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid ""
+"  [[!img doc/first_steps/welcome_screen/unlock_persistent_storage.png "
+"link=\"no\" alt=\"\"]]\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid ""
+"For more details, read our [[!tails_gitweb debian/changelog "
+"desc=\"changelog\"]]."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "<h1 id=\"issues\">Known issues</h1>\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "<!--\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid ""
+"Copy the known issues from the previous version if they haven't been solved "
+"or move them to /support/known_issues if more appropriate."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "-->\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid "None specific to this release."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid "See the list of [[long-standing issues|support/known_issues]]."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "<h1 id=\"get\">Get Tails 5.11</h1>\n"
+msgstr ""
+
+#. type: Title ##
+#, markdown-text, no-wrap
+msgid "To upgrade your Tails USB stick and keep your persistent storage"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid "- Automatic upgrades are available from Tails 5.0 or later to 5.11."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid ""
+"  You can [[reduce the size of the download|doc/upgrade#reduce]] of future\n"
+"  automatic upgrades by doing a manual upgrade to the latest version.\n"
+msgstr ""
+
+#. type: Bullet: '- '
+#, markdown-text
+msgid ""
+"If you cannot do an automatic upgrade or if Tails fails to start after an "
+"automatic upgrade, please try to do a [[manual "
+"upgrade|doc/upgrade/#manual]]."
+msgstr ""
+
+#. type: Title ##
+#, markdown-text, no-wrap
+msgid "To install Tails on a new USB stick"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid "Follow our installation instructions:"
+msgstr ""
+
+#. type: Bullet: '  - '
+#, markdown-text
+msgid "[[Install from Windows|install/windows]]"
+msgstr ""
+
+#. type: Bullet: '  - '
+#, markdown-text
+msgid "[[Install from macOS|install/mac]]"
+msgstr ""
+
+#. type: Bullet: '  - '
+#, markdown-text
+msgid "[[Install from Linux|install/linux]]"
+msgstr ""
+
+#. type: Bullet: '  - '
+#, markdown-text
+msgid ""
+"[[Install from Debian or Ubuntu using the command line and "
+"GnuPG|install/expert]]"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid ""
+"<div class=\"caution\"><p>The Persistent Storage on the USB stick will be "
+"lost if\n"
+"you install instead of upgrading.</p></div>\n"
+msgstr ""
+
+#. type: Title ##
+#, markdown-text, no-wrap
+msgid "To download only"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid ""
+"If you don't need installation or upgrade instructions, you can download "
+"Tails 5.11 directly:"
+msgstr ""
+
+#. type: Bullet: '  - '
+#, markdown-text
+msgid "[[For USB sticks (USB image)|install/download]]"
+msgstr ""
+
+#. type: Bullet: '  - '
+#, markdown-text
+msgid "[[For DVDs and virtual machines (ISO image)|install/download-iso]]"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "<h1 id=\"next\">What's coming up?</h1>\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid "Tails 5.12 is [[scheduled|contribute/calendar]] for April 18."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to."
+msgstr ""
diff --git a/wiki/src/news/version_5.11.pt.po b/wiki/src/news/version_5.11.pt.po
new file mode 100644
index 00000000000..8299d3a7b0c
--- /dev/null
+++ b/wiki/src/news/version_5.11.pt.po
@@ -0,0 +1,244 @@
+# SOME DESCRIPTIVE TITLE
+# Copyright (C) YEAR Free Software Foundation, Inc.
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2023-03-20 12:45+0100\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "[[!meta title=\"Tails 5.11 is out\"]]\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "[[!meta date=\"Mon, 20 Mar 2023 11:36:36 +0000\"]]\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "[[!pagetemplate template=\"news.tmpl\"]]\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "[[!tag announce]]\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "<h1 id=\"features\">New features</h1>\n"
+msgstr ""
+
+#. type: Bullet: '- '
+#, markdown-text
+msgid ""
+"Tails now uses the [`zram` Linux kernel "
+"module](https://en.wikipedia.org/wiki/Zram) to extend the capacity of the "
+"computer's memory."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid ""
+"  You can run more applications or use your session for longer periods of "
+"time.\n"
+"  Tails will handle more load before freezing and become slow more\n"
+"  progressively.\n"
+msgstr ""
+
+#. type: Bullet: '- '
+#, markdown-text
+msgid ""
+"You can record screencasts using the integrated feature of GNOME. We "
+"configured this feature to allow unlimited screencasts. See [[screenshot and "
+"screencast|doc/sensitive_documents/screenshot_and_screencast]]."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "<h1 id=\"changes\">Changes and updates</h1>\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid ""
+"- Update *Tor Browser* to "
+"[12.0.4](https://blog.torproject.org/new-release-tor-browser-1204)."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid ""
+"- Update *Thunderbird* to "
+"[102.9.0](https://www.thunderbird.net/en-US/thunderbird/102.9.0/releasenotes/)."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid "- Redesigned the unlocking section of the Welcome Screen."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid ""
+"  [[!img doc/first_steps/welcome_screen/unlock_persistent_storage.png "
+"link=\"no\" alt=\"\"]]\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid ""
+"For more details, read our [[!tails_gitweb debian/changelog "
+"desc=\"changelog\"]]."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "<h1 id=\"issues\">Known issues</h1>\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "<!--\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid ""
+"Copy the known issues from the previous version if they haven't been solved "
+"or move them to /support/known_issues if more appropriate."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "-->\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid "None specific to this release."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid "See the list of [[long-standing issues|support/known_issues]]."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "<h1 id=\"get\">Get Tails 5.11</h1>\n"
+msgstr ""
+
+#. type: Title ##
+#, markdown-text, no-wrap
+msgid "To upgrade your Tails USB stick and keep your persistent storage"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid "- Automatic upgrades are available from Tails 5.0 or later to 5.11."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid ""
+"  You can [[reduce the size of the download|doc/upgrade#reduce]] of future\n"
+"  automatic upgrades by doing a manual upgrade to the latest version.\n"
+msgstr ""
+
+#. type: Bullet: '- '
+#, markdown-text
+msgid ""
+"If you cannot do an automatic upgrade or if Tails fails to start after an "
+"automatic upgrade, please try to do a [[manual "
+"upgrade|doc/upgrade/#manual]]."
+msgstr ""
+
+#. type: Title ##
+#, markdown-text, no-wrap
+msgid "To install Tails on a new USB stick"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid "Follow our installation instructions:"
+msgstr ""
+
+#. type: Bullet: '  - '
+#, markdown-text
+msgid "[[Install from Windows|install/windows]]"
+msgstr ""
+
+#. type: Bullet: '  - '
+#, markdown-text
+msgid "[[Install from macOS|install/mac]]"
+msgstr ""
+
+#. type: Bullet: '  - '
+#, markdown-text
+msgid "[[Install from Linux|install/linux]]"
+msgstr ""
+
+#. type: Bullet: '  - '
+#, markdown-text
+msgid ""
+"[[Install from Debian or Ubuntu using the command line and "
+"GnuPG|install/expert]]"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid ""
+"<div class=\"caution\"><p>The Persistent Storage on the USB stick will be "
+"lost if\n"
+"you install instead of upgrading.</p></div>\n"
+msgstr ""
+
+#. type: Title ##
+#, markdown-text, no-wrap
+msgid "To download only"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid ""
+"If you don't need installation or upgrade instructions, you can download "
+"Tails 5.11 directly:"
+msgstr ""
+
+#. type: Bullet: '  - '
+#, markdown-text
+msgid "[[For USB sticks (USB image)|install/download]]"
+msgstr ""
+
+#. type: Bullet: '  - '
+#, markdown-text
+msgid "[[For DVDs and virtual machines (ISO image)|install/download-iso]]"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "<h1 id=\"next\">What's coming up?</h1>\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid "Tails 5.12 is [[scheduled|contribute/calendar]] for April 18."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to."
+msgstr ""
diff --git a/wiki/src/news/version_5.11.ru.po b/wiki/src/news/version_5.11.ru.po
new file mode 100644
index 00000000000..8299d3a7b0c
--- /dev/null
+++ b/wiki/src/news/version_5.11.ru.po
@@ -0,0 +1,244 @@
+# SOME DESCRIPTIVE TITLE
+# Copyright (C) YEAR Free Software Foundation, Inc.
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2023-03-20 12:45+0100\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "[[!meta title=\"Tails 5.11 is out\"]]\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "[[!meta date=\"Mon, 20 Mar 2023 11:36:36 +0000\"]]\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "[[!pagetemplate template=\"news.tmpl\"]]\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "[[!tag announce]]\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "<h1 id=\"features\">New features</h1>\n"
+msgstr ""
+
+#. type: Bullet: '- '
+#, markdown-text
+msgid ""
+"Tails now uses the [`zram` Linux kernel "
+"module](https://en.wikipedia.org/wiki/Zram) to extend the capacity of the "
+"computer's memory."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid ""
+"  You can run more applications or use your session for longer periods of "
+"time.\n"
+"  Tails will handle more load before freezing and become slow more\n"
+"  progressively.\n"
+msgstr ""
+
+#. type: Bullet: '- '
+#, markdown-text
+msgid ""
+"You can record screencasts using the integrated feature of GNOME. We "
+"configured this feature to allow unlimited screencasts. See [[screenshot and "
+"screencast|doc/sensitive_documents/screenshot_and_screencast]]."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "<h1 id=\"changes\">Changes and updates</h1>\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid ""
+"- Update *Tor Browser* to "
+"[12.0.4](https://blog.torproject.org/new-release-tor-browser-1204)."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid ""
+"- Update *Thunderbird* to "
+"[102.9.0](https://www.thunderbird.net/en-US/thunderbird/102.9.0/releasenotes/)."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid "- Redesigned the unlocking section of the Welcome Screen."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid ""
+"  [[!img doc/first_steps/welcome_screen/unlock_persistent_storage.png "
+"link=\"no\" alt=\"\"]]\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid ""
+"For more details, read our [[!tails_gitweb debian/changelog "
+"desc=\"changelog\"]]."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "<h1 id=\"issues\">Known issues</h1>\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "<!--\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid ""
+"Copy the known issues from the previous version if they haven't been solved "
+"or move them to /support/known_issues if more appropriate."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "-->\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid "None specific to this release."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid "See the list of [[long-standing issues|support/known_issues]]."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "<h1 id=\"get\">Get Tails 5.11</h1>\n"
+msgstr ""
+
+#. type: Title ##
+#, markdown-text, no-wrap
+msgid "To upgrade your Tails USB stick and keep your persistent storage"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid "- Automatic upgrades are available from Tails 5.0 or later to 5.11."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid ""
+"  You can [[reduce the size of the download|doc/upgrade#reduce]] of future\n"
+"  automatic upgrades by doing a manual upgrade to the latest version.\n"
+msgstr ""
+
+#. type: Bullet: '- '
+#, markdown-text
+msgid ""
+"If you cannot do an automatic upgrade or if Tails fails to start after an "
+"automatic upgrade, please try to do a [[manual "
+"upgrade|doc/upgrade/#manual]]."
+msgstr ""
+
+#. type: Title ##
+#, markdown-text, no-wrap
+msgid "To install Tails on a new USB stick"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid "Follow our installation instructions:"
+msgstr ""
+
+#. type: Bullet: '  - '
+#, markdown-text
+msgid "[[Install from Windows|install/windows]]"
+msgstr ""
+
+#. type: Bullet: '  - '
+#, markdown-text
+msgid "[[Install from macOS|install/mac]]"
+msgstr ""
+
+#. type: Bullet: '  - '
+#, markdown-text
+msgid "[[Install from Linux|install/linux]]"
+msgstr ""
+
+#. type: Bullet: '  - '
+#, markdown-text
+msgid ""
+"[[Install from Debian or Ubuntu using the command line and "
+"GnuPG|install/expert]]"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid ""
+"<div class=\"caution\"><p>The Persistent Storage on the USB stick will be "
+"lost if\n"
+"you install instead of upgrading.</p></div>\n"
+msgstr ""
+
+#. type: Title ##
+#, markdown-text, no-wrap
+msgid "To download only"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid ""
+"If you don't need installation or upgrade instructions, you can download "
+"Tails 5.11 directly:"
+msgstr ""
+
+#. type: Bullet: '  - '
+#, markdown-text
+msgid "[[For USB sticks (USB image)|install/download]]"
+msgstr ""
+
+#. type: Bullet: '  - '
+#, markdown-text
+msgid "[[For DVDs and virtual machines (ISO image)|install/download-iso]]"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text, no-wrap
+msgid "<h1 id=\"next\">What's coming up?</h1>\n"
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid "Tails 5.12 is [[scheduled|contribute/calendar]] for April 18."
+msgstr ""
+
+#. type: Plain text
+#, markdown-text
+msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to."
+msgstr ""
diff --git a/wiki/src/security/known_security_vulnerabilities_in_5.10.mdwn b/wiki/src/security/known_security_vulnerabilities_in_5.10.mdwn
new file mode 100644
index 00000000000..1e4ff53d48c
--- /dev/null
+++ b/wiki/src/security/known_security_vulnerabilities_in_5.10.mdwn
@@ -0,0 +1,18 @@
+[[!meta date="Thu, 16 Mar 2023 16:21:33 -0000"]]
+[[!meta title="Known security vulnerabilities in Tails 5.10"]]
+[[!pagetemplate template="news.tmpl"]]
+
+[[!tag security/fixed]]
+
+Tails 5.11 fixes known security
+vulnerabilities in 5.10. You should upgrade as soon as possible.
+
+If you are interested in learning more about the security vulnerabilities fixed
+in this release, you can refer to:
+
+- The release notes of *Tor Browser* and other applications linked from
+  the [[release notes of Tails 5.11|news/version_5.11]].
+
+- The list of recent [Debian security
+  advisories](https://www.debian.org/security/) published since Tails
+  5.10.
-- 
GitLab