diff --git a/config/APT_snapshots.d/debian/serial b/config/APT_snapshots.d/debian/serial
index 110457287766014356dfd7e39dc9fb39a274955c..4dab236d717ca4176e1e17c3cb81f89dc083beb8 100644
--- a/config/APT_snapshots.d/debian/serial
+++ b/config/APT_snapshots.d/debian/serial
@@ -1 +1 @@
-2019031601
+2019042801
diff --git a/config/chroot_apt/preferences b/config/chroot_apt/preferences
index dfe1465e5316420ce154be8916a38bce464af9de..e09367c723397f1b7e5eff54217ab8c1aa4f0fea 100644
--- a/config/chroot_apt/preferences
+++ b/config/chroot_apt/preferences
@@ -10,6 +10,16 @@ Package: b43-fwcutter
 Pin: release o=Debian,n=sid
 Pin-Priority: 999
 
+Explanation: unavailable in stretch and stretch-backports
+Package: electrum python3-electrum
+Pin: release o=Debian,n=sid
+Pin-Priority: 999
+
+Explanation: Electrum dependencies
+Package: python3-jsonrpclib-pelix python3-pyaes
+Pin: release o=Debian,n=stretch-backports
+Pin-Priority: 999
+
 Package: enigmail
 Pin: origin deb.tails.boum.org
 Pin-Priority: -1
@@ -35,11 +45,20 @@ Package: firmware-zd1211
 Pin: release o=Debian,n=sid
 Pin-Priority: 999
 
+Package: fonts-noto*
+Pin: release o=Debian,n=sid
+Pin-Priority: 999
+
 Explanation: src:gdk-pixbuf
 Package: gir1.2-gdkpixbuf-2.0 libgdk-pixbuf2.0-*
 Pin: version 2.36.5-2.0tails*
 Pin-Priority: -1
 
+Explanation: not available in Stretch; XXX:Buster: remove this entry
+Package: hunspell-id hunspell-tr
+Pin: release o=Debian,n=sid
+Pin-Priority: 990
+
 Package: intel-microcode
 Pin: release o=Debian,n=stretch-backports
 Pin-Priority: 990
@@ -179,7 +198,3 @@ Pin-Priority: -10
 Package: *
 Pin: release o=TorProject
 Pin-Priority: -10
-
-Package: electrum python3-electrum python3-jsonrpclib-pelix python3-pyaes
-Pin: release o=Debian,n=stretch-backports
-Pin-Priority: 999
diff --git a/config/chroot_local-hooks/04-change-gids-and-uids b/config/chroot_local-hooks/04-change-gids-and-uids
index 1b9d921845e68bd5e39ae4d497588f94fbf23b97..a8c508787cf45ad6f435bc61e3c38ec5f8ed2884 100755
--- a/config/chroot_local-hooks/04-change-gids-and-uids
+++ b/config/chroot_local-hooks/04-change-gids-and-uids
@@ -1,10 +1,28 @@
 #!/bin/sh
 
+### Ensure GIDs are stable accross releases
+#   ... otherwise, things such as tor@service are broken
+#   after applying an automatic upgrade (#15695, #15424, #13426, #15407)
+
+# When installing packages apt may variate the order of package installations.
+# That leads to different GID/UID for the created groups and users. This
+# variation of GID/UID leads to problems, when we want to ship diffs for a
+# smoother upgrade process. There are many different solutions flying around to
+# fix this issue, but they were not elaborate for Tails and may have other nasty
+# side-effects, as the maintainer scripts, may react differently, if they are
+# not in charge of creating group/user themselves.
+
+# We may get rid of this script with the switch to overlayfs (#8415, #15689).
+
 set -e
 
 echo "Set fixed GIDs and UIDs"
 
 Debug_gids_and_uids () {
+	# Print content of /etc/{passwd, group}, if a difference against
+	# the expected content is detected. Otherwise only the content of
+	# those files is printed
+
 	for file in passwd group; do
 		diff -Naur "/usr/share/tails/build/${file}" "/etc/${file}" >&2 || :
 		echo >&2
@@ -15,13 +33,17 @@ Debug_gids_and_uids () {
 }
 
 Change_uid () {
+	# Change_uid(NAME, NEW)
+	# change UID for $NAME to $NEW
+	# and update UID for all files, that were owned by the old UID
+
 	NAME="$1"
 	NEW="$2"
-	OLD="$(getent passwd "$NAME" | awk -F ':' '{print $3}')"
+	old="$(getent passwd "${NAME}" | awk -F ':' '{print $3}')"
 
-	if [ -n "$OLD" ]; then
-		echo "Changing UID for $NAME ($OLD -> $NEW)"
-		if ! usermod --uid "$NEW" "$NAME"; then
+	if [ -n "${old}" ]; then
+		echo "Changing UID for ${NAME} (${old} -> ${NEW})"
+		if ! usermod --uid "${NEW}" "${NAME}"; then
 			Debug_gids_and_uids
 			exit 1
 		fi
@@ -34,8 +56,8 @@ Change_uid () {
 		# bit" no-op, but rather "if a file had the setuid bit before
 		# chown was run, then set it back".
 		find / -wholename /proc -prune -o \( \
-				\! -type l -uid "$OLD" \
-				-exec chown "$NEW" '{}' + \
+				\! -type l -uid "${old}" \
+				-exec chown "${NEW}" '{}' + \
 				\( \
 					   -perm -6000 -exec chmod gu+s '{}' + \
 					-o -perm -4000 -exec chmod u+s  '{}' + \
@@ -46,20 +68,24 @@ Change_uid () {
 }
 
 Change_gid () {
+	# Change_gid(NAME, NEW)
+	# change the GID for $NAME to $NEW
+	# and update GID for all files, that were owned by the old GID
+
 	NAME="$1"
 	NEW="$2"
-	OLD="$(getent group "$NAME" | awk -F ':' '{print $3}')"
+	old="$(getent group "${NAME}" | awk -F ':' '{print $3}')"
 
-	if [ -n "$OLD" ]; then
-		echo "Changing GID for $NAME ($OLD -> $NEW)"
-		if ! groupmod --gid "$NEW" "$NAME"; then
+	if [ -n "${old}" ]; then
+		echo "Changing GID for ${NAME} (${old} -> ${NEW})"
+		if ! groupmod --gid "${NEW}" "${NAME}"; then
 			Debug_gids_and_uids
 			exit 1
 		fi
 		# See comments in Change_uid().
 		find / -wholename /proc -prune -o \( \
-				\! -type l -gid "$OLD" \
-				-exec chgrp "$NEW" '{}' + \
+				\! -type l -gid "${old}" \
+				-exec chgrp "${NEW}" '{}' + \
 				\( \
 					   -perm -6000 -exec chmod gu+s '{}' + \
 					-o -perm -4000 -exec chmod u+s  '{}' + \
@@ -69,10 +95,6 @@ Change_gid () {
 	fi
 }
 
-### Ensure GIDs are stable accross releases
-#   ... otherwise, things such as tor@service are broken
-#   after applying an automatic upgrade (#15695, #15424, #13426, #15407)
-
 # Temporarily give these groups a GID that's out of the way, to avoid collisions
 Change_gid messagebus   1050
 Change_gid ssh          1090
@@ -89,6 +111,7 @@ Change_gid pulse        1190
 Change_gid pulse-access 1200
 Change_gid Debian-gdm   1210
 Change_gid kvm          1500
+Change_gid render       1510
 
 # Finally, give these groups the desired GID
 Change_gid messagebus   105
@@ -106,3 +129,4 @@ Change_gid pulse        119
 Change_gid pulse-access 120
 Change_gid Debian-gdm   121
 Change_gid kvm          150
+Change_gid render       151
diff --git a/config/chroot_local-hooks/11-localize_browser b/config/chroot_local-hooks/11-localize_browser
index 34d65a2bde6c8954e863375d512703b724b6fc7d..55097fb7d5ea3c049703d3546b199a59ae264078 100755
--- a/config/chroot_local-hooks/11-localize_browser
+++ b/config/chroot_local-hooks/11-localize_browser
@@ -22,7 +22,6 @@ ensure_hook_dependency_is_installed p7zip imagemagick
 BROWSER_LOCALIZATION_DIR="/usr/share/tails/browser-localization"
 DESCRIPTIONS_FILE="${BROWSER_LOCALIZATION_DIR}/descriptions"
 LOCALE_PROFILES_DIR="/etc/tor-browser/locale-profiles/"
-NO_SPELLCHECKER_LOCALES="ca ga id is ja nb tr zh"
 
 # Sanity check that each supported Tor Browser locale has a
 # description for how to localize it further.
@@ -75,12 +74,7 @@ while IFS=: read MOZILLA_LOCALE LOCATION; do
         fi
     done
     if [ -z "${SPELLCHECKER_LOCALE}" ]; then
-        if echo "${NO_SPELLCHECKER_LOCALES}" | grep -qw "${LANG_CODE}"; then
-            SPELLCHECKER_LOCALE="en_US"
-        else
-            echo "No spellchecker found for ${MOZILLA_LOCALE}" >&2
-            exit 1
-        fi
+        SPELLCHECKER_LOCALE="en_US"
     fi
     set_mozilla_pref "${LOCALE_PROFILE_FILE}" \
                           "spellchecker.dictionary" \
diff --git a/config/chroot_local-hooks/31-lower-DefaultTimeoutStopSec b/config/chroot_local-hooks/31-lower-DefaultTimeoutStopSec
deleted file mode 100755
index 56b9ee6903938966eae4ebbd58ee76eed97b99df..0000000000000000000000000000000000000000
--- a/config/chroot_local-hooks/31-lower-DefaultTimeoutStopSec
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/bin/sh
-set -e
-set -u
-
-echo "Lower systemd's DefaultTimeoutStopSec"
-
-sed --in-place --regexp-extended \
-    's/^#DefaultTimeoutStopSec=.*$/DefaultTimeoutStopSec=5s/' \
-    /etc/systemd/system.conf
diff --git a/config/chroot_local-hooks/32-logind-NAutoVTs b/config/chroot_local-hooks/32-logind-NAutoVTs
deleted file mode 100755
index 57f67ae4ec539d61c1e7f359cc848118def10351..0000000000000000000000000000000000000000
--- a/config/chroot_local-hooks/32-logind-NAutoVTs
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/sh
-set -e
-set -u
-
-# Make room for tails-gdm-failed-to-start.service
-echo "Lower logind's NAutoVTs"
-
-sed --in-place --regexp-extended \
-    's/^#NAutoVTs=.*$/NAutoVTs=4/' \
-    /etc/systemd/logind.conf
diff --git a/config/chroot_local-hooks/55-update-mime-database b/config/chroot_local-hooks/55-update-mime-database
index e8164513ad773dee53a6ca59263a12a42e68c9dc..9c2ad512239aaa9945b6ef6e91a357833c903a95 100755
--- a/config/chroot_local-hooks/55-update-mime-database
+++ b/config/chroot_local-hooks/55-update-mime-database
@@ -6,3 +6,4 @@ set -u
 echo "Updating the shared MIME-Info database cache with our custom file associations"
 
 update-mime-database /usr/local/share/mime
+update-mime-database /usr/share/mime
diff --git a/config/chroot_local-hooks/98-remove_unwanted_packages b/config/chroot_local-hooks/98-remove_unwanted_packages
index 6b1688d9f1737e375e8b76f3315bfc010b2b0e1e..eef6dc2016df52aef6de948d933589fa67c68f5b 100755
--- a/config/chroot_local-hooks/98-remove_unwanted_packages
+++ b/config/chroot_local-hooks/98-remove_unwanted_packages
@@ -46,6 +46,14 @@ apt-get --yes purge  \
    texinfo \
    wamerican
 
+### Deinstall a few unwanted packages that were pulled by the xorg
+### metapackage.
+apt-get --yes purge  \
+   xfonts-100dpi \
+   xfonts-75dpi \
+   xfonts-base \
+   xfonts-scalable
+
 ### Remove packages that can get a different priority in the security
 ### archive (see https://bugs.debian.org/867668):
 if is_package_installed mutt; then
diff --git a/config/chroot_local-includes/etc/apparmor.d/usr.bin.onioncircuits b/config/chroot_local-includes/etc/apparmor.d/usr.bin.onioncircuits
deleted file mode 100644
index d41b4de2bd92a1d6844e02b2614ac4e810c7487a..0000000000000000000000000000000000000000
--- a/config/chroot_local-includes/etc/apparmor.d/usr.bin.onioncircuits
+++ /dev/null
@@ -1,28 +0,0 @@
-#include <tunables/global>
-
-/usr/bin/onioncircuits {
-  #include <abstractions/base>
-  #include <abstractions/gnome>
-  #include <abstractions/ibus>
-  #include <abstractions/nameservice>
-  #include <abstractions/python>
-
-  # Why are these not in abstractions/python?
-  /usr/lib{,32,64}/python{2,3}.[0-9]/__pycache__/ rw,
-  /usr/lib{,32,64}/python{2,3}.[0-9]/__pycache__/* rw,
-  /usr/lib{,32,64}/python{2,3}.[0-9]/**/__pycache__/ rw,
-  /usr/lib{,32,64}/python{2,3}.[0-9]/**/__pycache__/* rw,
-  /usr/lib{,32,64}/python{2,3}/**/__pycache__/ rw,
-  /usr/lib{,32,64}/python{2,3}/**/__pycache__/* rw,
-
-  /usr/bin/ r,
-  /usr/bin/onioncircuits r,
-  /usr/share/xml/iso-codes/** r,
-  owner @{PROC}/@{pid}/status r,
-
-  deny /etc/machine-id r,
-
-  # Accessibility support
-  owner /{,var/}run/user/*/at-spi2-*/ rw,
-  owner /{,var/}run/user/*/at-spi2-*/** rw,
-}
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 e90fac7dda13e2e8cf2bcadb19dab47462995b49..c91aec6bc5862d577f86985a2315461c55c98a1e 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
@@ -67,7 +67,7 @@ lid-close-ac-action = 'blank'
 lid-close-battery-action = 'blank'
 
 [org/gnome/shell]
-enabled-extensions = ['apps-menu@gnome-shell-extensions.gcampax.github.com', 'places-menu@gnome-shell-extensions.gcampax.github.com', 'window-list@gnome-shell-extensions.gcampax.github.com', 'TopIcons@phocean.net', 'status-menu-helper@tails.boum.org', 'torstatus@tails.boum.org']
+enabled-extensions = ['apps-menu@gnome-shell-extensions.gcampax.github.com', 'places-menu@gnome-shell-extensions.gcampax.github.com', 'window-list@gnome-shell-extensions.gcampax.github.com', 'status-menu-helper@tails.boum.org', 'torstatus@tails.boum.org']
 favorite-apps=['tor-browser.desktop', 'thunderbird.desktop', 'pidgin.desktop', 'keepassx.desktop', 'gnome-terminal.desktop']
 
 [org/gnome/shell/extensions/topicons]
diff --git a/config/chroot_local-includes/etc/tor-browser/profile/chrome/userChrome.css b/config/chroot_local-includes/etc/tor-browser/profile/chrome/userChrome.css
index 4de829966e26a3f1f1ca8756d881e747d7d983e2..cc2c33f3b1dd81de52694aff283eb5dced14624f 100644
--- a/config/chroot_local-includes/etc/tor-browser/profile/chrome/userChrome.css
+++ b/config/chroot_local-includes/etc/tor-browser/profile/chrome/userChrome.css
@@ -25,14 +25,3 @@
 
 /* Hide HTTPS Everywhere button in the toolbar */
 #https-everywhere-button { display: none; }
-
-/* Hide the uBlock sidebar, that's opened on first launch
-   References:
-    - https://github.com/gorhill/uBlock/releases/tag/1.16.6
-    - https://github.com/uBlock-LLC/uBlock/issues/1764 */
-vbox#sidebar-box[sidebarcommand="_UUID~ADDON_-sidebar-action"] {
-   display: none !important;
-}
-vbox#sidebar-box[sidebarcommand="ublock0_raymondhill_net-sidebar-action"] {
-   display: none !important;
-}
diff --git a/config/chroot_local-includes/etc/udev/rules.d/99-hide-TailsData.rules b/config/chroot_local-includes/etc/udev/rules.d/99-hide-TailsData.rules
index 7027a5aaf457d8455da3a1892553435ace7de5ae..67493f5b1dda7f5d80a92951bfa31472f3e39946 100644
--- a/config/chroot_local-includes/etc/udev/rules.d/99-hide-TailsData.rules
+++ b/config/chroot_local-includes/etc/udev/rules.d/99-hide-TailsData.rules
@@ -1 +1 @@
-ENV{UDISKS_PARTITION_LABEL}=="TailsData", ENV{UDISKS_IGNORE}="1"
+ENV{ID_FS_LABEL}=="TailsData", ENV{UDISKS_IGNORE}="1"
diff --git a/config/chroot_local-includes/lib/systemd/system-sleep/toggle-tails-shutdown-on-media-removal.sh b/config/chroot_local-includes/lib/systemd/system-sleep/toggle-tails-shutdown-on-media-removal.sh
new file mode 100755
index 0000000000000000000000000000000000000000..859d21eb83de7c283a32ab90b6643212546ddbbb
--- /dev/null
+++ b/config/chroot_local-includes/lib/systemd/system-sleep/toggle-tails-shutdown-on-media-removal.sh
@@ -0,0 +1,11 @@
+#!/bin/sh
+set -e
+
+case "$1" in
+    pre)
+        systemctl stop tails-shutdown-on-media-removal.service
+        ;;
+    post)
+        systemctl start tails-shutdown-on-media-removal.service
+        ;;
+esac
diff --git a/config/chroot_local-includes/lib/systemd/system.conf.d/lower-DefaultTimeoutStopSec.conf b/config/chroot_local-includes/lib/systemd/system.conf.d/lower-DefaultTimeoutStopSec.conf
new file mode 100644
index 0000000000000000000000000000000000000000..90dce4f6602dfaaf6f5d0b3ed887cab4f4fec599
--- /dev/null
+++ b/config/chroot_local-includes/lib/systemd/system.conf.d/lower-DefaultTimeoutStopSec.conf
@@ -0,0 +1,2 @@
+[Manager]
+DefaultTimeoutStopSec=5s
diff --git a/config/chroot_local-includes/usr/lib/systemd/logind.conf.d/lower-NAutoVTs.conf b/config/chroot_local-includes/usr/lib/systemd/logind.conf.d/lower-NAutoVTs.conf
new file mode 100644
index 0000000000000000000000000000000000000000..df32fcca78999ef850565020f00a1d1e7ccccb05
--- /dev/null
+++ b/config/chroot_local-includes/usr/lib/systemd/logind.conf.d/lower-NAutoVTs.conf
@@ -0,0 +1,3 @@
+# Leaves a free virtual terminal to run tails-gdm-failed-to-start.service on
+[Login]
+NAutoVTs=4
diff --git a/config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js b/config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js
index a68f7c7f066944e4b1daa5cf0b28f10ece84950f..0ddeb4d48108bbdeb26c17dddd09a5ef9202600f 100644
--- a/config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js
+++ b/config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js
@@ -21,14 +21,8 @@
    Raphael Freudiger <laser_b@gmx.ch>.
 **/
 const Lang = imports.lang;
-const Mainloop = imports.mainloop;
-
 const St = imports.gi.St;
-const LoginManager = imports.misc.loginManager;
 const Main = imports.ui.main;
-const StatusSystem = imports.ui.status.system;
-const PopupMenu = imports.ui.popupMenu;
-const ExtensionSystem = imports.ui.extensionSystem;
 const BoxPointer = imports.ui.boxpointer;
 
 const Gettext = imports.gettext.domain('tails');
@@ -39,47 +33,69 @@ const Lib = Me.imports.lib;
 
 const Util = imports.misc.util;
 
+var Action = new Lang.Class({
+    Name: 'Action',
+
+    _init: function(button, id) {
+        this.button = button;
+        this.id = id;
+    }
+});
+
 const Extension = new Lang.Class({
     Name: 'StatusMenuHelper.Extension',
 
     enable: function() {
+        if (this._isEnabled) return;
+        this._isEnabled = true;
+
         this.statusMenu = Main.panel.statusArea['aggregateMenu']._system;
 
         this._createActions();
         this._removeAltSwitcher();
         this._addSeparateButtons();
 
-        this._menuOpenStateChangedId = this.statusMenu.menu.connect('open-state-changed', Lang.bind(this,
-            function(menu, open) {
-                if (!open)
-                    return;
-                this._restartButton.visible = true;
-                this._poweroffButton.visible = true;
-            }));
-
-        Main.sessionMode.connect('updated', Lang.bind(this, this._sessionUpdated));
-        this._sessionUpdated();
+        this.statusMenu.menu.connect('open-state-changed', (menu, open) => {
+            if (!open)
+                return;
+            this._update();
+        });
     },
 
     disable: function() {
-        if (this._menuOpenStateChangedId) {
-            this.statusMenu.menu.disconnect(this._menuOpenStateChangedId);
-            this._menuOpenStateChangedId = 0;
-        }
+        // We want to keep the extention enabled on the lock screen
+        if (Main.sessionMode.isLocked) return;
+        this._isEnabled = false;
 
         this._destroyActions();
         this._restoreAltSwitcher();
     },
 
     _createActions: function() {
-        this._restartButton = this.statusMenu._createActionButton('view-refresh-symbolic', _("Restart"));
-        this._restartButtonId = this._restartButton.connect('clicked', Lang.bind(this, this._onRestartClicked));
- 
-        this._lockScreenButton = this.statusMenu._createActionButton('changes-prevent-symbolic', _("Lock screen"));
-        this._lockScreenButtonId = this._lockScreenButton.connect('clicked', Lang.bind(this, this._onLockClicked));
-
-        this._poweroffButton = this.statusMenu._createActionButton('system-shutdown-symbolic', _("Power Off"));
-        this._poweroffButtonId = this._poweroffButton.connect('clicked', Lang.bind(this, this._onPowerOffClicked));
+        this._lockScreenAction = this._createAction(_("Lock screen"),
+                                                   'changes-prevent-symbolic',
+                                                    this._onLockClicked);
+
+        this._suspendAction = this._createAction(_("Suspend"),
+                                                 'media-playback-pause-symbolic',
+                                                 this._onSuspendClicked);
+
+        this._restartAction = this._createAction(_("Restart"),
+                                                 'view-refresh-symbolic',
+                                                 this._onRestartClicked);
+
+        this._powerOffAction = this._createAction(_("Power Off"),
+                                                  'system-shutdown-symbolic',
+                                                  this._onPowerOffClicked);
+
+        this._actions = [this._lockScreenAction, this._suspendAction,
+                         this._restartAction, this._powerOffAction];
+    },
+
+    _createAction: function(label, icon, onClickedFunction) {
+        let button = this.statusMenu._createActionButton(icon, label);
+        let id = button.connect('clicked', Lang.bind(this, onClickedFunction));
+        return new Action(button, id);
     },
 
     _removeAltSwitcher: function() {
@@ -91,60 +107,50 @@ const Extension = new Lang.Class({
     },
 
     _addSeparateButtons: function() {
-        this.statusMenu._actionsItem.actor.add(this._lockScreenButton, { expand: true, x_fill: false });
-        this.statusMenu._actionsItem.actor.add(this._restartButton, { expand: true, x_fill: false });
-        this.statusMenu._actionsItem.actor.add(this._poweroffButton, { expand: true, x_fill: false });
+        for (let i = 0; i < this._actions.length; i++) {
+            this.statusMenu._actionsItem.actor.add(this._actions[i].button, { expand: true, x_fill: false });
+        }
     },
 
     _destroyActions: function() {
-        if (this._restartButtonId) {
-            this._restartButton.disconnect(this._restartButtonId);
-            this._restartButtonId = 0;
-        }
-
-        if (this._poweroffButtonId) {
-            this._poweroffButton.disconnect(this._poweroffButtonId);
-            this._poweroffButtonId = 0;
-        }
-
-        if (this._lockScreenButtonId) {
-            this._lockScreenButton.disconnect(this._lockScreenButtonId);
-            this._lockScreenButtonId = 0;
-        }
-
-        if (this._restartButton) {
-            this._restartButton.destroy();
-            this._restartButton = 0;
-        }
-
-        if (this._poweroffButton) {
-            this._poweroffButton.destroy();
-            this._poweroffButton = 0;
+        for (let i = 0; i < this._actions.length; i++) {
+            let action = this._actions[i];
+            if (action.id) {
+                action.button.disconnect(action.id);
+                action.id = 0;
+            }
+
+            if (action.button) {
+                action.button.destroy();
+                action.button = 0;
+            }
         }
+    },
 
-        if (this._lockScreenButton) {
-            this._lockScreenButton.destroy();
-            this._lockScreenButton = 0;
-        }
+    _onLockClicked: function() {
+        this.statusMenu.menu.itemActivated(BoxPointer.PopupAnimation.NONE);
+        Main.overview.hide();
+        Util.spawn(['tails-screen-locker']);
     },
 
-    _onPowerOffClicked: function() {
-        Util.spawn(['sudo', '-n', 'poweroff'])
+    _onSuspendClicked: function() {
+        this.statusMenu.menu.itemActivated(BoxPointer.PopupAnimation.NONE);
+        Util.spawn(['systemctl', 'suspend'])
     },
 
     _onRestartClicked: function() {
+        this.statusMenu.menu.itemActivated(BoxPointer.PopupAnimation.NONE);
         Util.spawn(['sudo', '-n', 'reboot'])
     },
 
-    _onLockClicked: function() {
-	this.statusMenu.menu.itemActivated(BoxPointer.PopupAnimation.NONE);
-        Main.overview.hide();
-	Util.spawn(['tails-screen-locker']);
+    _onPowerOffClicked: function() {
+        this.statusMenu.menu.itemActivated(BoxPointer.PopupAnimation.NONE);
+        Util.spawn(['sudo', '-n', 'poweroff'])
     },
 
-    _sessionUpdated: function() {
-        this._lockScreenButton.setSensitive = !Main.sessionMode.isLocked && !Main.sessionMode.isGreeter;
-    },
+    _update: function() {
+        this._lockScreenAction.button.visible = !Main.sessionMode.isLocked && !Main.sessionMode.isGreeter;
+    }
 
 });
 
@@ -152,4 +158,3 @@ function init(metadata) {
     Lib.initTranslations(Me);
     return new Extension();
 }
-
diff --git a/config/chroot_local-includes/usr/share/tails/build/group b/config/chroot_local-includes/usr/share/tails/build/group
index 757bea9476108d3b65036691d6f35df4edb6c3be..c317e936086a994ee0fc70e829f79fa1799d0390 100644
--- a/config/chroot_local-includes/usr/share/tails/build/group
+++ b/config/chroot_local-includes/usr/share/tails/build/group
@@ -45,6 +45,7 @@ input:x:106:
 crontab:x:107:
 netdev:x:108:
 kvm:x:150:
+render:x:151:
 messagebus:x:105:
 ssh:x:109:
 memlockd:x:110:
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 56223d1b4a0dac110327c43994aed66a7c9b338e..facfb7e8044ca6ea2e2e81332d3339467a411553 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/8.0.8-build1/
+http://torbrowser-archive.tails.boum.org/8.0.9-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 a466fee2d0585508d11a6bebca514fa43d46055e..a3fb10f98bc63aa052153a9bbf05d7778e6b9d65 100644
--- a/config/chroot_local-includes/usr/share/tails/tbb-sha256sums.txt
+++ b/config/chroot_local-includes/usr/share/tails/tbb-sha256sums.txt
@@ -1,25 +1,25 @@
-827381c6265029e90bbe0510a3805ded275fa43a6c1e9a70ad6b573954cf8b07  tor-browser-linux64-8.0.8_ar.tar.xz
-a22fdb04003f0101915bfecd00326b11e5114041c1447b25d5691ec4db940c64  tor-browser-linux64-8.0.8_ca.tar.xz
-a482769c70e35206b9a82f0ac03b3c24d741055d6e3bb8af19cf80168e4fd043  tor-browser-linux64-8.0.8_da.tar.xz
-13f6d439dbc1c612bc2a03849b0fcc0e861629b33ccf4bbdcc8a8d2fb32716c1  tor-browser-linux64-8.0.8_de.tar.xz
-b16b80a858dd28f254b2f748324b632fef7ebe8331a2d46c67016c1f1d5c9391  tor-browser-linux64-8.0.8_en-US.tar.xz
-1d736ab404b1080d7820195230534f1e4ea802b4f8d114c02c1b614df5e1fab2  tor-browser-linux64-8.0.8_es-ES.tar.xz
-a3136cbf990476114ae74f16d42c2a159f18032e94f172bdef75f9af7ffba8cf  tor-browser-linux64-8.0.8_fa.tar.xz
-0f90c194b30ad354f28cdb1993206ba45c8fdd6a3c698bb349a84efb07053bf9  tor-browser-linux64-8.0.8_fr.tar.xz
-0322b4f824acfbb9b9b12aa466ffaedafe452c6e047d2023ec30d178676c02eb  tor-browser-linux64-8.0.8_ga-IE.tar.xz
-5cbe242b770d6c7ac7a8ed6139ebcb8fb1467a79d5f4910b0022044b71fa9f36  tor-browser-linux64-8.0.8_he.tar.xz
-7774cd4c54ea64376a1dd126399784e8a5b466fa054851a554a1c2e8de731c02  tor-browser-linux64-8.0.8_id.tar.xz
-6ecbea10450e57255e9a94a150b61e2fd7d70d225f52be4c117bdd1d2e3c6052  tor-browser-linux64-8.0.8_is.tar.xz
-a9027f09b3c251bc7a80b90071f2b96860e9acdff773cf31f275e760ab17006d  tor-browser-linux64-8.0.8_it.tar.xz
-bebffb31e66fee4bd7b84af9863fbf23990d3c88021703fcedd1ad38e203b348  tor-browser-linux64-8.0.8_ja.tar.xz
-c746ad231274011adb909c6b168ff4007d4964d8eec1ef23d2310f4b5996f207  tor-browser-linux64-8.0.8_ko.tar.xz
-d6a160ebe8fa448d768022b02c7a8bbfdc5de55787fd3eab99adf275dd79c9ff  tor-browser-linux64-8.0.8_nb-NO.tar.xz
-93a306495215e8c2f70dd2d06ff09197c88926e4ac3a043ca1253a8999c0ffb0  tor-browser-linux64-8.0.8_nl.tar.xz
-8ffef293214e770f96907429145bb7daa2cb01e0a4b14c67e58f5e072d268fb5  tor-browser-linux64-8.0.8_pl.tar.xz
-3a3816c9069983576b4d1c3f8371315f89a55a7f37a00af572b3e790208c47a4  tor-browser-linux64-8.0.8_pt-BR.tar.xz
-a0fa85ea83c65bb999c5351c59c97f6f40af933b51fde5b882ef9e264ed322c5  tor-browser-linux64-8.0.8_ru.tar.xz
-d27af9f27823a4a9a93d762eea036e104af599a642af99aa962dc31f2a7b308f  tor-browser-linux64-8.0.8_sv-SE.tar.xz
-f32c98481fff6cdbed9db9ad623532f4c2a1417399c1da852b92e301b78efb0e  tor-browser-linux64-8.0.8_tr.tar.xz
-a7a64668a3cc083f517df75636594baded35d590716a417af295b2a8b147fab2  tor-browser-linux64-8.0.8_vi.tar.xz
-fa5e6e8d1dfe580a639463a2240286b110eb8f1684ade467d2e8ca384746a70e  tor-browser-linux64-8.0.8_zh-CN.tar.xz
-d28190b1a802b1e75105302866c4b2d8d03eed9c9c4c93b85ac5fe63e06782d7  tor-browser-linux64-8.0.8_zh-TW.tar.xz
+b3d89a9c621b02fa40fa14c7102b3fb7d0f536e0fe8b983ecd48cf2fa46aa13c  tor-browser-linux64-8.0.9_ar.tar.xz
+f7f9c1f540a505831b4cd249cdde776a8d1dca465c7b730722831fde0cba21ed  tor-browser-linux64-8.0.9_ca.tar.xz
+6a2572c0663ea42364a712213c9e4730e54ed89f73d32ebf25d3c7f26b2e77fb  tor-browser-linux64-8.0.9_da.tar.xz
+ac7e8528780c7c91142f8f554dd38cde84470f2731683e8d712af8155d3f55ee  tor-browser-linux64-8.0.9_de.tar.xz
+ee2c3a2cb8763e8727a7c06f6c22ec54481b34ce648846050941663494205222  tor-browser-linux64-8.0.9_en-US.tar.xz
+4820a741249fcccc5d601b33430bbb97dc28bbe0d64588412b52116defd670fb  tor-browser-linux64-8.0.9_es-ES.tar.xz
+191549954393c95d203da31ef8b445d32b2a816878c111af26dad482dffcfdab  tor-browser-linux64-8.0.9_fa.tar.xz
+63781c85d77ceb1753be5c1b0624b916dec27f74329a728c3c7d0ebe65110217  tor-browser-linux64-8.0.9_fr.tar.xz
+37703494d48bf82303b46fe303a8b16a2a8aac5c5d3ef4faa9e29fb3379ab9e3  tor-browser-linux64-8.0.9_ga-IE.tar.xz
+3f7d087d04bb901ccbb1222fd1e41fb979dc7975f2e07b7ae1cd06004c1eb71c  tor-browser-linux64-8.0.9_he.tar.xz
+b772eac90c9551a96a7aa831405671af7384322aa765874783e333a4144c6025  tor-browser-linux64-8.0.9_id.tar.xz
+5a3d727d31946dae9885a61ea992282e1c9995a86f3f0538e26c055016077b32  tor-browser-linux64-8.0.9_is.tar.xz
+51bd844084b8faef7f43625ae1dcc79c8f576e1632e13577c018acc9ce97ddae  tor-browser-linux64-8.0.9_it.tar.xz
+8632da3b0d08ff351423facf8b0c87b00712b84f294e12997580695b16a51cb3  tor-browser-linux64-8.0.9_ja.tar.xz
+dde0c22b8b276b0964f8ff9dcf0d95bfeac0a68fc8641893d4a0294a8a5d0f93  tor-browser-linux64-8.0.9_ko.tar.xz
+598b7f2b4565e46132bc8399dea7b633bd415845f0979986ebe0c23836a0b561  tor-browser-linux64-8.0.9_nb-NO.tar.xz
+fedf3ebaf34bdb7915ec35de5b53922dac53d13e3aaad695fe6394482b55d70b  tor-browser-linux64-8.0.9_nl.tar.xz
+93ebc591fe4fc79afc2e2479a006f8aeaa8e0cc39c2df6c49a6855d7335f33b9  tor-browser-linux64-8.0.9_pl.tar.xz
+36b74b04dba2bd77858d92040992be5f21b75581149ec583a4434f188617df8e  tor-browser-linux64-8.0.9_pt-BR.tar.xz
+94d407a5df805873fd9042e1d04fa3037f2078e05b85175d262a447a55c37fa4  tor-browser-linux64-8.0.9_ru.tar.xz
+10732b735a5ff620e4dc5afa23bff7b32d7070029465199c98da086eeefd87c3  tor-browser-linux64-8.0.9_sv-SE.tar.xz
+b88b19547e8d07dd576addecf9b56aca50b5096dd3bc06db6001130a0b017111  tor-browser-linux64-8.0.9_tr.tar.xz
+9ac38ac1290e55e90ef04d9b3ec8b1cf428620ee909e4b8aba85103d4a8ea331  tor-browser-linux64-8.0.9_vi.tar.xz
+26d4018db6e93f17658a087036671bfffee7e21d561d3e9762752639a6cfeffc  tor-browser-linux64-8.0.9_zh-CN.tar.xz
+6ae168dae5ec9a3087b44d19dc8a40ea2e2eee781a4cd0423c648714dc45146a  tor-browser-linux64-8.0.9_zh-TW.tar.xz
diff --git a/config/chroot_local-packageslists/tails-common.list b/config/chroot_local-packageslists/tails-common.list
index 77f032b858783524da98fb50cceeacc68b0b0b02..41b578d095762a5bc37c6088d0b43c6507cf11d5 100644
--- a/config/chroot_local-packageslists/tails-common.list
+++ b/config/chroot_local-packageslists/tails-common.list
@@ -172,10 +172,12 @@ libreoffice-l10n-de
 libreoffice-l10n-es
 libreoffice-l10n-fa
 libreoffice-l10n-fr
+libreoffice-l10n-hi
+libreoffice-l10n-id
 libreoffice-l10n-it
 libreoffice-l10n-pt
 libreoffice-l10n-ru
-libreoffice-l10n-vi
+libreoffice-l10n-tr
 libreoffice-l10n-zh-cn
 onioncircuits
 openpgp-applet
@@ -222,7 +224,16 @@ ttf-dejavu
 tcpdump
 tcpflow
 thunderbird
-thunderbird-l10n-all
+thunderbird-l10n-ar
+thunderbird-l10n-de
+thunderbird-l10n-es-es
+thunderbird-l10n-fr
+thunderbird-l10n-id
+thunderbird-l10n-it
+thunderbird-l10n-pt-br
+thunderbird-l10n-ru
+thunderbird-l10n-tr
+thunderbird-l10n-zh-cn
 tor
 tor-geoipdb
 sound-juicer
@@ -290,34 +301,15 @@ ibus-unikey
 ### l10n, i18n
 ## precompiled locales
 locales-all
-## arabic fonts
-fonts-kacst
-fonts-farsiweb
-## chinese fonts
-xfonts-intl-chinese
-fonts-arphic-ukai
-fonts-arphic-uming
-fonts-wqy-microhei
-fonts-wqy-zenhei
 ## Hebrew support
 culmus
 libfribidi0
-## indic fonts
-fonts-indic
-## Khmer language, used in Cambodia
-fonts-khmeros
-## Korean fonts
-fonts-unfonts-core
-## Lao fonts
-fonts-lao
-## russian fonts
-xfonts-bolkhov-koi8r-75dpi
-xfonts-bolkhov-koi8r-misc
-xfonts-cronyx-koi8r-100dpi
-## Sinhala fonts
-fonts-lklug-sinhala
-## Thai fonts
-fonts-thai-tlwg
+## Noto fonts
+fonts-noto-core
+fonts-noto-cjk
+fonts-noto-mono
+fonts-noto-ui-core
+fonts-noto-unhinted
 
 ### CD burning
 brasero
@@ -341,21 +333,17 @@ intel-microcode
 
 ### Dictionaries and spell checking
 hunspell-ar
-hunspell-da
 hunspell-de-de
 hunspell-en-us
 hunspell-es
 myspell-fa
 hunspell-fr
-hunspell-he
+hunspell-hi
+hunspell-id
 hunspell-it
-hunspell-ko
-hunspell-nl
-hunspell-pl
 hunspell-pt-br
 hunspell-ru
-hunspell-sv
-hunspell-vi
+hunspell-tr
 
 ### Mobile broadband devices support (GSM, 3G...)
 mobile-broadband-provider-info
diff --git a/config/chroot_local-patches/handle-dot-key-files-as-pgp-keys.diff b/config/chroot_local-patches/handle-dot-key-files-as-pgp-keys.diff
new file mode 100644
index 0000000000000000000000000000000000000000..cd448d340a87b18f99d1b505f4694fd9167e3fca
--- /dev/null
+++ b/config/chroot_local-patches/handle-dot-key-files-as-pgp-keys.diff
@@ -0,0 +1,19 @@
+diff -Naur /usr/share/mime/packages/freedesktop.org.xml.orig /usr/share/mime/packages/freedesktop.org.xml
+--- /usr/share/mime/packages/freedesktop.org.xml.orig	2019-04-19 18:20:36.836000000 +0000
++++ /usr/share/mime/packages/freedesktop.org.xml	2019-04-19 18:21:19.444000000 +0000
+@@ -1243,6 +1243,7 @@
+     <glob weight="10" pattern="*.asc"/>
+     <glob pattern="*.pgp"/>
+     <glob pattern="*.gpg"/>
++    <glob pattern="*.key"/>
+   </mime-type>
+   <mime-type type="application/pgp-signature">
+     <comment>detached OpenPGP signature</comment>
+@@ -39522,7 +39523,7 @@
+         <match value="index.apxl" type="string" offset="30"/>
+       </match>
+     </magic>
+-    <glob pattern="*.key"/>
++    <glob pattern="*.key" weight="80"/>
+     <alias type="application/vnd.apple.keynote"/>
+   </mime-type>
diff --git a/config/chroot_local-patches/0002-Allow-specifying-that-Enigmail-keyserver-communicati.patch b/config/chroot_local-patches/torbirdy-Allow-specifying-that-Enigmail-keyserver-communicati.patch
similarity index 100%
rename from config/chroot_local-patches/0002-Allow-specifying-that-Enigmail-keyserver-communicati.patch
rename to config/chroot_local-patches/torbirdy-Allow-specifying-that-Enigmail-keyserver-communicati.patch
diff --git a/config/chroot_local-patches/torbirdy-fix-vs-60.5.x.patch b/config/chroot_local-patches/torbirdy-fix-vs-60.5.x.patch
new file mode 100644
index 0000000000000000000000000000000000000000..8242ce0ec3503acb3456dbad8bb72ad14760f843
--- /dev/null
+++ b/config/chroot_local-patches/torbirdy-fix-vs-60.5.x.patch
@@ -0,0 +1,42 @@
+From 645b53b5faa18431e988ea518a3b6d791285b8cf Mon Sep 17 00:00:00 2001
+From: anonym <anonym@riseup.net>
+Date: Wed, 20 Mar 2019 09:47:34 +0100
+Subject: [PATCH] Update XUL element id that changed upstream in 60.5.x/66.x.
+
+---
+ chrome/content/emailwizard.js | 8 ++++----
+ 1 file changed, 4 insertions(+), 4 deletions(-)
+
+diff --git a/chrome/content/emailwizard.js b/chrome/content/emailwizard.js
+index 8e2deea..d9f982c 100644
+--- a/usr/share/xul-ext/torbirdy/chrome/content/emailwizard.js
++++ b/usr/share/xul-ext/torbirdy/chrome/content/emailwizard.js
+@@ -142,21 +142,21 @@ if(!org.torbirdy.emailwizard) org.torbirdy.emailwizard = new function() {
+       // default (POP vs IMAP according to our pref) at suitable times, i.e.
+       // when the page has been pre-filled and is finally presented to user
+       // action.
+-      var result_imappop_hacks_run_once = false;
++      var result_servertype_hacks_run_once = false;
+       var old_displayConfigResult = gEmailConfigWizard.displayConfigResult;
+       gEmailConfigWizard.displayConfigResult = function(config) {
+         old_displayConfigResult.call(this, config);
+-        var radiogroup = document.getElementById("result_imappop");
++        var radiogroup = document.getElementById("result_servertype");
+         if (radiogroup.hidden) {
+           return;
+         }
+         // We can only run the monkeypatch code below once -- this method is
+         // called every time we change selection, preventing us from changing
+         // the selection away from POP.
+-        if (result_imappop_hacks_run_once) {
++        if (result_servertype_hacks_run_once) {
+           return;
+         }
+-        result_imappop_hacks_run_once = true;
++        result_servertype_hacks_run_once = true;
+         var imap_element = document.getElementById("result_select_imap");
+         var pop_element = document.getElementById("result_select_pop3");
+         if (prefer_pop && imap_element.selected && pop_element) {
+-- 
+2.20.1
+
diff --git a/debian/changelog b/debian/changelog
index aebf4ef3e142929c54f09a8dc8bdf36668559202..3b148bf0e435faa0779ad06c92bab2c61fddeec7 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,68 @@
+tails (3.13.2) unstable; urgency=medium
+
+  * Major changes
+    - Replace all locale-specific fonts and standard X.Org fonts with
+      the Noto fonts collection (Closes: #9956).
+    - Install localization support packages for all tier-1 supported languages,
+      and only those (Closes: #15807). Current tier-1 supported languages are:
+      Arabic, German, English, Spanish, Farsi, French, Italian, Portuguese
+      (Brazil), Russian, Turkish, Simplified Chinese, Hindi, Indonesian.
+    - Disable the TopIcons GNOME Shell extension (Closes: #16608).
+      This extension causes crashes (#11188), does not work on Wayland
+      (#8309, #12213) so long-term, we need to remove it anyway.
+      In order to learn how much our users rely on this extension and
+      on OpenPGP Applet, let's disable this extension for one Tails release.
+      While TopIcons is disabled (by default):
+      · Users can still use OpenPGP Applet via the system tray in the bottom
+        left corner of the desktop.
+      · Users who do need TopIcons for other reasons can enable it again
+        with 1 command line.
+
+  * Security fixes
+    - Upgrade Tor Browser to 8.0.9 (Closes: #16694).
+    - Upgrade to Debian Stretch 9.9 (Closes: #16670).
+    - Upgrade Thunderbird to 60.6.1 (Closes: #16641).
+
+  * Bugfixes
+    - Fix Thunderbird account setup wizard (Closes: #16573).
+    - Display poweroff and reboot buttons even when locked (Closes: #15640).
+    - Disable emergency shutdown during suspend (Closes: #11729).
+    - Provide feedback while starting Onion Circuits (Closes: #16350).
+    - Associate .key files with Seahorse (Closes: #15213).
+      This partially fixes importing OpenPGP keys from GNOME Files.
+    - Don't show spurious notification about "TailsData" while setting
+      up a persistent volume (Closes: #16632).
+
+  * Minor improvements and updates
+    - Add a suspend button to status-menu-helper (Closes: #14556).
+    - status-menu-helper: clean up and refactor.
+    - Drop CSS hacks for the uBlock log window (Closes: #16206).
+    - Polish 04-change-gids-and-uids code style (Closes: #16322).
+    - Create persistence.conf backup in a more robust manner (Closes: #16568).
+    - Make the WhisperBack .desktop file translatable in Transifex
+      (Closes: #6486).
+
+  * Build system
+    - Don't fail the build if Tor Browser supports new locales that we don't ship
+      a spellchecking dictionary for (#15807).
+    - Fix apt-cacher-ng cache shrinking (Closes: #16020).
+    - Remove obsolete usr.bin.onioncircuits AppArmor profile (Closes: #12170).
+      All Tails current branches now install onioncircuits 0.6-0.0tails1,
+      which ships a more current AppArmor profile than the one we
+      have in our own Git tree.
+    - Install Electrum from sid (Closes: #16642).
+    - Avoid new "render" group stealing a GID we have already statically
+      allocated to another group (Closes: #16649).
+
+  * Test suite
+    - Disable tests about notifications in case of MAC spoofing failure:
+      we have a well-known bug here and these tests do nothing but confirm
+      it again and again, which brings no value and has a cost (#10774).
+    - Clarify what WebM scenarios are fragile (#10442).
+    - Avoid zombies by waiting for killed child processes to exit (#14948).
+
+ -- Tails developers <tails@boum.org>  Sun, 05 May 2019 19:32:22 +0000
+
 tails (3.13.1) unstable; urgency=medium
 
   * Security fixes
diff --git a/features/mac_spoofing.feature b/features/mac_spoofing.feature
index 9bd13e968e700809aab6f3299c28cdf264d3650a..c4ebdc9162e719de538123e56b5113ccd59bc824 100644
--- a/features/mac_spoofing.feature
+++ b/features/mac_spoofing.feature
@@ -3,7 +3,7 @@ Feature: Spoofing MAC addresses
   In order to not reveal information about the physical location
   As a Tails user
   I want to be able to control whether my network devices MAC addresses should be spoofed
-  And I want this feature to fail safe and notify me in case of errors
+  And I want this feature to fail safe
 
   Background:
     Given I have started Tails from DVD without network and stopped at Tails Greeter's login screen
@@ -31,28 +31,18 @@ Feature: Spoofing MAC addresses
     And the 2nd network device has a spoofed MAC address configured
     And no network device leaked the real MAC address
 
-  #10774
-  @fragile
   Scenario: MAC address spoofing fails and macchanger returns false
     Given macchanger will fail by not spoofing and always returns false
     When I log in to a new session
     Then no network interfaces are enabled
     And no network device leaked the real MAC address
-    # XXX: workaround for #11941
-    And I see the "Network card  disabled" notification after at most 60 seconds
 
-  #10774
-  @fragile
   Scenario: MAC address spoofing fails and macchanger returns true
     Given macchanger will fail by not spoofing and always returns true
     When I log in to a new session
     Then no network interfaces are enabled
     And no network device leaked the real MAC address
-    # XXX: workaround for #11941
-    And I see the "Network card  disabled" notification after at most 60 seconds
 
-  #10774
-  @fragile
   Scenario: MAC address spoofing fails and the module is not removed
     Given macchanger will fail by not spoofing and always returns true
     And no network interface modules can be unloaded
@@ -60,7 +50,6 @@ Feature: Spoofing MAC addresses
     Then 1 network interface is enabled
     But the MAC spoofing panic mode disabled networking
     And no network device leaked the real MAC address
-    And I see the "All networking disabled" notification after at most 60 seconds
 
   Scenario: The MAC address is not leaked when booting Tails
     Given a computer
diff --git a/features/support/helpers/chatbot_helper.rb b/features/support/helpers/chatbot_helper.rb
index 23ce3e1abbd37e9c3758058a8f1952b89f810d5e..6bee74b34e403f3df5aff163c9a3566163a303c8 100644
--- a/features/support/helpers/chatbot_helper.rb
+++ b/features/support/helpers/chatbot_helper.rb
@@ -37,6 +37,7 @@ class ChatBot
     @otr_key_file.delete
     begin
       Process.kill("TERM", @pid)
+      Process.wait(@pid)
     rescue
       # noop
     end
diff --git a/features/support/helpers/sniffing_helper.rb b/features/support/helpers/sniffing_helper.rb
index 38b138207e871a65b7a0919c2e01dc9e43f84161..ca9fa276e0325948218775122ec3c05e29ce63d8 100644
--- a/features/support/helpers/sniffing_helper.rb
+++ b/features/support/helpers/sniffing_helper.rb
@@ -40,6 +40,7 @@ class Sniffer
   def stop
     begin
       Process.kill("TERM", @pid)
+      Process.wait(@pid)
     rescue
       # noop
     end
diff --git a/features/support/helpers/sshd_helper.rb b/features/support/helpers/sshd_helper.rb
index 2e0069c04e6ffa4b7ee546e91f12dc0132de6671..a3814fedbca12137788464bdc43cefef00d426b4 100644
--- a/features/support/helpers/sshd_helper.rb
+++ b/features/support/helpers/sshd_helper.rb
@@ -46,6 +46,7 @@ EOF
     File.delete("#{$config['TMPDIR']}/ssh.pid")
     begin
       Process.kill("TERM", @pid)
+      Process.wait(@pid)
     rescue
       # noop
     end
diff --git a/features/support/hooks.rb b/features/support/hooks.rb
index 3983d1f5557eb133b455ec1c9aef2535251855c9..43c84f3ccaec7c04d6dbcd55eac4b6e615b3708b 100644
--- a/features/support/hooks.rb
+++ b/features/support/hooks.rb
@@ -259,6 +259,7 @@ After('@product') do |scenario|
     # what the error was.
     sleep 3 if scenario.failed?
     Process.kill("INT", @video_capture_pid)
+    Process.wait(@video_capture_pid)
     save_failure_artifact("Video", @video_path)
   end
   if scenario.failed?
diff --git a/features/torified_browsing.feature b/features/torified_browsing.feature
index 201c3d06a042065e97642509e44505ea0ebd6102..c00c50df9baa4fec6ab81d2068c9dea6642118a8 100644
--- a/features/torified_browsing.feature
+++ b/features/torified_browsing.feature
@@ -47,8 +47,7 @@ Feature: Browsing the web using the Tor Browser
     And the Tor Browser loads the startup page
     Then I can listen to an Ogg audio track in Tor Browser
 
-  #10442
-  @check_tor_leaks @fragile
+  @check_tor_leaks
   Scenario: Watching a WebM video
     Given I have started Tails from DVD and logged in and the network is connected
     When I start the Tor Browser
diff --git a/features/totem.feature b/features/totem.feature
index 29447390c64eae9ff220399ee2e1d4a861ceaf04..35270582d240d06f9a7ab19b436441f0ed7a8492 100644
--- a/features/totem.feature
+++ b/features/totem.feature
@@ -45,6 +45,7 @@ Feature: Using Totem
     Then I see "TotemUnableToOpen.png" after at most 10 seconds
     And AppArmor has denied "/usr/bin/totem" from opening "/home/amnesia/.purple/otr.private_key"
 
+  #10442
   @check_tor_leaks @fragile
   Scenario: Watching a WebM video over HTTPS
     Given I have started Tails from DVD and logged in and the network is connected
diff --git a/po/az.po b/po/az.po
index 2f6791a15d837392221d822827b36bea322a2385..7207a1035da4b7c92e25e96ec379a5fc67e17664 100644
--- a/po/az.po
+++ b/po/az.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-14 21:20+0100\n"
+"POT-Creation-Date: 2019-04-06 14:00+0200\n"
 "PO-Revision-Date: 2014-12-30 17:30+0000\n"
 "Last-Translator: E <ehuseynzade@gmail.com>\n"
 "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/torproject/"
@@ -72,15 +72,15 @@ msgid ""
 "storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:173
 msgid ""
 "To add more, install some software using <a href=\"synaptic.desktop"
 "\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop"
 "\">APT on the command line</a>."
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:151
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
 msgid "_Create persistent storage"
 msgstr ""
 
@@ -135,14 +135,18 @@ msgid "su is disabled. Please use sudo instead."
 msgstr ""
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
-msgid "Restart"
+msgid "Lock screen"
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:78
-msgid "Lock screen"
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79
+msgid "Suspend"
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:81
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83
+msgid "Restart"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87
 msgid "Power Off"
 msgstr "Söndür"
 
@@ -175,7 +179,7 @@ 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:147
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
 #, fuzzy, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -185,81 +189,81 @@ msgstr ""
 "əlaqəni yoxla, Tails-i yenidən başlatmağa cəhd et, və ya problemi daha yaxşı "
 "anlamaq üçün sistem girişini oxu."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
 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:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 msgid "Show Log"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 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:222
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
 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:289
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
 #, fuzzy, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "Sənin əlaqə proqramın"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
 msgid "Install Every Time"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:297
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 msgid "Install Only Once"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 msgid "The configuration of your additional software failed."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
 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:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:335
 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:341
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
 msgid ""
 "To do so, you need to run Tails from a USB stick installed using <i>Tails "
 "Installer</i>."
@@ -267,51 +271,52 @@ msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:359
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
 #, fuzzy, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "Sənin əlaqə proqramın"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:363
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:365
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:368
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:156
 msgid "Remove"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:369
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #: config/chroot_local-includes/usr/local/bin/tor-browser:46
 msgid "Cancel"
 msgstr "Ləğv et"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:547
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:546
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:549
 msgid "This can take several minutes."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:559
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:562
 #, fuzzy
 msgid "The installation of your additional software failed"
 msgstr "Sənin əlaqə proqramın"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:574
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:577
 msgid "Additional software installed successfully"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:594
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:597
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:596
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:599
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:607
 #, fuzzy
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
@@ -321,12 +326,12 @@ msgstr ""
 "əlaqəni yoxla, Tails-i yenidən başlatmağa cəhd et, və ya problemi daha yaxşı "
 "anlamaq üçün sistem girişini oxu."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:606
 #, fuzzy
 msgid "The upgrade of your additional software failed"
 msgstr "Sənin əlaqə proqramın"
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:39
 #, fuzzy
 msgid "Documentation"
 msgstr "Tails sənədləşməsi"
@@ -356,34 +361,34 @@ msgstr "Sənin əlaqə proqramın"
 msgid "Stop installing {package} automatically"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
 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:188
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:189
 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:198
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:199
 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:206
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:207
 msgid ""
 "To do so, install Tails on a USB stick using <a href=\"tails-installer."
 "desktop\">Tails Installer</a> and create a persistent storage."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:254
 #, fuzzy
 msgid "[package not available]"
 msgstr "qeyri mümkün"
diff --git a/po/bg.po b/po/bg.po
index 07393e8c079f688f6407bd8239c5b38295f4e0cd..0c3c575f9c6aed8fb9d2f0f24d61f32e6ac830de 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -19,7 +19,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-14 21:20+0100\n"
+"POT-Creation-Date: 2019-04-06 14:00+0200\n"
 "PO-Revision-Date: 2018-03-08 03:22+0000\n"
 "Last-Translator: Ivo\n"
 "Language-Team: Bulgarian (http://www.transifex.com/otf/torproject/language/"
@@ -83,15 +83,15 @@ msgid ""
 "storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:173
 msgid ""
 "To add more, install some software using <a href=\"synaptic.desktop"
 "\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop"
 "\">APT on the command line</a>."
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:151
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
 msgid "_Create persistent storage"
 msgstr ""
 
@@ -149,14 +149,18 @@ msgid "su is disabled. Please use sudo instead."
 msgstr ""
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
-msgid "Restart"
-msgstr "Рестарт"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:78
 msgid "Lock screen"
 msgstr "Заключване на екрана"
 
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:81
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79
+msgid "Suspend"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83
+msgid "Restart"
+msgstr "Рестарт"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87
 msgid "Power Off"
 msgstr "Изключване"
 
@@ -189,7 +193,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:147
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
 #, fuzzy, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -199,7 +203,7 @@ msgstr ""
 "софтуер, или прегледайте системните логове, за да добиете по-добра идея какъ "
 "е проблемът."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
 #, fuzzy
 msgid ""
 "Please check your list of additional software or read the system log to "
@@ -209,77 +213,77 @@ msgstr ""
 "софтуер, или прегледайте системните логове, за да добиете по-добра идея какъ "
 "е проблемът."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 msgid "Show Log"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 #, fuzzy
 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:222
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
 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:289
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
 msgid "Install Every Time"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:297
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 msgid "Install Only Once"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #, fuzzy
 msgid "The configuration of your additional software failed."
 msgstr "Надграждането на допълнителния софтуер е неуспешно."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
 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:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:335
 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:341
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
 msgid ""
 "To do so, you need to run Tails from a USB stick installed using <i>Tails "
 "Installer</i>."
@@ -287,54 +291,55 @@ msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:359
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:363
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:365
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:368
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:156
 msgid "Remove"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:369
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #: config/chroot_local-includes/usr/local/bin/tor-browser:46
 msgid "Cancel"
 msgstr "Отказ"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:547
 #, fuzzy
 msgid "Installing your additional software from persistent storage..."
 msgstr "Допълнителният софтуер е инсталиран"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:546
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:549
 msgid "This can take several minutes."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:559
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:562
 #, fuzzy
 msgid "The installation of your additional software failed"
 msgstr "Надграждането на допълнителния софтуер е неуспешно."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:574
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:577
 #, fuzzy
 msgid "Additional software installed successfully"
 msgstr "Допълнителният софтуер е инсталиран"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:594
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:597
 #, fuzzy
 msgid "The check for upgrades of your additional software failed"
 msgstr "Надграждането на допълнителния софтуер е неуспешно."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:596
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:599
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:607
 #, fuzzy
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
@@ -344,12 +349,12 @@ msgstr ""
 "Моля, проверете мрежовата си връзка, опитайте да рестартирате Tails, или "
 "прочетете системния дневник за разберем по-добре проблема."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:606
 #, fuzzy
 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:39
 #, fuzzy
 msgid "Documentation"
 msgstr "Tails документация"
@@ -379,34 +384,34 @@ msgstr "Допълнителната софтуер инсталция е неу
 msgid "Stop installing {package} automatically"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
 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:188
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:189
 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:198
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:199
 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:206
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:207
 msgid ""
 "To do so, install Tails on a USB stick using <a href=\"tails-installer."
 "desktop\">Tails Installer</a> and create a persistent storage."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:254
 #, fuzzy
 msgid "[package not available]"
 msgstr "не е в наличност"
diff --git a/po/bn.po b/po/bn.po
index e742faab696790aa538d9f6691425c05f6ad9fe7..65d211c6b7f09abdebeb52513c5cd90487feb9a8 100644
--- a/po/bn.po
+++ b/po/bn.po
@@ -10,7 +10,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-14 21:20+0100\n"
+"POT-Creation-Date: 2019-04-06 14:00+0200\n"
 "PO-Revision-Date: 2019-01-29 06:41+0000\n"
 "Last-Translator: Al Shahrior Hasan Sagor <shahrior3814@gmail.com>\n"
 "Language-Team: Bengali (http://www.transifex.com/otf/torproject/language/"
@@ -77,8 +77,8 @@ msgstr ""
 "Tails শুরু করার সময় নিম্নোক্ত সফটওয়্যারটি আপনার একরোখা ভাণ্ডার থেকে স্বয়ংক্রিয়ভাবে "
 "সংস্থাপিত হয় ।"
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:173
 msgid ""
 "To add more, install some software using <a href=\"synaptic.desktop"
 "\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop"
@@ -88,7 +88,7 @@ msgstr ""
 "href=\"org.gnome.Terminal.desktop\">APT</a> ব্যবহার করে কিছু সফ্টওয়্যার ইনস্টল "
 "করুন কমান্ড লাইনে ।"
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:151
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
 msgid "_Create persistent storage"
 msgstr "_Create অবিরাম স্টোরেজ"
 
@@ -155,14 +155,18 @@ msgid "su is disabled. Please use sudo instead."
 msgstr "su অক্ষমিত। এর পরিবর্তে sudo ব্যবহার করুন ।"
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
-msgid "Restart"
-msgstr "পুনরায় চালু করুন"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:78
 msgid "Lock screen"
 msgstr "লক স্ক্রিন"
 
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:81
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79
+msgid "Suspend"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83
+msgid "Restart"
+msgstr "পুনরায় চালু করুন"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87
 msgid "Power Off"
 msgstr "যন্ত্র বন্ধ"
 
@@ -195,7 +199,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:147
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -204,7 +208,7 @@ msgstr ""
 "{details} অনুগ্রহ করে আপনার অতিরিক্ত সফটওয়্যারের তালিকা পরীক্ষা করুন অথবা সমস্যা "
 "বুঝে সিস্টেম কার্যবিবরণী পড়ুন ।"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
@@ -212,55 +216,55 @@ msgstr ""
 "অনুগ্রহ করে আপনার অতিরিক্ত সফটওয়্যারের তালিকা পরীক্ষা করুন অথবা সমস্যা বুঝে সিস্টেম "
 "কার্যবিবরণী পড়ুন ।"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 msgid "Show Log"
 msgstr "লগ প্রদর্শন করুন"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 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:222
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} এবং {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
 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:289
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "আপনার অতিরিক্ত সফটওয়্যারের জন্য {packages} যোগ করুন?"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 "Tails শুরু করার সময় আপনার অবিরাম সঞ্চয় থেকে স্বয়ংক্রিয়ভাবে এটি ইনস্টল করতে হবে ।"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
 msgid "Install Every Time"
 msgstr "প্রতিবার ইনস্টল করুন"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:297
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 msgid "Install Only Once"
 msgstr "শুধুমাত্র একবার সংস্থাপন করুন"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 msgid "The configuration of your additional software failed."
 msgstr "আপনার অতিরিক্ত সফটওয়্যারের কনফিগারেশন ব্যর্থ হয়েছে ।"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -268,22 +272,22 @@ msgstr ""
 "Tails শুরু করার সময় স্বয়ংক্রিয়ভাবে এটি সংস্থাপন করতে, আপনি একটি একরোখা স্টোরেজ "
 "তৈরি করতে পারেন এবং <b>অতিরিক্ত সফটওয়্যার</b> বৈশিষ্ট্য সক্রিয় করতে পারবেন ।"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
 msgid "Create Persistent Storage"
 msgstr "অবিরাম স্টোরেজ তৈরি করুন"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:335
 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:341
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
 #, 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:344
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
 msgid ""
 "To do so, you need to run Tails from a USB stick installed using <i>Tails "
 "Installer</i>."
@@ -293,50 +297,51 @@ msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:359
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
 #, 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:363
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr "এটি স্বয়ংক্রিয়ভাবে {packages} ইনস্টল করা বন্ধ করবে ।"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:365
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:368
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:156
 msgid "Remove"
 msgstr "অপসারণ"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:369
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #: config/chroot_local-includes/usr/local/bin/tor-browser:46
 msgid "Cancel"
 msgstr "বাতিল"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:547
 msgid "Installing your additional software from persistent storage..."
 msgstr "আপনার অতিরিক্ত সফটওয়্যারকে একরোখা স্টোরেজ থেকে সংস্থাপন করা হচ্ছে..."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:546
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:549
 msgid "This can take several minutes."
 msgstr "এটি কয়েক মিনিট সময় নিতে পারে ।"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:559
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:562
 msgid "The installation of your additional software failed"
 msgstr "আপনার অতিরিক্ত সফটওয়্যারের ইনস্টলেশন ব্যর্থ হয়েছে"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:574
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:577
 msgid "Additional software installed successfully"
 msgstr "অতিরিক্ত সফ্টওয়্যার সফলভাবে সংস্থাপিত হয়েছে"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:594
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:597
 msgid "The check for upgrades of your additional software failed"
 msgstr "আপনার অতিরিক্ত সফটওয়্যারের আপগ্রেড করার জন্য পরীক্ষণ ব্যর্থ হয়েছে"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:596
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:599
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:607
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -344,11 +349,11 @@ msgstr ""
 "অনুগ্রহ করে আপনার নেটওয়ার্ক কানেকশান চেক করুন, Tails পুনর্সূচনা করুন বা সিস্টেম লগ-ইন "
 "সমস্যা বোঝার জন্য পড়ুন."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:606
 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:39
 msgid "Documentation"
 msgstr "ডকুমেন্টেশন"
 
@@ -378,7 +383,7 @@ msgstr "অতিরিক্ত সফটওয়্যার কনফিগ
 msgid "Stop installing {package} automatically"
 msgstr "{package} স্বয়ংক্রিয়ভাবে ইনস্টল করা থামান"
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
 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 "
@@ -388,7 +393,7 @@ msgstr ""
 "href=\"org.gnome.Terminal.desktop\">APT কমান্ড লাইন</a> ব্যবহার করে কিছু "
 "সফটওয়্যার ইন্সটল করুন ।"
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:189
 msgid ""
 "To do so, unlock your persistent storage when starting Tails and install "
 "some software using <a href=\"synaptic.desktop\">Synaptic Package Manager</"
@@ -398,7 +403,7 @@ msgstr ""
 "\"synaptic.desktop\">Synaptic প্যাকেজ ম্যানেজার</a> বা <a href=\"org.gnome."
 "Terminal.desktop\">APT কমান্ড লাইন</a> ব্যবহার করে কিছু সফটওয়্যার ইনস্টল করে নিন ।"
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:199
 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."
@@ -408,7 +413,7 @@ msgstr ""
 "\">Synaptic প্যাকেজ ম্যানেজার</a> বা <a href=\"org.gnome.Terminal.desktop"
 "\">APT কমান্ড লাইন</a> ব্যবহার করে কিছু সফটওয়্যার ইন্সটল করতে হবে ।"
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:207
 msgid ""
 "To do so, install Tails on a USB stick using <a href=\"tails-installer."
 "desktop\">Tails Installer</a> and create a persistent storage."
@@ -416,7 +421,7 @@ msgstr ""
 "তা করতে, <a href=\"tails-installer.desktop\">Tails ইনস্টলার</a> ব্যবহার করে "
 "একটি USB স্টিক থেকে Tails ইনস্টল করুন এবং একটি অবিরাম স্টোরেজ তৈরি করুন ।"
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:254
 msgid "[package not available]"
 msgstr "[প্যাকেজ সুপ্রাপ্য নয়]"
 
diff --git a/po/bn_BD.po b/po/bn_BD.po
index c309c95ee5bdec854ef9b07be0d229b054f4f5d6..ab7919fe13afc26b312170f252ebbc3b8b76b273 100644
--- a/po/bn_BD.po
+++ b/po/bn_BD.po
@@ -10,7 +10,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-14 21:20+0100\n"
+"POT-Creation-Date: 2019-04-06 14:00+0200\n"
 "PO-Revision-Date: 2018-10-06 22:54+0000\n"
 "Last-Translator: Emma Peel\n"
 "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/otf/torproject/"
@@ -77,8 +77,8 @@ msgstr ""
 "Tails শুরু করার সময় নিম্নোক্ত সফটওয়্যারটি আপনার একরোখা ভাণ্ডার থেকে স্বয়ংক্রিয়ভাবে "
 "সংস্থাপিত হয় ।"
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:173
 msgid ""
 "To add more, install some software using <a href=\"synaptic.desktop"
 "\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop"
@@ -88,7 +88,7 @@ msgstr ""
 "href=\"org.gnome.Terminal.desktop\">APT</a> ব্যবহার করে কিছু সফ্টওয়্যার ইনস্টল "
 "করুন কমান্ড লাইনে ।"
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:151
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
 msgid "_Create persistent storage"
 msgstr "_Create অবিরাম স্টোরেজ"
 
@@ -146,14 +146,18 @@ msgid "su is disabled. Please use sudo instead."
 msgstr ""
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
-msgid "Restart"
-msgstr "পুনরায় চালু করুন"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:78
 msgid "Lock screen"
 msgstr "লক স্ক্রিন"
 
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:81
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79
+msgid "Suspend"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83
+msgid "Restart"
+msgstr "পুনরায় চালু করুন"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87
 msgid "Power Off"
 msgstr "যন্ত্র বন্ধ"
 
@@ -186,7 +190,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:147
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -195,7 +199,7 @@ msgstr ""
 "{details} অনুগ্রহ করে আপনার অতিরিক্ত সফটওয়্যারের তালিকা পরীক্ষা করুন অথবা সমস্যা "
 "বুঝে সিস্টেম কার্যবিবরণী পড়ুন ।"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
@@ -203,55 +207,55 @@ msgstr ""
 "অনুগ্রহ করে আপনার অতিরিক্ত সফটওয়্যারের তালিকা পরীক্ষা করুন অথবা সমস্যা বুঝে সিস্টেম "
 "কার্যবিবরণী পড়ুন ।"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 msgid "Show Log"
 msgstr "লগ প্রদর্শন করুন"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 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:222
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} এবং {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
 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:289
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "আপনার অতিরিক্ত সফটওয়্যারের জন্য {packages} যোগ করুন?"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 "Tails শুরু করার সময় আপনার অবিরাম সঞ্চয় থেকে স্বয়ংক্রিয়ভাবে এটি ইনস্টল করতে হবে ।"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
 msgid "Install Every Time"
 msgstr "প্রতিবার ইনস্টল করুন"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:297
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 msgid "Install Only Once"
 msgstr "শুধুমাত্র একবার সংস্থাপন করুন"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 msgid "The configuration of your additional software failed."
 msgstr "আপনার অতিরিক্ত সফটওয়্যারের কনফিগারেশন ব্যর্থ হয়েছে ।"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -259,22 +263,22 @@ msgstr ""
 "Tails শুরু করার সময় স্বয়ংক্রিয়ভাবে এটি সংস্থাপন করতে, আপনি একটি একরোখা স্টোরেজ "
 "তৈরি করতে পারেন এবং <b>অতিরিক্ত সফটওয়্যার</b> বৈশিষ্ট্য সক্রিয় করতে পারবেন ।"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
 msgid "Create Persistent Storage"
 msgstr "অবিরাম স্টোরেজ তৈরি করুন"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:335
 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:341
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
 #, 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:344
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
 msgid ""
 "To do so, you need to run Tails from a USB stick installed using <i>Tails "
 "Installer</i>."
@@ -284,50 +288,51 @@ msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:359
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
 #, 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:363
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr "এটি স্বয়ংক্রিয়ভাবে {packages} ইনস্টল করা বন্ধ করবে ।"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:365
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:368
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:156
 msgid "Remove"
 msgstr "অপসারণ"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:369
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #: config/chroot_local-includes/usr/local/bin/tor-browser:46
 msgid "Cancel"
 msgstr "বাতিল"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:547
 msgid "Installing your additional software from persistent storage..."
 msgstr "আপনার অতিরিক্ত সফটওয়্যারকে একরোখা স্টোরেজ থেকে সংস্থাপন করা হচ্ছে..."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:546
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:549
 msgid "This can take several minutes."
 msgstr "এটি কয়েক মিনিট সময় নিতে পারে ।"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:559
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:562
 msgid "The installation of your additional software failed"
 msgstr "আপনার অতিরিক্ত সফটওয়্যারের ইনস্টলেশন ব্যর্থ হয়েছে"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:574
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:577
 msgid "Additional software installed successfully"
 msgstr "অতিরিক্ত সফ্টওয়্যার সফলভাবে সংস্থাপিত হয়েছে"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:594
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:597
 msgid "The check for upgrades of your additional software failed"
 msgstr "আপনার অতিরিক্ত সফটওয়্যারের আপগ্রেড করার জন্য পরীক্ষণ ব্যর্থ হয়েছে"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:596
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:599
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:607
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -335,11 +340,11 @@ msgstr ""
 "অনুগ্রহ করে আপনার নেটওয়ার্ক কানেকশান চেক করুন, Tails পুনর্সূচনা করুন বা সিস্টেম লগ-ইন "
 "সমস্যা বোঝার জন্য পড়ুন."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:606
 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:39
 msgid "Documentation"
 msgstr "ডকুমেন্টেশন"
 
@@ -369,7 +374,7 @@ msgstr "অতিরিক্ত সফটওয়্যার কনফিগ
 msgid "Stop installing {package} automatically"
 msgstr "{package} স্বয়ংক্রিয়ভাবে ইনস্টল করা থামান"
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
 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 "
@@ -379,7 +384,7 @@ msgstr ""
 "href=\"org.gnome.Terminal.desktop\">APT কমান্ড লাইন</a> ব্যবহার করে কিছু "
 "সফটওয়্যার ইন্সটল করুন ।"
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:189
 msgid ""
 "To do so, unlock your persistent storage when starting Tails and install "
 "some software using <a href=\"synaptic.desktop\">Synaptic Package Manager</"
@@ -389,7 +394,7 @@ msgstr ""
 "\"synaptic.desktop\">Synaptic প্যাকেজ ম্যানেজার</a> বা <a href=\"org.gnome."
 "Terminal.desktop\">APT কমান্ড লাইন</a> ব্যবহার করে কিছু সফটওয়্যার ইনস্টল করে নিন ।"
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:199
 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."
@@ -399,7 +404,7 @@ msgstr ""
 "\">Synaptic প্যাকেজ ম্যানেজার</a> বা <a href=\"org.gnome.Terminal.desktop"
 "\">APT কমান্ড লাইন</a> ব্যবহার করে কিছু সফটওয়্যার ইন্সটল করতে হবে ।"
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:207
 msgid ""
 "To do so, install Tails on a USB stick using <a href=\"tails-installer."
 "desktop\">Tails Installer</a> and create a persistent storage."
@@ -407,7 +412,7 @@ msgstr ""
 "তা করতে, <a href=\"tails-installer.desktop\">Tails ইনস্টলার</a> ব্যবহার করে "
 "একটি USB স্টিক থেকে Tails ইনস্টল করুন এবং একটি অবিরাম স্টোরেজ তৈরি করুন ।"
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:254
 msgid "[package not available]"
 msgstr "[প্যাকেজ সুপ্রাপ্য নয়]"
 
diff --git a/po/ca.po b/po/ca.po
index 16fcd5bfd382eb15b09676bd5f4a6f8da0658059..049cd55d346ae9c9f7c3e7ee61c1f93137635df0 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -21,7 +21,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-14 21:20+0100\n"
+"POT-Creation-Date: 2019-04-06 14:00+0200\n"
 "PO-Revision-Date: 2019-02-03 21:28+0000\n"
 "Last-Translator: josep constantí mata <iceberg.jcm@gmail.com>\n"
 "Language-Team: Catalan (http://www.transifex.com/otf/torproject/language/"
@@ -91,8 +91,8 @@ msgstr ""
 "El programari següent s'instal·la automàticament des del teu emmagatzematge "
 "persistent quan s'inicia Tails"
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:173
 msgid ""
 "To add more, install some software using <a href=\"synaptic.desktop"
 "\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop"
@@ -102,7 +102,7 @@ msgstr ""
 "desktop\">Synaptic Package Manager</a> o <a href=\"org.gnome.Terminal.desktop"
 "\">APT a la línia d'ordres</a>."
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:151
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
 msgid "_Create persistent storage"
 msgstr "_Crea emmagatzematge persistent"
 
@@ -169,14 +169,18 @@ msgid "su is disabled. Please use sudo instead."
 msgstr "su no està actiu. Altrament podeu utilitzar sudo"
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
-msgid "Restart"
-msgstr "Reinicia"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:78
 msgid "Lock screen"
 msgstr "Bloca la pantalla"
 
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:81
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79
+msgid "Suspend"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83
+msgid "Restart"
+msgstr "Reinicia"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87
 msgid "Power Off"
 msgstr "Apaga"
 
@@ -209,7 +213,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:147
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -218,7 +222,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:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
@@ -226,56 +230,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:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 msgid "Show Log"
 msgstr "Mostra el registre"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 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:222
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} i {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
 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:289
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
 #, 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:291
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
 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:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
 msgid "Install Every Time"
 msgstr "Instal·leu cada vegada"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:297
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 msgid "Install Only Once"
 msgstr "Instal·la només una vegada"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 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:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -284,22 +288,22 @@ msgstr ""
 "emmagatzematge persistent i activar la funció de <b>programari addicional</"
 "b>."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
 msgid "Create Persistent Storage"
 msgstr "Crea un emmagatzematge persistent"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:335
 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:341
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
 #, 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:344
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
 msgid ""
 "To do so, you need to run Tails from a USB stick installed using <i>Tails "
 "Installer</i>."
@@ -309,53 +313,54 @@ msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:359
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
 #, 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:363
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
 #, 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:365
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:368
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:156
 msgid "Remove"
 msgstr "Suprimeix la subscripció"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:369
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #: config/chroot_local-includes/usr/local/bin/tor-browser:46
 msgid "Cancel"
 msgstr "Cancel·la"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:547
 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:546
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:549
 msgid "This can take several minutes."
 msgstr "Això pot trigar uns quants minuts."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:559
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:562
 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:574
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:577
 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:594
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:597
 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:596
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:599
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:607
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -363,11 +368,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:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:606
 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:39
 msgid "Documentation"
 msgstr "Documentació"
 
@@ -397,7 +402,7 @@ msgstr "No s'ha pogut llegir la configuració addicional del programari"
 msgid "Stop installing {package} automatically"
 msgstr "No instal·leu {package} automàticament"
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
 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 "
@@ -407,7 +412,7 @@ msgstr ""
 "\">Synaptic Package Manager</a> o <a href=\"org.gnome.Terminal.desktop\">APT "
 "a la línia d'ordres</a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:189
 msgid ""
 "To do so, unlock your persistent storage when starting Tails and install "
 "some software using <a href=\"synaptic.desktop\">Synaptic Package Manager</"
@@ -418,7 +423,7 @@ msgstr ""
 "\">Synaptic Package Manager</a> o <a href=\"org.gnome.Terminal.desktop\">APT "
 "a la línia d'ordres</a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:199
 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."
@@ -428,7 +433,7 @@ msgstr ""
 "utilitzant <a href=\"synaptic.desktop\">Synaptic Package Manager</a> o <a "
 "href=\"org.gnome.Terminal.desktop\">APT a la línia d'ordres</a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:207
 msgid ""
 "To do so, install Tails on a USB stick using <a href=\"tails-installer."
 "desktop\">Tails Installer</a> and create a persistent storage."
@@ -436,7 +441,7 @@ msgstr ""
 "Per fer-ho, instal·leu Tails en un llapis USB usant <a href=\"tails-"
 "installer.desktop\">Tails Installer</a> i creeu un emmagatzematge persistent."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:254
 msgid "[package not available]"
 msgstr "[paquet no disponible] "
 
diff --git a/po/cs.po b/po/cs.po
index dcd37020c88731b27fe91d3e51f277411e28cd7f..1604171b7a3451be771f976f1962128f719b63b2 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -17,7 +17,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-14 21:20+0100\n"
+"POT-Creation-Date: 2019-04-06 14:00+0200\n"
 "PO-Revision-Date: 2017-12-07 22:10+0000\n"
 "Last-Translator: Michal Vašíček <michalvasicek@icloud.com>\n"
 "Language-Team: Czech (http://www.transifex.com/otf/torproject/language/cs/)\n"
@@ -79,15 +79,15 @@ msgid ""
 "storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:173
 msgid ""
 "To add more, install some software using <a href=\"synaptic.desktop"
 "\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop"
 "\">APT on the command line</a>."
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:151
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
 msgid "_Create persistent storage"
 msgstr ""
 
@@ -145,14 +145,18 @@ msgid "su is disabled. Please use sudo instead."
 msgstr ""
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
-msgid "Restart"
-msgstr "Restart"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:78
 msgid "Lock screen"
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:81
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79
+msgid "Suspend"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83
+msgid "Restart"
+msgstr "Restart"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87
 msgid "Power Off"
 msgstr "Vypnout"
 
@@ -185,7 +189,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:147
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
 #, fuzzy, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -195,81 +199,81 @@ msgstr ""
 "Prosíme zkontrolujte své internetové připojení, pokuste se restartovat Tails "
 "nebo si přečtěte systémový log pro lepší porozumění problému."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
 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:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 msgid "Show Log"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 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:222
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
 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:289
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
 #, fuzzy, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "Vaše další programy"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
 msgid "Install Every Time"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:297
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 msgid "Install Only Once"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 msgid "The configuration of your additional software failed."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
 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:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:335
 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:341
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
 msgid ""
 "To do so, you need to run Tails from a USB stick installed using <i>Tails "
 "Installer</i>."
@@ -277,51 +281,52 @@ msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:359
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
 #, fuzzy, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "Vaše další programy"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:363
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:365
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:368
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:156
 msgid "Remove"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:369
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #: config/chroot_local-includes/usr/local/bin/tor-browser:46
 msgid "Cancel"
 msgstr "Zrušit"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:547
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:546
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:549
 msgid "This can take several minutes."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:559
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:562
 #, fuzzy
 msgid "The installation of your additional software failed"
 msgstr "Vaše další programy"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:574
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:577
 msgid "Additional software installed successfully"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:594
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:597
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:596
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:599
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:607
 #, fuzzy
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
@@ -331,12 +336,12 @@ msgstr ""
 "Prosíme zkontrolujte své internetové připojení, pokuste se restartovat Tails "
 "nebo si přečtěte systémový log pro lepší porozumění problému."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:606
 #, fuzzy
 msgid "The upgrade of your additional software failed"
 msgstr "Vaše další programy"
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:39
 #, fuzzy
 msgid "Documentation"
 msgstr "Dokumentace Tails"
@@ -366,34 +371,34 @@ msgstr "Vaše další programy"
 msgid "Stop installing {package} automatically"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
 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:188
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:189
 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:198
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:199
 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:206
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:207
 msgid ""
 "To do so, install Tails on a USB stick using <a href=\"tails-installer."
 "desktop\">Tails Installer</a> and create a persistent storage."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:254
 #, fuzzy
 msgid "[package not available]"
 msgstr "nedostupné"
diff --git a/po/cy.po b/po/cy.po
index 17aea9711f3913cc874af6744bd36300a3853a1f..c01319d319fe4f0a15e8af7624b82de4a5fe0c39 100644
--- a/po/cy.po
+++ b/po/cy.po
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-14 21:20+0100\n"
+"POT-Creation-Date: 2019-04-06 14:00+0200\n"
 "PO-Revision-Date: 2014-04-30 09:10+0000\n"
 "Last-Translator: runasand <runa.sandvik@gmail.com>\n"
 "Language-Team: Welsh (http://www.transifex.com/projects/p/torproject/"
@@ -73,15 +73,15 @@ msgid ""
 "storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:173
 msgid ""
 "To add more, install some software using <a href=\"synaptic.desktop"
 "\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop"
 "\">APT on the command line</a>."
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:151
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
 msgid "_Create persistent storage"
 msgstr ""
 
@@ -136,14 +136,18 @@ msgid "su is disabled. Please use sudo instead."
 msgstr ""
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
-msgid "Restart"
+msgid "Lock screen"
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:78
-msgid "Lock screen"
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79
+msgid "Suspend"
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:81
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83
+msgid "Restart"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87
 msgid "Power Off"
 msgstr "Pŵer bant"
 
@@ -176,7 +180,7 @@ 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:147
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
 #, fuzzy, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -186,81 +190,81 @@ msgstr ""
 "eich cysylltiad rhwydwaith, ceisiwch ailddechrau Tails, neu ddarllenwch y "
 "cyfnod system i ddeall y broblem yn well."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
 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:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 msgid "Show Log"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 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:222
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
 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:289
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
 #, fuzzy, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "Eich meddalwedd ychwanegol"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
 msgid "Install Every Time"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:297
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 msgid "Install Only Once"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 msgid "The configuration of your additional software failed."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
 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:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:335
 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:341
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
 msgid ""
 "To do so, you need to run Tails from a USB stick installed using <i>Tails "
 "Installer</i>."
@@ -268,51 +272,52 @@ msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:359
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
 #, fuzzy, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "Eich meddalwedd ychwanegol"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:363
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:365
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:368
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:156
 msgid "Remove"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:369
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #: config/chroot_local-includes/usr/local/bin/tor-browser:46
 msgid "Cancel"
 msgstr "Canslo"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:547
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:546
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:549
 msgid "This can take several minutes."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:559
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:562
 #, fuzzy
 msgid "The installation of your additional software failed"
 msgstr "Eich meddalwedd ychwanegol"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:574
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:577
 msgid "Additional software installed successfully"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:594
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:597
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:596
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:599
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:607
 #, fuzzy
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
@@ -322,12 +327,12 @@ msgstr ""
 "eich cysylltiad rhwydwaith, ceisiwch ailddechrau Tails, neu ddarllenwch y "
 "cyfnod system i ddeall y broblem yn well."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:606
 #, fuzzy
 msgid "The upgrade of your additional software failed"
 msgstr "Eich meddalwedd ychwanegol"
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:39
 #, fuzzy
 msgid "Documentation"
 msgstr "Dogfennaeth Tails"
@@ -357,34 +362,34 @@ msgstr "Eich meddalwedd ychwanegol"
 msgid "Stop installing {package} automatically"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
 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:188
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:189
 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:198
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:199
 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:206
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:207
 msgid ""
 "To do so, install Tails on a USB stick using <a href=\"tails-installer."
 "desktop\">Tails Installer</a> and create a persistent storage."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:254
 #, fuzzy
 msgid "[package not available]"
 msgstr "ddim ar gael"
diff --git a/po/da.po b/po/da.po
index ba770120ab31f70463f1425a9fe498e415bc16c9..c769ed22228771b153b1636bfb91d4c99acc94ee 100644
--- a/po/da.po
+++ b/po/da.po
@@ -20,8 +20,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-14 21:20+0100\n"
-"PO-Revision-Date: 2019-01-29 21:24+0000\n"
+"POT-Creation-Date: 2019-04-06 14:00+0200\n"
+"PO-Revision-Date: 2019-04-07 11:43+0000\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish (http://www.transifex.com/otf/torproject/language/"
 "da/)\n"
@@ -89,8 +89,8 @@ msgstr ""
 "Følgende software installeres automatisk fra dit vedvarende lager når Tails "
 "startes."
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:173
 msgid ""
 "To add more, install some software using <a href=\"synaptic.desktop"
 "\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop"
@@ -100,7 +100,7 @@ msgstr ""
 "\">Synaptic-pakkehåndtering</a> eller <a href=\"org.gnome.Terminal.desktop"
 "\">APT i kommandolinjen</a>."
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:151
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
 msgid "_Create persistent storage"
 msgstr "_Opret vedvarende lager"
 
@@ -166,14 +166,18 @@ msgid "su is disabled. Please use sudo instead."
 msgstr "su er deaktiveret. Brug venligst sudo i stedet."
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
-msgid "Restart"
-msgstr "Genstart"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:78
 msgid "Lock screen"
 msgstr "Lås skærm"
 
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:81
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79
+msgid "Suspend"
+msgstr "Hvile"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83
+msgid "Restart"
+msgstr "Genstart"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87
 msgid "Power Off"
 msgstr "Luk ned"
 
@@ -206,7 +210,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:147
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -215,7 +219,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:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
@@ -223,56 +227,56 @@ 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:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 msgid "Show Log"
 msgstr "Vis Log"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 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:222
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} og {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
 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:289
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
 #, 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:291
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 "For automatisk at installere software fra dit vedvarende lager når Tails "
 "startes."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
 msgid "Install Every Time"
 msgstr "Installer hver gang"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:297
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 msgid "Install Only Once"
 msgstr "Installer kun én gang"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 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:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -280,22 +284,22 @@ msgstr ""
 "Det installeres automatisk når Tails startes. Du kan oprette et vedvarende "
 "lager og aktivere <b>Yderligere software</b>-funktionen."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
 msgid "Create Persistent Storage"
 msgstr "Opret vedvarende lager"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:335
 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:341
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr "Du kan automatisk installere {packages} når Tails startes"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
 msgid ""
 "To do so, you need to run Tails from a USB stick installed using <i>Tails "
 "Installer</i>."
@@ -305,50 +309,51 @@ msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:359
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
 #, 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:363
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
 #, 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:365
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:368
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:156
 msgid "Remove"
 msgstr "Fjern"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:369
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #: config/chroot_local-includes/usr/local/bin/tor-browser:46
 msgid "Cancel"
 msgstr "Annuller"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:547
 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:546
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:549
 msgid "This can take several minutes."
 msgstr "Det kan tage flere minutter."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:559
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:562
 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:574
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:577
 msgid "Additional software installed successfully"
 msgstr "Yderligere software blev installeret."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:594
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:597
 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:596
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:599
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:607
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -356,11 +361,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:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:606
 msgid "The upgrade of your additional software failed"
 msgstr "Opgraderingeren 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:39
 msgid "Documentation"
 msgstr "Dokumentation"
 
@@ -390,7 +395,7 @@ msgstr "Kunne ikke læse konfiguration af yderligere software"
 msgid "Stop installing {package} automatically"
 msgstr "Stop automatisk installation af {package}"
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
 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 "
@@ -400,7 +405,7 @@ msgstr ""
 "\">Synaptic-pakkehåndtering</a> eller <a href=\"org.gnome.Terminal.desktop"
 "\">APT i kommandolinjen</a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:189
 msgid ""
 "To do so, unlock your persistent storage when starting Tails and install "
 "some software using <a href=\"synaptic.desktop\">Synaptic Package Manager</"
@@ -411,7 +416,7 @@ msgstr ""
 "pakkehåndtering</a> eller <a href=\"org.gnome.Terminal.desktop\">APT i "
 "kommandolinjen</a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:199
 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."
@@ -421,7 +426,7 @@ msgstr ""
 "href=\"synaptic.desktop\">Synaptic-pakkehåndtering</a> eller <a href=\"org."
 "gnome.Terminal.desktop\">APT i kommandolinjen</a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:207
 msgid ""
 "To do so, install Tails on a USB stick using <a href=\"tails-installer."
 "desktop\">Tails Installer</a> and create a persistent storage."
@@ -430,7 +435,7 @@ msgstr ""
 "installer.desktop\">Tails-installationsprogram</a> og oprette et vedvarende "
 "lager."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:254
 msgid "[package not available]"
 msgstr "[pakken er ikke tilgængelig]"
 
diff --git a/po/de.po b/po/de.po
index 17ba44e81dee468f6a1ab071ef6bebcea6b0a96a..73344ca7a793e1070e46efe93c307f4712845557 100644
--- a/po/de.po
+++ b/po/de.po
@@ -7,7 +7,7 @@
 # Christian Spaan, 2016
 # Claudia <claudianied@web.de>, 2015
 # trantor <clucko3@gmail.com>, 2014
-# Curtis Baltimore <curtisbaltimore@protonmail.com>, 2018
+# Curtis Baltimore <curtisbaltimore@protonmail.com>, 2018-2019
 # DoKnGH26" 21 <inactive+dokngh2621@transifex.com>, 2015
 # D P, 2015
 # Emma Peel, 2018
@@ -36,9 +36,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-14 21:20+0100\n"
-"PO-Revision-Date: 2019-02-15 05:59+0000\n"
-"Last-Translator: Thomas Oberndörfer <thomas@mailvelope.com>\n"
+"POT-Creation-Date: 2019-04-06 14:00+0200\n"
+"PO-Revision-Date: 2019-04-07 09:32+0000\n"
+"Last-Translator: Curtis Baltimore <curtisbaltimore@protonmail.com>\n"
 "Language-Team: German (http://www.transifex.com/otf/torproject/language/"
 "de/)\n"
 "Language: de\n"
@@ -105,8 +105,8 @@ msgstr ""
 "Die folgende Software wird beim Start von Tails automatisch von deiner "
 "beständigen Datenpartition installiert."
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:173
 msgid ""
 "To add more, install some software using <a href=\"synaptic.desktop"
 "\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop"
@@ -116,7 +116,7 @@ msgstr ""
 "\">Synaptic Packet Manager</a> oder <a href=\"org.gnome.Terminal.desktop"
 "\">APT in der Kommandozeile</a>."
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:151
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
 msgid "_Create persistent storage"
 msgstr "_Beständige Datenpartition erzeugen"
 
@@ -182,14 +182,18 @@ msgid "su is disabled. Please use sudo instead."
 msgstr "su ist deaktiviert. Bitte nutze stattdessen sudo."
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
-msgid "Restart"
-msgstr "Neustart"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:78
 msgid "Lock screen"
 msgstr "Sperrbildschirm"
 
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:81
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79
+msgid "Suspend"
+msgstr "Anhalten"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83
+msgid "Restart"
+msgstr "Neustart"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87
 msgid "Power Off"
 msgstr "Ausschalten"
 
@@ -222,7 +226,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:147
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -231,7 +235,7 @@ msgstr ""
 "{details} Bitte überprüfen Sie die Liste von zusätzlicher Software, oder "
 "lesen Sie das Systemprotokoll, um das Problem zu verstehen."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
@@ -239,56 +243,56 @@ msgstr ""
 "Bitte überprüfen Sie die Liste zusätzlicher Software, oder schauen Sie in "
 "die System-Logdatei /var/log/syslog, um das Problem zu verstehen."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 msgid "Show Log"
 msgstr "Zeige Logdatei"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 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:222
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} und {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
 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:289
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
 #, 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:291
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
 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."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
 msgid "Install Every Time"
 msgstr "Jedes Mal installieren"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:297
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 msgid "Install Only Once"
 msgstr "Nur ein Mal installieren"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 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:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -297,22 +301,22 @@ msgstr ""
 "beständige Datenpartition erstellen und unter <b>Zusätzliche Software</b> "
 "aktivieren."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
 msgid "Create Persistent Storage"
 msgstr "Beständige Datenpartition erzeugen"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:335
 msgid "Creating your persistent storage failed."
 msgstr "Die Erzeugung der beständigen Datenpartition schlug fehl."
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr "Sie können {packages} automatisch beim Start von Tail installieren."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
 msgid ""
 "To do so, you need to run Tails from a USB stick installed using <i>Tails "
 "Installer</i>."
@@ -322,54 +326,55 @@ msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:359
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "{packages} entfernen von Ihrer 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:363
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
 #, 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:365
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:368
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:156
 msgid "Remove"
 msgstr "Aufheben"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:369
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #: config/chroot_local-includes/usr/local/bin/tor-browser:46
 msgid "Cancel"
 msgstr "Abbrechen"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:547
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 "Installieren Sie Ihre zusätzliche Software von der beständigen "
 "Datenpartition..."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:546
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:549
 msgid "This can take several minutes."
 msgstr "Dies kann einige Minuten dauern."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:559
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:562
 msgid "The installation of your additional software failed"
 msgstr "Die Installation Ihrer zusätzlichen Software schlug fehl."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:574
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:577
 msgid "Additional software installed successfully"
 msgstr "Ihre zusätzliche Software wurde erfolgreich installiert."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:594
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:597
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 "Die Überprüfung auf Aktualisierungen für Ihre zusätzliche Software schlug "
 "fehl."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:596
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:599
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:607
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -377,11 +382,11 @@ msgstr ""
 "Bitte überprüfen Sie ihre Netzwerkverbindung, starten Sie Tails neu, oder "
 "lesen Sie die System-Logdatei syslog, um das Problem zu verstehen."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:606
 msgid "The upgrade of your additional software failed"
 msgstr "Die Aktualisierung Ihrer 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:39
 msgid "Documentation"
 msgstr "Dokumentation"
 
@@ -411,7 +416,7 @@ msgstr "Fehler beim Lesen der Konfiguration für zusätzliche Software"
 msgid "Stop installing {package} automatically"
 msgstr "Stoppen Sie die automatische Installation von {package}"
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
 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 "
@@ -421,7 +426,7 @@ msgstr ""
 "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:188
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:189
 msgid ""
 "To do so, unlock your persistent storage when starting Tails and install "
 "some software using <a href=\"synaptic.desktop\">Synaptic Package Manager</"
@@ -432,7 +437,7 @@ msgstr ""
 "\">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:198
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:199
 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."
@@ -443,7 +448,7 @@ msgstr ""
 "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:206
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:207
 msgid ""
 "To do so, install Tails on a USB stick using <a href=\"tails-installer."
 "desktop\">Tails Installer</a> and create a persistent storage."
@@ -452,7 +457,7 @@ msgstr ""
 "installer.desktop\">Tails-Installer</a>, und erstellen Sie eine beständige "
 "Datenpartition."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:254
 msgid "[package not available]"
 msgstr "[Paket nicht verfügbar]"
 
diff --git a/po/el.po b/po/el.po
index b98bebd144918e5e39a0844dd5034ef95387c377..b2ecf751d80b7a0b9b9e9a3e1eefef6d6139fb34 100644
--- a/po/el.po
+++ b/po/el.po
@@ -28,7 +28,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-14 21:20+0100\n"
+"POT-Creation-Date: 2019-04-06 14:00+0200\n"
 "PO-Revision-Date: 2019-01-11 14:12+0000\n"
 "Last-Translator: Panos <alwayslivid@protonmail.com>\n"
 "Language-Team: Greek (http://www.transifex.com/otf/torproject/language/el/)\n"
@@ -97,8 +97,8 @@ msgstr ""
 "Το ακόλουθο λογισμικό εγκαθίσταται αυτόματα από το μόνιμο αποθηκευτικό σας "
 "χώρο ξεκινώντας τα Tails."
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:173
 msgid ""
 "To add more, install some software using <a href=\"synaptic.desktop"
 "\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop"
@@ -108,7 +108,7 @@ msgstr ""
 "href=\"synaptic.desktop\">Synaptic Package Manager</a>ή το <a href=\"org."
 "gnome.Terminal.desktop\">ΑΡΤ στην γραμμή εντολών</a>."
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:151
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
 msgid "_Create persistent storage"
 msgstr "_Δημιουργία μόνιμου αποθηκευτικού χώρου"
 
@@ -167,14 +167,18 @@ msgid "su is disabled. Please use sudo instead."
 msgstr ""
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
-msgid "Restart"
-msgstr "Επανεκκίνηση "
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:78
 msgid "Lock screen"
 msgstr "Κλείδωμα οθόνης"
 
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:81
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79
+msgid "Suspend"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83
+msgid "Restart"
+msgstr "Επανεκκίνηση "
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87
 msgid "Power Off"
 msgstr "Απενεργοποίηση"
 
@@ -207,7 +211,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:147
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -216,7 +220,7 @@ msgstr ""
 "{details} Παρακαλώ, ελέγξτε τη λίστα σας με τα επιπρόσθετα λογισμικά ή "
 "διαβάστε το αρχείο συστήματος για να κατανοήσετε το πρόβλημα."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
@@ -224,56 +228,56 @@ msgstr ""
 "[λεπτομέρειες] Παρακαλώ, ελέγξτε τη λίστα σας με τα επιπρόσθετα λογισμικά ή "
 "διαβάστε το αρχείο συστήματος για να κατανοήσετε το πρόβλημα."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 msgid "Show Log"
 msgstr "Εμφάνιση αρχείου καταγραφής"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 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:222
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} και {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
 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:289
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "Να προστεθούν τα {packages} στο επιπρόθετο λογισμικό σας;"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 "Μπορείτε να εγκαταστήσετε επιπλέον λογισμικό αυτόματα από το μόνιμο "
 "αποθηκευτικό σας χώρο ξεκινώντας τα Tails."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
 msgid "Install Every Time"
 msgstr "Εγκατάσταση κάθε φορά"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:297
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 msgid "Install Only Once"
 msgstr "Εγκατάσταση μόνο μία φορά"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 msgid "The configuration of your additional software failed."
 msgstr "Η διαμόρφωση για το επιπρόσθετο λογισμικό απέτυχε."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -282,23 +286,23 @@ msgstr ""
 "δημιουργήσετε ένα μόνιμο αποθηκευτικό χώρο και να ενεργοποιήσετε τη "
 "λειτουργία <b>Πρόσθετο λογισμικό</b>. "
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
 msgid "Create Persistent Storage"
 msgstr "Δημιουργία Μόνιμου Αποθηκευτικού Χώρου"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:335
 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:341
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
 #, 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:344
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
 msgid ""
 "To do so, you need to run Tails from a USB stick installed using <i>Tails "
 "Installer</i>."
@@ -308,51 +312,52 @@ msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:359
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
 #, 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:363
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr "Αυτό θα σταματήσει την εγκατάσταση των {packages} αυτόματα."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:365
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:368
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:156
 msgid "Remove"
 msgstr "Απομάκρυνση"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:369
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #: config/chroot_local-includes/usr/local/bin/tor-browser:46
 msgid "Cancel"
 msgstr "Άκυρο"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:547
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 "Εγκαθιστάται το πρόσθετό σας λογισμικό από το μόνιμο αποθηκευτικό χώρο..."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:546
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:549
 msgid "This can take several minutes."
 msgstr "Αυτό μπορεί να πάρει μερικά λεπτά."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:559
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:562
 msgid "The installation of your additional software failed"
 msgstr "Η εγκατάσταση του πρόσθετου λογισμικού απέτυχε."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:574
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:577
 msgid "Additional software installed successfully"
 msgstr "Το πρόσθετο λογισμικό εγκαταστάθηκε επιτυχώς."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:594
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:597
 msgid "The check for upgrades of your additional software failed"
 msgstr "Ο έλεγχος για αναβαθμίσεις για τα πρόσθετα λογισμικά σας απέτυχε."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:596
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:599
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:607
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -360,11 +365,11 @@ msgstr ""
 "Ελέγξτε την σύνδεσή σας στο διαδίκτυο, επανεκκινήστε τα Tails ή διαβάστε το "
 "ιστορικό συστήματος για να κατανοήσετε το πρόβλημα."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:606
 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:39
 msgid "Documentation"
 msgstr "Τεκμηρίωση"
 
@@ -394,7 +399,7 @@ msgstr "Απέτυχε η ανάγνωση διαμόρφωσης του πρό
 msgid "Stop installing {package} automatically"
 msgstr "Σταμάτησε την εγκατάσταση των {package} αυτόματα"
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
 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 "
@@ -404,7 +409,7 @@ msgstr ""
 "\"synaptic.desktop\">Synaptic Package Manager</a>ή το <a href=\"org.gnome."
 "Terminal.desktop\">ΑΡΤ στην γραμμή εντολών</a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:189
 msgid ""
 "To do so, unlock your persistent storage when starting Tails and install "
 "some software using <a href=\"synaptic.desktop\">Synaptic Package Manager</"
@@ -415,7 +420,7 @@ msgstr ""
 "\"synaptic.desktop\">Synaptic Package Manager</a>ή το <a href=\"org.gnome."
 "Terminal.desktop\">ΑΡΤ στην γραμμή εντολών</a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:199
 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."
@@ -426,7 +431,7 @@ msgstr ""
 "\">Synaptic Package Manager</a>ή το <a href=\"org.gnome.Terminal.desktop"
 "\">ΑΡΤ στην γραμμή εντολών</a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:207
 msgid ""
 "To do so, install Tails on a USB stick using <a href=\"tails-installer."
 "desktop\">Tails Installer</a> and create a persistent storage."
@@ -435,7 +440,7 @@ msgstr ""
 "τον <a href=\"tails-installer.desktop\">Εγκαταστάτη Tails</a> και "
 "δημιουργήστε ένα μόνιμο αποθηκευτικό χώρο."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:254
 msgid "[package not available]"
 msgstr "[πακέτο μη διαθέσιμο]"
 
diff --git a/po/en_GB.po b/po/en_GB.po
index afe34ed50cb4ad966677e01de593f43237891bc6..50f6a813795ed642f8448e89595bad75afa2120a 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-14 21:20+0100\n"
+"POT-Creation-Date: 2019-04-06 14:00+0200\n"
 "PO-Revision-Date: 2019-01-16 23:26+0000\n"
 "Last-Translator: Andi Chandler <andi@gowling.com>\n"
 "Language-Team: English (United Kingdom) (http://www.transifex.com/otf/"
@@ -79,8 +79,8 @@ msgstr ""
 "The following software is installed automatically from your persistent "
 "storage when starting Tails."
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:173
 msgid ""
 "To add more, install some software using <a href=\"synaptic.desktop"
 "\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop"
@@ -90,7 +90,7 @@ msgstr ""
 "\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop"
 "\">APT on the command line</a>."
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:151
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
 msgid "_Create persistent storage"
 msgstr "_Create persistent storage"
 
@@ -156,14 +156,18 @@ msgid "su is disabled. Please use sudo instead."
 msgstr ""
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
-msgid "Restart"
-msgstr "Restart"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:78
 msgid "Lock screen"
 msgstr "Lock screen"
 
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:81
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79
+msgid "Suspend"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83
+msgid "Restart"
+msgstr "Restart"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87
 msgid "Power Off"
 msgstr "Power Off"
 
@@ -196,7 +200,7 @@ msgstr "not available"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:147
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -205,7 +209,7 @@ msgstr ""
 "{details} Please check your list of additional software or read the system "
 "log to understand the problem."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
@@ -213,55 +217,55 @@ msgstr ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 msgid "Show Log"
 msgstr "Show Log"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 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:222
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} and {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
 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:289
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "Add {packages} to your additional software?"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 "To install it automatically from your persistent storage when starting Tails."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
 msgid "Install Every Time"
 msgstr "Install Every Time"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:297
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 msgid "Install Only Once"
 msgstr "Install Only Once"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 msgid "The configuration of your additional software failed."
 msgstr "The configuration of your additional software failed."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -269,22 +273,22 @@ msgstr ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
 msgid "Create Persistent Storage"
 msgstr "Create Persistent Storage"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:335
 msgid "Creating your persistent storage failed."
 msgstr "Creating your persistent storage failed."
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr "You could install {packages} automatically when starting Tails"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
 msgid ""
 "To do so, you need to run Tails from a USB stick installed using <i>Tails "
 "Installer</i>."
@@ -294,50 +298,51 @@ msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:359
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "Remove {packages} from your additional software?"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:363
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr "This will stop installing {packages} automatically."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:365
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:368
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:156
 msgid "Remove"
 msgstr "Remove"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:369
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #: config/chroot_local-includes/usr/local/bin/tor-browser:46
 msgid "Cancel"
 msgstr "Cancel"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:547
 msgid "Installing your additional software from persistent storage..."
 msgstr "Installing your additional software from persistent storage..."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:546
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:549
 msgid "This can take several minutes."
 msgstr "This can take several minutes."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:559
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:562
 msgid "The installation of your additional software failed"
 msgstr "The installation of your additional software failed"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:574
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:577
 msgid "Additional software installed successfully"
 msgstr "Additional software installed successfully"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:594
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:597
 msgid "The check for upgrades of your additional software failed"
 msgstr "The check for upgrades of your additional software failed"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:596
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:599
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:607
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -345,11 +350,11 @@ msgstr ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:606
 msgid "The upgrade of your additional software failed"
 msgstr "The upgrade of your additional software failed"
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:39
 msgid "Documentation"
 msgstr "Documentation"
 
@@ -379,7 +384,7 @@ msgstr "Failed to read additional software configuration"
 msgid "Stop installing {package} automatically"
 msgstr "Stop installing {package} automatically"
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
 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 "
@@ -389,7 +394,7 @@ msgstr ""
 "Package Manager</a> or <a href=\"org.gnome.Terminal.desktop\">APT on the "
 "command line</a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:189
 msgid ""
 "To do so, unlock your persistent storage when starting Tails and install "
 "some software using <a href=\"synaptic.desktop\">Synaptic Package Manager</"
@@ -399,7 +404,7 @@ msgstr ""
 "some software using <a href=\"synaptic.desktop\">Synaptic Package Manager</"
 "a> or <a href=\"org.gnome.Terminal.desktop\">APT on the command line</a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:199
 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."
@@ -409,7 +414,7 @@ msgstr ""
 "href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a href=\"org."
 "gnome.Terminal.desktop\">APT on the command line</a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:207
 msgid ""
 "To do so, install Tails on a USB stick using <a href=\"tails-installer."
 "desktop\">Tails Installer</a> and create a persistent storage."
@@ -417,7 +422,7 @@ msgstr ""
 "To do so, install Tails on a USB stick using <a href=\"tails-installer."
 "desktop\">Tails Installer</a> and create a persistent storage."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:254
 msgid "[package not available]"
 msgstr "[package not available]"
 
diff --git a/po/es.po b/po/es.po
index 18559f5caefa663f01d9ce6f53788c5f9c3c756d..64f6c313c0a2d6b819fa1e8c7d1e20c542ed23f3 100644
--- a/po/es.po
+++ b/po/es.po
@@ -17,8 +17,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-14 21:20+0100\n"
-"PO-Revision-Date: 2019-01-24 09:22+0000\n"
+"POT-Creation-Date: 2019-04-06 14:00+0200\n"
+"PO-Revision-Date: 2019-04-06 13:40+0000\n"
 "Last-Translator: Emma Peel\n"
 "Language-Team: Spanish (http://www.transifex.com/otf/torproject/language/"
 "es/)\n"
@@ -87,8 +87,8 @@ msgstr ""
 "El siguientes software se instala automáticamente de tu almacenamiento "
 "persistente cuando arrancas Tails."
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:173
 msgid ""
 "To add more, install some software using <a href=\"synaptic.desktop"
 "\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop"
@@ -98,9 +98,9 @@ msgstr ""
 "Gestor de Paquetes Synaptic</a> o <a href=\"org.gnome.Terminal.desktop\">con "
 "APT en la línea de comandos</a>."
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:151
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
 msgid "_Create persistent storage"
-msgstr "_Crear el almacenamiento permanente"
+msgstr "_Crear el almacenamiento persistente"
 
 #: config/chroot_local-includes/usr/local/bin/electrum:57
 msgid "Persistence is disabled for Electrum"
@@ -144,12 +144,12 @@ msgid ""
 msgstr ""
 "<b><big>¿Quieres renombrar tu base de datos <i>KeePassX</i>?</big></b>\n"
 "\n"
-"Tienes una base de datos <i>KeePassX</i> en tu carpeta <i>Permanente</i>:\n"
+"Tienes una base de datos <i>KeePassX</i> en tu carpeta <i>Persistente</i>:\n"
 "\n"
 "<i>${filename}</i>\n"
 "\n"
-"Renombrarla como <i>keepassx.kdbx</i> te permitirá <i>KeePassX</i> para, en "
-"el futuro, abrirla automáticmente."
+"Renombrarla como <i>keepassx.kdbx</i> te permitirá  abrirla automáticamente "
+"con <i>KeePassX</i>en el futuro."
 
 #: config/chroot_local-includes/usr/local/bin/keepassx:25
 msgid "Rename"
@@ -164,14 +164,18 @@ msgid "su is disabled. Please use sudo instead."
 msgstr "su está desactivado. En su lugar usa sudo."
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
-msgid "Restart"
-msgstr "Reiniciar"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:78
 msgid "Lock screen"
 msgstr "Bloquear pantalla"
 
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:81
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79
+msgid "Suspend"
+msgstr "Suspender"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83
+msgid "Restart"
+msgstr "Reiniciar"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87
 msgid "Power Off"
 msgstr "Apagar"
 
@@ -206,7 +210,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:147
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -215,7 +219,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:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
@@ -223,79 +227,79 @@ 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:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 msgid "Show Log"
 msgstr "Mostrar registro ('log')"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 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:222
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} y {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
 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:289
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
 #, 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:291
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
-"Para instalarlo automáticamente desde tu almacenamiento permanente cuando "
+"Para instalarlo automáticamente desde tu almacenamiento persistente cuando "
 "inicies Tails."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
 msgid "Install Every Time"
 msgstr "Instalarlo cada vez"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:297
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 msgid "Install Only Once"
 msgstr "Instalarlo sólo una vez"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 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:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
 msgstr ""
 "Para instalarlo automáticamente cuando inicies Tails, has de crear un "
-"almacenamiento permanente y activar la función <b>Software Adicional</b>."
+"almacenamiento persistente y activar la función <b>Software Adicional</b>."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
 msgid "Create Persistent Storage"
 msgstr "Crear Almacenamiento Persistente"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:335
 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:341
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
 #, 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:344
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
 msgid ""
 "To do so, you need to run Tails from a USB stick installed using <i>Tails "
 "Installer</i>."
@@ -305,51 +309,52 @@ msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:359
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
 #, 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:363
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
 #, 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:365
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:368
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:156
 msgid "Remove"
 msgstr "Eliminar"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:369
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #: config/chroot_local-includes/usr/local/bin/tor-browser:46
 msgid "Cancel"
 msgstr "Cancelar"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:547
 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:546
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:549
 msgid "This can take several minutes."
 msgstr "Esto puede tardar un poco..."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:559
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:562
 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:574
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:577
 msgid "Additional software installed successfully"
 msgstr "Se ha instalado tu software adicional"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:594
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:597
 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:596
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:599
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:607
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -357,11 +362,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:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:606
 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:39
 msgid "Documentation"
 msgstr "Documentación"
 
@@ -391,7 +396,7 @@ msgstr "Ha fallado la lectura de la configuración de software adicional "
 msgid "Stop installing {package} automatically"
 msgstr "Detener la instalación automática de {package}"
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
 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 "
@@ -401,7 +406,7 @@ msgstr ""
 "de Paquetes Synaptic</a> o <a href=\"org.gnome.Terminal.desktop\">con APT en "
 "la línea de comandos</a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:189
 msgid ""
 "To do so, unlock your persistent storage when starting Tails and install "
 "some software using <a href=\"synaptic.desktop\">Synaptic Package Manager</"
@@ -412,7 +417,7 @@ msgstr ""
 "Synaptic</a> o <a href=\"org.gnome.Terminal.desktop\">con APT en la línea de "
 "comandos</a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:199
 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."
@@ -422,7 +427,7 @@ msgstr ""
 "<a href=\"synaptic.desktop\">el Gestor de Paquetes Synaptic</a> o <a href="
 "\"org.gnome.Terminal.desktop\">con APT en la línea de comandos</a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:207
 msgid ""
 "To do so, install Tails on a USB stick using <a href=\"tails-installer."
 "desktop\">Tails Installer</a> and create a persistent storage."
@@ -430,7 +435,7 @@ msgstr ""
 "Para hacerlo, instala Tails en una memoria USB utilizando el <a href=\"tails-"
 "installer.desktop\">Tails Installer</a> y crea un almacenamiento persistente."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:254
 msgid "[package not available]"
 msgstr "[paquete no disponible]"
 
diff --git a/po/es_AR.po b/po/es_AR.po
index 692cc565b9e5cd1f879d5cb6368deeb0df6ddf6c..24886fbfe312f53f20e6e00169c6b1efe68c97a3 100644
--- a/po/es_AR.po
+++ b/po/es_AR.po
@@ -13,8 +13,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-14 21:20+0100\n"
-"PO-Revision-Date: 2019-03-14 11:29+0000\n"
+"POT-Creation-Date: 2019-04-06 14:00+0200\n"
+"PO-Revision-Date: 2019-04-06 18:29+0000\n"
 "Last-Translator: Zuhualime Akoochimoya\n"
 "Language-Team: Spanish (Argentina) (http://www.transifex.com/otf/torproject/"
 "language/es_AR/)\n"
@@ -83,8 +83,8 @@ msgstr ""
 "El siguiente programa es instalado automáticamente desde tu almacenamiento "
 "persistente cuando esté arrancando Tails."
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:173
 msgid ""
 "To add more, install some software using <a href=\"synaptic.desktop"
 "\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop"
@@ -94,7 +94,7 @@ msgstr ""
 "desktop\">Gestor de paquetes Synaptic</a> ó <a href=\"org.gnome.Terminal."
 "desktop\">APT en la línea de comandos</a>."
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:151
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
 msgid "_Create persistent storage"
 msgstr "_Crear almacenamiento persistente"
 
@@ -157,17 +157,21 @@ msgstr "Mantener nombre actual"
 
 #: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
 msgid "su is disabled. Please use sudo instead."
-msgstr "su está deshabilitado. Por favor use sudo en vez."
+msgstr "su está deshabilitado. Por favor usar sudo en vez."
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
-msgid "Restart"
-msgstr "Reiniciar"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:78
 msgid "Lock screen"
 msgstr "Bloquear pantalla"
 
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:81
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79
+msgid "Suspend"
+msgstr "Suspender"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83
+msgid "Restart"
+msgstr "Reiniciar"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87
 msgid "Power Off"
 msgstr "Apagar"
 
@@ -200,7 +204,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:147
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -209,7 +213,7 @@ msgstr ""
 "{details} Por favor revisá tu lista de programas adicionales o leé la "
 "bitácora de sistema para entender el problema."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
@@ -217,56 +221,56 @@ msgstr ""
 "Por favor revisá tu lista de programas adicionales o leé la bitácora de "
 "sistema para entender el problema."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 msgid "Show Log"
 msgstr "Mostrar bitácora"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 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:222
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} y {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
 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:289
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "¿Añadir {packages} a tus programas adicionales?"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 "Para instalarlo automáticamente desde tu almacenamiento persistente cuando "
 "esté arrancando Tails."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
 msgid "Install Every Time"
 msgstr "Instalar todas las veces"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:297
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 msgid "Install Only Once"
 msgstr "Instalar sólo una vez"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 msgid "The configuration of your additional software failed."
 msgstr "La configuración de tu programa adicional falló."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -275,23 +279,23 @@ msgstr ""
 "almacenamiento persistente y activar la característica <b>Programas "
 "Adicionales</b>."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
 msgid "Create Persistent Storage"
 msgstr "Crear almacenamiento persistente"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:335
 msgid "Creating your persistent storage failed."
 msgstr "Falló creación de tu almacenamiento persistente."
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 "Podrías instalar {packages} automáticamente cuando esté arrancando Tails."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
 msgid ""
 "To do so, you need to run Tails from a USB stick installed using <i>Tails "
 "Installer</i>."
@@ -301,51 +305,52 @@ msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:359
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "¿Remover {packages} de tus programas adicionales?"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:363
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr "Esto detendrá la instalación de {packages} automáticamente."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:365
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:368
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:156
 msgid "Remove"
 msgstr "Remover"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:369
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #: config/chroot_local-includes/usr/local/bin/tor-browser:46
 msgid "Cancel"
 msgstr "Cancelar"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:547
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 "Instalando tus programas adicionales desde almacenamiento persistente..."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:546
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:549
 msgid "This can take several minutes."
 msgstr "Esto puede llevar varios minutos."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:559
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:562
 msgid "The installation of your additional software failed"
 msgstr "La instalación de tu programa adicional falló."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:574
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:577
 msgid "Additional software installed successfully"
 msgstr "Programas adicionales instalados exitosamente"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:594
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:597
 msgid "The check for upgrades of your additional software failed"
 msgstr "La búsqueda de nuevas versiones de tus programas adicionales falló."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:596
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:599
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:607
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -353,11 +358,11 @@ msgstr ""
 "Por favor revisá tu conexión de red, reiniciá Tails, o leé la bitácora del "
 "sistema para entender el problema."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:606
 msgid "The upgrade of your additional software failed"
 msgstr "La instalación de nuevas versiones de tus programas adicionales falló."
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:39
 msgid "Documentation"
 msgstr "Documentación"
 
@@ -387,7 +392,7 @@ msgstr "La configuración de tu programa adicional falló al ser leída."
 msgid "Stop installing {package} automatically"
 msgstr "Detener instalación de {package} automáticamente."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
 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 "
@@ -397,7 +402,7 @@ msgstr ""
 "\">Gestor de paquetes Synaptic</a> ó <a href=\"org.gnome.Terminal.desktop"
 "\">APT en la línea de comandos</a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:189
 msgid ""
 "To do so, unlock your persistent storage when starting Tails and install "
 "some software using <a href=\"synaptic.desktop\">Synaptic Package Manager</"
@@ -408,7 +413,7 @@ msgstr ""
 "\">Gestor de paquetes Synaptic</a> ó <a href=\"org.gnome.Terminal.desktop"
 "\">APT en la línea de comandos</a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:199
 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."
@@ -419,7 +424,7 @@ msgstr ""
 "Synaptic</a> ó <a href=\"org.gnome.Terminal.desktop\">APT en la línea de "
 "comandos</a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:207
 msgid ""
 "To do so, install Tails on a USB stick using <a href=\"tails-installer."
 "desktop\">Tails Installer</a> and create a persistent storage."
@@ -428,7 +433,7 @@ msgstr ""
 "installer.desktop\">Instalador Tails</a> y creá un almacenamiento "
 "persistente."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:254
 msgid "[package not available]"
 msgstr "[paquete no disponible]"
 
@@ -572,11 +577,11 @@ msgstr "Tor no está listo"
 
 #: config/chroot_local-includes/usr/local/bin/tor-browser:44
 msgid "Tor is not ready. Start Tor Browser anyway?"
-msgstr "Tor no está listo. ¿Iniciar el navegador Tor de todos modos?"
+msgstr "Tor no está listo. ¿Iniciar el Navegador Tor de todos modos?"
 
 #: config/chroot_local-includes/usr/local/bin/tor-browser:45
 msgid "Start Tor Browser"
-msgstr "Iniciar el navegador Tor"
+msgstr "Iniciar el Navegador Tor"
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/torstatus@tails.boum.org/extension.js:40
 msgid "Tor"
diff --git a/po/fi.po b/po/fi.po
index 0e4f1b5657a256b091ed31a15e8319405cac09fb..d9d2dbbf42861bfc7f361f932e923e41a83b1196 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -16,7 +16,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-14 21:20+0100\n"
+"POT-Creation-Date: 2019-04-06 14:00+0200\n"
 "PO-Revision-Date: 2017-11-23 03:53+0000\n"
 "Last-Translator: Streets of Oulu <banchie443@gmail.com>\n"
 "Language-Team: Finnish (http://www.transifex.com/otf/torproject/language/"
@@ -78,15 +78,15 @@ msgid ""
 "storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:173
 msgid ""
 "To add more, install some software using <a href=\"synaptic.desktop"
 "\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop"
 "\">APT on the command line</a>."
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:151
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
 msgid "_Create persistent storage"
 msgstr ""
 
@@ -145,14 +145,18 @@ msgid "su is disabled. Please use sudo instead."
 msgstr ""
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
-msgid "Restart"
-msgstr "Käynnistä uudelleen"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:78
 msgid "Lock screen"
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:81
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79
+msgid "Suspend"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83
+msgid "Restart"
+msgstr "Käynnistä uudelleen"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87
 msgid "Power Off"
 msgstr "Sammuta"
 
@@ -185,7 +189,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:147
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
 #, fuzzy, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -195,81 +199,81 @@ msgstr ""
 "verkkoyhteytesi, yritä käynnistää Tails uudelleen, tai lue järjestelmäloki "
 "ymmärtääksesi pulman paremmin."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
 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:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 msgid "Show Log"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 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:222
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
 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:289
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
 #, fuzzy, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "Lisäohjelmistosi"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
 msgid "Install Every Time"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:297
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 msgid "Install Only Once"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 msgid "The configuration of your additional software failed."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
 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:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:335
 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:341
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
 msgid ""
 "To do so, you need to run Tails from a USB stick installed using <i>Tails "
 "Installer</i>."
@@ -277,51 +281,52 @@ msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:359
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
 #, fuzzy, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "Lisäohjelmistosi"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:363
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:365
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:368
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:156
 msgid "Remove"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:369
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #: config/chroot_local-includes/usr/local/bin/tor-browser:46
 msgid "Cancel"
 msgstr "Peruuta"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:547
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:546
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:549
 msgid "This can take several minutes."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:559
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:562
 #, fuzzy
 msgid "The installation of your additional software failed"
 msgstr "Lisäohjelmistosi"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:574
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:577
 msgid "Additional software installed successfully"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:594
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:597
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:596
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:599
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:607
 #, fuzzy
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
@@ -331,12 +336,12 @@ msgstr ""
 "verkkoyhteytesi, yritä käynnistää Tails uudelleen, tai lue järjestelmäloki "
 "ymmärtääksesi pulman paremmin."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:606
 #, fuzzy
 msgid "The upgrade of your additional software failed"
 msgstr "Lisäohjelmistosi"
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:39
 #, fuzzy
 msgid "Documentation"
 msgstr "Tails-ohjeet"
@@ -366,34 +371,34 @@ msgstr "Lisäohjelmistosi"
 msgid "Stop installing {package} automatically"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
 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:188
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:189
 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:198
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:199
 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:206
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:207
 msgid ""
 "To do so, install Tails on a USB stick using <a href=\"tails-installer."
 "desktop\">Tails Installer</a> and create a persistent storage."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:254
 #, fuzzy
 msgid "[package not available]"
 msgstr "ei saatavilla"
diff --git a/po/fr.po b/po/fr.po
index 6076049069d6aa24aa09b5057a2f8829ab86b9bb..8c164fd0ca4e357fc060fbe16ce96b5fca8d12f0 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -23,7 +23,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-14 21:20+0100\n"
+"POT-Creation-Date: 2019-04-06 14:00+0200\n"
 "PO-Revision-Date: 2019-01-19 17:51+0000\n"
 "Last-Translator: French language coordinator <french.translation@rbox.me>\n"
 "Language-Team: French (http://www.transifex.com/otf/torproject/language/"
@@ -94,8 +94,8 @@ msgstr ""
 "Le logiciel suivant est installé automatiquement depuis votre stockage "
 "persistant lors du démarrage de Tails."
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:173
 msgid ""
 "To add more, install some software using <a href=\"synaptic.desktop"
 "\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop"
@@ -105,7 +105,7 @@ msgstr ""
 "\"synaptic.desktop\">gestionnaire de paquets Synaptic</a> ou <a href=\"org."
 "gnome.Terminal.desktop\">APT en ligne de commande</a>."
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:151
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
 msgid "_Create persistent storage"
 msgstr "_Créer stockage persistant"
 
@@ -173,14 +173,18 @@ msgid "su is disabled. Please use sudo instead."
 msgstr "su est désactivé. Merci d'utiliser sudo à la place."
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
-msgid "Restart"
-msgstr "Redémarrer"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:78
 msgid "Lock screen"
 msgstr "Verrouillage de l'écran"
 
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:81
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79
+msgid "Suspend"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83
+msgid "Restart"
+msgstr "Redémarrer"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87
 msgid "Power Off"
 msgstr "Éteindre"
 
@@ -213,7 +217,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:147
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -222,7 +226,7 @@ msgstr ""
 "{details} Veuillez vérifier votre liste de logiciels additionnels ou lire le "
 "journal système afin de mieux comprendre le problème."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
@@ -230,56 +234,56 @@ msgstr ""
 "Veuillez vérifier votre liste de logiciels additionnels ou lire le journal "
 "système afin de mieux comprendre le problème."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 msgid "Show Log"
 msgstr "Afficher journal"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 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:222
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} et {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
 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:289
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "Ajouter {packages} à vos logiciels additionnels ?"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 "Pour l'installer automatiquement depuis votre stockage persistant lors du "
 "démarrage de Tails."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
 msgid "Install Every Time"
 msgstr "Installer à chaque fois"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:297
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 msgid "Install Only Once"
 msgstr "Installer une seule fois"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 msgid "The configuration of your additional software failed."
 msgstr "La configuration de votre logiciel additionnel a échoué."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -288,23 +292,23 @@ msgstr ""
 "créer un stockage persistant et activer l'option <b>Logiciels additionnels</"
 "b>"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
 msgid "Create Persistent Storage"
 msgstr "Créer un stockage persistant"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:335
 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:341
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
 #, 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:344
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
 msgid ""
 "To do so, you need to run Tails from a USB stick installed using <i>Tails "
 "Installer</i>."
@@ -314,51 +318,52 @@ msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:359
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "Enlever {packages} de vos logiciels additionnels ?"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:363
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr "Cela devrait stopper l'installation automatique de {packages}."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:365
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:368
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:156
 msgid "Remove"
 msgstr "Enlever"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:369
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #: config/chroot_local-includes/usr/local/bin/tor-browser:46
 msgid "Cancel"
 msgstr "Annuler"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:547
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 "Installation de vos logiciels additionnels depuis le stockage persistant..."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:546
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:549
 msgid "This can take several minutes."
 msgstr "Cela peut prendre plusieurs minutes."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:559
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:562
 msgid "The installation of your additional software failed"
 msgstr "L'installation de vos logiciels additionnels a échoué"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:574
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:577
 msgid "Additional software installed successfully"
 msgstr "Logiciels additionnels installés avec succès"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:594
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:597
 msgid "The check for upgrades of your additional software failed"
 msgstr "La vérification de mise à jour de vos logiciels additionnels a échoué"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:596
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:599
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:607
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -366,11 +371,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:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:606
 msgid "The upgrade of your additional software failed"
 msgstr "La mise à jour de vos logiciels additionnels 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:39
 msgid "Documentation"
 msgstr "Documentation"
 
@@ -400,7 +405,7 @@ msgstr "Échec de la lecture de la configuration des logiciels additionnels"
 msgid "Stop installing {package} automatically"
 msgstr "Arrêter d'installer {package} automatiquement"
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
 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 "
@@ -410,7 +415,7 @@ msgstr ""
 "desktop\">gestionnaire de paquets Synaptic</a> ou <a href=\"org.gnome."
 "Terminal.desktop\">APT en ligne de commande</a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:189
 msgid ""
 "To do so, unlock your persistent storage when starting Tails and install "
 "some software using <a href=\"synaptic.desktop\">Synaptic Package Manager</"
@@ -421,7 +426,7 @@ msgstr ""
 "\">gestionnaire de paquets Synaptic</a> ou <a href=\"org.gnome.Terminal."
 "desktop\">APT en ligne de commande</a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:199
 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."
@@ -431,7 +436,7 @@ msgstr ""
 "utilisant le <a href=\"synaptic.desktop\">gestionnaire de paquets Synaptic</"
 "a> ou <a href=\"org.gnome.Terminal.desktop\">APT en ligne de commande</a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:207
 msgid ""
 "To do so, install Tails on a USB stick using <a href=\"tails-installer."
 "desktop\">Tails Installer</a> and create a persistent storage."
@@ -440,7 +445,7 @@ msgstr ""
 "\"tails-installer.desktop\">Installeur de Tails</a> et en créant un stockage "
 "persistant."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:254
 msgid "[package not available]"
 msgstr "[paquet non disponible]"
 
diff --git a/po/fr_CA.po b/po/fr_CA.po
index e8ca10e6ba40a8b22c2bf42906dc479966d061ba..43538b26c0d3307b83ed26d50567c8065485dc62 100644
--- a/po/fr_CA.po
+++ b/po/fr_CA.po
@@ -16,7 +16,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-14 21:20+0100\n"
+"POT-Creation-Date: 2019-04-06 14:00+0200\n"
 "PO-Revision-Date: 2017-12-18 19:19+0000\n"
 "Last-Translator: French language coordinator <french.coordinator@rbox.me>\n"
 "Language-Team: French (Canada) (http://www.transifex.com/otf/torproject/"
@@ -79,15 +79,15 @@ msgid ""
 "storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:173
 msgid ""
 "To add more, install some software using <a href=\"synaptic.desktop"
 "\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop"
 "\">APT on the command line</a>."
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:151
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
 msgid "_Create persistent storage"
 msgstr ""
 
@@ -145,14 +145,18 @@ msgid "su is disabled. Please use sudo instead."
 msgstr ""
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
-msgid "Restart"
-msgstr "Redémarrer"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:78
 msgid "Lock screen"
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:81
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79
+msgid "Suspend"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83
+msgid "Restart"
+msgstr "Redémarrer"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87
 msgid "Power Off"
 msgstr "Éteindre"
 
@@ -185,7 +189,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:147
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
 #, fuzzy, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -195,81 +199,81 @@ msgstr ""
 "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:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
 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:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 msgid "Show Log"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 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:222
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
 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:289
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
 #, fuzzy, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "Vos logiciels additionnels"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
 msgid "Install Every Time"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:297
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 msgid "Install Only Once"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 msgid "The configuration of your additional software failed."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
 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:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:335
 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:341
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
 msgid ""
 "To do so, you need to run Tails from a USB stick installed using <i>Tails "
 "Installer</i>."
@@ -277,51 +281,52 @@ msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:359
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
 #, fuzzy, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "Vos logiciels additionnels"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:363
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:365
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:368
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:156
 msgid "Remove"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:369
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #: config/chroot_local-includes/usr/local/bin/tor-browser:46
 msgid "Cancel"
 msgstr "Annuler"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:547
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:546
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:549
 msgid "This can take several minutes."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:559
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:562
 #, fuzzy
 msgid "The installation of your additional software failed"
 msgstr "Vos logiciels additionnels"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:574
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:577
 msgid "Additional software installed successfully"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:594
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:597
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:596
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:599
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:607
 #, fuzzy
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
@@ -331,12 +336,12 @@ msgstr ""
 "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:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:606
 #, fuzzy
 msgid "The upgrade of your additional software failed"
 msgstr "Vos logiciels additionnels"
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:39
 #, fuzzy
 msgid "Documentation"
 msgstr "Documentation de Tails"
@@ -366,34 +371,34 @@ msgstr "Vos logiciels additionnels"
 msgid "Stop installing {package} automatically"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
 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:188
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:189
 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:198
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:199
 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:206
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:207
 msgid ""
 "To do so, install Tails on a USB stick using <a href=\"tails-installer."
 "desktop\">Tails Installer</a> and create a persistent storage."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:254
 #, fuzzy
 msgid "[package not available]"
 msgstr "non disponible"
diff --git a/po/ga.po b/po/ga.po
index 33df5ca0d2bc8d116c30e4f0a2300a981be52980..b231b18624d7ee76b549a49355370fec34663868 100644
--- a/po/ga.po
+++ b/po/ga.po
@@ -4,14 +4,14 @@
 #
 # Translators:
 # Emma Peel, 2018
-# Kevin Scannell <kscanne@gmail.com>, 2017-2018
+# Kevin Scannell <kscanne@gmail.com>, 2017-2019
 msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-14 21:20+0100\n"
-"PO-Revision-Date: 2018-12-07 13:55+0000\n"
-"Last-Translator: carolyn <carolyn@anhalt.org>\n"
+"POT-Creation-Date: 2019-04-06 14:00+0200\n"
+"PO-Revision-Date: 2019-04-14 11:50+0000\n"
+"Last-Translator: Kevin Scannell <kscanne@gmail.com>\n"
 "Language-Team: Irish (http://www.transifex.com/otf/torproject/language/ga/)\n"
 "Language: ga\n"
 "MIME-Version: 1.0\n"
@@ -76,8 +76,8 @@ msgstr ""
 "Suiteálfar na bogearraí seo a leanas go huathoibríoch ó do stóras seasmhach "
 "nuair a thosóidh tú Tails."
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:173
 msgid ""
 "To add more, install some software using <a href=\"synaptic.desktop"
 "\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop"
@@ -87,7 +87,7 @@ msgstr ""
 "\">Bainisteoir Pacáistí Synaptic</a> nó le <a href=\"org.gnome.Terminal."
 "desktop\">APT ar líne na n-orduithe</a>."
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:151
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
 msgid "_Create persistent storage"
 msgstr "_Cruthaigh stóras seasmhach"
 
@@ -131,28 +131,41 @@ msgid ""
 "Renaming it to <i>keepassx.kdbx</i> would allow <i>KeePassX</i> to open it "
 "automatically in the future."
 msgstr ""
+"<b><big>An bhfuil fonn ort ainm nua a chur ar an mbunachar sonraí "
+"<i>KeePassX</i>?</big></b>\n"
+"\n"
+"Tá bunachar sonraí <i>KeePassX</i> agat san fhillteán <i>Persistent</i>:\n"
+"\n"
+"<i>${filename}</i>\n"
+"\n"
+"Dá gcuirfeá an t-ainm <i>keepassx.kdbx</i> air, bheadh <i>KeePassX</i> in "
+"ann é a oscailt go huathoibríoch amach anseo."
 
 #: config/chroot_local-includes/usr/local/bin/keepassx:25
 msgid "Rename"
-msgstr ""
+msgstr "Tá, cuir an t-ainm nua air."
 
 #: config/chroot_local-includes/usr/local/bin/keepassx:26
 msgid "Keep current name"
-msgstr ""
+msgstr "Níl, ná hathraigh an t-ainm"
 
 #: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
 msgid "su is disabled. Please use sudo instead."
-msgstr ""
+msgstr "Tá su díchumasaithe. Bain úsáid as sudo ina áit."
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
-msgid "Restart"
-msgstr "Atosaigh"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:78
 msgid "Lock screen"
 msgstr "Cuir an scáileán faoi ghlas"
 
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:81
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79
+msgid "Suspend"
+msgstr "Croch"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83
+msgid "Restart"
+msgstr "Atosaigh"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87
 msgid "Power Off"
 msgstr "Múch"
 
@@ -185,7 +198,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:147
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -194,7 +207,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:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
@@ -202,55 +215,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:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 msgid "Show Log"
 msgstr "Taispeáin an Logchomhad"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 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:222
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} agus {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
 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:289
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
 #, 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:291
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
 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:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
 msgid "Install Every Time"
 msgstr "Suiteáil Gach Uair"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:297
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 msgid "Install Only Once"
 msgstr "Suiteáil Uair Amháin"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 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:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -258,24 +271,24 @@ 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:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
 msgid "Create Persistent Storage"
 msgstr "Cruthaigh Stóras Seasmhach"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:335
 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:341
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
 #, 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:344
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
 msgid ""
 "To do so, you need to run Tails from a USB stick installed using <i>Tails "
 "Installer</i>."
@@ -285,50 +298,51 @@ msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:359
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
 #, 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:363
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
 #, 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:365
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:368
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:156
 msgid "Remove"
 msgstr "Bain"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:369
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #: config/chroot_local-includes/usr/local/bin/tor-browser:46
 msgid "Cancel"
 msgstr "Cealaigh"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:547
 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:546
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:549
 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:559
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:562
 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:574
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:577
 msgid "Additional software installed successfully"
 msgstr "D'éirigh le suiteáil na mbogearraí breise"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:594
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:597
 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:596
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:599
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:607
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -336,11 +350,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:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:606
 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:39
 msgid "Documentation"
 msgstr "Doiciméadú"
 
@@ -370,7 +384,7 @@ msgstr "Níorbh fhéidir cumraíocht na mbogearraí breise a léamh"
 msgid "Stop installing {package} automatically"
 msgstr "Ná suiteáil {package} go huathoibríoch a thuilleadh"
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
 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 "
@@ -380,7 +394,7 @@ msgstr ""
 "\">Bhainisteoir Pacáistí Synaptic</a> nó le <a href=\"org.gnome.Terminal."
 "desktop\">APT ar líne na n-orduithe</a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:189
 msgid ""
 "To do so, unlock your persistent storage when starting Tails and install "
 "some software using <a href=\"synaptic.desktop\">Synaptic Package Manager</"
@@ -391,7 +405,7 @@ msgstr ""
 "Pacáistí Synaptic</a> nó le <a href=\"org.gnome.Terminal.desktop\">APT ar "
 "líne na n-orduithe</a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:199
 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."
@@ -401,7 +415,7 @@ msgstr ""
 "<a href=\"synaptic.desktop\">Bhainisteoir Pacáistí Synaptic</a> nó le <a "
 "href=\"org.gnome.Terminal.desktop\">APT ar líne na n-orduithe</a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:207
 msgid ""
 "To do so, install Tails on a USB stick using <a href=\"tails-installer."
 "desktop\">Tails Installer</a> and create a persistent storage."
@@ -409,7 +423,7 @@ msgstr ""
 "Len é seo a dhéanamh, suiteáil Tails ar mhéaróg USB le <a href=\"tails-"
 "installer.desktop\">Suiteálaí Tails</a> agus cruthaigh stóras seasmhach."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:254
 msgid "[package not available]"
 msgstr "[níl an pacáiste ar fáil]"
 
diff --git a/po/he.po b/po/he.po
index 8e3971867002d9da487e074abd922d81102c5906..a07303fbc4c91ce4fe541c81b4e6fed8717be935 100644
--- a/po/he.po
+++ b/po/he.po
@@ -14,8 +14,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-14 21:20+0100\n"
-"PO-Revision-Date: 2019-01-25 07:58+0000\n"
+"POT-Creation-Date: 2019-04-06 14:00+0200\n"
+"PO-Revision-Date: 2019-04-12 19:17+0000\n"
 "Last-Translator: ION\n"
 "Language-Team: Hebrew (http://www.transifex.com/otf/torproject/language/"
 "he/)\n"
@@ -76,8 +76,8 @@ msgid ""
 "storage when starting Tails."
 msgstr "התוכנה הבאה מותקנת באופן אוטומטי מהאחסון המתמיד שלך בעת התחלת Tails."
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:173
 msgid ""
 "To add more, install some software using <a href=\"synaptic.desktop"
 "\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop"
@@ -87,7 +87,7 @@ msgstr ""
 "\">מנהל חבילות סינפטיות</a> או ב-<a href=\"org.gnome.Terminal.desktop\">APT "
 "על שורת הפקודה</a>."
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:151
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
 msgid "_Create persistent storage"
 msgstr "_צור אחסון מתמיד"
 
@@ -152,14 +152,18 @@ msgid "su is disabled. Please use sudo instead."
 msgstr "su מושבת. אנא השתמש ב־sudo במקום."
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
-msgid "Restart"
-msgstr "הפעלה מחדש"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:78
 msgid "Lock screen"
 msgstr "נעל מסך"
 
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:81
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79
+msgid "Suspend"
+msgstr "השעה"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83
+msgid "Restart"
+msgstr "הפעלה מחדש"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87
 msgid "Power Off"
 msgstr "כיבוי"
 
@@ -192,7 +196,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:147
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -201,7 +205,7 @@ msgstr ""
 "{details} אנא בדוק את הרשימה של התוכנה הנוספת שלך או קרא את יומן האירועים של "
 "המערכת כדי להבין את הבעיה."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
@@ -209,54 +213,54 @@ msgstr ""
 "אנא בדוק את הרשימה של תוכנה נוספת שלך או קרא את יומן האירועים של המערכת כדי "
 "להבין את הבעיה."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 msgid "Show Log"
 msgstr "הצג יומן"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 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:222
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} ו {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
 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:289
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "להוסיף את {packages} לתוכנה הנוספת שלך?"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr "כדי להתקין זאת באופן אוטומטי מהאחסון המתמיד שלך בעת התחלת Tails."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
 msgid "Install Every Time"
 msgstr "התקן בכל פעם"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:297
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 msgid "Install Only Once"
 msgstr "התקן פעם אחת בלבד"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 msgid "The configuration of your additional software failed."
 msgstr "התצורה של התוכנה הנוספת שלך נכשלה."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -264,22 +268,22 @@ msgstr ""
 "כדי להתקין זאת באופן אוטומטי בעת התחלת Tails, אתה יכול ליצור אחסון מתמיד "
 "ולשפעל את המאפיין <b>תוכנה נוספת</b>."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
 msgid "Create Persistent Storage"
 msgstr "צור אחסון מתמיד"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:335
 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:341
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
 #, 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:344
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
 msgid ""
 "To do so, you need to run Tails from a USB stick installed using <i>Tails "
 "Installer</i>."
@@ -289,50 +293,51 @@ msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:359
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
 #, 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:363
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr "זה יפסיק להתקין את {packages} באופן אוטומטי."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:365
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:368
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:156
 msgid "Remove"
 msgstr "הסר"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:369
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #: config/chroot_local-includes/usr/local/bin/tor-browser:46
 msgid "Cancel"
 msgstr "ביטול"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:547
 msgid "Installing your additional software from persistent storage..."
 msgstr "מתקין את התוכנה הנוספת שלך מאחסון מתמיד..."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:546
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:549
 msgid "This can take several minutes."
 msgstr "זה עשוי לקחת מספר דקות."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:559
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:562
 msgid "The installation of your additional software failed"
 msgstr "ההתקנה של התוכנה הנוספת שלך נכשלה"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:574
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:577
 msgid "Additional software installed successfully"
 msgstr "תוכנה נוספת הותקנה בהצלחה"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:594
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:597
 msgid "The check for upgrades of your additional software failed"
 msgstr "הבדיקה אחר שדרוגים של התוכנה הנוספת שלך נכשלה"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:596
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:599
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:607
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -340,11 +345,11 @@ msgstr ""
 "אנא בדוק את חיבור הרשת שלך, הפעל מחדש את Tails או קרא את יומן האירועים של "
 "המערכת כדי להבין את הבעיה."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:606
 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:39
 msgid "Documentation"
 msgstr "תיעוד"
 
@@ -374,7 +379,7 @@ msgstr "נכשל בקריאת תצורה של תוכנה נוספת"
 msgid "Stop installing {package} automatically"
 msgstr "הפסק להתקין את {package} באופן אוטומטי"
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
 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 "
@@ -384,7 +389,7 @@ msgstr ""
 "\">מנהל חבילות סינפטיות</a> או ב-<a href=\"org.gnome.Terminal.desktop\">APT "
 "על שורת הפקודה</a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:189
 msgid ""
 "To do so, unlock your persistent storage when starting Tails and install "
 "some software using <a href=\"synaptic.desktop\">Synaptic Package Manager</"
@@ -394,7 +399,7 @@ msgstr ""
 "\"י שימוש ב<a href=\"synaptic.desktop\">מנהל חבילות סינפטיות</a> או ב-<a "
 "href=\"org.gnome.Terminal.desktop\">APT על שורת הפקודה</a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:199
 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."
@@ -404,7 +409,7 @@ msgstr ""
 "\"synaptic.desktop\">מנהל חבילות סינפטיות</a> או ב-<a href=\"org.gnome."
 "Terminal.desktop\">APT על שורת הפקודה</a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:207
 msgid ""
 "To do so, install Tails on a USB stick using <a href=\"tails-installer."
 "desktop\">Tails Installer</a> and create a persistent storage."
@@ -412,7 +417,7 @@ msgstr ""
 "כדי לעשות זאת, התקן את Tails על החסן USB ע\"י שימוש ב<a href=\"tails-"
 "installer.desktop\">מתקין Tails</a> וצור אחסון מתמיד."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:254
 msgid "[package not available]"
 msgstr "[package not available]"
 
@@ -558,7 +563,7 @@ msgstr "התחל את דפדפן Tor"
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/torstatus@tails.boum.org/extension.js:40
 msgid "Tor"
-msgstr "תור (Tor)"
+msgstr "Tor"
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/torstatus@tails.boum.org/extension.js:55
 msgid "Open Onion Circuits"
diff --git a/po/hr_HR.po b/po/hr_HR.po
index 372062246549b25f3b8293b5ff7cedd64aa40f67..4ab71251665795c6c1121974a96955e2167b5d15 100644
--- a/po/hr_HR.po
+++ b/po/hr_HR.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-14 21:20+0100\n"
+"POT-Creation-Date: 2019-04-06 14:00+0200\n"
 "PO-Revision-Date: 2017-05-26 14:47+0000\n"
 "Last-Translator: carolyn <carolyn@anhalt.org>\n"
 "Language-Team: Croatian (Croatia) (http://www.transifex.com/otf/torproject/"
@@ -77,15 +77,15 @@ msgid ""
 "storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:173
 msgid ""
 "To add more, install some software using <a href=\"synaptic.desktop"
 "\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop"
 "\">APT on the command line</a>."
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:151
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
 msgid "_Create persistent storage"
 msgstr ""
 
@@ -143,14 +143,18 @@ msgid "su is disabled. Please use sudo instead."
 msgstr ""
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
-msgid "Restart"
-msgstr "Ponovno pokreni"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:78
 msgid "Lock screen"
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:81
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79
+msgid "Suspend"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83
+msgid "Restart"
+msgstr "Ponovno pokreni"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87
 msgid "Power Off"
 msgstr "Isključi"
 
@@ -183,7 +187,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:147
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
 #, fuzzy, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -193,81 +197,81 @@ msgstr ""
 "provjerite Vašu internet vezu , pokušajte ponovno pokrenuti Tails , ili "
 "pročitajte zapise sustava da bolje razumijete problem."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
 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:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 msgid "Show Log"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 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:222
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
 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:289
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
 #, fuzzy, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "Vaš dodatni softver"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
 msgid "Install Every Time"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:297
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 msgid "Install Only Once"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 msgid "The configuration of your additional software failed."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
 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:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:335
 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:341
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
 msgid ""
 "To do so, you need to run Tails from a USB stick installed using <i>Tails "
 "Installer</i>."
@@ -275,51 +279,52 @@ msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:359
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
 #, fuzzy, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "Vaš dodatni softver"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:363
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:365
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:368
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:156
 msgid "Remove"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:369
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #: config/chroot_local-includes/usr/local/bin/tor-browser:46
 msgid "Cancel"
 msgstr "Otkaži"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:547
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:546
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:549
 msgid "This can take several minutes."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:559
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:562
 #, fuzzy
 msgid "The installation of your additional software failed"
 msgstr "Vaš dodatni softver"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:574
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:577
 msgid "Additional software installed successfully"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:594
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:597
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:596
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:599
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:607
 #, fuzzy
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
@@ -329,12 +334,12 @@ msgstr ""
 "provjerite Vašu internet vezu , pokušajte ponovno pokrenuti Tails , ili "
 "pročitajte zapise sustava da bolje razumijete problem."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:606
 #, fuzzy
 msgid "The upgrade of your additional software failed"
 msgstr "Vaš dodatni softver"
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:39
 #, fuzzy
 msgid "Documentation"
 msgstr "Tails dokumentacija"
@@ -364,34 +369,34 @@ msgstr "Vaš dodatni softver"
 msgid "Stop installing {package} automatically"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
 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:188
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:189
 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:198
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:199
 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:206
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:207
 msgid ""
 "To do so, install Tails on a USB stick using <a href=\"tails-installer."
 "desktop\">Tails Installer</a> and create a persistent storage."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:254
 #, fuzzy
 msgid "[package not available]"
 msgstr "nije dostupno"
diff --git a/po/id.po b/po/id.po
index 1880bf213da9c2a2f5ad0c41b1157cba01de7fbd..804d88b8e591a2652f60013cd5d360a1fecf75e1 100644
--- a/po/id.po
+++ b/po/id.po
@@ -17,7 +17,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-14 21:20+0100\n"
+"POT-Creation-Date: 2019-04-06 14:00+0200\n"
 "PO-Revision-Date: 2018-07-31 05:48+0000\n"
 "Last-Translator: ical\n"
 "Language-Team: Indonesian (http://www.transifex.com/otf/torproject/language/"
@@ -83,15 +83,15 @@ msgid ""
 "storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:173
 msgid ""
 "To add more, install some software using <a href=\"synaptic.desktop"
 "\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop"
 "\">APT on the command line</a>."
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:151
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
 msgid "_Create persistent storage"
 msgstr ""
 
@@ -149,14 +149,18 @@ msgid "su is disabled. Please use sudo instead."
 msgstr ""
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
-msgid "Restart"
-msgstr "Mulai ulang"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:78
 msgid "Lock screen"
 msgstr "Kunci layar"
 
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:81
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79
+msgid "Suspend"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83
+msgid "Restart"
+msgstr "Mulai ulang"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87
 msgid "Power Off"
 msgstr "Matikan"
 
@@ -189,7 +193,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:147
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
 #, fuzzy, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -198,7 +202,7 @@ msgstr ""
 "Pemasangan gagal. Mohon periksa pengaturan perangkat lunak tambahan, atau "
 "baca log sistem untuk lebih memahami masalah ini."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
 #, fuzzy
 msgid ""
 "Please check your list of additional software or read the system log to "
@@ -207,77 +211,77 @@ msgstr ""
 "Pemasangan gagal. Mohon periksa pengaturan perangkat lunak tambahan, atau "
 "baca log sistem untuk lebih memahami masalah ini."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 msgid "Show Log"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 #, fuzzy
 msgid "Configure"
 msgstr "Konfirmasi"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:222
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
 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:289
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
 msgid "Install Every Time"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:297
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 msgid "Install Only Once"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #, fuzzy
 msgid "The configuration of your additional software failed."
 msgstr "Pemutakhiran perangkat lunak tambahan Anda gagal"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
 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:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:335
 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:341
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
 msgid ""
 "To do so, you need to run Tails from a USB stick installed using <i>Tails "
 "Installer</i>."
@@ -285,54 +289,55 @@ msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:359
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:363
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:365
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:368
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:156
 msgid "Remove"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:369
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #: config/chroot_local-includes/usr/local/bin/tor-browser:46
 msgid "Cancel"
 msgstr "Batal"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:547
 #, fuzzy
 msgid "Installing your additional software from persistent storage..."
 msgstr "Perangkat lunak tambahan Anda telah dipasang"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:546
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:549
 msgid "This can take several minutes."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:559
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:562
 #, fuzzy
 msgid "The installation of your additional software failed"
 msgstr "Pemutakhiran perangkat lunak tambahan Anda gagal"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:574
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:577
 #, fuzzy
 msgid "Additional software installed successfully"
 msgstr "Perangkat lunak tambahan Anda telah dipasang"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:594
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:597
 #, fuzzy
 msgid "The check for upgrades of your additional software failed"
 msgstr "Pemutakhiran perangkat lunak tambahan Anda gagal"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:596
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:599
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:607
 #, fuzzy
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
@@ -342,12 +347,12 @@ msgstr ""
 "koneksi jaringan Anda, coba mulai ulang Tails, atau baca log sistem untuk "
 "lebih memahami permasalahannya."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:606
 #, fuzzy
 msgid "The upgrade of your additional software failed"
 msgstr "Pemutakhiran 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:39
 #, fuzzy
 msgid "Documentation"
 msgstr "Dokumentasi Tails"
@@ -377,34 +382,34 @@ msgstr "Pemasangan perangkat lunak tambahan Anda gagal!"
 msgid "Stop installing {package} automatically"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
 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:188
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:189
 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:198
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:199
 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:206
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:207
 msgid ""
 "To do so, install Tails on a USB stick using <a href=\"tails-installer."
 "desktop\">Tails Installer</a> and create a persistent storage."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:254
 #, fuzzy
 msgid "[package not available]"
 msgstr "tak tersedia"
diff --git a/po/is.po b/po/is.po
index 8333677a7161d3815991feb89451ff3796927e3d..a474fd8a0e85735831603535bd2a8df4290d49d7 100644
--- a/po/is.po
+++ b/po/is.po
@@ -8,8 +8,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-14 21:20+0100\n"
-"PO-Revision-Date: 2019-01-29 07:30+0000\n"
+"POT-Creation-Date: 2019-04-06 14:00+0200\n"
+"PO-Revision-Date: 2019-04-06 17:00+0000\n"
 "Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
 "Language-Team: Icelandic (http://www.transifex.com/otf/torproject/language/"
 "is/)\n"
@@ -78,8 +78,8 @@ msgstr ""
 "Eftirfarandi viðbótarhugbúnaður verður settur upp sjálfvirkt úr varanlegu "
 "gagnageymslunni þinni við ræsingu Tails."
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:173
 msgid ""
 "To add more, install some software using <a href=\"synaptic.desktop"
 "\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop"
@@ -89,7 +89,7 @@ msgstr ""
 "\"synaptic.desktop\">Synaptic pakkastjóranum</a> eða með <a href=\"org.gnome."
 "Terminal.desktop\">APT á skipanalínu</a>."
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:151
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
 msgid "_Create persistent storage"
 msgstr "Út_búa varanlega gagnageymslu"
 
@@ -155,14 +155,18 @@ msgid "su is disabled. Please use sudo instead."
 msgstr "su er óvirkt. Notaðu frekar sudo."
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
-msgid "Restart"
-msgstr "Endurræsa"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:78
 msgid "Lock screen"
 msgstr "Læsa skjá"
 
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:81
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79
+msgid "Suspend"
+msgstr "Fresta"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83
+msgid "Restart"
+msgstr "Endurræsa"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87
 msgid "Power Off"
 msgstr "Slökkva"
 
@@ -195,7 +199,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:147
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -204,7 +208,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:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
@@ -212,56 +216,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:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 msgid "Show Log"
 msgstr "Birta atvikaskrá"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 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:222
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} og {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
 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:289
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
 #, 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:291
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
 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:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
 msgid "Install Every Time"
 msgstr "Setja upp í hvert skipti"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:297
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 msgid "Install Only Once"
 msgstr "Setja upp aðeins einu sinni"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 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:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -269,22 +273,22 @@ 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:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
 msgid "Create Persistent Storage"
 msgstr "Útbúa varanlega gagnageymslu"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:335
 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:341
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
 #, 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:344
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
 msgid ""
 "To do so, you need to run Tails from a USB stick installed using <i>Tails "
 "Installer</i>."
@@ -294,50 +298,51 @@ msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:359
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
 #, 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:363
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
 #, 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:365
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:368
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:156
 msgid "Remove"
 msgstr "Fjarlægja"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:369
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #: config/chroot_local-includes/usr/local/bin/tor-browser:46
 msgid "Cancel"
 msgstr "Hætta við"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:547
 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:546
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:549
 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:559
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:562
 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:574
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:577
 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:594
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:597
 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:596
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:599
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:607
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -345,11 +350,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:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:606
 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:39
 msgid "Documentation"
 msgstr "Hjálparskjöl"
 
@@ -379,7 +384,7 @@ msgstr "Mistókst að lesa uppsetningu viðbótarhugbúnaðar"
 msgid "Stop installing {package} automatically"
 msgstr "Hætta að setja upp {package} sjálfvirkt"
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
 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 "
@@ -389,7 +394,7 @@ msgstr ""
 "desktop\">Synaptic pakkastjóranum</a> eða með <a href=\"org.gnome.Terminal."
 "desktop\">APT á skipanalínu</a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:189
 msgid ""
 "To do so, unlock your persistent storage when starting Tails and install "
 "some software using <a href=\"synaptic.desktop\">Synaptic Package Manager</"
@@ -400,7 +405,7 @@ msgstr ""
 "\">Synaptic pakkastjóranum</a> eða með <a href=\"org.gnome.Terminal.desktop"
 "\">APT á skipanalínu</a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:199
 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."
@@ -410,7 +415,7 @@ msgstr ""
 "einhvern hugbúnað með <a href=\"synaptic.desktop\">Synaptic pakkastjóranum</"
 "a> eða með <a href=\"org.gnome.Terminal.desktop\">APT á skipanalínu</a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:207
 msgid ""
 "To do so, install Tails on a USB stick using <a href=\"tails-installer."
 "desktop\">Tails Installer</a> and create a persistent storage."
@@ -419,7 +424,7 @@ msgstr ""
 "installer.desktop\">Tails-uppsetningarforritinu</a> og útbúðu varanlega "
 "gagnageymslu."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:254
 msgid "[package not available]"
 msgstr "[pakki ekki tiltækur]"
 
diff --git a/po/it.po b/po/it.po
index 5598104918bfcb8f27c350480cb3a38620056417..e7568279077927637665c7192cc1d0835eb3d3b1 100644
--- a/po/it.po
+++ b/po/it.po
@@ -9,8 +9,9 @@
 # il_doc, 2014
 # Francesca Ciceri <madamezou@zouish.org>, 2014
 # Francesco Tombolini <tombo@adamantio.net>, 2015
+# Giandomenico Lombardi <transifex.com@l1t.it>, 2019
 # Giovanni Giorgio <bottilorenzobg@gmail.com>, 2018
-# Giuseppe Pignataro (Fastbyte01) <rogepix@gmail.com>, 2015-2016
+# Giuseppe Pignataro <rogepix@gmail.com>, 2015-2016
 # HostFat <hostfat@gmail.com>, 2015
 # il_doc, 2014
 # jan <jan.reister@unimi.it>, 2013
@@ -30,9 +31,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-14 21:20+0100\n"
-"PO-Revision-Date: 2019-01-22 16:06+0000\n"
-"Last-Translator: Random_R\n"
+"POT-Creation-Date: 2019-04-06 14:00+0200\n"
+"PO-Revision-Date: 2019-04-14 08:53+0000\n"
+"Last-Translator: Giandomenico Lombardi <transifex.com@l1t.it>\n"
 "Language-Team: Italian (http://www.transifex.com/otf/torproject/language/"
 "it/)\n"
 "Language: it\n"
@@ -98,8 +99,8 @@ msgstr ""
 "Il seguente software è installato automaticamente dalla tua archiviazione "
 "persistente all'avvio di Tails."
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:173
 msgid ""
 "To add more, install some software using <a href=\"synaptic.desktop"
 "\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop"
@@ -109,7 +110,7 @@ msgstr ""
 "\">Synaptic Package Manager</a> o <a href=\"org.gnome.Terminal.desktop\">APT "
 "a riga di comando</a>."
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:151
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
 msgid "_Create persistent storage"
 msgstr "_Crea archiviazione persistente"
 
@@ -175,14 +176,18 @@ msgid "su is disabled. Please use sudo instead."
 msgstr "su è disattivato. Per favore usa sudo."
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
-msgid "Restart"
-msgstr "Riavvia"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:78
 msgid "Lock screen"
 msgstr "Blocca schermo"
 
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:81
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79
+msgid "Suspend"
+msgstr "Sospendi"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83
+msgid "Restart"
+msgstr "Riavvia"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87
 msgid "Power Off"
 msgstr "Spegni"
 
@@ -215,7 +220,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:147
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -224,7 +229,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:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
@@ -232,56 +237,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:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 msgid "Show Log"
 msgstr "Mostra log"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 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:222
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} e {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
 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:289
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
 #, 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:291
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
 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:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
 msgid "Install Every Time"
 msgstr "Installa ogni volta"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:297
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 msgid "Install Only Once"
 msgstr "Installa solo una volta"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 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:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -290,22 +295,22 @@ msgstr ""
 "un'archiviazione persistente e attivare la funzione <b>Software aggiuntivo</"
 "b>."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
 msgid "Create Persistent Storage"
 msgstr "Crea archiviazione persistente"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:335
 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:341
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
 #, 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:344
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
 msgid ""
 "To do so, you need to run Tails from a USB stick installed using <i>Tails "
 "Installer</i>."
@@ -315,50 +320,51 @@ msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:359
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
 #, 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:363
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
 #, 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:365
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:368
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:156
 msgid "Remove"
 msgstr "Rimuovi"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:369
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #: config/chroot_local-includes/usr/local/bin/tor-browser:46
 msgid "Cancel"
 msgstr "Annulla"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:547
 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:546
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:549
 msgid "This can take several minutes."
 msgstr "Questa operazione può richiedere diversi minuti."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:559
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:562
 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:574
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:577
 msgid "Additional software installed successfully"
 msgstr "Software aggiuntivo installato con successo"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:594
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:597
 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:596
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:599
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:607
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -366,11 +372,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:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:606
 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:39
 msgid "Documentation"
 msgstr "Documentazione"
 
@@ -400,7 +406,7 @@ msgstr "Errore nella lettura della configurazione per il software aggiuntivo"
 msgid "Stop installing {package} automatically"
 msgstr "Non installare più {package} automaticamente"
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
 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 "
@@ -410,7 +416,7 @@ msgstr ""
 "\">Synaptic Package Manager</a> o <a href=\"org.gnome.Terminal.desktop\">APT "
 "da riga di comando</a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:189
 msgid ""
 "To do so, unlock your persistent storage when starting Tails and install "
 "some software using <a href=\"synaptic.desktop\">Synaptic Package Manager</"
@@ -421,7 +427,7 @@ msgstr ""
 "Manager</a> o <a href=\"org.gnome.Terminal.desktop\">APT da riga di comando</"
 "a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:199
 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."
@@ -431,7 +437,7 @@ msgstr ""
 "usando <a href=\"synaptic.desktop\">Synaptic Package Manager</a> o <a href="
 "\"org.gnome.Terminal.desktop\">APT da riga di comando</a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:207
 msgid ""
 "To do so, install Tails on a USB stick using <a href=\"tails-installer."
 "desktop\">Tails Installer</a> and create a persistent storage."
@@ -439,7 +445,7 @@ msgstr ""
 "Per farlo, installa Tails su una penna USB usando <a href=\"tails-installer."
 "desktop\">l'installer di Tails</a> e crea un'archiviazione persistente"
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:254
 msgid "[package not available]"
 msgstr "[package not available]"
 
diff --git a/po/ka.po b/po/ka.po
index 6cbbabf793b910610a79f95f9e1c67d94612c210..6eac2dab9fe13527b2ca9a24bdc3af452ef3c258 100644
--- a/po/ka.po
+++ b/po/ka.po
@@ -3,15 +3,16 @@
 # This file is distributed under the same license as the PACKAGE package.
 #
 # Translators:
-# A. C., 2018-2019
+# Georgianization, 2018-2019
 # George Salukvadze <giosal90@gmail.com>, 2015
+# Georgianization, 2019
 msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-14 21:20+0100\n"
-"PO-Revision-Date: 2019-01-23 09:24+0000\n"
-"Last-Translator: A. C.\n"
+"POT-Creation-Date: 2019-04-06 14:00+0200\n"
+"PO-Revision-Date: 2019-04-28 15:36+0000\n"
+"Last-Translator: Georgianization\n"
 "Language-Team: Georgian (http://www.transifex.com/otf/torproject/language/"
 "ka/)\n"
 "Language: ka\n"
@@ -75,8 +76,8 @@ msgstr ""
 "მოცემული პროგრამა ავტომატურად დაყენდება მუდმივი მეხსიერების საცავიდან Tails-"
 "ის გაშვებისას."
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:173
 msgid ""
 "To add more, install some software using <a href=\"synaptic.desktop"
 "\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop"
@@ -86,7 +87,7 @@ msgstr ""
 "\">Synaptic-ის პაკეტების მმართველის</a> საშუალებით ან <a href=\"org.gnome."
 "Terminal.desktop\">APT-ბრძანებებით</a>."
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:151
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
 msgid "_Create persistent storage"
 msgstr "_მუდმივი საცავის შექმნა"
 
@@ -154,14 +155,18 @@ msgid "su is disabled. Please use sudo instead."
 msgstr "su გათიშულია. გთხოვთ, სანაცვლოდ გამოიყენოთ sudo."
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
-msgid "Restart"
-msgstr "ხელახლა გაშვება"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:78
 msgid "Lock screen"
 msgstr "ჩამკეტი ეკრანი"
 
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:81
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79
+msgid "Suspend"
+msgstr "გადადება"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83
+msgid "Restart"
+msgstr "ხელახლა გაშვება"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87
 msgid "Power Off"
 msgstr "გათიშვა"
 
@@ -194,7 +199,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:147
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -203,7 +208,7 @@ msgstr ""
 "{details} გთხოვთ, გადაამოწმოთ დამატებითი პროგრამების სია ან ნახოთ სისტემის "
 "აღრიცხული ჩანაწერები ხარვეზის მიზეზის გამოსარკვევად."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
@@ -211,54 +216,54 @@ msgstr ""
 "გთხოვთ გადაამოწმოთ დამატებითი პროგრამების სია ან ნახოთ სისტემის აღრიცხული "
 "ჩანაწერები ხარვეზის მიზეზის გამოსარკვევად."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 msgid "Show Log"
 msgstr "ჩანაწერების ჩვენება"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 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:222
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} და {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
 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:289
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "ჩაემატოს {packages} თქვენს დამატებით პროგრამაში?"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr "მისი ავტომატურად დაყენება მუდმივი მეხსიერებიდან Tails-ის გაშვებისას."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
 msgid "Install Every Time"
 msgstr "ყოველ ჯერზე დაყენება"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:297
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 msgid "Install Only Once"
 msgstr "მხოლოდ ერთხელ დაყენება"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 msgid "The configuration of your additional software failed."
 msgstr "დამატებითი პროგრამის გამართვა ვერ მოხერხდა."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -266,22 +271,22 @@ msgstr ""
 "ავტომატურად დასაყენებლად Tails-ის გაშვებისას, შეგიძლიათ შექმნათ მუდმივი "
 "საცავი და აამოქმედოთ <b>დამატებითი პროგრამის</b> შესაძლებლობა."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
 msgid "Create Persistent Storage"
 msgstr "მუდმივი საცავის შექმნა"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:335
 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:341
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
 #, 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:344
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
 msgid ""
 "To do so, you need to run Tails from a USB stick installed using <i>Tails "
 "Installer</i>."
@@ -291,50 +296,51 @@ msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:359
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
 #, 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:363
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr "შედეგად, აღარ დაყენდება {packages} ავტომატურად."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:365
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:368
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:156
 msgid "Remove"
 msgstr "წაშლა"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:369
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #: config/chroot_local-includes/usr/local/bin/tor-browser:46
 msgid "Cancel"
 msgstr "გაუქმება"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:547
 msgid "Installing your additional software from persistent storage..."
 msgstr "დამატებითი პროგრამის მუდმივი მეხსიერების საცავიდან დაყენება..."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:546
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:549
 msgid "This can take several minutes."
 msgstr "შეიძლება გასტანოს რამდენიმე წუთს."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:559
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:562
 msgid "The installation of your additional software failed"
 msgstr "თქვენი დამატებითი პროგრამის დაყენება ვერ მოხერხდა"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:574
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:577
 msgid "Additional software installed successfully"
 msgstr "დამატებითი პროგრამა დაყენდა წარმატებით"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:594
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:597
 msgid "The check for upgrades of your additional software failed"
 msgstr "თქვენი დამატებითი პროგრამის განახლებებზე შემოწმება ვერ მოხერხდა"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:596
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:599
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:607
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -342,11 +348,11 @@ msgstr ""
 "გთხოვთ, გადაამოწმოთ ქსელთან კავშირი, ხელახლა გაუშვათ Tails ან ნახოთ სისტემის "
 "აღრიცხული ჩანაწერები ხარვეზის მიზეზების გამოსარკვევად."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:606
 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:39
 msgid "Documentation"
 msgstr "დამხმარე მასალები"
 
@@ -376,7 +382,7 @@ msgstr "დამატებითი პროგრამის პარა
 msgid "Stop installing {package} automatically"
 msgstr "აღარ დაყენდეს {package} ავტომატურად"
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
 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 "
@@ -386,7 +392,7 @@ msgstr ""
 "ის პაკეტების მმართველის</a> საშუალებით ან <a href=\"org.gnome.Terminal."
 "desktop\">APT-ბრძანებებით</a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:189
 msgid ""
 "To do so, unlock your persistent storage when starting Tails and install "
 "some software using <a href=\"synaptic.desktop\">Synaptic Package Manager</"
@@ -397,7 +403,7 @@ msgstr ""
 "პაკეტების მმართველის</a> საშუალებით ან <a href=\"org.gnome.Terminal.desktop"
 "\">APT-ბრძანებებით</a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:199
 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."
@@ -407,7 +413,7 @@ msgstr ""
 "<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
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:207
 msgid ""
 "To do so, install Tails on a USB stick using <a href=\"tails-installer."
 "desktop\">Tails Installer</a> and create a persistent storage."
@@ -416,7 +422,7 @@ msgstr ""
 "\">Tails-ის დასაყენებელი პროგრამის</a> მეშვეობით და შექმენით მუდმივი "
 "მეხსიერების საცავი."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:254
 msgid "[package not available]"
 msgstr "[package not available]"
 
diff --git a/po/km.po b/po/km.po
index 5d4eb916162fc8e46e61bb53dc75f52a8e8383e9..d1941e5fdcac581e757d67ba3b3d12678741c125 100644
--- a/po/km.po
+++ b/po/km.po
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-14 21:20+0100\n"
+"POT-Creation-Date: 2019-04-06 14:00+0200\n"
 "PO-Revision-Date: 2014-06-10 02:40+0000\n"
 "Last-Translator: Sokhem Khoem <sokhem@open.org.kh>\n"
 "Language-Team: Khmer (http://www.transifex.com/projects/p/torproject/"
@@ -68,15 +68,15 @@ msgid ""
 "storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:173
 msgid ""
 "To add more, install some software using <a href=\"synaptic.desktop"
 "\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop"
 "\">APT on the command line</a>."
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:151
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
 msgid "_Create persistent storage"
 msgstr ""
 
@@ -131,14 +131,18 @@ msgid "su is disabled. Please use sudo instead."
 msgstr ""
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
-msgid "Restart"
+msgid "Lock screen"
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:78
-msgid "Lock screen"
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79
+msgid "Suspend"
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:81
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83
+msgid "Restart"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87
 msgid "Power Off"
 msgstr "បិទ"
 
@@ -171,7 +175,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:147
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
 #, fuzzy, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -180,81 +184,81 @@ msgstr ""
 "ការ​ធ្វើ​បច្ចុប្បន្នភាព​បាន​បរាជ័យ។ វា​អាច​ដោយសារ​បញ្ហា​បណ្ដាញ។ សូម​ពិនិត្យ​ការ​តភ្ជាប់​បណ្ដាញ​របស់​អ្នក រួច​"
 "សាកល្បង​ចាប់ផ្ដើម Tails ឡើងវិញ ឬ​អាន​កំណត់ហេតុ​ប្រព័ន្ធ​ដើម្បី​ដឹង​ច្បាស់​អំពី​បញ្ហា។"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
 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:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 msgid "Show Log"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 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:222
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
 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:289
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
 #, fuzzy, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "កម្មវិធី​របស់​អ្នក​បន្ថែម"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
 msgid "Install Every Time"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:297
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 msgid "Install Only Once"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 msgid "The configuration of your additional software failed."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
 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:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:335
 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:341
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
 msgid ""
 "To do so, you need to run Tails from a USB stick installed using <i>Tails "
 "Installer</i>."
@@ -262,51 +266,52 @@ msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:359
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
 #, fuzzy, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "កម្មវិធី​របស់​អ្នក​បន្ថែម"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:363
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:365
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:368
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:156
 msgid "Remove"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:369
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #: config/chroot_local-includes/usr/local/bin/tor-browser:46
 msgid "Cancel"
 msgstr "បោះបង់"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:547
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:546
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:549
 msgid "This can take several minutes."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:559
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:562
 #, fuzzy
 msgid "The installation of your additional software failed"
 msgstr "កម្មវិធី​របស់​អ្នក​បន្ថែម"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:574
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:577
 msgid "Additional software installed successfully"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:594
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:597
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:596
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:599
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:607
 #, fuzzy
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
@@ -315,12 +320,12 @@ msgstr ""
 "ការ​ធ្វើ​បច្ចុប្បន្នភាព​បាន​បរាជ័យ។ វា​អាច​ដោយសារ​បញ្ហា​បណ្ដាញ។ សូម​ពិនិត្យ​ការ​តភ្ជាប់​បណ្ដាញ​របស់​អ្នក រួច​"
 "សាកល្បង​ចាប់ផ្ដើម Tails ឡើងវិញ ឬ​អាន​កំណត់ហេតុ​ប្រព័ន្ធ​ដើម្បី​ដឹង​ច្បាស់​អំពី​បញ្ហា។"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:606
 #, fuzzy
 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:39
 #, fuzzy
 msgid "Documentation"
 msgstr "ឯកសារ Tails"
@@ -350,34 +355,34 @@ msgstr "កម្មវិធី​របស់​អ្នក​បន្ថែ
 msgid "Stop installing {package} automatically"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
 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:188
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:189
 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:198
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:199
 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:206
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:207
 msgid ""
 "To do so, install Tails on a USB stick using <a href=\"tails-installer."
 "desktop\">Tails Installer</a> and create a persistent storage."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:254
 #, fuzzy
 msgid "[package not available]"
 msgstr "មិន​មាន"
diff --git a/po/ko.po b/po/ko.po
index 3bfe423a486bfe3ebabc9303cfa519825190b29d..8563a42ba8fa697e74250d44aa32fbe61a5d3301 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -13,7 +13,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-14 21:20+0100\n"
+"POT-Creation-Date: 2019-04-06 14:00+0200\n"
 "PO-Revision-Date: 2017-07-15 05:33+0000\n"
 "Last-Translator: carolyn <carolyn@anhalt.org>\n"
 "Language-Team: Korean (http://www.transifex.com/otf/torproject/language/"
@@ -76,15 +76,15 @@ msgid ""
 "storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:173
 msgid ""
 "To add more, install some software using <a href=\"synaptic.desktop"
 "\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop"
 "\">APT on the command line</a>."
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:151
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
 msgid "_Create persistent storage"
 msgstr ""
 
@@ -142,14 +142,18 @@ msgid "su is disabled. Please use sudo instead."
 msgstr ""
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
-msgid "Restart"
-msgstr "재시작"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:78
 msgid "Lock screen"
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:81
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79
+msgid "Suspend"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83
+msgid "Restart"
+msgstr "재시작"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87
 msgid "Power Off"
 msgstr "끄기"
 
@@ -182,7 +186,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:147
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
 #, fuzzy, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -191,81 +195,81 @@ msgstr ""
 "업그레이드에 실패했습니다. 이것은 아마도 네트워크 문제로 인한 것일 겁니다. 네"
 "트워크 설정을 확인 한 후 Tails를 다시 시작하거나 시스템 로그를 참조하십시오."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
 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:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 msgid "Show Log"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 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:222
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
 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:289
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
 #, fuzzy, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "추가 소프트웨어"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
 msgid "Install Every Time"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:297
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 msgid "Install Only Once"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 msgid "The configuration of your additional software failed."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
 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:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:335
 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:341
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
 msgid ""
 "To do so, you need to run Tails from a USB stick installed using <i>Tails "
 "Installer</i>."
@@ -273,51 +277,52 @@ msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:359
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
 #, fuzzy, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "추가 소프트웨어"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:363
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:365
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:368
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:156
 msgid "Remove"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:369
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #: config/chroot_local-includes/usr/local/bin/tor-browser:46
 msgid "Cancel"
 msgstr "취소"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:547
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:546
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:549
 msgid "This can take several minutes."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:559
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:562
 #, fuzzy
 msgid "The installation of your additional software failed"
 msgstr "추가 소프트웨어"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:574
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:577
 msgid "Additional software installed successfully"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:594
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:597
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:596
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:599
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:607
 #, fuzzy
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
@@ -326,12 +331,12 @@ msgstr ""
 "업그레이드에 실패했습니다. 이것은 아마도 네트워크 문제로 인한 것일 겁니다. 네"
 "트워크 설정을 확인 한 후 Tails를 다시 시작하거나 시스템 로그를 참조하십시오."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:606
 #, fuzzy
 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:39
 #, fuzzy
 msgid "Documentation"
 msgstr "Tails 문서"
@@ -361,34 +366,34 @@ msgstr "추가 소프트웨어"
 msgid "Stop installing {package} automatically"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
 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:188
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:189
 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:198
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:199
 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:206
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:207
 msgid ""
 "To do so, install Tails on a USB stick using <a href=\"tails-installer."
 "desktop\">Tails Installer</a> and create a persistent storage."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:254
 #, fuzzy
 msgid "[package not available]"
 msgstr "불가능"
diff --git a/po/nl.po b/po/lt.po
similarity index 68%
rename from po/nl.po
rename to po/lt.po
index 0252ac2fed7e4760340f972bbc06de8502b8677e..83ac2f6831f210a9b21b2ca3606105caeb894ba3 100644
--- a/po/nl.po
+++ b/po/lt.po
@@ -3,50 +3,32 @@
 # This file is distributed under the same license as the PACKAGE package.
 #
 # Translators:
-# jjjdddsssxxx <a227675@drdrb.net>, 2014
-# Adriaan Callaerts <adriaan.callaerts@gmail.com>, 2013
-# André Koot <meneer@tken.net>, 2016
-# bacovane <bart-ts@tushmail.com>, 2018-2019
-# Bianca Hey <biancahey@gmail.com>, 2018
-# cialenhh <c1914502@drdrb.com>, 2013
-# Christian Rademaker <c.rademaker87@gmail.com>, 2014
-# Cleveridge <erwin.de.laat@cleveridge.org>, 2014
-# gjlajfklajdkladj kasldfjaslkf <1bsuaz+3xy1gedeysrhc@sharklasers.com>, 2015
-# Joost Rijneveld <joost@joostrijneveld.nl>, 2014
-# kwadronaut <kwadronaut@autistici.org>, 2017-2018
-# LittleNacho <louisboy@msn.com>, 2013
-# 53a60eabbf5124a226a7678001f9a57b, 2015
-# Nathan Follens, 2015
-# Meteor0id, 2019
-# Midgard, 2014
-# T. Des Maison <ton.siedsma@bof.nl>, 2014
-# Thinkwell, 2018
-# Thomas van Voorst <thomasv.voorst@hotmail.com>, 2017
-# Tjeerd <transifex@syrion.net>, 2014
-# Tonko Mulder <tonko@tonkomulder.nl>, 2015
-# Lazlo, 2013
-# Volluta <volluta@tutanota.com>, 2015-2016
+# Gediminas Golcevas <>, 2014
+# Moo, 2015-2019
 msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-14 21:20+0100\n"
-"PO-Revision-Date: 2019-03-09 18:55+0000\n"
-"Last-Translator: Meteor0id\n"
-"Language-Team: Dutch (http://www.transifex.com/otf/torproject/language/nl/)\n"
-"Language: nl\n"
+"POT-Creation-Date: 2019-04-06 14:00+0200\n"
+"PO-Revision-Date: 2019-04-06 17:26+0000\n"
+"Last-Translator: Moo\n"
+"Language-Team: Lithuanian (http://www.transifex.com/otf/torproject/language/"
+"lt/)\n"
+"Language: lt\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=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"
 
 #: config/chroot_local-includes/etc/NetworkManager/dispatcher.d/60-tor-ready.sh:39
 msgid "Tor is ready"
-msgstr "Tor is gereed"
+msgstr "Tor yra paruošta"
 
 #: config/chroot_local-includes/etc/NetworkManager/dispatcher.d/60-tor-ready.sh:40
 msgid "You can now access the Internet."
-msgstr "Je hebt nu toegang tot het Internet"
+msgstr "Dabar, turite prieigą prie Interneto."
 
 #: config/chroot_local-includes/etc/whisperback/config.py:69
 #, python-format
@@ -66,21 +48,22 @@ msgid ""
 "confirm that you are using Tails.\n"
 "</p>\n"
 msgstr ""
-"<h1>Help ons je bug op te lossen!</h1>\n"
-"<p>Lees <a href=\"%s\">onze instructies voor het melden van bugs</a>.</p>\n"
-"<p><strong>Geef niet meer persoonlijke informatie op dan nodig!</strong></"
-"p>\n"
-"<h2>Over het ons geven van een e-mailadres</h2>\n"
+"<h1>Padėkite mums pataisyti jūsų klaidą!</h1>\n"
+"<p>Perskaitykite <a href=\"%s\">mūsų pranešimų apie klaidas instrukcijas</a>."
+"</p>\n"
+"<p><strong>Neįtraukite daugiau asmeninės informacijos, negu yra reikalinga!</"
+"strong></p>\n"
+"<h2>Apie jūsų el. pašto adreso pateikimą mums</h2>\n"
 "<p>\n"
-"Als je ons een e-mailadres geeft laat dat ons toe je te contacteren om het "
-"probleem\n"
-"te verhelderen. Dit is nodig voor de overgrote meerderheid van de meldingen "
-"die we\n"
-"ontvangen, aangezien de meeste meldingen nutteloos zijn zonder enige "
-"contactinformatie.\n"
-"Anderzijds biedt het een mogelijkheid voor afluisteraars, zoals de provider "
-"van je e-mail\n"
-"of je internetverbinding, te bevestigen dat je Tails gebruikt.\n"
+"Jūsų el. pašto adreso pateikimas mums, leidžia mums susisiekti su jumis, "
+"norint\n"
+"pasitikslinti problemą. Tai yra reikalinga daugelyje mūsų gaunamų pranešimų "
+"apie\n"
+"klaidas, kadangi dauguma pranešimų be kontaktinės informacijos yra "
+"nenaudingi.\n"
+"Kita vertus tai suteikia galimybę slapta pasiklausantiems asmenims, kaip "
+"pavyzdžiui,\n"
+"jūsų el. pašto ar interneto tiekėjui, pasitvirtinti, jog naudojate Tails.\n"
 "</p>\n"
 
 #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:51
@@ -88,35 +71,35 @@ msgid ""
 "You can install additional software automatically from your persistent "
 "storage when starting Tails."
 msgstr ""
-"Je kunt automatisch extra programmatuur installeren van jouw persistente "
-"opslag als je Tails start."
+"Paleisdami Tails, galite automatiškai įdiegti papildomą programinę įrangą iš "
+"savo ilgalaikio kaupiklio."
 
 #: 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 ""
-"De volgende programmatuur wordt automatisch geïnstalleerd van jouw "
-"persistente opslag bij het starten van Tails."
+"Ši programinė įranga yra automatiškai įdiegiama iš jūsų ilgalaikio "
+"kaupiklio, kuomet paleidžiate Tails."
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:173
 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 ""
-"Om meer toe te voegen, installeer sommige programmatuur door <a href="
-"\"synaptic.desktop\"> Synaptic Package Manager </a> te gebruiken of <a href="
-"\"org.gnome.Terminal.desktop\"> APT op de commando regel </a> ."
+"Norėdami pridėti daugiau, įdiekite programinę įrangą naudodami <a href="
+"\"synaptic.desktop\">Synaptic paketų tvarkytuvę</a> ar <a href=\"org.gnome."
+"Terminal.desktop\">APT komandų eilutėje</a>."
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:151
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
 msgid "_Create persistent storage"
-msgstr "_Maak persistente opslag"
+msgstr "_Sukurti ilgalaikį kaupiklį"
 
 #: config/chroot_local-includes/usr/local/bin/electrum:57
 msgid "Persistence is disabled for Electrum"
-msgstr "De persistentie optie is uitgeschakeld voor Electrum."
+msgstr "Ilgalaikiškumas, skirtas Electrum, yra išjungtas"
 
 #: config/chroot_local-includes/usr/local/bin/electrum:59
 msgid ""
@@ -124,23 +107,23 @@ msgid ""
 "Bitcoin wallet. It is strongly recommended to only run Electrum when its "
 "persistence feature is activated."
 msgstr ""
-"Als je Tails reboot, zal alle data van Electrum verloren gaan, inclusief je "
-"Bitcoin portomonnee. Het wordt sterk aangeraden om Electrum alleen te "
-"draaien als de persistence feature is geactiveerd."
+"Kai paleisite Tails iš naujo, visi jūsų Electrum duomenys bus prarasti, "
+"įskaitant jūsų Bitcoin piniginę. Yra primygtinai rekomenduojama paleisti "
+"Electrum tik tuomet, kai yra aktyvuota jos ilgalaikiškumo ypatybė."
 
 #: config/chroot_local-includes/usr/local/bin/electrum:60
 msgid "Do you want to start Electrum anyway?"
-msgstr "Wil je Electrum alsnog starten?"
+msgstr "Ar vis tiek norite paleisti Electrum?"
 
 #: config/chroot_local-includes/usr/local/bin/electrum:63
 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:41
 msgid "_Launch"
-msgstr "Start"
+msgstr "Pa_leisti"
 
 #: config/chroot_local-includes/usr/local/bin/electrum:64
 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:42
 msgid "_Exit"
-msgstr "Sluiten"
+msgstr "Iš_eiti"
 
 #: config/chroot_local-includes/usr/local/bin/keepassx:17
 #, sh-format
@@ -154,38 +137,42 @@ msgid ""
 "Renaming it to <i>keepassx.kdbx</i> would allow <i>KeePassX</i> to open it "
 "automatically in the future."
 msgstr ""
-"<b><big>Wil je jouw <i>KeePassX</i> database hernoemen?</big></b>\n"
+"<b><big>Ar norite pervadinti savo <i>KeePassX</i> duomenų bazę?</big></b>\n"
 "\n"
-"Je hebt een <i>KeePassX</i>database in jouw <i>Persistente</i> map.\n"
+"Jūs turite <i>KeePassX</i> duomenų bazę savo <i>Ilgalaikiame</i> aplanke:\n"
 "\n"
-"<i>$(filename)</i>\n"
+"<i>${filename}</i>\n"
 "\n"
-"Het hernoemen van de naam naar <i>keepassx.kdbx</i> zou het mogelijk maken "
-"voor <i>KeePassX</i> om het in de toekomst automatisch te openen."
+"Pervadinus ją į <i>keepassx.kdbx</i> programai <i>KeePassX</i> ateityje būtų "
+"leidžiama atverti ją automatiškai."
 
 #: config/chroot_local-includes/usr/local/bin/keepassx:25
 msgid "Rename"
-msgstr "Hernoemen"
+msgstr "Pervadinti"
 
 #: config/chroot_local-includes/usr/local/bin/keepassx:26
 msgid "Keep current name"
-msgstr "Behoud huidige naam"
+msgstr "Palikti esamą pavadinimą"
 
 #: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
 msgid "su is disabled. Please use sudo instead."
-msgstr "su is buiten werking. Gebruik in plaats daarvan alsjeblieft sudo."
+msgstr "su yra išjungta. Vietoj to, naudokite sudo."
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
-msgid "Restart"
-msgstr "Herstarten"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:78
 msgid "Lock screen"
-msgstr "Schermvergrendeling"
+msgstr "Užrakinti ekraną"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79
+msgid "Suspend"
+msgstr "Pristabdyti"
 
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:81
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83
+msgid "Restart"
+msgstr "Paleisti iš naujo"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87
 msgid "Power Off"
-msgstr "Afsluiten"
+msgstr "Išjungti"
 
 #: config/chroot_local-includes/usr/local/bin/tails-about:22
 #: ../config/chroot_local-includes/usr/share/desktop-directories/Tails.directory.in.h:1
@@ -195,11 +182,11 @@ 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 "Over Tails"
+msgstr "Apie Tails"
 
 #: config/chroot_local-includes/usr/local/bin/tails-about:35
 msgid "The Amnesic Incognito Live System"
-msgstr "De Amnesic Incognito Live System"
+msgstr "Netenkanti atminties inkognito paleidžiamoji sistema (TAILS)"
 
 #: config/chroot_local-includes/usr/local/bin/tails-about:36
 #, python-format
@@ -207,173 +194,175 @@ msgid ""
 "Build information:\n"
 "%s"
 msgstr ""
-"Gedetailleerde informatie over de versie:\n"
+"Darinio informacija:\n"
 "%s"
 
 #: config/chroot_local-includes/usr/local/bin/tails-about:54
 msgid "not available"
-msgstr "niet beschikbaar"
+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:147
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
 "log to understand the problem."
 msgstr ""
-"{details} Controleer s.v.p. jouw lijst met extra programmatuur of lees het "
-"systeem logboek om het probleem te begrijpen."
+"{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:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
 msgstr ""
-"Controleer s.v.p. jouw lijst van extra programmatuur of lees het systeem "
-"logboek om het probleem te begrijpen."
+"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:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 msgid "Show Log"
-msgstr "Toon Logboek"
+msgstr "Rodyti žurnalą"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 msgid "Configure"
-msgstr "Configureer"
+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:222
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
 #, python-brace-format
 msgid "{beginning} and {last}"
-msgstr "{beginning} en {last}"
+msgstr "{beginning} ir {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
 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:289
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
-msgstr "Voeg {packages} toe aan jouw extra programmatuur?"
+msgstr "Pridėti {packages} į jūsų papildomą programinę įrangą?"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
-"Om het automatisch van jouw persistente opslag te installeren bij het "
-"starten van Tails."
+"Kad, paleidžiant Tails, ji būtų automatiškai įdiegiama iš ilgalaikio "
+"kaupiklio."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
 msgid "Install Every Time"
-msgstr "Installeer Elke Keer"
+msgstr "Įdiegti kiekvieną kartą"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:297
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 msgid "Install Only Once"
-msgstr "Installeer Enkel Eenmalig"
+msgstr "Įdiegti tik vieną kartą"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 msgid "The configuration of your additional software failed."
-msgstr "De configuratie van jouw extra programmatuur mislukte."
+msgstr "Jūsų papildomos programinės įrangos konfigūracija patyrė nesėkmę."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
 msgstr ""
-"Om het automatisch te installeren bij het starten van Tails, kun je een "
-"persistente opslag creëren en de <b> Aditional Software </b> optie activeren."
+"Norėdami, paleidžiant Tails, įdiegti ją automatiškai, galite susikurti "
+"ilgalaikį kaupiklį ir aktyvuoti <b>Papildomos programinės įrangos</b> "
+"ypatybę."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
 msgid "Create Persistent Storage"
-msgstr "Persistente Opslag Creëren"
+msgstr "Sukurti ilgalaikį kaupiklį"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:335
 msgid "Creating your persistent storage failed."
-msgstr "Het  creëren van jouw persistente opslag mislukte."
+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:341
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
-msgstr ""
-"Je zou {packages} automatisch kunnen installeren bij het starten van Tails"
+msgstr "Paleisdami Tails, galėtumėte automatiškai įdiegti {packages}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
 msgid ""
 "To do so, you need to run Tails from a USB stick installed using <i>Tails "
 "Installer</i>."
 msgstr ""
-"Om dat te doen, moet je Tails starten vanaf een USB schijf die met <i> Tails "
-"Instaler </i> geïnstalleerd is."
+"Norėdami tai padaryti, turite iš USB atmintuko paleisti Tails, įdiegtą "
+"naudojant <i>Tails diegimo programą</i>."
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:359
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
-msgstr "{packages} verwijderen van jouw extra programmatuur?"
+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:363
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
-msgstr "Dit stopt de installatie van {packages} automatisch."
+msgstr "Tai sustabdys automatinį {packages} diegimą."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:365
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:368
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:156
 msgid "Remove"
-msgstr "Verwijderen"
+msgstr "Šalinti"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:369
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #: config/chroot_local-includes/usr/local/bin/tor-browser:46
 msgid "Cancel"
-msgstr "Annuleren"
+msgstr "Atsisakyti"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:547
 msgid "Installing your additional software from persistent storage..."
-msgstr "Installeren van jouw extra programmatuur van persistente opslag ..."
+msgstr "Įdiegiama papildoma programinė įranga iš jūsų ilgalaikio kaupiklio..."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:546
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:549
 msgid "This can take several minutes."
-msgstr "Dit kan een paar minuten duren."
+msgstr "Tai gali užimti kelias minutes."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:559
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:562
 msgid "The installation of your additional software failed"
-msgstr "De installatie van jouw extra programmatuur ging niet goed."
+msgstr "Jūsų papildomos programinės įrangos diegimas patyrė nesėkmę."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:574
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:577
 msgid "Additional software installed successfully"
-msgstr "De extra programmatuur was met success geïnstalleerd"
+msgstr "Papildoma programinė įranga sėkmingai įdiegta"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:594
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:597
 msgid "The check for upgrades of your additional software failed"
-msgstr "Het controleren voor updates voor jouw extra programma's is mislukt."
+msgstr ""
+"Nepavyko patikrinti jūsų papildomai programinei įrangai skirtų naujinimų"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:596
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:599
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:607
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
 msgstr ""
-"Controleer s.v.p. jouw netwerk verbinding, herstart Tails, of lees het "
-"systeem logboek om het proleem te begrijpen."
+"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:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:606
 msgid "The upgrade of your additional software failed"
-msgstr "Het bijwerken van uw extra programma's is mislukt."
+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:39
 msgid "Documentation"
-msgstr "Documentatie"
+msgstr "Dokumentacija"
 
 #. Translators: Don't translate {package}, it's a placeholder and will be replaced.
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
@@ -382,97 +371,97 @@ msgid ""
 "Remove {package} from your additional software? This will stop installing "
 "the package automatically."
 msgstr ""
-"Verwijder {package} van jouw extra programmatuur? Dit beëindigt automatisch "
-"de installatie van het pakket."
+"Šalinti {package} iš jūsų papildomos programinės įrangos? Paketas daugiau "
+"nebebus įdiegiamas automatiškai."
 
 #. Translators: Don't translate {pkg}, it's a placeholder and will be replaced.
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
 #, python-brace-format
 msgid "Failed to remove {pkg}"
-msgstr "Het verwijderen van {pkg} mislukte"
+msgstr "Nepavyko pašalinti {pkg}"
 
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
 msgid "Failed to read additional software configuration"
-msgstr "Het lezen van extra programmatuur configuratie mislukte"
+msgstr "Nepavyko perskaityti papildomos programinės įrangos konfigūracijos"
 
 #. Translators: Don't translate {package}, it's a placeholder and will be replaced.
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
 #, python-brace-format
 msgid "Stop installing {package} automatically"
-msgstr "Stop de installatie van {package} automatisch"
+msgstr "Stabdyti automatinį {package} įdiegimą"
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
 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 ""
-"Om dit te doen, installeer sommige programmatuur met <a href=\"synaptic."
-"desktop\"> Synaptic Package Manager </a> of <a href=\"org.gnome.Terminal."
-"desktop\"> APT op de opdrachtregel </a> ."
+"Norėdami tai atlikti, įdiekite programinę įrangą naudodami <a href="
+"\"synaptic.desktop\">Synaptic paketų tvarkytuvę</a> ar <a href=\"org.gnome."
+"Terminal.desktop\">APT komandų eilutėje</a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:189
 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 ""
-"Om dit te doen, ontgrendel jouw persistente opslag bij het starten van Tails "
-"en installeer sommige programmatuur met <a href=\"synaptic.desktop"
-"\">Synaptic Package Manager</a> of <a href=\"org.gnome.Terminal.desktop"
-"\">APT op de opdrachtregel</a> ."
+"Norėdami tai atlikti, paleisdami Tails, atrakinkite savo ilgalaikį kaupiklį "
+"ir įdiekite programinę įrangą naudodami <a href=\"synaptic.desktop"
+"\">Synaptic paketų tvarkytuvę</a> ar <a href=\"org.gnome.Terminal.desktop"
+"\">APT komandų eilutėje</a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:199
 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 ""
-"Om dit te doen, maak een persistente opslag en instaleer sommige "
-"programmatuur met <a href=\"synaptic.desktop\">Synaptic Package Manager</a> "
-"of <a href=\"org.gnome.Terminal.desktop\">APT via de opdrachtregel</a>."
+"Norėdami tai atlikti, sukurkite ilgalaikį kaupiklį ir įdiekite programinę "
+"įrangą naudodami <a href=\"synaptic.desktop\">Synaptic paketų tvarkytuvę</a> "
+"ar <a href=\"org.gnome.Terminal.desktop\">APT komandų eilutėje</a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:207
 msgid ""
 "To do so, install Tails on a USB stick using <a href=\"tails-installer."
 "desktop\">Tails Installer</a> and create a persistent storage."
 msgstr ""
-"Om dat te doen, installeer Tails op een USB schijf met <a href=\"tails-"
-"installer.desktop\">Tails Installer</a> en maak een persistente opslag."
+"Norėdami tai atlikti, įdiekite Tails USB atminuke, naudodami <a href=\"tails-"
+"installer.desktop\">Tails diegimo programą</a> ir sukurkite ilgalaikį "
+"kaupiklį."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:254
 msgid "[package not available]"
-msgstr "[pakket niet beschikbaar]"
+msgstr "[paketas neprieinamas]"
 
 #: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:52
 msgid "Synchronizing the system's clock"
-msgstr "Synchroniseren van de systeemklok "
+msgstr "Sinchronizuojamas sistemos laikrodis"
 
 #: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:53
 msgid ""
 "Tor needs an accurate clock to work properly, especially for Hidden "
 "Services. Please wait..."
 msgstr ""
-"Tor vereist een nauwkeurige klok om goed te kunnen werken, in het bijzonder "
-"voor de verborgen diensten.\n"
-"Een ogenblik..."
+"Sklandžiam Tor darbui, reikalingas tikslus laikrodis, ypač paslėptoms "
+"paslaugoms. Prašome palaukti..."
 
 #: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:87
 msgid "Failed to synchronize the clock!"
-msgstr "Het synchroniseren van de klok is mislukt!"
+msgstr "Nepavyko sinchronizuoti laikrodžio!"
 
 #: config/chroot_local-includes/usr/local/bin/tails-security-check:124
 msgid "This version of Tails has known security issues:"
-msgstr "Deze versie van Tails heeft bekende beveiligings-problemen:"
+msgstr "Šioje Tails versijoje yra žinomos saugumo problemos:"
 
 #: config/chroot_local-includes/usr/local/bin/tails-security-check:134
 msgid "Known security issues"
-msgstr "Bekende beveiligingsfouten"
+msgstr "Žinomos saugumo problemos"
 
 #: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:52
 #, sh-format
 msgid "Network card ${nic} disabled"
-msgstr "Netwerkkaart ${nic} uitgeschakeld"
+msgstr "Tinklo plokštė ${nic} išjungta"
 
 #: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:53
 #, sh-format
@@ -481,14 +470,13 @@ msgid ""
 "temporarily disabled.\n"
 "You might prefer to restart Tails and disable MAC spoofing."
 msgstr ""
-"MAC-spoofing voor het netwerkkaart ${nic_name} (${nic}) is mislukt en daarom "
-"tijdelijk uitgeschakeld.\n"
-"U kunt ervoor kiezen Tails opnieuw op te starten en MAC-spoofing uit te "
-"zetten."
+"MAC klastojimas tinklo plokštei ${nic_name} (${nic}) nepavyko, taigi, jis "
+"laikinai yra išjungtas.\n"
+"Jūs galite pageidauti iš naujo paleisti Tails ir išjungti MAC klastojimą."
 
 #: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:62
 msgid "All networking disabled"
-msgstr "Alle netwerken uitgeschakeld"
+msgstr "Visas darbas tinkle išjungtas"
 
 #: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:63
 #, sh-format
@@ -497,30 +485,30 @@ msgid ""
 "recovery also failed so all networking is disabled.\n"
 "You might prefer to restart Tails and disable MAC spoofing."
 msgstr ""
-"Het MAC-spoofen voor de netwerkkaart ${nic_name} (${nic}) is mislukt. Omdat "
-"foutherstel ook is gefaald zijn alle netwerken uitgeschakeld.\n"
-"Je kunt er voor kiezen Tails opnieuw op te starten en MAC-spoofing uit te "
-"zetten."
+"MAC klastojimas tinklo plokštei ${nic_name} (${nic}) nepavyko. Klaidos "
+"atkūrimas taip pat patyrė nesėkmę, taigi, visas darbas tinkle yra "
+"išjungtas.\n"
+"Jūs galite pageidauti iš naujo paleisti Tails ir išjungti MAC klastojimą."
 
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:110
 msgid "Lock Screen"
-msgstr "Schermvergrendeling"
+msgstr "Užrakinti ekraną"
 
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:125
 msgid "Screen Locker"
-msgstr "Schermvergrendeling"
+msgstr "Ekrano užrakinimas"
 
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:131
 msgid "Set up a password to unlock the screen."
-msgstr "Maak een wachtwoord aan om het scherm te ontgrendelen."
+msgstr "Nusistatykite slaptažodį ekrano atrakinimui."
 
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:136
 msgid "Password"
-msgstr "Wachtwoord"
+msgstr "Slaptažodis"
 
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:142
 msgid "Confirm"
-msgstr "Bevestigen"
+msgstr "Patvirtinkite"
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:35
 msgid ""
@@ -534,34 +522,36 @@ msgid ""
 "Or do a manual upgrade.\n"
 "See https://tails.boum.org/doc/first_steps/upgrade#manual\""
 msgstr ""
-"\"<b>Onvoldoende geheugen om op upgrades te controleren.</b>\n"
+"\"<b>Naujinimų tikrinimui nepakanka prieinamos atminties.</b>\n"
 "\n"
-"Zorg ervoor dat dit systeem voldoet aan de vereisten voor het uitvoeren van "
-"Tails.\n"
-"Zie file:///usr/share/doc/tails/website/doc/about/requirements.en.html\n"
+"Įsitikinkite, kad ši sistema tenkina Tails paleidimo reikalavimus.\n"
+"Žiūrėkite file:///usr/share/doc/tails/website/doc/about/requirements.en."
+"html\n"
 "\n"
-"Probeer Tails opnieuw op te starten om te controleren op upgrades.\n"
+"Norėdami dar kartą tikrinti naujinimus, pabandykite paleisti Tails iš "
+"naujo.\n"
 "\n"
-"Of voer een handmatige upgrade uit.\n"
-"Zie https://tails.boum.org/doc/first_steps/upgrade#manual\""
+"Arba atlikite naujinimą rankiniu būdu.\n"
+"Žiūrėkite https://tails.boum.org/doc/first_steps/upgrade#manual\""
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:72
 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
 msgid "error:"
-msgstr "fout:"
+msgstr "klaida:"
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
 msgid "Error"
-msgstr "Fout"
+msgstr "Klaida"
 
 #: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:71
 msgid "Warning: virtual machine detected!"
-msgstr "Waarschuwing: virtuele machine gedetecteerd!"
+msgstr "Įspėjimas: aptikta virtualioji mašina!"
 
 #: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:74
 msgid "Warning: non-free virtual machine detected!"
-msgstr "Waarschuwing: niet-gratis virtuele machine gedetecteerd!"
+msgstr ""
+"Įspėjimas: aptikta ne laisvosios programinės įrangos virtualioji mašina!"
 
 #: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:77
 msgid ""
@@ -570,25 +560,27 @@ msgid ""
 "trustworthy, for both the host operating system and the virtualization "
 "software."
 msgstr ""
-"Zowel het host-besturingssysteem en de virtualisatiesoftware monitoren wat "
-"jij doet in Tails. Alleen gratis software kan als betrouwbaar worden gezien "
-"door de host-besturingssysteem en de virtualisatiesoftware."
+"Tiek pagrindinio kompiuterio operacinė sistema, tiek virtualizacijos "
+"programinė įranga gali stebėti ką jūs darote sistemoje Tails. Tik laisvoji "
+"programinė įranga, naudojama tiek pagrindinio kompiuterio operacinėje "
+"sistemoje, tiek virtualizacijos programinėje įrangoje, gali būti laikoma "
+"patikima."
 
 #: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:81
 msgid "Learn more"
-msgstr "Meer info"
+msgstr "Sužinoti daugiau"
 
 #: config/chroot_local-includes/usr/local/bin/tor-browser:43
 msgid "Tor is not ready"
-msgstr "Tor is niet klaar"
+msgstr "Tor neparuoštas"
 
 #: config/chroot_local-includes/usr/local/bin/tor-browser:44
 msgid "Tor is not ready. Start Tor Browser anyway?"
-msgstr "Tor is niet klaar. De Tor Browser toch starten?"
+msgstr "Tor neparuoštas. Vis tiek paleisti Tor Browser?"
 
 #: config/chroot_local-includes/usr/local/bin/tor-browser:45
 msgid "Start Tor Browser"
-msgstr "Start de Tor Browser"
+msgstr "Paleisti Tor Browser"
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/torstatus@tails.boum.org/extension.js:40
 msgid "Tor"
@@ -596,11 +588,11 @@ msgstr "Tor"
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/torstatus@tails.boum.org/extension.js:55
 msgid "Open Onion Circuits"
-msgstr "Open onioncircuits"
+msgstr "Atverti Onion grandines"
 
 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 msgid "Do you really want to launch the Unsafe Browser?"
-msgstr "Ben je zeker dat je de Onveilige Browser wil starten?"
+msgstr "Ar tikrai norite paleisti nesaugią naršyklę?"
 
 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:40
 msgid ""
@@ -608,66 +600,67 @@ msgid ""
 "use the Unsafe Browser if necessary, for example\\nif you have to login or "
 "register to activate your Internet connection."
 msgstr ""
-"Netwerkactiviteit in de Onveilige Browser is <b>niet anoniem</b>. Gebruik de "
-"Onveilige Browser alleen als het noodzakelijk is, bijvoorbeeld als je moet "
-"aanmelden of registreren om je internetverbinding te activeren."
+"Tinklo veikla nesaugioje naršyklėje <b>nėra anoniminė</b>.\\nNaudokite "
+"Nesaugią naršyklę tik tuomet, jeigu to reikia, pavyzdžiui,\\njeigu jums "
+"reikia prisijungti ar prisiregistruoti, kad aktyvuotumėte savo interneto "
+"ryšį."
 
 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid "Starting the Unsafe Browser..."
-msgstr "Bezig met opstarten van de Onveilige Browser..."
+msgstr "Paleidžiama nesaugi naršyklė..."
 
 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:52
 msgid "This may take a while, so please be patient."
-msgstr "Dit kan even duren, heb geduld a.u.b."
+msgstr "Tai gali šiek tiek užtrukti, prašome būti kantriais."
 
 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 msgid "Shutting down the Unsafe Browser..."
-msgstr "Afsluiten van de onveilige browser..."
+msgstr "Nesaugi naršyklė išjungiama..."
 
 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
 msgstr ""
-"Dit kan een tijdje duren, je mag de onveilige browser niet herstarten tot "
-"deze degelijk is afgesloten."
+"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:70
 msgid "Failed to restart Tor."
-msgstr "Het herstarten van Tor is mislukt."
+msgstr "Nepavyko iš naujo paleisti Tor."
 
 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:84
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 msgid "Unsafe Browser"
-msgstr "Onveilige Browser"
+msgstr "Nesaugi naršyklė"
 
 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:91
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
 msgstr ""
-"Een andere onveilige browser is momenteel in werking of Tor is bezig met het "
-"opruimen ervan. Probeer het een andere keer opnieuw."
+"Š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:99
 msgid "Failed to setup chroot."
-msgstr "Kon geen chroot maken."
+msgstr "Nepavyko nustatyti chroot."
 
 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:104
 msgid "Failed to configure browser."
-msgstr "Kon de browser niet configureren."
+msgstr "Nepavyko sukonfigūruoti naršyklės."
 
 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:110
 msgid ""
 "No DNS server was obtained through DHCP or manually configured in "
 "NetworkManager."
 msgstr ""
-"Er is geen DNS server verkregen via DHCP of manueel ingesteld in "
-"NetwerkBeheerder."
+"Joks DNS serveris nebuvo gautas per DHCP ar sukonfigūruotas rankiniu būdu "
+"programoje NetworkManager."
 
 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:121
 msgid "Failed to run browser."
-msgstr "Kon de browser niet starten."
+msgstr "Nepavyko vykdyti naršyklės."
 
 #. Translators: Don't translate {volume_label} or {volume_size},
 #. they are placeholders and will be replaced.
@@ -688,21 +681,21 @@ msgstr "{partition_name} ({partition_size})"
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
 #, python-brace-format
 msgid "{volume_size} Volume"
-msgstr "{volume_size} Volume"
+msgstr "{volume_size} tomas"
 
 #. Translators: Don't translate {volume_name}, it's a placeholder and
 #. will be replaced.
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
 #, python-brace-format
 msgid "{volume_name} (Read-Only)"
-msgstr "{volume_name} (Alleen-lezen)"
+msgstr "{volume_name} (Tik skaitymui)"
 
 #. Translators: Don't translate {partition_name} and {container_path}, they
 #. are placeholders and will be replaced.
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
 #, python-brace-format
 msgid "{partition_name} in {container_path}"
-msgstr "{partition_name} in {container_path}"
+msgstr "{partition_name} ties {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
@@ -717,7 +710,7 @@ msgstr "{volume_name} – {path_to_file_container}"
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
 #, python-brace-format
 msgid "{partition_name} on {drive_name}"
-msgstr "{partition_name} op {drive_name}"
+msgstr "{partition_name} ties {drive_name}"
 
 #. Translators: Don't translate {volume_name} and {drive_name},
 #. they are placeholders and will be replaced. You should only have to translate
@@ -729,11 +722,11 @@ msgstr "{volume_name} – {drive_name}"
 
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
 msgid "Wrong passphrase or parameters"
-msgstr "Verkeerde wachtzin of parameters"
+msgstr "Neteisinga slaptafrazė arba parametrai"
 
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
 msgid "Error unlocking volume"
-msgstr "Fout bij het ontgrendelen van het volume"
+msgstr "Klaida atrakinant tomą"
 
 #. Translators: Don't translate {volume_name} or {error_message},
 #. they are placeholder and will be replaced.
@@ -743,29 +736,29 @@ msgid ""
 "Couldn't unlock volume {volume_name}:\n"
 "{error_message}"
 msgstr ""
-"Kon volume {volume_name}:\n"
-"{error_message} niet ontgrendelen"
+"Nepavyko atrakinti tomo {volume_name}:\n"
+"{error_message}"
 
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
 msgid "No file containers added"
-msgstr "Geen bestandscontainers toegevoegd"
+msgstr "Nepridėta jokių failų konteinerių"
 
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:98
 msgid "No VeraCrypt devices detected"
-msgstr "Geen VeraCrypt randapparaten gedetecteerd"
+msgstr "Neaptikta jokių VeraCrypt įrenginių"
 
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:114
 msgid "Container already added"
-msgstr "Container is al toegevoegd"
+msgstr "Konteineris jau pridėtas"
 
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:115
 #, python-format
 msgid "The file container %s should already be listed."
-msgstr "De bestandscontainer %s zou al in de lijst moeten staan."
+msgstr "Failų konteineris %s jau turėtų būti išvardytas."
 
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:131
 msgid "Container opened read-only"
-msgstr "Container geopend in alleen-lezen"
+msgstr "Konteineris atvertas tik skaitymui"
 
 #. Translators: Don't translate {path}, it's a placeholder  and will be replaced.
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
@@ -776,27 +769,27 @@ msgid ""
 "container.\n"
 "{error_message}"
 msgstr ""
-"De bestandscontainer {path} kon niet worden geopend met schrijf toegang. Het "
-"is in plaats daarvan geopend als alleen-lezen. U kunt daarom de inhoud van "
-"de container niet aanpassen.\n"
+"Nepavyko atverti failų konteinerio {path} su rašymo prieiga. Vietoj to, jis "
+"buvo atvertas tik skaitymui. Jūs negalėsite modifikuoti konteinerio "
+"turinio.\n"
 "{error_message}"
 
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
 msgid "Error opening file"
-msgstr "Fout bij openen van bestand"
+msgstr "Klaida atveriant failą"
 
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
 msgid "Not a VeraCrypt container"
-msgstr "Niet een VeraCrypt container"
+msgstr "Nėra VeraCrypt konteineris"
 
 #: config/chroot_local-includes/usr/local/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 "Het bestand %s lijkt geen VeraCrypt container te zijn."
+msgstr "Atrodo, kad failas %s nėra VeraCrypt konteineris."
 
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
 msgid "Failed to add container"
-msgstr "Container toevoegen mislukt"
+msgstr "Nepavyko pridėti konteinerio"
 
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
 #, python-format
@@ -804,30 +797,29 @@ msgid ""
 "Could not add file container %s: Timeout while waiting for loop setup.Please "
 "try using the <i>Disks</i> application instead."
 msgstr ""
-"Kon geen bestandscontainer toevoegen %s: Timeout terwijl er werd gewacht op "
-"een 'loop setup'. Probeer alstublieft in plaats hier van de <i>Schijven</i> "
-"applicatie."
+"Nepavyko pridėti failų konteinerio %s: Laukiant ciklinės sąrankos, pasibaigė "
+"laikas. Vietoj to, pabandykite naudoti programą <i>Diskai</i>."
 
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
 msgid "Choose File Container"
-msgstr "Kies bestandscontainer"
+msgstr "Pasirinkti failų konteinerį"
 
 #: ../config/chroot_local-includes/etc/skel/Desktop/Report_an_error.desktop.in.h:1
 msgid "Report an error"
-msgstr "Meld een fout"
+msgstr "Pranešti apie klaidą"
 
 #: ../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 "Tail documentatie"
+msgstr "Tails dokumentacija"
 
 #: ../config/chroot_local-includes/usr/share/applications/tails-documentation.desktop.in.h:2
 msgid "Learn how to use Tails"
-msgstr "Leer Tails te gebruiken"
+msgstr "Sužinokite kaip naudotis Tails"
 
 #: ../config/chroot_local-includes/usr/share/applications/tails-about.desktop.in.h:2
 msgid "Learn more about Tails"
-msgstr "Leer meer over Tails"
+msgstr "Sužinoti daugiau apie Tails"
 
 #: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:1
 msgid "Tor Browser"
@@ -835,88 +827,87 @@ msgstr "Tor Browser"
 
 #: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:2
 msgid "Anonymous Web Browser"
-msgstr "Anonieme Webrowser"
+msgstr "Anoniminė saityno naršyklė"
 
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:2
 msgid "Browse the World Wide Web without anonymity"
-msgstr "Surf op het wereldwijde web zonder bescherming"
+msgstr "Naršyti saityną be anonimiškumo"
 
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:3
 msgid "Unsafe Web Browser"
-msgstr "Onveilige Web Browser"
+msgstr "Nesaugi saityno naršyklė"
 
 #: ../config/chroot_local-includes/usr/share/applications/unlock-veracrypt-volumes.desktop.in.h:1
 msgid "Unlock VeraCrypt Volumes"
-msgstr "Ontgrendel VeraCrypt volumes"
+msgstr "Atrakinti VeraCrypt tomus"
 
 #: ../config/chroot_local-includes/usr/share/applications/unlock-veracrypt-volumes.desktop.in.h:2
 msgid "Mount VeraCrypt encrypted file containers and devices"
-msgstr "Koppel VeraCrypt versleutelde bestandscontainers en apparaten"
+msgstr "Prijungti VeraCrypt šifruotus failų konteinerius ir įrenginius"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1
 msgid "Additional Software"
-msgstr "Extra programmatuur"
+msgstr "Papildoma programinė įranga"
 
 #: ../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 ""
-"Configureer de extra programmatuur geïnstalleerd vanaf jouw persistente "
-"opslag bij het starten van Tails"
+"Konfigūruoti papildomą programinę įrangą, kuri, paleidus Tails, yra "
+"įdiegiama iš jūsų ilgalaikio kaupiklio"
 
 #: ../config/chroot_local-includes/usr/share/desktop-directories/Tails.directory.in.h:2
 msgid "Tails specific tools"
-msgstr "Tails specifieke tools"
+msgstr "Tails specifiniai įrankiai"
 
 #: ../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 "Om een Root terminal te starten moet er eerst geauthenticeerd worden"
+msgstr "Norint paleisti šaknies terminalą, jums reikia nustatyti tapatybę."
 
 #: ../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 "Verwijder een extra programmatuur pakket"
+msgstr "Šalinti papildomos programinės įrangos paketą"
 
 #: ../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 ""
-"Authenticatie is vereist om een pakketje van jouw toegevoegde software te "
-"verwijderen ($(command_line))"
+"Reikalingas tapatybės nustatymas, norint pašalinti paketą iš jūsų papildomos "
+"programinės įrangos ($(command_line))"
 
 #: ../config/chroot_local-includes/usr/share/unlock-veracrypt-volumes/ui/main.ui.in:61
 msgid "File Containers"
-msgstr "Bestandscontainers"
+msgstr "Failų konteineriai"
 
 #: ../config/chroot_local-includes/usr/share/unlock-veracrypt-volumes/ui/main.ui.in:80
 msgid "_Add"
-msgstr "_Toevoegen"
+msgstr "_Pridėti"
 
 #: ../config/chroot_local-includes/usr/share/unlock-veracrypt-volumes/ui/main.ui.in:86
 msgid "Add a file container"
-msgstr "Bestand toevoegen aan container"
+msgstr "Pridėti failų konteinerį"
 
 #: ../config/chroot_local-includes/usr/share/unlock-veracrypt-volumes/ui/main.ui.in:103
 msgid "Partitions and Drives"
-msgstr "Partities en Schijven"
+msgstr "Skaidiniai ir diskai"
 
 #: ../config/chroot_local-includes/usr/share/unlock-veracrypt-volumes/ui/main.ui.in:121
 msgid ""
 "This application is not affiliated with or endorsed by the VeraCrypt project "
 "or IDRIX."
 msgstr ""
-"Dit programma is niet aangesloten bij of goedgekeurd door het VeraCrypt "
-"project of IDRIX."
+"Ši programa neturi ryšių su VeraCrypt projektu ar IDRIX ir nėra jų remiama."
 
 #: ../config/chroot_local-includes/usr/share/unlock-veracrypt-volumes/ui/volume.ui.in:38
 msgid "Lock this volume"
-msgstr "Vergrendel dit volume"
+msgstr "Užrakinti šį tomą"
 
 #: ../config/chroot_local-includes/usr/share/unlock-veracrypt-volumes/ui/volume.ui.in:61
 msgid "Detach this volume"
-msgstr "Ontkoppel dit volume"
+msgstr "Atjungti šį tomą"
 
 #: ../config/chroot_local-includes/usr/local/share/mime/packages/unlock-veracrypt-volumes.xml.in.h:1
 msgid "TrueCrypt/VeraCrypt container"
-msgstr "TrueCrypt/VeraCrypt container"
+msgstr "TrueCrypt/VeraCrypt konteineris"
diff --git a/po/lv.po b/po/lv.po
index d8cdb4b00d56fab62c8f68d6eadb8c60fb362131..fba6e0a9c9a49f9484cc92203e4cf36ad3208d12 100644
--- a/po/lv.po
+++ b/po/lv.po
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-14 21:20+0100\n"
+"POT-Creation-Date: 2019-04-06 14:00+0200\n"
 "PO-Revision-Date: 2018-01-28 10:40+0000\n"
 "Last-Translator: Ojars Balcers <ojars.balcers@gmail.com>\n"
 "Language-Team: Latvian (http://www.transifex.com/otf/torproject/language/"
@@ -72,15 +72,15 @@ msgid ""
 "storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:173
 msgid ""
 "To add more, install some software using <a href=\"synaptic.desktop"
 "\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop"
 "\">APT on the command line</a>."
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:151
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
 msgid "_Create persistent storage"
 msgstr ""
 
@@ -138,14 +138,18 @@ msgid "su is disabled. Please use sudo instead."
 msgstr ""
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
-msgid "Restart"
-msgstr "Pārstartēt"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:78
 msgid "Lock screen"
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:81
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79
+msgid "Suspend"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83
+msgid "Restart"
+msgstr "Pārstartēt"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87
 msgid "Power Off"
 msgstr "Izslēgt"
 
@@ -178,7 +182,7 @@ 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:147
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
 #, fuzzy, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -188,81 +192,81 @@ msgstr ""
 "pārbaudiet savu tīkla savienojumu vai pamēģiniet pārstartēt Tails, vai "
 "lasiet sistēmas žurnālu, lai labāk saprastu problēmu."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
 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:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 msgid "Show Log"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 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:222
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
 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:289
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
 #, fuzzy, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "Jūsu papildu programmatūra"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
 msgid "Install Every Time"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:297
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 msgid "Install Only Once"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 msgid "The configuration of your additional software failed."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
 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:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:335
 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:341
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
 msgid ""
 "To do so, you need to run Tails from a USB stick installed using <i>Tails "
 "Installer</i>."
@@ -270,51 +274,52 @@ msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:359
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
 #, fuzzy, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "Jūsu papildu programmatūra"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:363
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:365
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:368
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:156
 msgid "Remove"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:369
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #: config/chroot_local-includes/usr/local/bin/tor-browser:46
 msgid "Cancel"
 msgstr "Atcelt"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:547
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:546
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:549
 msgid "This can take several minutes."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:559
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:562
 #, fuzzy
 msgid "The installation of your additional software failed"
 msgstr "Jūsu papildu programmatūra"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:574
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:577
 msgid "Additional software installed successfully"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:594
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:597
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:596
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:599
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:607
 #, fuzzy
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
@@ -324,12 +329,12 @@ msgstr ""
 "pārbaudiet savu tīkla savienojumu vai pamēģiniet pārstartēt Tails, vai "
 "lasiet sistēmas žurnālu, lai labāk saprastu problēmu."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:606
 #, fuzzy
 msgid "The upgrade of your additional software failed"
 msgstr "Jūsu papildu programmatūra"
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:39
 #, fuzzy
 msgid "Documentation"
 msgstr "Tails dokumentācija"
@@ -359,34 +364,34 @@ msgstr "Jūsu papildu programmatūra"
 msgid "Stop installing {package} automatically"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
 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:188
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:189
 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:198
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:199
 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:206
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:207
 msgid ""
 "To do so, install Tails on a USB stick using <a href=\"tails-installer."
 "desktop\">Tails Installer</a> and create a persistent storage."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:254
 #, fuzzy
 msgid "[package not available]"
 msgstr "nav pieejams"
diff --git a/po/ja.po b/po/ms_MY.po
similarity index 69%
rename from po/ja.po
rename to po/ms_MY.po
index 6963e9e1a58031d33be168e3e6121abf82480b39..c10442e00938bcf4275ac47152b0803f9e08e4dc 100644
--- a/po/ja.po
+++ b/po/ms_MY.po
@@ -3,29 +3,20 @@
 # This file is distributed under the same license as the PACKAGE package.
 #
 # Translators:
-# ABE Tsunehiko, 2015
-# Arbert Sporocyst <EncryptedBrother@protonmail.com>, 2018
-# sunpower92 <fumihito92@gmail.com>, 2014
-# タカハシ <indexial@outlook.jp>, 2013-2014
-# タカハシ <indexial@outlook.jp>, 2015
-# Katabame Ayame <katabamia@gmail.com>, 2017
-# Kota Ura, 2017
-# Masaki Saito <rezoolab@gmail.com>, 2013
-# mksyslab, 2014
-# nord stream <nord-stream@ochaken.jp.eu.org>, 2016
-# Ippei Shinozaki <shino.ip.1231@gmail.com>, 2015
-# Tokumei Nanashi, 2015,2018
-# 藤前 甲 <m1440809437@hiru-dea.com>, 2014
-msgid ""
-msgstr ""
-"Project-Id-Version: The Tor Project\n"
+# abuyop <abuyop@gmail.com>, 2017,2019
+# Khairulanuar, 2013
+# kz_gtr <kz_gtr@yahoo.com>, 2014
+# Mohd Shahril Bin Zainol Abidin <mohd_shahril_96@yahoo.com>, 2013
+msgid ""
+msgstr ""
+"Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-14 21:20+0100\n"
-"PO-Revision-Date: 2018-04-18 08:19+0000\n"
-"Last-Translator: Tokumei Nanashi\n"
-"Language-Team: Japanese (http://www.transifex.com/otf/torproject/language/"
-"ja/)\n"
-"Language: ja\n"
+"POT-Creation-Date: 2019-04-06 14:00+0200\n"
+"PO-Revision-Date: 2019-05-05 03:53+0000\n"
+"Last-Translator: abuyop <abuyop@gmail.com>\n"
+"Language-Team: Malay (Malaysia) (http://www.transifex.com/otf/torproject/"
+"language/ms_MY/)\n"
+"Language: ms_MY\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -33,11 +24,11 @@ msgstr ""
 
 #: config/chroot_local-includes/etc/NetworkManager/dispatcher.d/60-tor-ready.sh:39
 msgid "Tor is ready"
-msgstr "Torの準備が完了しました"
+msgstr "Tor sudah sedia"
 
 #: config/chroot_local-includes/etc/NetworkManager/dispatcher.d/60-tor-ready.sh:40
 msgid "You can now access the Internet."
-msgstr "インターネットにアクセスできます。"
+msgstr "Kini anda boleh mencapai Internet."
 
 #: config/chroot_local-includes/etc/whisperback/config.py:69
 #, python-format
@@ -57,16 +48,18 @@ msgid ""
 "confirm that you are using Tails.\n"
 "</p>\n"
 msgstr ""
-"<h1>バグ修正に協力してください!</h1>\n"
-"<p><a href=\"%s\">バグの報告方法</a>を読んでください。</p>\n"
-"<p><strong>不必要な個人情報を含めないでください!</strong></p>\n"
-"<h2>メールアドレスの提供について</h2>\n"
+"<h1>Bantu kami membaiki pepijat yang anda temui!</h1>\n"
+"<p>Baca <a href=\"%s\">arahan pelaporan pepijat kami</a>.</p>\n"
+"<p><strong>Jangan sertakan banyak maklumat peribadi\n"
+"kecuali yang diperlukan sahaja!</strong></p>\n"
+"<h2>Berkenaan penyerahan alamat emel kepada kami</h2>\n"
 "<p>\n"
-"我々が問題を特定するために連絡できるよう、あなたのメールアドレスを教えてくだ"
-"さい。\n"
-"我々に届く情報の大半は、追加情報なしでは役に立たないためです。\n"
-"一方で、これはメール機能の提供者やプロバイダーなどの盗聴者に、あなたが Tails "
-"を利用していることを知られる機械を与える事にもなります。\n"
+"Dengan menyertakan alamat emel kami dapat menghubungi anda untuk\n"
+"mengesahkan masalah tersebut. Ia diperlukan bagi kebanyakan laporan\n"
+"yang kami terima kerana laporan-laporan tanpa maklumat perhubungan\n"
+"dianggap tidak berguna. Selain itu, ia memberi peluang kepada para\n"
+"pengintip, iaitu alamat emel dan penyedia Internet anda, yang mahu tahu\n"
+"atau mengesahkan sama ada anda pengguna Tails.\n"
 "</p>\n"
 
 #: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:51
@@ -74,28 +67,35 @@ msgid ""
 "You can install additional software automatically from your persistent "
 "storage when starting Tails."
 msgstr ""
+"Anda boleh memasang perisian tambahan secara automatik melalui storan "
+"berterusan ana ketika memulakan 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 ""
+"Perisian berikut dipasang secara automatik melalui storan berterusan anda "
+"ketika memulakan Tails."
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:173
 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 ""
+"Untuk menambah lagi, pasang beberapa perisian menggunakan <a href=\"synaptic."
+"desktop\">Pengurus Pakej Synaptic</a> atau <a href=\"org.gnome.Terminal."
+"desktop\">APT dalam baris perintah</a>."
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:151
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
 msgid "_Create persistent storage"
-msgstr ""
+msgstr "_Cipta storan berterusan"
 
 #: config/chroot_local-includes/usr/local/bin/electrum:57
 msgid "Persistence is disabled for Electrum"
-msgstr "Electrum の保存機能が無効です"
+msgstr "Berterusan telah dilumpuhkan untuk Electrum"
 
 #: config/chroot_local-includes/usr/local/bin/electrum:59
 msgid ""
@@ -103,23 +103,23 @@ msgid ""
 "Bitcoin wallet. It is strongly recommended to only run Electrum when its "
 "persistence feature is activated."
 msgstr ""
-"Tails を再起動すると、Bitcoin ウォレットを含む全ての Electrum のデータは失わ"
-"れます。保存機能が有効なときのみ Electrum を実行させることを強くおすすめしま"
-"す。"
+"Ketika anda membuat semula Tails, semua data Electrum akan hilang, "
+"termasuklah dompet Bitcoin anda. Oleh itu, sangat disarankan hanya jalankan "
+"Electrum ketika fitur berterusannya diaktifkan."
 
 #: config/chroot_local-includes/usr/local/bin/electrum:60
 msgid "Do you want to start Electrum anyway?"
-msgstr "それでも Electrum を起動しますか?"
+msgstr "Anda mahu memulakan Electrum jua?"
 
 #: config/chroot_local-includes/usr/local/bin/electrum:63
 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:41
 msgid "_Launch"
-msgstr "起動 (_L)"
+msgstr "_Lancar"
 
 #: config/chroot_local-includes/usr/local/bin/electrum:64
 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:42
 msgid "_Exit"
-msgstr "終了 (_E)"
+msgstr "_Keluar"
 
 #: config/chroot_local-includes/usr/local/bin/keepassx:17
 #, sh-format
@@ -133,30 +133,44 @@ msgid ""
 "Renaming it to <i>keepassx.kdbx</i> would allow <i>KeePassX</i> to open it "
 "automatically in the future."
 msgstr ""
+"<b><big>Anda mahu menamakan semula pangkalan data <i>KeePassX</i> anda?</"
+"big></b>\n"
+"\n"
+"Anda ada pangkalan data <i>KeePassX</i> di dalam folder <i>Persistent</i> "
+"anda:\n"
+"\n"
+"<i>${filename}</i>\n"
+"\n"
+"Menamakannya semula menjadi <i>keepassx.kdbx</i> membolehkan <i>KeePassX</i> "
+"dibuka secara automatik pada masa hadapan."
 
 #: config/chroot_local-includes/usr/local/bin/keepassx:25
 msgid "Rename"
-msgstr ""
+msgstr "Nama Semula"
 
 #: config/chroot_local-includes/usr/local/bin/keepassx:26
 msgid "Keep current name"
-msgstr ""
+msgstr "Kekalkan nama semasa"
 
 #: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
 msgid "su is disabled. Please use sudo instead."
-msgstr ""
+msgstr "su dilumpuhkan. Sila guna sudo sebagai ganti."
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
-msgid "Restart"
-msgstr "再起動"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:78
 msgid "Lock screen"
-msgstr "ロック画面"
+msgstr "Skrin kunci"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79
+msgid "Suspend"
+msgstr "Tangguh"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83
+msgid "Restart"
+msgstr "Mula Semula"
 
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:81
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87
 msgid "Power Off"
-msgstr "電源を切る"
+msgstr "Matikan"
 
 #: config/chroot_local-includes/usr/local/bin/tails-about:22
 #: ../config/chroot_local-includes/usr/share/desktop-directories/Tails.directory.in.h:1
@@ -166,7 +180,7 @@ 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について"
+msgstr "Perihal Tails"
 
 #: config/chroot_local-includes/usr/local/bin/tails-about:35
 msgid "The Amnesic Incognito Live System"
@@ -178,177 +192,173 @@ msgid ""
 "Build information:\n"
 "%s"
 msgstr ""
-"ビルド情報:\n"
+"Maklumat binaan:\n"
 "%s"
 
 #: config/chroot_local-includes/usr/local/bin/tails-about:54
 msgid "not available"
-msgstr "利用不可"
+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:147
-#, fuzzy, python-brace-format
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
 "log to understand the problem."
 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:152
-#, fuzzy
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
 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:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 msgid "Show Log"
-msgstr ""
+msgstr "Tunjuk Log"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
-#, fuzzy
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 msgid "Configure"
-msgstr "確認"
+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:222
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
 #, python-brace-format
 msgid "{beginning} and {last}"
-msgstr ""
+msgstr "{beginning} dan {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
 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:289
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
-msgstr ""
+msgstr "Tambah {packages} ke dalam perisian tambahan anda?"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
 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:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
 msgid "Install Every Time"
-msgstr ""
+msgstr "Pasang Selalu"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:297
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 msgid "Install Only Once"
-msgstr ""
+msgstr "Pasang Sekali Sahaja"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
-#, fuzzy
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 msgid "The configuration of your additional software failed."
-msgstr "追加ソフトウェアのアップグレードに失敗しました。"
+msgstr "Konfigurasi perisian tambahan anda mengalami kegagalan."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
 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:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
 msgid "Create Persistent Storage"
-msgstr ""
+msgstr "Cipta Storan Berterusan"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:335
 msgid "Creating your persistent storage failed."
-msgstr ""
+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:341
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
-msgstr ""
+msgstr "Anda patut memasang {packages} secara automatik ketika memulakan Tails"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
 msgid ""
 "To do so, you need to run Tails from a USB stick installed using <i>Tails "
 "Installer</i>."
 msgstr ""
+"Untuk membuatnya, anda perlu menjalankan Tails menerusi pemacu pena USB yang "
+"terpasang dengan <i>Tails Installer</i>."
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:359
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
-msgstr ""
+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:363
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
-msgstr ""
+msgstr "Tindakan ini akan menghentikan pemasangan {packages} secara automatik."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:365
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:368
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:156
 msgid "Remove"
-msgstr ""
+msgstr "Buang"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:369
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #: config/chroot_local-includes/usr/local/bin/tor-browser:46
 msgid "Cancel"
-msgstr "キャンセル"
+msgstr "Batal"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544
-#, fuzzy
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:547
 msgid "Installing your additional software from persistent storage..."
-msgstr "追加ソフトウェアがインストールされました。"
+msgstr "Memasang perisian tambahan anda melalui storan berterusan..."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:546
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:549
 msgid "This can take several minutes."
-msgstr ""
+msgstr "Ia mengambil masa beberapa minit."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:559
-#, fuzzy
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:562
 msgid "The installation of your additional software failed"
-msgstr "追加ソフトウェアのアップグレードに失敗しました。"
+msgstr "Pemasangan perisian tambahan anda mengalami kegagalan"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:574
-#, fuzzy
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:577
 msgid "Additional software installed successfully"
-msgstr "追加ソフトウェアがインストールされました。"
+msgstr "Perisian tambahan berjaya dipasang"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:594
-#, fuzzy
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:597
 msgid "The check for upgrades of your additional software failed"
-msgstr "追加ソフトウェアのアップグレードに失敗しました。"
+msgstr "Pemeriksaan untuk menatar perisian tambahan anda mengalami kegagalan"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:596
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
-#, fuzzy
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:599
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:607
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
 msgstr ""
-"アップグレードに失敗しました。これはおそらくネットワーク上の問題によるもので"
-"す。ネットワークの設定を確認した後にTailsを再起動するか、システムログを参照し"
-"てください。"
+"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:603
-#, fuzzy
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:606
 msgid "The upgrade of your additional software failed"
-msgstr "追加ソフトウェアのアップグレードに失敗しました。"
+msgstr "Penataran perisian tambahan anda mengalami kegagalan"
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
-#, fuzzy
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:39
 msgid "Documentation"
-msgstr "Tailsのドキュメント"
+msgstr "Dokumentasi"
 
 #. Translators: Don't translate {package}, it's a placeholder and will be replaced.
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
@@ -357,84 +367,96 @@ msgid ""
 "Remove {package} from your additional software? This will stop installing "
 "the package automatically."
 msgstr ""
+"Buang {package} melalui perisian tambahan anda? Tindakan ini akan "
+"menghentikan pemasangan pakej secara automatik."
 
 #. Translators: Don't translate {pkg}, it's a placeholder and will be replaced.
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
 #, python-brace-format
 msgid "Failed to remove {pkg}"
-msgstr ""
+msgstr "Gagal membuang {pkg}"
 
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
-#, fuzzy
 msgid "Failed to read additional software configuration"
-msgstr "追加ソフトウェアのインストールに失敗しました。"
+msgstr "Gagal membaca konfigurasi perisian tambahan"
 
 #. Translators: Don't translate {package}, it's a placeholder and will be replaced.
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
 #, python-brace-format
 msgid "Stop installing {package} automatically"
-msgstr ""
+msgstr "Henti memasang {package} secara automatik"
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
 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 ""
+"Untuk membuatnya, pasang beberapa perisian menggunakan <a href=\"synaptic."
+"desktop\">Pengurus Pakej Synaptic</a> atau <a href=\"org.gnome.Terminal."
+"desktop\">APT dalam baris perintah</a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:189
 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 ""
+"Untuk membuatnya, buka storan berterusan anda  ketika memulakan Tails dan "
+"pasang beberapa perisian menggunakan <a href=\"synaptic.desktop\">Pengurus "
+"Pakej Synaptic</a> atau <a href=\"org.gnome.Terminal.desktop\">APT dalam "
+"baris perintah</a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:199
 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 ""
+"Untuk membuatnya, cipta satu storan berterusan dan pasang beberapa perisian "
+"menggunakan <a href=\"synaptic.desktop\">Pengurus Pakej Synaptic</a> atau <a "
+"href=\"org.gnome.Terminal.desktop\">APT dalam baris perintah</a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:207
 msgid ""
 "To do so, install Tails on a USB stick using <a href=\"tails-installer."
 "desktop\">Tails Installer</a> and create a persistent storage."
 msgstr ""
+"Untuk membuatnya, pasang Tails ke dalam pemacu pena USB melalui <a href="
+"\"tails-installer.desktop\">Tails Installer</a> dan cipta storan berterusan."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
-#, fuzzy
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:254
 msgid "[package not available]"
-msgstr "利用不可"
+msgstr "[pakej tidak tersedia]"
 
 #: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:52
 msgid "Synchronizing the system's clock"
-msgstr "システム時計を同期中"
+msgstr "Penyegerakan masa sistem"
 
 #: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:53
 msgid ""
 "Tor needs an accurate clock to work properly, especially for Hidden "
 "Services. Please wait..."
 msgstr ""
-"Torは、特にHidden Serviceのために、適切に動作するのに正確な時計を必要としま"
-"す。お待ちください..."
+"Tor memerlukan jam tepat untuk berfungsi dengan baik, terutamanya "
+"Perkhidmatan Tersembunyi. Tunggu sebentar..."
 
 #: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:87
 msgid "Failed to synchronize the clock!"
-msgstr "時計の同期に失敗しました!"
+msgstr "Gagal menyegerakkan jam!"
 
 #: config/chroot_local-includes/usr/local/bin/tails-security-check:124
 msgid "This version of Tails has known security issues:"
-msgstr "Tailsのこのバージョンには、既知のセキュリティ問題が存在します:"
+msgstr "Versi Tails ini diketahui mempunyai beberapa masalah:"
 
 #: config/chroot_local-includes/usr/local/bin/tails-security-check:134
 msgid "Known security issues"
-msgstr "既知のセキュリティ問題"
+msgstr "Masalah keselamatan diketahui"
 
 #: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:52
 #, sh-format
 msgid "Network card ${nic} disabled"
-msgstr "ネットワークカード ${nic} が無効になりました"
+msgstr "Kad rangkaian ${nic} dilumpuhkan"
 
 #: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:53
 #, sh-format
@@ -443,13 +465,13 @@ msgid ""
 "temporarily disabled.\n"
 "You might prefer to restart Tails and disable MAC spoofing."
 msgstr ""
-"MAC スプーフィングが、ネットワークカード ${nic_name} (${nic}) のために失敗し"
-"たので、一時的に無効化されます。\n"
-"Tails を再起動して、 MAC スプーフィーングを無効化したいかもしれません。"
+"Perdayaan MAC gagal bagi kad rangkaian ${nic_name} (${nic}) jadi ia "
+"dilumpuhkan buat sementara.\n"
+"Anda perlu memulakan semula Tails dan lumpuhkan perdayaan MAC."
 
 #: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:62
 msgid "All networking disabled"
-msgstr "全ネットワーク機能無効"
+msgstr "Semua perangkaian dilumpuhkan"
 
 #: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:63
 #, sh-format
@@ -458,29 +480,29 @@ msgid ""
 "recovery also failed so all networking is disabled.\n"
 "You might prefer to restart Tails and disable MAC spoofing."
 msgstr ""
-"MAC スプーフィングが、ネットワークカード ${nic_name} (${nic}) のために失敗し"
-"ました。エラー回復も失敗したので、ネットワーク能力は全て無効化されます。\n"
-"Tails を再起動して、 MAC スプーフィーングを無効化したいかもしれません。"
+"Perdayaan MAC gagal bagi kad rangkaian ${nic_name} (${nic}). Pemulihan ralat "
+"juga gagal maka semua perangkaian dilumpuhkan.\n"
+"Anda perlu memulakan semula Tails dan lumpuhkan perdayaan MAC."
 
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:110
 msgid "Lock Screen"
-msgstr "ロック画面"
+msgstr "Kunci Skrin"
 
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:125
 msgid "Screen Locker"
-msgstr "スクリーンロッカー"
+msgstr "Pengunci Skrin"
 
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:131
 msgid "Set up a password to unlock the screen."
-msgstr "画面をアンロックするためのパスワードを設定してください。"
+msgstr "Sediakan satu kata laluan untuk membuka skrin."
 
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:136
 msgid "Password"
-msgstr "パスワード"
+msgstr "Kata Laluan"
 
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:142
 msgid "Confirm"
-msgstr "確認"
+msgstr "Sahkan"
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:35
 msgid ""
@@ -494,34 +516,34 @@ msgid ""
 "Or do a manual upgrade.\n"
 "See https://tails.boum.org/doc/first_steps/upgrade#manual\""
 msgstr ""
-"<b>アップグレードの確認に十分なメモリが利用できません。</b>\n"
+"\"<b>Ingatan tidak mencukupi untuk memeriksa penataran.</b>\n"
 "\n"
-"このシステムが Tails の動作する要件を満たしているか確認してください。\n"
-"file:///usr/share/doc/tails/website/doc/about/requirements.en.html をご覧くだ"
-"さい。\n"
+"Pastikan sistem ini memenuhi keperluan untuk menjalankan Tails.\n"
+"Sila rujuk file:///usr/share/doc/tails/website/doc/about/requirements.en."
+"html\n"
 "\n"
-"Tails を再起動してから、もう一度アップグレードを確認してください。\n"
+"Cuba mulakan semula Tails untuk memeriksa penataran sekali lagi.\n"
 "\n"
-"または、手動でアップグレードを行ってください。\n"
-"https://tails.boum.org/doc/first_steps/upgrade#manual をご覧ください。"
+"Atau buat penataran manual.\n"
+"Sila rujuk https://tails.boum.org/doc/first_steps/upgrade#manual\""
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:72
 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
 msgid "error:"
-msgstr "エラー:"
+msgstr "ralat:"
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
 msgid "Error"
-msgstr "エラー"
+msgstr "Ralat"
 
 #: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:71
 msgid "Warning: virtual machine detected!"
-msgstr "警告: 仮想マシンを検出!"
+msgstr "Amaran: komputer maya dikesan!"
 
 #: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:74
 msgid "Warning: non-free virtual machine detected!"
-msgstr "警告:フリーソフトではない仮想マシンを検出!"
+msgstr "Amaran: komputer maya bukan-bebas dikesan!"
 
 #: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:77
 msgid ""
@@ -530,37 +552,37 @@ msgid ""
 "trustworthy, for both the host operating system and the virtualization "
 "software."
 msgstr ""
-"ホストオペレーティングシステムと仮想化ソフトウェアのどちらも、Tailsで行ってい"
-"ることを監視できます。ホストオペレーティングシステムと仮想化ソフトウェアに"
-"は、フリーソフトのみが信頼されます。"
+"Kedua-dua sistem pengoperasian hos dan perisian pemayaan dapat memantau apa "
+"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:81
 msgid "Learn more"
-msgstr "詳細を見る"
+msgstr "Ketahui lebih lanjut"
 
 #: config/chroot_local-includes/usr/local/bin/tor-browser:43
 msgid "Tor is not ready"
-msgstr "Tor は準備出来ていません"
+msgstr "Tor tidak sedia"
 
 #: config/chroot_local-includes/usr/local/bin/tor-browser:44
 msgid "Tor is not ready. Start Tor Browser anyway?"
-msgstr "Tor は準備出来ていません。とにかく Tor Browser を起動しますか?"
+msgstr "Tor tidak sedia. Mulakan Pelayar Tor jua?"
 
 #: config/chroot_local-includes/usr/local/bin/tor-browser:45
 msgid "Start Tor Browser"
-msgstr "Tor Browser を起動"
+msgstr "Mula Pelayar Tor"
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/torstatus@tails.boum.org/extension.js:40
 msgid "Tor"
-msgstr ""
+msgstr "Tor"
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/torstatus@tails.boum.org/extension.js:55
 msgid "Open Onion Circuits"
-msgstr ""
+msgstr "Buka Litar Onion"
 
 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 msgid "Do you really want to launch the Unsafe Browser?"
-msgstr "本当に安全ではないブラウザを起動しますか?"
+msgstr "Anda pasti mahu lancarkan Pelayar Tidak Selamat?"
 
 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:40
 msgid ""
@@ -568,102 +590,101 @@ msgid ""
 "use the Unsafe Browser if necessary, for example\\nif you have to login or "
 "register to activate your Internet connection."
 msgstr ""
-"安全でないブラウザ内でのネットワークの活動状況は、<b>匿名ではありません</"
-"b>。\\n必要な場合のみ、例えば、\\nインターネット接続を有効化するためにログイ"
-"ンまたは登録しなければならないような場合のみ、安全でないブラウザを使用してく"
-"ださい。"
+"Aktiviti rangkaian di dalam Pelayar Tidak Selamat adalah <b>tidak awanama</"
+"b>.\\nHanya guna Pelayar Tidak Selamat jika perlu, sebagai contoh\\njika "
+"anda mahu daftar masuk atau daftar untuk aktifkan sambungan Internet anda."
 
 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
 msgid "Starting the Unsafe Browser..."
-msgstr "安全でないブラウザを起動中..."
+msgstr "Memulakan Pelayar Tidak Selamat..."
 
 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:52
 msgid "This may take a while, so please be patient."
-msgstr "しばらくかかる場合がありますので、お待ちください。"
+msgstr "Ia mengambil sedikit masa, harap bersabar."
 
 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
 msgid "Shutting down the Unsafe Browser..."
-msgstr "安全でないブラウザをシャットダウン中..."
+msgstr "Mematikan Pelayar Tidak Selamat..."
 
 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
 msgid ""
 "This may take a while, and you may not restart the Unsafe Browser until it "
 "is properly shut down."
 msgstr ""
-"暫く時間がかかる恐れがあり、適切にシャットダウンされるまで、安全でないブラウ"
-"ザを再起動できません。"
+"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:70
 msgid "Failed to restart Tor."
-msgstr "Torを再起動できませんでした。"
+msgstr "Gagal memulakan semula Tor."
 
 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:84
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
 msgid "Unsafe Browser"
-msgstr "安全でないブラウザ"
+msgstr "Pelayar Tidak Selamat"
 
 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:91
 msgid ""
 "Another Unsafe Browser is currently running, or being cleaned up. Please "
 "retry in a while."
 msgstr ""
-"別の安全でないブラウザが起動中か、クリーンアップされています。少ししてからも"
-"う一度お試しください。"
+"Pelayar Tidak Selamat yang lain masih berjalan, atau baru ditutup. Cuba lagi "
+"kemudian."
 
 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:99
 msgid "Failed to setup chroot."
-msgstr "chrootのセットアップに失敗しました。"
+msgstr "Gagal menyediakan chroot."
 
 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:104
 msgid "Failed to configure browser."
-msgstr "ブラウザーの設定に失敗しました。"
+msgstr "Gagal mengkonfigur pelayar."
 
 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:110
 msgid ""
 "No DNS server was obtained through DHCP or manually configured in "
 "NetworkManager."
 msgstr ""
-"DNSサーバーは、DHCP経由で取得されるか、またはNetworkManagerで手動で構成されま"
-"せんでした。"
+"Tiada pelayan DNS diperoleh melalui DHCP atau dikonfigur secara manual dalam "
+"Pengurus Rangkaian."
 
 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:121
 msgid "Failed to run browser."
-msgstr "ブラウザーを起動できませんでした。"
+msgstr "Gagal menjalankan pelayar."
 
 #. Translators: Don't translate {volume_label} or {volume_size},
 #. they are placeholders and will be replaced.
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
 #, 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.
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
 #, 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.
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
 #, python-brace-format
 msgid "{volume_size} Volume"
-msgstr ""
+msgstr "Volum {volume_size}"
 
 #. Translators: Don't translate {volume_name}, it's a placeholder and
 #. will be replaced.
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
 #, python-brace-format
 msgid "{volume_name} (Read-Only)"
-msgstr ""
+msgstr "{volume_name} (Baca-Sahaja)"
 
 #. Translators: Don't translate {partition_name} and {container_path}, they
 #. are placeholders and will be replaced.
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
 #, python-brace-format
 msgid "{partition_name} in {container_path}"
-msgstr ""
+msgstr "{partition_name} di dalam {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
@@ -671,14 +692,14 @@ msgstr ""
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
 #, 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.
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
 #, python-brace-format
 msgid "{partition_name} on {drive_name}"
-msgstr ""
+msgstr "{partition_name} di dalam {drive_name}"
 
 #. Translators: Don't translate {volume_name} and {drive_name},
 #. they are placeholders and will be replaced. You should only have to translate
@@ -686,15 +707,15 @@ msgstr ""
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
 #, python-brace-format
 msgid "{volume_name} – {drive_name}"
-msgstr ""
+msgstr "{volume_name} – {drive_name}"
 
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
 msgid "Wrong passphrase or parameters"
-msgstr ""
+msgstr "Frasa laluan atau parameter salah"
 
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
 msgid "Error unlocking volume"
-msgstr ""
+msgstr "Ralat membuka volum"
 
 #. Translators: Don't translate {volume_name} or {error_message},
 #. they are placeholder and will be replaced.
@@ -704,27 +725,29 @@ msgid ""
 "Couldn't unlock volume {volume_name}:\n"
 "{error_message}"
 msgstr ""
+"Tidak dapat membuka volum {volume_name}:\n"
+"{error_message}"
 
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
 msgid "No file containers added"
-msgstr ""
+msgstr "Tiada bekas fail ditambah"
 
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:98
 msgid "No VeraCrypt devices detected"
-msgstr ""
+msgstr "Tiada peranti VeraCrypt dikesan"
 
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:114
 msgid "Container already added"
-msgstr ""
+msgstr "Bekas sudah ditambah"
 
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:115
 #, python-format
 msgid "The file container %s should already be listed."
-msgstr ""
+msgstr "Bekas fail %s sepatutnya sudah disenaraikan."
 
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:131
 msgid "Container opened read-only"
-msgstr ""
+msgstr "Bekas terbuka baca-sahaja"
 
 #. Translators: Don't translate {path}, it's a placeholder  and will be replaced.
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
@@ -735,24 +758,27 @@ msgid ""
 "container.\n"
 "{error_message}"
 msgstr ""
+"Bekas fail {path}  gagal dibuka dengan capaian tulis. Ia mungkin dibuka "
+"dengan baca-sahaja. Anda tidak dapat mengubah suai kandungan bekas "
+"tersebut.\n"
+"{error_message}"
 
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
 msgid "Error opening file"
-msgstr ""
+msgstr "Ralat membuka fail"
 
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
 msgid "Not a VeraCrypt container"
-msgstr ""
+msgstr "Bukan sebuah bekas VeraCrypt"
 
 #: config/chroot_local-includes/usr/local/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 "Fail %s nampaknya bukan sebuah bekas VeraCrypt."
 
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
-#, fuzzy
 msgid "Failed to add container"
-msgstr "ブラウザーの設定に失敗しました。"
+msgstr "Gagal menambah bekas"
 
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
 #, python-format
@@ -760,136 +786,118 @@ msgid ""
 "Could not add file container %s: Timeout while waiting for loop setup.Please "
 "try using the <i>Disks</i> application instead."
 msgstr ""
+"Tidak dapat menambah bekas fail%s: Had masa tamat ketika menunggu persediaan "
+"gelung. Cuba gunakan aplikasi <i>Cakera</i> sebagai ganti."
 
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
 msgid "Choose File Container"
-msgstr ""
+msgstr "Pilih Bekas Fail"
 
 #: ../config/chroot_local-includes/etc/skel/Desktop/Report_an_error.desktop.in.h:1
 msgid "Report an error"
-msgstr "エラーを報告"
+msgstr "Laporkan ralat"
 
 #: ../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のドキュメント"
+msgstr "Dokumentasi Tails"
 
 #: ../config/chroot_local-includes/usr/share/applications/tails-documentation.desktop.in.h:2
 msgid "Learn how to use Tails"
-msgstr "Tails の使い方を知る"
+msgstr "Ketahui lebih lanjut bagaimana hendak menggunakan Tails"
 
 #: ../config/chroot_local-includes/usr/share/applications/tails-about.desktop.in.h:2
 msgid "Learn more about Tails"
-msgstr "Tails について詳しく知る"
+msgstr "Ketahui lebih lanjut berkenaan Tails"
 
 #: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:1
 msgid "Tor Browser"
-msgstr "Tor Browser"
+msgstr "Pelayar Tor"
 
 #: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:2
 msgid "Anonymous Web Browser"
-msgstr "アノニマス・ウェブ・ブラウザ"
+msgstr "Pelayar Sesawang Awanama"
 
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:2
 msgid "Browse the World Wide Web without anonymity"
-msgstr "匿名性なしでワールドワイドウェブをブラウズする"
+msgstr "Layari Internet tanpa keawanamaan"
 
 #: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:3
 msgid "Unsafe Web Browser"
-msgstr "安全でないウェブブラウザ"
+msgstr "Pelayar Sesawang Tidak Selamat"
 
 #: ../config/chroot_local-includes/usr/share/applications/unlock-veracrypt-volumes.desktop.in.h:1
 msgid "Unlock VeraCrypt Volumes"
-msgstr ""
+msgstr "Buka Volum VeraCrypt"
 
 #: ../config/chroot_local-includes/usr/share/applications/unlock-veracrypt-volumes.desktop.in.h:2
 msgid "Mount VeraCrypt encrypted file containers and devices"
-msgstr ""
+msgstr "Lekap bekas dan peranti fail tersulit VeraCrypt"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1
 msgid "Additional Software"
-msgstr ""
+msgstr "Perisian Tambahan"
 
 #: ../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 ""
+"Konfigur perisian tambahan yang dipasang melalui storan berterusan anda "
+"ketika memulakan Tails"
 
 #: ../config/chroot_local-includes/usr/share/desktop-directories/Tails.directory.in.h:2
 msgid "Tails specific tools"
-msgstr "Tails専用ツール"
+msgstr "Alatan khusus 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 "Root Terminalを開始するには認証を行ってください。"
+msgstr "Untuk memulakan Terminal Root, anda perlu disahihkan."
 
 #: ../config/chroot_local-includes/usr/share/polkit-1/actions/org.boum.tails.additional-software.policy.in.h:1
-#, fuzzy
 msgid "Remove an additional software package"
-msgstr "追加ソフトウェアのアップグレードに失敗しました。"
+msgstr "Buang satu pakej perisian tambahan"
 
 #: ../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 ""
+"Pengesahihan diperlukan untuk membuang satu pakej daripada perisian tambahan "
+"anda ($(command_line))"
 
 #: ../config/chroot_local-includes/usr/share/unlock-veracrypt-volumes/ui/main.ui.in:61
 msgid "File Containers"
-msgstr ""
+msgstr "Bekas Fail"
 
 #: ../config/chroot_local-includes/usr/share/unlock-veracrypt-volumes/ui/main.ui.in:80
 msgid "_Add"
-msgstr ""
+msgstr "_Tambah"
 
 #: ../config/chroot_local-includes/usr/share/unlock-veracrypt-volumes/ui/main.ui.in:86
 msgid "Add a file container"
-msgstr ""
+msgstr "Tambah satu bekas fail"
 
 #: ../config/chroot_local-includes/usr/share/unlock-veracrypt-volumes/ui/main.ui.in:103
 msgid "Partitions and Drives"
-msgstr ""
+msgstr "Sekatan dan Pemacu"
 
 #: ../config/chroot_local-includes/usr/share/unlock-veracrypt-volumes/ui/main.ui.in:121
 msgid ""
 "This application is not affiliated with or endorsed by the VeraCrypt project "
 "or IDRIX."
 msgstr ""
+"Aplikasi ini tidak berkaitan dengan atau disahkan oleh projek VeraCrypt atau "
+"IDRIX."
 
 #: ../config/chroot_local-includes/usr/share/unlock-veracrypt-volumes/ui/volume.ui.in:38
 msgid "Lock this volume"
-msgstr ""
+msgstr "Kunci volum ini"
 
 #: ../config/chroot_local-includes/usr/share/unlock-veracrypt-volumes/ui/volume.ui.in:61
 msgid "Detach this volume"
-msgstr ""
+msgstr "Tanggal volum ini"
 
 #: ../config/chroot_local-includes/usr/local/share/mime/packages/unlock-veracrypt-volumes.xml.in.h:1
 msgid "TrueCrypt/VeraCrypt container"
-msgstr ""
-
-#~ msgid "Your additional software are ready to use."
-#~ msgstr "追加ソフトウェアが使用できます。"
-
-#~ msgid ""
-#~ "The check for upgrades failed. This might be due to a network problem. "
-#~ "Please check your network connection, try to restart Tails, or read the "
-#~ "system log to understand better the problem."
-#~ msgstr ""
-#~ "アップグレードチェックに失敗しました。ネットワークの問題が原因である可能性"
-#~ "があります。ネットワーク接続を確認し、Tailsを再起動してください。または、"
-#~ "システムログを参照して、より問題を理解しましょう。"
-
-#~ msgid "Your additional software are up to date"
-#~ msgstr "追加ソフトウェアは最新の状態になっています。"
-
-#~ msgid "The upgrade was successful."
-#~ msgstr "アップグレードが完了しました。"
-
-#~ msgid ""
-#~ "Both the host operating system and the virtualization software are able "
-#~ "to monitor what you are doing in Tails."
-#~ msgstr ""
-#~ "ホストオペレーティングシステムと仮想化ソフトウェアのどちらも、Tailsで行っ"
-#~ "ていることを監視できます。"
+msgstr "Bekas TrueCrypt/VeraCrypt"
diff --git a/po/nb.po b/po/nb.po
index c304cf4a27113dd9567fc13ea2a69ae565fe0b2c..236cfab2ea002ebf38151a1537cffba77b119a35 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -17,7 +17,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-14 21:20+0100\n"
+"POT-Creation-Date: 2019-04-06 14:00+0200\n"
 "PO-Revision-Date: 2018-01-17 19:09+0000\n"
 "Last-Translator: Allan Nordhøy <epost@anotheragency.no>\n"
 "Language-Team: Norwegian Bokmål (http://www.transifex.com/otf/torproject/"
@@ -81,15 +81,15 @@ msgid ""
 "storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:173
 msgid ""
 "To add more, install some software using <a href=\"synaptic.desktop"
 "\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop"
 "\">APT on the command line</a>."
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:151
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
 msgid "_Create persistent storage"
 msgstr ""
 
@@ -147,14 +147,18 @@ msgid "su is disabled. Please use sudo instead."
 msgstr ""
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
-msgid "Restart"
-msgstr "Start på nytt"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:78
 msgid "Lock screen"
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:81
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79
+msgid "Suspend"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83
+msgid "Restart"
+msgstr "Start på nytt"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87
 msgid "Power Off"
 msgstr "Slå av"
 
@@ -187,7 +191,7 @@ 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:147
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
 #, fuzzy, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -197,81 +201,81 @@ msgstr ""
 "nettverksforbindelsen din, prøv å starte Tails på nytt, eller les "
 "systemloggen for å forstå problemet bedre. "
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
 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:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 msgid "Show Log"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 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:222
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
 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:289
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
 #, fuzzy, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "Din tilleggsprogramvare"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
 msgid "Install Every Time"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:297
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 msgid "Install Only Once"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 msgid "The configuration of your additional software failed."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
 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:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:335
 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:341
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
 msgid ""
 "To do so, you need to run Tails from a USB stick installed using <i>Tails "
 "Installer</i>."
@@ -279,51 +283,52 @@ msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:359
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
 #, fuzzy, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "Din tilleggsprogramvare"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:363
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:365
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:368
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:156
 msgid "Remove"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:369
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #: config/chroot_local-includes/usr/local/bin/tor-browser:46
 msgid "Cancel"
 msgstr "Avbryt"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:547
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:546
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:549
 msgid "This can take several minutes."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:559
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:562
 #, fuzzy
 msgid "The installation of your additional software failed"
 msgstr "Din tilleggsprogramvare"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:574
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:577
 msgid "Additional software installed successfully"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:594
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:597
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:596
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:599
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:607
 #, fuzzy
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
@@ -333,12 +338,12 @@ msgstr ""
 "nettverksforbindelsen din, prøv å starte Tails på nytt, eller les "
 "systemloggen for å forstå problemet bedre. "
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:606
 #, fuzzy
 msgid "The upgrade of your additional software failed"
 msgstr "Din tilleggsprogramvare"
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:39
 #, fuzzy
 msgid "Documentation"
 msgstr "Tails dokumentasjon"
@@ -368,34 +373,34 @@ msgstr "Din tilleggsprogramvare"
 msgid "Stop installing {package} automatically"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
 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:188
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:189
 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:198
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:199
 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:206
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:207
 msgid ""
 "To do so, install Tails on a USB stick using <a href=\"tails-installer."
 "desktop\">Tails Installer</a> and create a persistent storage."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:254
 #, fuzzy
 msgid "[package not available]"
 msgstr "Ikke tilgjengelig"
diff --git a/po/nn.po b/po/nn.po
index 5177ef61a272207ad4ae5c681a5aa21de0a2e886..56924892028bfda5f59bc8dae5b47e339b6ab05a 100644
--- a/po/nn.po
+++ b/po/nn.po
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-14 21:20+0100\n"
+"POT-Creation-Date: 2019-04-06 14:00+0200\n"
 "PO-Revision-Date: 2017-10-23 15:36+0000\n"
 "Last-Translator: Bjørn I. <bjorn.svindseth@online.no>\n"
 "Language-Team: Norwegian Nynorsk (http://www.transifex.com/otf/torproject/"
@@ -71,15 +71,15 @@ msgid ""
 "storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:173
 msgid ""
 "To add more, install some software using <a href=\"synaptic.desktop"
 "\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop"
 "\">APT on the command line</a>."
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:151
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
 msgid "_Create persistent storage"
 msgstr ""
 
@@ -137,14 +137,18 @@ msgid "su is disabled. Please use sudo instead."
 msgstr ""
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
-msgid "Restart"
-msgstr "Umstart"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:78
 msgid "Lock screen"
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:81
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79
+msgid "Suspend"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83
+msgid "Restart"
+msgstr "Umstart"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87
 msgid "Power Off"
 msgstr "Slå av"
 
@@ -177,7 +181,7 @@ 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:147
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
 #, fuzzy, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -187,81 +191,81 @@ msgstr ""
 "nettverksproblem. Ver venleg og kontroller nettverkssambandet ditt, freist å "
 "starta um Halar, eller les systemloggen for å skjøna problemet betre."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
 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:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 msgid "Show Log"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 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:222
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
 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:289
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
 #, fuzzy, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "Tilleggsprogramvara di"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
 msgid "Install Every Time"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:297
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 msgid "Install Only Once"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 msgid "The configuration of your additional software failed."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
 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:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:335
 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:341
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
 msgid ""
 "To do so, you need to run Tails from a USB stick installed using <i>Tails "
 "Installer</i>."
@@ -269,51 +273,52 @@ msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:359
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
 #, fuzzy, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "Tilleggsprogramvara di"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:363
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:365
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:368
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:156
 msgid "Remove"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:369
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #: config/chroot_local-includes/usr/local/bin/tor-browser:46
 msgid "Cancel"
 msgstr "Avbrjot"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:547
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:546
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:549
 msgid "This can take several minutes."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:559
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:562
 #, fuzzy
 msgid "The installation of your additional software failed"
 msgstr "Tilleggsprogramvara di"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:574
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:577
 msgid "Additional software installed successfully"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:594
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:597
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:596
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:599
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:607
 #, fuzzy
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
@@ -323,12 +328,12 @@ msgstr ""
 "nettverksproblem. Ver venleg og kontroller nettverkssambandet ditt, freist å "
 "starta um Halar, eller les systemloggen for å skjøna problemet betre."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:606
 #, fuzzy
 msgid "The upgrade of your additional software failed"
 msgstr "Tilleggsprogramvara di"
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:39
 #, fuzzy
 msgid "Documentation"
 msgstr "Halar-skriv"
@@ -358,34 +363,34 @@ msgstr "Tilleggsprogramvara di"
 msgid "Stop installing {package} automatically"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
 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:188
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:189
 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:198
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:199
 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:206
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:207
 msgid ""
 "To do so, install Tails on a USB stick using <a href=\"tails-installer."
 "desktop\">Tails Installer</a> and create a persistent storage."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:254
 #, fuzzy
 msgid "[package not available]"
 msgstr "ikkje tilgjengeleg"
diff --git a/po/pl.po b/po/pl.po
index 4c783803db32bf4854ad1402de1933f4b6fb7d9c..7a5f75313245e3aedac3f40607cbe8121e2287c7 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -18,13 +18,14 @@
 # phla47 <phla47@gmail.com>, 2013
 # sebx, 2013-2015
 # sebx, 2015
+# Waldemar Stoczkowski, 2019
 msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-14 21:20+0100\n"
-"PO-Revision-Date: 2019-01-28 20:29+0000\n"
-"Last-Translator: Dawid Job <hoek@tuta.io>\n"
+"POT-Creation-Date: 2019-04-06 14:00+0200\n"
+"PO-Revision-Date: 2019-04-16 18:39+0000\n"
+"Last-Translator: Waldemar Stoczkowski\n"
 "Language-Team: Polish (http://www.transifex.com/otf/torproject/language/"
 "pl/)\n"
 "Language: pl\n"
@@ -94,8 +95,8 @@ msgstr ""
 "Poniższe oprogramowanie jest instalowane automatycznie z twojej pamięci "
 "stałej przy starcie Tails."
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:173
 msgid ""
 "To add more, install some software using <a href=\"synaptic.desktop"
 "\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop"
@@ -105,7 +106,7 @@ msgstr ""
 "desktop\">Menedżera Paczek Synaptic</a> lub <a href=\"org.gnome.Terminal."
 "desktop\">APT w wierszu poleceń</a>."
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:151
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
 msgid "_Create persistent storage"
 msgstr "_Stwórz pamięć trwałą"
 
@@ -171,14 +172,18 @@ msgid "su is disabled. Please use sudo instead."
 msgstr "su jest wyłączony. Zamiast tego użyj sudo."
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
-msgid "Restart"
-msgstr "Restart"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:78
 msgid "Lock screen"
 msgstr "Ekran Blokady"
 
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:81
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79
+msgid "Suspend"
+msgstr "Wstrzymaj"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83
+msgid "Restart"
+msgstr "Restart"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87
 msgid "Power Off"
 msgstr "Wyłącz"
 
@@ -211,7 +216,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:147
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -220,7 +225,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:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
@@ -228,56 +233,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:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 msgid "Show Log"
 msgstr "Pokaż log"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 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:222
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} i {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
 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:289
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
 #, 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:291
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
 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:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
 msgid "Install Every Time"
 msgstr "Instaluj za każdym razem"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:297
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 msgid "Install Only Once"
 msgstr "Zainstaluj tylko raz"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 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:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -285,22 +290,22 @@ 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:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
 msgid "Create Persistent Storage"
 msgstr "Utwórz pamięć trwałą"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:335
 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:341
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
 #, 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:344
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
 msgid ""
 "To do so, you need to run Tails from a USB stick installed using <i>Tails "
 "Installer</i>."
@@ -310,51 +315,52 @@ msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:359
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "Usunąć {packages} z twojego 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:363
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
 #, 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:365
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:368
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:156
 msgid "Remove"
 msgstr "Usuń"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:369
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #: config/chroot_local-includes/usr/local/bin/tor-browser:46
 msgid "Cancel"
 msgstr "Anuluj"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:547
 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:546
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:549
 msgid "This can take several minutes."
 msgstr "Może to zająć kilka minut."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:559
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:562
 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:574
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:577
 msgid "Additional software installed successfully"
 msgstr "Oprogramowanie dodatkowe zainstalowano z powodzeniem"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:594
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:597
 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:596
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:599
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:607
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -362,11 +368,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:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:606
 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:39
 msgid "Documentation"
 msgstr "Dokumentacja"
 
@@ -396,7 +402,7 @@ msgstr "Nie udało się odczytać dodatkowej konfiguracji oprogramowania"
 msgid "Stop installing {package} automatically"
 msgstr "Przestań instalować {package} automatycznie"
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
 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 "
@@ -406,7 +412,7 @@ msgstr ""
 "\">Menedżera Paczek Synaptic</a> lub <a href=\"org.gnome.Terminal.desktop"
 "\">APT w wierszu poleceń</a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:189
 msgid ""
 "To do so, unlock your persistent storage when starting Tails and install "
 "some software using <a href=\"synaptic.desktop\">Synaptic Package Manager</"
@@ -417,7 +423,7 @@ msgstr ""
 "Paczek Synaptic</a> lub <a href=\"org.gnome.Terminal.desktop\">APT w wierszu "
 "poleceń</a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:199
 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."
@@ -427,7 +433,7 @@ msgstr ""
 "<a href=\"synaptic.desktop\">Menedżera Paczek Synaptic</a> lub <a href=\"org."
 "gnome.Terminal.desktop\">APT w wierszu poleceń</a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:207
 msgid ""
 "To do so, install Tails on a USB stick using <a href=\"tails-installer."
 "desktop\">Tails Installer</a> and create a persistent storage."
@@ -435,7 +441,7 @@ msgstr ""
 "Aby to zrobić, zainstaluj Tails na pamięci USB używając <a href=\"tails-"
 "installer.desktop\">Instaler Tails</a> oraz utwórz pamięć trwałą."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:254
 msgid "[package not available]"
 msgstr "[paczka niedostępna]"
 
diff --git a/po/pt.po b/po/pt.po
index 734e2924de9b7d806028242d602bfefd2e52c7e2..eb2afdb2dcd007c978bb8123533ec9a11a06ca2a 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -23,7 +23,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-14 21:20+0100\n"
+"POT-Creation-Date: 2019-04-06 14:00+0200\n"
 "PO-Revision-Date: 2018-01-18 15:59+0000\n"
 "Last-Translator: Manuela Silva <manuela.silva@sky.com>\n"
 "Language-Team: Portuguese (http://www.transifex.com/otf/torproject/language/"
@@ -86,15 +86,15 @@ msgid ""
 "storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:173
 msgid ""
 "To add more, install some software using <a href=\"synaptic.desktop"
 "\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop"
 "\">APT on the command line</a>."
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:151
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
 msgid "_Create persistent storage"
 msgstr ""
 
@@ -152,14 +152,18 @@ msgid "su is disabled. Please use sudo instead."
 msgstr ""
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
-msgid "Restart"
-msgstr "Reiniciar"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:78
 msgid "Lock screen"
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:81
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79
+msgid "Suspend"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83
+msgid "Restart"
+msgstr "Reiniciar"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87
 msgid "Power Off"
 msgstr "Encerrar"
 
@@ -192,7 +196,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:147
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
 #, fuzzy, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -202,81 +206,81 @@ msgstr ""
 "ligação à rede, tente reiniciar o Tails, ou leia o registo do sistema para "
 "uma melhor compreensão do problema."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
 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:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 msgid "Show Log"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 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:222
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
 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:289
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
 #, fuzzy, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "O seu software adicional"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
 msgid "Install Every Time"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:297
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 msgid "Install Only Once"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 msgid "The configuration of your additional software failed."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
 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:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:335
 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:341
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
 msgid ""
 "To do so, you need to run Tails from a USB stick installed using <i>Tails "
 "Installer</i>."
@@ -284,51 +288,52 @@ msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:359
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
 #, fuzzy, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "O 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:363
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:365
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:368
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:156
 msgid "Remove"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:369
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #: config/chroot_local-includes/usr/local/bin/tor-browser:46
 msgid "Cancel"
 msgstr "Cancelar"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:547
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:546
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:549
 msgid "This can take several minutes."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:559
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:562
 #, fuzzy
 msgid "The installation of your additional software failed"
 msgstr "O seu software adicional"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:574
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:577
 msgid "Additional software installed successfully"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:594
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:597
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:596
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:599
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:607
 #, fuzzy
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
@@ -338,12 +343,12 @@ msgstr ""
 "ligação à rede, tente reiniciar o Tails, ou leia o registo do sistema para "
 "uma melhor compreensão do problema."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:606
 #, fuzzy
 msgid "The upgrade of your additional software failed"
 msgstr "O 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:39
 #, fuzzy
 msgid "Documentation"
 msgstr "Documentação Tails"
@@ -373,34 +378,34 @@ msgstr "O seu software adicional"
 msgid "Stop installing {package} automatically"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
 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:188
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:189
 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:198
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:199
 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:206
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:207
 msgid ""
 "To do so, install Tails on a USB stick using <a href=\"tails-installer."
 "desktop\">Tails Installer</a> and create a persistent storage."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:254
 #, fuzzy
 msgid "[package not available]"
 msgstr "não disponível"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 3f498420b78d23579473c641ce91c646d0e9207d..0b322b89ee5e09ed86299d0bb9e65240e12e0173 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -8,7 +8,7 @@
 # carlo giusepe tadei valente sasaki <carlo.gt.valente@gmail.com>, 2014
 # Chacal Exodius, 2019
 # Danton Medrado, 2015
-# Eduardo Addad de Oliveira <eduardoaddad@hotmail.com>, 2018
+# Eduardo Addad de Oliveira <eduardoaddad@hotmail.com>, 2018-2019
 # Eduardo Bonsi, 2013-2014
 # Eduardo Luis Voltolini Tafner, 2013
 # Emma Peel, 2018
@@ -29,9 +29,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-14 21:20+0100\n"
-"PO-Revision-Date: 2019-01-23 02:25+0000\n"
-"Last-Translator: Chacal Exodius\n"
+"POT-Creation-Date: 2019-04-06 14:00+0200\n"
+"PO-Revision-Date: 2019-04-07 18:59+0000\n"
+"Last-Translator: Eduardo Addad de Oliveira <eduardoaddad@hotmail.com>\n"
 "Language-Team: Portuguese (Brazil) (http://www.transifex.com/otf/torproject/"
 "language/pt_BR/)\n"
 "Language: pt_BR\n"
@@ -94,8 +94,8 @@ msgstr ""
 "O seguinte programa é instalado automaticamente do seu armazenamento "
 "permanente quando o Tails está iniciando."
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:173
 msgid ""
 "To add more, install some software using <a href=\"synaptic.desktop"
 "\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop"
@@ -105,7 +105,7 @@ msgstr ""
 "\">Gerenciador de Pacotes Synaptic</a> ou o <a href=\"org.gnome.Terminal."
 "desktop\">APT na linha de comandos</a>."
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:151
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
 msgid "_Create persistent storage"
 msgstr "_Crie armazenamento persistente"
 
@@ -171,14 +171,18 @@ msgid "su is disabled. Please use sudo instead."
 msgstr "su está desativado. Por favor use sudo em vez disso."
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
-msgid "Restart"
-msgstr "Reiniciar"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:78
 msgid "Lock screen"
 msgstr "Bloquear a tela"
 
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:81
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79
+msgid "Suspend"
+msgstr "Suspender"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83
+msgid "Restart"
+msgstr "Reiniciar"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87
 msgid "Power Off"
 msgstr "Desligar"
 
@@ -211,7 +215,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:147
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -220,7 +224,7 @@ msgstr ""
 "{details} Por favor verifique sua lista de programas adicionais ou leia o "
 "registro do sistema para entender o problema."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
@@ -228,56 +232,56 @@ msgstr ""
 "Por favor verifique sua lista de programas adicionais ou leia o registro do "
 "sistema para entender o problema."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 msgid "Show Log"
 msgstr "Exibir registro"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 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:222
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} e {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
 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:289
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "Adcionar {packages} ao seus softwares adicionais?"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 "Para instalá-lo automaticamente a partir de seu armazenamento persistente ao "
 "iniciar o Tails."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
 msgid "Install Every Time"
 msgstr "Instalar todas as vezes"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:297
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 msgid "Install Only Once"
 msgstr "Instale Somente Uma Vez"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 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:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -285,22 +289,22 @@ msgstr ""
 "Para instalá-lo automaticamente ao iniciar o Tails, você pode criar um "
 "armazenamento persistente e ativar o recurso <b>Software Adicional</b>."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
 msgid "Create Persistent Storage"
 msgstr "Crie armazenamento persistente"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:335
 msgid "Creating your persistent storage failed."
 msgstr "Criando 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:341
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
 #, 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:344
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
 msgid ""
 "To do so, you need to run Tails from a USB stick installed using <i>Tails "
 "Installer</i>."
@@ -310,51 +314,52 @@ msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:359
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "Remover {packages} de seus softwares adicionais?"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:363
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
 #, 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:365
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:368
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:156
 msgid "Remove"
 msgstr "Remover"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:369
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #: config/chroot_local-includes/usr/local/bin/tor-browser:46
 msgid "Cancel"
 msgstr "Cancelar"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:547
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 "Instalando seu software adicional a partir do armazenamento persistente..."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:546
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:549
 msgid "This can take several minutes."
 msgstr "Isto pode levar vários minutos"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:559
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:562
 msgid "The installation of your additional software failed"
 msgstr "A instalação do seu software adicional falhou"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:574
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:577
 msgid "Additional software installed successfully"
 msgstr "Software adicional instalado com sucesso"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:594
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:597
 msgid "The check for upgrades of your additional software failed"
 msgstr "A verificação de atualizações do seu software adicional falhou"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:596
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:599
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:607
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -362,11 +367,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:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:606
 msgid "The upgrade of your additional software failed"
 msgstr "Falha no upgrade de 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:39
 msgid "Documentation"
 msgstr "Documentação"
 
@@ -396,7 +401,7 @@ msgstr "Falha na leitura da configuração do software adicional."
 msgid "Stop installing {package} automatically"
 msgstr "Pare de instalar {package} automaticamente"
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
 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 "
@@ -406,7 +411,7 @@ msgstr ""
 "\">Gerenciador de Pacotes Synaptic</a> ou o <a href=\"org.gnome.Terminal."
 "desktop\">APT na linha de comandos</a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:189
 msgid ""
 "To do so, unlock your persistent storage when starting Tails and install "
 "some software using <a href=\"synaptic.desktop\">Synaptic Package Manager</"
@@ -417,7 +422,7 @@ msgstr ""
 "Pacotes Synaptic</a> ou o <a href=\"org.gnome.Terminal.desktop\">APT na "
 "linha de comandos</a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:199
 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."
@@ -427,7 +432,7 @@ msgstr ""
 "<a href=\"synaptic.desktop\">Gerenciador de Pacotes Synaptic</a> ou o <a "
 "href=\"org.gnome.Terminal.desktop\">APT na linha de comandos</a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:207
 msgid ""
 "To do so, install Tails on a USB stick using <a href=\"tails-installer."
 "desktop\">Tails Installer</a> and create a persistent storage."
@@ -436,7 +441,7 @@ msgstr ""
 "installer.desktop\">Instalador do Tails</a> e crie um armazenamento "
 "persistente."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:254
 msgid "[package not available]"
 msgstr "[pacote não disponível]"
 
diff --git a/po/pt_PT.po b/po/pt_PT.po
index 048b1b271c6e9437d6a673876065f2eb4d6ae74f..2d378ae2f6832aa7b52b57acc89ff83939b4a455 100644
--- a/po/pt_PT.po
+++ b/po/pt_PT.po
@@ -3,15 +3,16 @@
 # This file is distributed under the same license as the PACKAGE package.
 #
 # Translators:
+# Hugo9191 <hugoncosta@gmail.com>, 2019
 # MS <manuelarodsilva@gmail.com>, 2018
 # Rui <xymarior@yandex.com>, 2019
 msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-14 21:20+0100\n"
-"PO-Revision-Date: 2019-01-17 11:15+0000\n"
-"Last-Translator: Rui <xymarior@yandex.com>\n"
+"POT-Creation-Date: 2019-04-06 14:00+0200\n"
+"PO-Revision-Date: 2019-04-07 11:05+0000\n"
+"Last-Translator: Hugo9191 <hugoncosta@gmail.com>\n"
 "Language-Team: Portuguese (Portugal) (http://www.transifex.com/otf/"
 "torproject/language/pt_PT/)\n"
 "Language: pt_PT\n"
@@ -76,8 +77,8 @@ msgstr ""
 "O seguinte programa é instalado automaticamente do seu armazenamento "
 "permanente quando o Tails é iniciado."
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:173
 msgid ""
 "To add more, install some software using <a href=\"synaptic.desktop"
 "\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop"
@@ -87,7 +88,7 @@ msgstr ""
 "desktop\">Gestor de Pacotes Synaptic</a> ou o <a href=\"org.gnome.Terminal."
 "desktop\">APT na linha de comandos</a>."
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:151
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
 msgid "_Create persistent storage"
 msgstr "_Criar armazenamento permanente"
 
@@ -154,14 +155,18 @@ msgid "su is disabled. Please use sudo instead."
 msgstr "O su está desativado. Em vez disso utilize o sudo."
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
-msgid "Restart"
-msgstr "Reiniciar"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:78
 msgid "Lock screen"
 msgstr "Ecrã de bloqueio"
 
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:81
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79
+msgid "Suspend"
+msgstr "Suspender"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83
+msgid "Restart"
+msgstr "Reiniciar"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87
 msgid "Power Off"
 msgstr "Desligar"
 
@@ -194,7 +199,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:147
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -203,7 +208,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:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
@@ -211,56 +216,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:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 msgid "Show Log"
 msgstr "Mostrar Registo"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 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:222
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} e {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
 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:289
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
 #, 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:291
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
 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:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
 msgid "Install Every Time"
 msgstr "Instalar Sempre"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:297
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 msgid "Install Only Once"
 msgstr "Instalar Uma Vez"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 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:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -268,22 +273,22 @@ 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:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
 msgid "Create Persistent Storage"
 msgstr "Criar armazenamento permanente"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:335
 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:341
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
 #, 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:344
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
 msgid ""
 "To do so, you need to run Tails from a USB stick installed using <i>Tails "
 "Installer</i>."
@@ -293,51 +298,52 @@ msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:359
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
 #, 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:363
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
 #, 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:365
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:368
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:156
 msgid "Remove"
 msgstr "Remover"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:369
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #: config/chroot_local-includes/usr/local/bin/tor-browser:46
 msgid "Cancel"
 msgstr "Cancelar"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:547
 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:546
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:549
 msgid "This can take several minutes."
 msgstr "Isto pode demorar vários minutos."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:559
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:562
 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:574
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:577
 msgid "Additional software installed successfully"
 msgstr "Programa adicional instalado com sucesso"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:594
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:597
 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:596
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:599
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:607
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -345,11 +351,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:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:606
 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:39
 msgid "Documentation"
 msgstr "Documentação"
 
@@ -379,7 +385,7 @@ msgstr "Falha na leitura da configuração do programa adicional."
 msgid "Stop installing {package} automatically"
 msgstr "Parar de instalar {package} automaticamente"
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
 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 "
@@ -389,7 +395,7 @@ msgstr ""
 "\">Gestor de Pacotes Synaptic</a> ou o <a href=\"org.gnome.Terminal.desktop"
 "\">APT na linha de comandos</a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:189
 msgid ""
 "To do so, unlock your persistent storage when starting Tails and install "
 "some software using <a href=\"synaptic.desktop\">Synaptic Package Manager</"
@@ -400,7 +406,7 @@ msgstr ""
 "Pacotes Synaptic</a> ou o <a href=\"org.gnome.Terminal.desktop\">APT na "
 "linha de comandos</a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:199
 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."
@@ -410,7 +416,7 @@ msgstr ""
 "utilizando o <a href=\"synaptic.desktop\">Gestor de Pacotes Synaptic</a> ou "
 "o <a href=\"org.gnome.Terminal.desktop\">APT na linha de comandos</a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:207
 msgid ""
 "To do so, install Tails on a USB stick using <a href=\"tails-installer."
 "desktop\">Tails Installer</a> and create a persistent storage."
@@ -419,7 +425,7 @@ msgstr ""
 "installer.desktop\">Instalador do Tails</a> e crie um armazenamento "
 "permanente."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:254
 msgid "[package not available]"
 msgstr "[pacote não disponível]"
 
diff --git a/po/ro.po b/po/ro.po
index de73f2fb28abb2ebedd399bdafbff13b763709cd..46841f000624c2b36f33598f6ed20339fe3ac5fd 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -25,8 +25,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-14 21:20+0100\n"
-"PO-Revision-Date: 2019-02-11 14:04+0000\n"
+"POT-Creation-Date: 2019-04-06 14:00+0200\n"
+"PO-Revision-Date: 2019-04-30 17:28+0000\n"
 "Last-Translator: eduard pintilie <eduard.pintilie@gmail.com>\n"
 "Language-Team: Romanian (http://www.transifex.com/otf/torproject/language/"
 "ro/)\n"
@@ -102,8 +102,8 @@ msgstr ""
 "Următoarele aplicații adiționale vor fi instalate automat din stocarea "
 "persistentă la pornirea sistemului Tails."
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:173
 msgid ""
 "To add more, install some software using <a href=\"synaptic.desktop"
 "\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop"
@@ -113,7 +113,7 @@ msgstr ""
 "desktop\">Synaptic Package Manager</a> sau <a href=\"org.gnome.Terminal."
 "desktop\">APT în linia de comandă</a>."
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:151
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
 msgid "_Create persistent storage"
 msgstr "_Creaţi stocare persistentă"
 
@@ -179,14 +179,18 @@ msgid "su is disabled. Please use sudo instead."
 msgstr "su este dezactivat. Vă rugăm ca în locul su să folosiți sudo."
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
-msgid "Restart"
-msgstr "Repornire"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:78
 msgid "Lock screen"
 msgstr "Ecran de blocare"
 
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:81
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79
+msgid "Suspend"
+msgstr "Suspendă"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83
+msgid "Restart"
+msgstr "Repornire"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87
 msgid "Power Off"
 msgstr "Oprire"
 
@@ -219,7 +223,7 @@ msgstr "indisponibil"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:147
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -228,7 +232,7 @@ msgstr ""
 "{details} Vă rugăm verificați lista de aplicații adiționale sau citiți "
 "jurnalul sistemului pentru a întelege problema."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
@@ -236,54 +240,54 @@ msgstr ""
 "Vă rugăm verificați lista de aplicații adiționale sau citiți jurnalul "
 "sistemului pentru a întelege problema."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 msgid "Show Log"
 msgstr "Arată jurnalul"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 msgid "Configure"
 msgstr "Configurare"
 
 #. Translators: Don't translate {beginning} or {last}, they are
 #. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:222
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} și {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
 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:289
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "Adăugați {packages} la aplicațiile dumneavoastră adiționale?"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr "Pentru instalarea automată din stocarea permanentă la pornirea Tails."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
 msgid "Install Every Time"
 msgstr "Instalează de fiecare dată"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:297
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 msgid "Install Only Once"
 msgstr "Instalează doar o dată"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 msgid "The configuration of your additional software failed."
 msgstr "Configurarea aplicațiilor dumneavoastră adiționale a eșuat."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -291,22 +295,22 @@ msgstr ""
 "Pentru instalare in mod automat la pornirea Tails, puteți să creați niște "
 "stocare persistentă și să activați opțiunea <b>Aplicații Adiționale</b>."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
 msgid "Create Persistent Storage"
 msgstr "Creaţi Stocare Persistentă"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:335
 msgid "Creating your persistent storage failed."
 msgstr "Crearea stocării persistente a eșuat."
 
 #. Translators: Don't translate {packages}, it's a placeholder and
 #. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:341
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr "Puteți instala {packages} automat la pornirea Tails"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
 msgid ""
 "To do so, you need to run Tails from a USB stick installed using <i>Tails "
 "Installer</i>."
@@ -316,54 +320,55 @@ msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:359
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "Ștergeți {packages} din aplicațiile dumneavoastră adiționale?"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:363
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr "Acest lucru va opri instalarea {packages} în mod automat."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:365
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:368
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:156
 msgid "Remove"
 msgstr "Eliminare"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:369
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #: config/chroot_local-includes/usr/local/bin/tor-browser:46
 msgid "Cancel"
 msgstr "Anulare"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:547
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 "Se instalează aplicațiile dumneavoastră adiționale din stocarea "
 "persistentă..."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:546
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:549
 msgid "This can take several minutes."
 msgstr "Acest lucru ar putea dura câteva minute."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:559
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:562
 msgid "The installation of your additional software failed"
 msgstr "Instalarea aplicațiilor dumneavoastră adiționale a eșuat"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:574
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:577
 msgid "Additional software installed successfully"
 msgstr "Aplicațiile adiționale au fost instalate cu succes"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:594
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:597
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 "Verificarea pentru actualizări a aplicațiilor dumneavoastră adiționale a "
 "eșuat"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:596
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:599
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:607
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -371,11 +376,11 @@ msgstr ""
 "Vă rugăm verificați conexiunea la rețea, reporniți Tails sau citiți jurnalul "
 "sistemului pentru a întelege problema."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:606
 msgid "The upgrade of your additional software failed"
 msgstr "Actualizarea aplicațiilor dumneavoastră adiționale a eșuat"
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:39
 msgid "Documentation"
 msgstr "Documentație"
 
@@ -405,7 +410,7 @@ msgstr "Nu s-a putut citi configurația aplicațiilor adiționale"
 msgid "Stop installing {package} automatically"
 msgstr "Oprește instalarea automată a {package}"
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
 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 "
@@ -415,7 +420,7 @@ msgstr ""
 "\"synaptic.desktop\">Synaptic Package Manager</a> sau <a href=\"org.gnome."
 "Terminal.desktop\">APT în linia de comandă</a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:189
 msgid ""
 "To do so, unlock your persistent storage when starting Tails and install "
 "some software using <a href=\"synaptic.desktop\">Synaptic Package Manager</"
@@ -426,7 +431,7 @@ msgstr ""
 "desktop\">Synaptic Package Manager</a> sau <a href=\"org.gnome.Terminal."
 "desktop\">APT în linia de comandă</a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:199
 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."
@@ -437,7 +442,7 @@ msgstr ""
 "Manager</a> sau <a href=\"org.gnome.Terminal.desktop\">APT în linia de "
 "comandă</a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:207
 msgid ""
 "To do so, install Tails on a USB stick using <a href=\"tails-installer."
 "desktop\">Tails Installer</a> and create a persistent storage."
@@ -446,7 +451,7 @@ msgstr ""
 "\"tails-installer.desktop\">Programul de Instalare Tails</a> si creați niște "
 "stocare persistentă."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:254
 msgid "[package not available]"
 msgstr "[pachet indisponibil]"
 
diff --git a/po/ru.po b/po/ru.po
index e9416fdd0ace96327595e547ecf3078afc3367b1..c9cf33dfb310723263b24e68dbb64b5d48c13afc 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -29,13 +29,14 @@
 # Uho Lot <yavinav@gmail.com>, 2016
 # Виктор Ерухин <folkraft@rambler.ru>, 2018
 # Руслан <nasretdinov.r.r@ya.ru>, 2014
+# Тимур Нагорских <timnagorskikh2k18@gmail.com>, 2019
 msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-14 21:20+0100\n"
-"PO-Revision-Date: 2019-01-24 16:33+0000\n"
-"Last-Translator: Andrey\n"
+"POT-Creation-Date: 2019-04-06 14:00+0200\n"
+"PO-Revision-Date: 2019-04-09 23:51+0000\n"
+"Last-Translator: Тимур Нагорских <timnagorskikh2k18@gmail.com>\n"
 "Language-Team: Russian (http://www.transifex.com/otf/torproject/language/"
 "ru/)\n"
 "Language: ru\n"
@@ -104,8 +105,8 @@ msgstr ""
 "Следующее программное обеспечение автоматически устанавливается из вашего "
 "постоянного хранилища при запуске Tails."
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:173
 msgid ""
 "To add more, install some software using <a href=\"synaptic.desktop"
 "\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop"
@@ -115,7 +116,7 @@ msgstr ""
 "\"synaptic.desktop\">диспетчера пакетов Synaptic</a> или <a href=\"org.gnome."
 "Terminal.desktop\">APT в командной строке</a>."
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:151
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
 msgid "_Create persistent storage"
 msgstr "Создать постоянное хранилище"
 
@@ -181,14 +182,18 @@ msgid "su is disabled. Please use sudo instead."
 msgstr "Использование su отключено. Используйте sudo."
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
-msgid "Restart"
-msgstr "Перезапуск"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:78
 msgid "Lock screen"
 msgstr "Блокировка экрана"
 
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:81
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79
+msgid "Suspend"
+msgstr "Приостановить"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83
+msgid "Restart"
+msgstr "Перезапуск"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87
 msgid "Power Off"
 msgstr "Выключение"
 
@@ -221,7 +226,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:147
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -230,7 +235,7 @@ msgstr ""
 "{details} Пожалуйста, просмотрите список дополнительных программ или "
 "прочитайте системный журнал, чтобы понять проблему."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
@@ -238,58 +243,58 @@ msgstr ""
 "Пожалуйста, просмотрите список дополнительных программ или прочитайте "
 "системный журнал, чтобы понять проблему."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 msgid "Show Log"
 msgstr "Показать журнал"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 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:222
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} и {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
 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:289
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "Добавить {packages} в ваше дополнительное программное обеспечение?"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 "Чтобы автоматически установить его из постоянного хранилища при запуске "
 "Tails."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
 msgid "Install Every Time"
 msgstr "установить Every Time"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:297
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 msgid "Install Only Once"
 msgstr "установить Only Once"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 msgid "The configuration of your additional software failed."
 msgstr ""
 "Не удалось выполнить конфигурацию вашего дополнительного программного "
 "обеспечения."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -298,22 +303,22 @@ msgstr ""
 "постоянное хранилище и активировать <b>функцию дополнительного программного "
 "обеспечения</b>."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
 msgid "Create Persistent Storage"
 msgstr "Создание постоянного хранилища"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:335
 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:341
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
 #, 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:344
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
 msgid ""
 "To do so, you need to run Tails from a USB stick installed using <i>Tails "
 "Installer</i>."
@@ -323,53 +328,54 @@ msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:359
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
 #, 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:363
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr "Это автоматически прекратит установку {packages}."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:365
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:368
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:156
 msgid "Remove"
 msgstr "Убрать"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:369
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #: config/chroot_local-includes/usr/local/bin/tor-browser:46
 msgid "Cancel"
 msgstr "Отмена"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:547
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 "Установка дополнительного программного обеспечения из постоянного "
 "хранилища ..."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:546
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:549
 msgid "This can take several minutes."
 msgstr "Это может занять несколько минут."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:559
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:562
 msgid "The installation of your additional software failed"
 msgstr "Не удалось установить дополнительное программное обеспечение"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:574
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:577
 msgid "Additional software installed successfully"
 msgstr "Дополнительное программное обеспечение установлено успешно"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:594
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:597
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 "Ошибка проверки обновлений вашего дополнительного программного обеспечения"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:596
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:599
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:607
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -377,11 +383,11 @@ msgstr ""
 "Пожалуйста, проверьте сетевое подключение, перезапустите Tails или "
 "прочитайте системный журнал, чтобы понять проблему."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:606
 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:39
 msgid "Documentation"
 msgstr "Документация"
 
@@ -412,7 +418,7 @@ msgstr ""
 msgid "Stop installing {package} automatically"
 msgstr "Прекратить установку {package} автоматически"
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
 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 "
@@ -422,7 +428,7 @@ msgstr ""
 "desktop\">Synaptic Package Manager</a> или <a href=\"org.gnome.Terminal."
 "desktop\">APT в командной строке</a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:189
 msgid ""
 "To do so, unlock your persistent storage when starting Tails and install "
 "some software using <a href=\"synaptic.desktop\">Synaptic Package Manager</"
@@ -433,7 +439,7 @@ msgstr ""
 "\">Synaptic Package Manager</a> или <a href=\"org.gnome.Terminal.desktop"
 "\">APT в командной строке</a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:199
 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."
@@ -443,7 +449,7 @@ msgstr ""
 "программное обеспечение при помощи Synaptic Package Manager или APT в "
 "командной строке."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:207
 msgid ""
 "To do so, install Tails on a USB stick using <a href=\"tails-installer."
 "desktop\">Tails Installer</a> and create a persistent storage."
@@ -451,7 +457,7 @@ msgstr ""
 "Для этого установите Tails на USB-диск при помощи <a href=\"tails-installer."
 "desktop\">Tails Installer</a>и создайте постоянное хранилище."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:254
 msgid "[package not available]"
 msgstr "[package not available]"
 
diff --git a/po/sk.po b/po/sk.po
deleted file mode 100644
index 60aa3def701489775a4a2522624196457c2bdafd..0000000000000000000000000000000000000000
--- a/po/sk.po
+++ /dev/null
@@ -1,1083 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-# elo, 2014
-# FooBar <thewired@riseup.net>, 2015
-# Michal Slovák <michalslovak2@hotmail.com>, 2013
-# Roman 'Kaktuxista' Benji <romanbeno273@gmail.com>, 2014
-# Stanislav Tomáš <stanislav.tomas@hotmail.sk>, 2015
-msgid ""
-msgstr ""
-"Project-Id-Version: The Tor Project\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-14 21:20+0100\n"
-"PO-Revision-Date: 2015-08-04 20:56+0000\n"
-"Last-Translator: Stanislav Tomáš <stanislav.tomas@hotmail.sk>\n"
-"Language-Team: Slovak (http://www.transifex.com/otf/torproject/language/"
-"sk/)\n"
-"Language: sk\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-
-#: config/chroot_local-includes/etc/NetworkManager/dispatcher.d/60-tor-ready.sh:39
-msgid "Tor is ready"
-msgstr "Tor je pripravený"
-
-#: config/chroot_local-includes/etc/NetworkManager/dispatcher.d/60-tor-ready.sh:40
-msgid "You can now access the Internet."
-msgstr "Teraz môžete pristupovať k Internetu."
-
-#: config/chroot_local-includes/etc/whisperback/config.py:69
-#, python-format
-msgid ""
-"<h1>Help us fix your bug!</h1>\n"
-"<p>Read <a href=\"%s\">our bug reporting instructions</a>.</p>\n"
-"<p><strong>Do not include more personal information than\n"
-"needed!</strong></p>\n"
-"<h2>About giving us an email address</h2>\n"
-"<p>\n"
-"Giving us an email address allows us to contact you to clarify the problem. "
-"This\n"
-"is needed for the vast majority of the reports we receive as most reports\n"
-"without any contact information are useless. On the other hand it also "
-"provides\n"
-"an opportunity for eavesdroppers, like your email or Internet provider, to\n"
-"confirm that you are using Tails.\n"
-"</p>\n"
-msgstr ""
-"<h1>Pomôžte nám opraviť vašu chybu!</h1>\n"
-"<p>Čítajte <a href=\"%s\">naše inštrukcie pre nahlásenie chyby</a>.</p>\n"
-"<p><strong>Nevkladajte viac osobných údajov ako je\n"
-"nevyhnutné!</strong></p>\n"
-"<h2>O poskytovaní emailovej adresy nám</h2>\n"
-"<p>\n"
-"Poskytnutie emailovej adresy nám umožňuje kontaktovať vás aby sme objasnili "
-"problém. Toto\n"
-"je potrebné pre obrovské množstvo, väčšina \n"
-"hlásení, ktoré dostávame, pričom najviac bez akýchkoľvek kontaktných údajov, "
-"je nepoužiteľná. Na druhej strane to taktiež poskytuje\n"
-"príležitosť špehom, ako vášmu emailovému či internetovému poskytovateľovi,\n"
-"si potvrdiť, že\n"
-"používate Tails.\n"
-"</p>\n"
-
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:51
-msgid ""
-"You can install additional software automatically from your persistent "
-"storage when starting Tails."
-msgstr ""
-
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:77
-msgid ""
-"The following software is installed automatically from your persistent "
-"storage when starting Tails."
-msgstr ""
-
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
-msgid ""
-"To add more, install some software using <a href=\"synaptic.desktop"
-"\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop"
-"\">APT on the command line</a>."
-msgstr ""
-
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:151
-msgid "_Create persistent storage"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/electrum:57
-msgid "Persistence is disabled for Electrum"
-msgstr "Zotrvačnosť je pre Electrum vypnutá"
-
-#: config/chroot_local-includes/usr/local/bin/electrum:59
-msgid ""
-"When you reboot Tails, all of Electrum's data will be lost, including your "
-"Bitcoin wallet. It is strongly recommended to only run Electrum when its "
-"persistence feature is activated."
-msgstr ""
-"Keď reštartujete Tails všetky údaje z Electrum-u budú stratené, vrátane "
-"vašej Bitcoin-ovej peňaženky. Je preto hlboko odporúčané spúšťať Electrum "
-"vtedy keď je funkcia zotrvačnosti aktivovaná."
-
-#: config/chroot_local-includes/usr/local/bin/electrum:60
-msgid "Do you want to start Electrum anyway?"
-msgstr "Chcete spustiť napriek tomu Electrum?"
-
-#: config/chroot_local-includes/usr/local/bin/electrum:63
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:41
-msgid "_Launch"
-msgstr "_Spustiť"
-
-#: config/chroot_local-includes/usr/local/bin/electrum:64
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:42
-msgid "_Exit"
-msgstr "_Ukončiť"
-
-#: config/chroot_local-includes/usr/local/bin/keepassx:17
-#, sh-format
-msgid ""
-"<b><big>Do you want to rename your <i>KeePassX</i> database?</big></b>\n"
-"\n"
-"You have a <i>KeePassX</i> database in your <i>Persistent</i> folder:\n"
-"\n"
-"<i>${filename}</i>\n"
-"\n"
-"Renaming it to <i>keepassx.kdbx</i> would allow <i>KeePassX</i> to open it "
-"automatically in the future."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/keepassx:25
-msgid "Rename"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/keepassx:26
-msgid "Keep current name"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
-msgid "su is disabled. Please use sudo instead."
-msgstr ""
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
-msgid "Restart"
-msgstr ""
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:78
-msgid "Lock screen"
-msgstr ""
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:81
-msgid "Power Off"
-msgstr "Vypnúť"
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:22
-#: ../config/chroot_local-includes/usr/share/desktop-directories/Tails.directory.in.h:1
-msgid "Tails"
-msgstr "Tails"
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:25
-#: ../config/chroot_local-includes/usr/share/applications/tails-about.desktop.in.h:1
-msgid "About Tails"
-msgstr "O Tails"
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:35
-msgid "The Amnesic Incognito Live System"
-msgstr "Amnesic Incognito Live System"
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:36
-#, python-format
-msgid ""
-"Build information:\n"
-"%s"
-msgstr ""
-"Informácie o builde:\n"
-"%s"
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:54
-msgid "not available"
-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:147
-#, fuzzy, python-brace-format
-msgid ""
-"{details} Please check your list of additional software or read the system "
-"log to understand the problem."
-msgstr ""
-"Aktualizácia zlyhala. Môže to byť spôsobené problémom siete. Prosíme "
-"skontrolujte si vaše sieťové pripojenie, pokúste sa reštartovať Tails, alebo "
-"si prečítajte systémový log za účelom lepšieho porozumenia problému."
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
-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:156
-msgid "Show Log"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
-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:222
-#, python-brace-format
-msgid "{beginning} and {last}"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
-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:289
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
-#, fuzzy, python-brace-format
-msgid "Add {packages} to your additional software?"
-msgstr "Váš dodatočný softvér"
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
-msgid ""
-"To install it automatically from your persistent storage when starting Tails."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
-msgid "Install Every Time"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
-msgid "Install Only Once"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
-msgid "The configuration of your additional software failed."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
-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:324
-msgid "Create Persistent Storage"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
-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:341
-#, python-brace-format
-msgid "You could install {packages} automatically when starting Tails"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
-msgid ""
-"To do so, you need to run Tails from a USB stick installed using <i>Tails "
-"Installer</i>."
-msgstr ""
-
-#. Translators: Don't translate {packages}, it's a placeholder and will be
-#. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:359
-#, fuzzy, python-brace-format
-msgid "Remove {packages} from your additional software?"
-msgstr "Váš dodatočný softvér"
-
-#. Translators: Don't translate {packages}, it's a placeholder
-#. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:363
-#, python-brace-format
-msgid "This will stop installing {packages} automatically."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:365
-msgid "Remove"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr "Zrušiť"
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544
-msgid "Installing your additional software from persistent storage..."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:546
-msgid "This can take several minutes."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:559
-#, fuzzy
-msgid "The installation of your additional software failed"
-msgstr "Váš dodatočný softvér"
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:574
-msgid "Additional software installed successfully"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:594
-msgid "The check for upgrades of your additional software failed"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:596
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
-#, fuzzy
-msgid ""
-"Please check your network connection, restart Tails, or read the system log "
-"to understand the problem."
-msgstr ""
-"Aktualizácia zlyhala. Môže to byť spôsobené problémom siete. Prosíme "
-"skontrolujte si vaše sieťové pripojenie, pokúste sa reštartovať Tails, alebo "
-"si prečítajte systémový log za účelom lepšieho porozumenia problému."
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
-#, fuzzy
-msgid "The upgrade of your additional software failed"
-msgstr "Váš dodatočný softvér"
-
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
-#, fuzzy
-msgid "Documentation"
-msgstr "Tails dokumentácia"
-
-#. Translators: Don't translate {package}, it's a placeholder and will be replaced.
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
-#, 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:107
-#, python-brace-format
-msgid "Failed to remove {pkg}"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
-#, fuzzy
-msgid "Failed to read additional software configuration"
-msgstr "Váš dodatočný softvér"
-
-#. Translators: Don't translate {package}, it's a placeholder and will be replaced.
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
-#, python-brace-format
-msgid "Stop installing {package} automatically"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
-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:188
-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:198
-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:206
-msgid ""
-"To do so, install Tails on a USB stick using <a href=\"tails-installer."
-"desktop\">Tails Installer</a> and create a persistent storage."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
-#, fuzzy
-msgid "[package not available]"
-msgstr "nie je dostupný"
-
-#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:52
-msgid "Synchronizing the system's clock"
-msgstr "Synchronizácia systémových hodín"
-
-#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:53
-msgid ""
-"Tor needs an accurate clock to work properly, especially for Hidden "
-"Services. Please wait..."
-msgstr ""
-"Tor vyžaduje presné hodiny pre korektné fungovanie, obzvlášť pre Hidden "
-"Services. Prosíme počkajte..."
-
-#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:87
-msgid "Failed to synchronize the clock!"
-msgstr "Synchronizácia hodín zlyhala!"
-
-#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
-msgid "This version of Tails has known security issues:"
-msgstr "Táto verzia Tails má známe bezpečnostné problémy:"
-
-#: config/chroot_local-includes/usr/local/bin/tails-security-check:134
-msgid "Known security issues"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:52
-#, sh-format
-msgid "Network card ${nic} disabled"
-msgstr "Sieťová karta ${nic} vypnutá"
-
-#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:53
-#, fuzzy, sh-format
-msgid ""
-"MAC spoofing failed for network card ${nic_name} (${nic}) so it is "
-"temporarily disabled.\n"
-"You might prefer to restart Tails and disable MAC spoofing."
-msgstr ""
-"MAC spoofing zlyhal pre sieťovú kartu ${nic_name} (${nic}), takže je dočasne "
-"vypnutá.\n"
-"Možno by ste si radšej reštartovali Tails a vypli MAC spoofing. Pozrite si "
-"<a href='file:///usr/share/doc/tails/website/doc/first_steps/startup_options/"
-"mac_spoofing.en.html'>dokumentáciu</a>."
-
-#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:62
-msgid "All networking disabled"
-msgstr "Všetky sieťové funkcie vypnuté"
-
-#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:63
-#, fuzzy, sh-format
-msgid ""
-"MAC spoofing failed for network card ${nic_name} (${nic}). The error "
-"recovery also failed so all networking is disabled.\n"
-"You might prefer to restart Tails and disable MAC spoofing."
-msgstr ""
-"MAC spoofing zlyhal pre sieťovú kartu ${nic_name} (${nic}). Obnova chýb "
-"taktiež zlyhala, čo má za následok vypnutie všetkých sieťových funkcii. \n"
-"Možno by ste si radšej reštartovali Tails a vypli MAC spoofing. Pozrite si "
-"<a href='file:///usr/share/doc/first_steps/startup_options/mac_spoofing.en."
-"html'>dokumentáciu</a>."
-
-#: 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:136
-msgid "Password"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:142
-msgid "Confirm"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:35
-#, fuzzy
-msgid ""
-"\"<b>Not enough memory available to check for upgrades.</b>\n"
-"\n"
-"Make sure this system satisfies the requirements for running Tails.\n"
-"See file:///usr/share/doc/tails/website/doc/about/requirements.en.html\n"
-"\n"
-"Try to restart Tails to check for upgrades again.\n"
-"\n"
-"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
-msgstr ""
-"<b>Nie je dostatok voľnej pamäte pre kontrolu aktualizácii.</b>\n"
-"\n"
-"Uistite sa, že systém spĺňa všetky požiadavky nevyhnutné pre spustenie "
-"Tails.\n"
-"Pozrite si súbor file:///usr/share/doc/tails/website/doc/about/requirements."
-"en.html\n"
-"\n"
-"Skúste reštartovať Tails a skontrolovať aktualizácie znova.\n"
-"\n"
-"Alebo tak učiňte manuálne.\n"
-"Viac informácii https://tails.boum.org/doc/first_steps/upgrade#manual"
-
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:72
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
-msgid "error:"
-msgstr "chyba:"
-
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
-msgid "Error"
-msgstr "Chyba"
-
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:71
-msgid "Warning: virtual machine detected!"
-msgstr "Varovanie: bol detegovaný virtuálny stroj!"
-
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:74
-#, fuzzy
-msgid "Warning: non-free virtual machine detected!"
-msgstr "Varovanie: bol detegovaný virtuálny stroj!"
-
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:77
-#, fuzzy
-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 ""
-"Aj hostujúci operačný systém aj virtualizačný softvér budú schopné "
-"monitorovať vašu aktivitu v Tails."
-
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:81
-#, fuzzy
-msgid "Learn more"
-msgstr "Dozvedieť sa viac o Tails"
-
-#: config/chroot_local-includes/usr/local/bin/tor-browser:43
-msgid "Tor is not ready"
-msgstr "Tor nie je pripravený"
-
-#: config/chroot_local-includes/usr/local/bin/tor-browser:44
-msgid "Tor is not ready. Start Tor Browser anyway?"
-msgstr "Tor nie je pripravený. Spustiť Tor Browser aj tak?"
-
-#: config/chroot_local-includes/usr/local/bin/tor-browser:45
-msgid "Start Tor Browser"
-msgstr "Spustiť Tor Browser"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/torstatus@tails.boum.org/extension.js:40
-msgid "Tor"
-msgstr ""
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/torstatus@tails.boum.org/extension.js:55
-msgid "Open Onion Circuits"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
-msgid "Do you really want to launch the Unsafe Browser?"
-msgstr "Naozaj chcete spustiť Unsafe Browser?"
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:40
-#, fuzzy
-msgid ""
-"Network activity within the Unsafe Browser is <b>not anonymous</b>.\\nOnly "
-"use the Unsafe Browser if necessary, for example\\nif you have to login or "
-"register to activate your Internet connection."
-msgstr ""
-"Sieťová aktivita v rámci Unsafe Browsera <b> nie je anonymná </b>. Použite "
-"ho iba vtedy, ak je to nevyhnutné, napr. ak sa musíte prihlásiť alebo "
-"registrovať za účelom aktivácie vášho pripojenia k Internetu."
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
-msgid "Starting the Unsafe Browser..."
-msgstr "Spúšťa sa Unsafe Browser..."
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:52
-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:57
-msgid "Shutting down the Unsafe Browser..."
-msgstr "Vypína sa Unsafe Browser..."
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
-msgid ""
-"This may take a while, and you may not restart the Unsafe Browser until it "
-"is properly shut down."
-msgstr ""
-"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:70
-msgid "Failed to restart Tor."
-msgstr "Nepodarilo sa reštartovať Tor."
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:84
-#: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
-msgid "Unsafe Browser"
-msgstr "Unsafe Browser"
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:91
-msgid ""
-"Another Unsafe Browser is currently running, or being cleaned up. Please "
-"retry in a while."
-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:99
-msgid "Failed to setup chroot."
-msgstr "Nepodarilo sa nastaviť chroot."
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:104
-msgid "Failed to configure browser."
-msgstr "Zlyhalo pri nastavovaní prehliadača."
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:110
-msgid ""
-"No DNS server was obtained through DHCP or manually configured in "
-"NetworkManager."
-msgstr ""
-"Pomocou DHCP alebo konfigurácie v NetworkManageri nebol získaný žiadny DNS "
-"server."
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:121
-msgid "Failed to run browser."
-msgstr "Zlyhalo pri spúšťaní prehliadača. "
-
-#. Translators: Don't translate {volume_label} or {volume_size},
-#. they are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
-#, 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.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
-#, python-brace-format
-msgid "{partition_name} ({partition_size})"
-msgstr ""
-
-#. Translators: Don't translate {volume_size}, it's a placeholder
-#. and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
-#, python-brace-format
-msgid "{volume_size} Volume"
-msgstr ""
-
-#. Translators: Don't translate {volume_name}, it's a placeholder and
-#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
-#, python-brace-format
-msgid "{volume_name} (Read-Only)"
-msgstr ""
-
-#. Translators: Don't translate {partition_name} and {container_path}, they
-#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
-#, python-brace-format
-msgid "{partition_name} in {container_path}"
-msgstr ""
-
-#. Translators: Don't translate {volume_name} and {path_to_file_container},
-#. they are placeholders and will be replaced. You should only have to translate
-#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
-#, python-brace-format
-msgid "{volume_name} – {path_to_file_container}"
-msgstr ""
-
-#. Translators: Don't translate {partition_name} and {drive_name}, they
-#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
-#, python-brace-format
-msgid "{partition_name} on {drive_name}"
-msgstr ""
-
-#. Translators: Don't translate {volume_name} and {drive_name},
-#. they are placeholders and will be replaced. You should only have to translate
-#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
-#, python-brace-format
-msgid "{volume_name} – {drive_name}"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
-msgid "Wrong passphrase or parameters"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
-msgid "Error unlocking volume"
-msgstr ""
-
-#. Translators: Don't translate {volume_name} or {error_message},
-#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
-#, python-brace-format
-msgid ""
-"Couldn't unlock volume {volume_name}:\n"
-"{error_message}"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
-msgid "No file containers added"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:98
-msgid "No VeraCrypt devices detected"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:114
-msgid "Container already added"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/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/local/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/local/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/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
-msgid "Error opening file"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
-msgid "Not a VeraCrypt container"
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/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/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
-#, fuzzy
-msgid "Failed to add container"
-msgstr "Zlyhalo pri nastavovaní prehliadača."
-
-#: config/chroot_local-includes/usr/local/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.Please "
-"try using the <i>Disks</i> application instead."
-msgstr ""
-
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
-msgid "Choose File Container"
-msgstr ""
-
-#: ../config/chroot_local-includes/etc/skel/Desktop/Report_an_error.desktop.in.h:1
-msgid "Report an error"
-msgstr "Nahlásiť chybu"
-
-#: ../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 dokumentácia"
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-documentation.desktop.in.h:2
-msgid "Learn how to use Tails"
-msgstr "Naučte sa ako používať Tails"
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-about.desktop.in.h:2
-msgid "Learn more about Tails"
-msgstr "Dozvedieť sa viac o Tails"
-
-#: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:1
-msgid "Tor Browser"
-msgstr "Prehliadač Tor"
-
-#: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:2
-msgid "Anonymous Web Browser"
-msgstr "Anonýmny Prehliadač Webu"
-
-#: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:2
-msgid "Browse the World Wide Web without anonymity"
-msgstr "Surfovať World Wide Web bez anonymity"
-
-#: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:3
-msgid "Unsafe Web Browser"
-msgstr "Unsafe Web Browser"
-
-#: ../config/chroot_local-includes/usr/share/applications/unlock-veracrypt-volumes.desktop.in.h:1
-msgid "Unlock VeraCrypt Volumes"
-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:1
-#, fuzzy
-msgid "Additional Software"
-msgstr "Váš dodatočný softvér"
-
-#: ../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/desktop-directories/Tails.directory.in.h:2
-msgid "Tails specific tools"
-msgstr "Špecifické nástroje pre 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
-#, fuzzy
-msgid "Remove an additional software package"
-msgstr "Váš dodatočný softvér"
-
-#: ../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/unlock-veracrypt-volumes/ui/main.ui.in:61
-msgid "File Containers"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/unlock-veracrypt-volumes/ui/main.ui.in:80
-msgid "_Add"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/unlock-veracrypt-volumes/ui/main.ui.in:86
-msgid "Add a file container"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/unlock-veracrypt-volumes/ui/main.ui.in:103
-msgid "Partitions and Drives"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/unlock-veracrypt-volumes/ui/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/unlock-veracrypt-volumes/ui/volume.ui.in:38
-msgid "Lock this volume"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/share/unlock-veracrypt-volumes/ui/volume.ui.in:61
-msgid "Detach this volume"
-msgstr ""
-
-#: ../config/chroot_local-includes/usr/local/share/mime/packages/unlock-veracrypt-volumes.xml.in.h:1
-msgid "TrueCrypt/VeraCrypt container"
-msgstr ""
-
-#~ msgid "OpenPGP encryption applet"
-#~ msgstr "OpenPGP šifrovací aplet"
-
-#~ msgid "Exit"
-#~ msgstr "Ukončiť"
-
-#~ msgid "About"
-#~ msgstr "O aplikácií"
-
-#~ msgid "Encrypt Clipboard with _Passphrase"
-#~ msgstr "Šifrovať schránku s _prístupovým heslom"
-
-#~ msgid "Sign/Encrypt Clipboard with Public _Keys"
-#~ msgstr "Prihlásiť/Šifrovať schránku s verejnými _kľúčmi"
-
-#~ msgid "_Decrypt/Verify Clipboard"
-#~ msgstr "_Dešifrovať/Overiť schránku"
-
-#~ msgid "_Manage Keys"
-#~ msgstr "_manažovať kľúče"
-
-#~ msgid "_Open Text Editor"
-#~ msgstr "_Otvoriť textový editor"
-
-#~ msgid "The clipboard does not contain valid input data."
-#~ msgstr "Schránka neobsahuje platné vstupné dáta."
-
-#~ msgid "Unknown Trust"
-#~ msgstr "Neznáma dôvera"
-
-#~ msgid "Marginal Trust"
-#~ msgstr "Okrajová dôvera"
-
-#~ msgid "Full Trust"
-#~ msgstr "Plná dôvera"
-
-#~ msgid "Ultimate Trust"
-#~ msgstr "Maximálna dôvera"
-
-#~ msgid "Name"
-#~ msgstr "Meno"
-
-#~ msgid "Key ID"
-#~ msgstr "ID kľúča"
-
-#~ msgid "Status"
-#~ msgstr "Stav"
-
-#~ msgid "Fingerprint:"
-#~ msgstr "Odtlačok:"
-
-#~ msgid "User ID:"
-#~ msgid_plural "User IDs:"
-#~ msgstr[0] "ID užívateľa"
-#~ msgstr[1] "ID užívateľov:"
-#~ msgstr[2] "ID užívateľov:"
-
-#~ msgid "None (Don't sign)"
-#~ msgstr "Žiadne (nepodpisovať)"
-
-#~ msgid "Select recipients:"
-#~ msgstr "Zvoľte si príjemcov:"
-
-#~ msgid "Hide recipients"
-#~ msgstr "Skryť príjemcov"
-
-#~ msgid ""
-#~ "Hide the user IDs of all recipients of an encrypted message. Otherwise "
-#~ "anyone that sees the encrypted message can see who the recipients are."
-#~ msgstr ""
-#~ "Skryť uživateľské ID všetkých príjemcov šifrovanej správy. V opačnom "
-#~ "prípade každý, kto túto správu zazrie, bude schopný odhaliť ich identitu."
-
-#~ msgid "Sign message as:"
-#~ msgstr "Podpísať správu ako:"
-
-#~ msgid "Choose keys"
-#~ msgstr "Zvoľte si kľúče"
-
-#~ msgid "Do you trust these keys?"
-#~ msgstr "Dôverujete týmto kľúčom?"
-
-#~ msgid "The following selected key is not fully trusted:"
-#~ msgid_plural "The following selected keys are not fully trusted:"
-#~ msgstr[0] "Nasledujúci zvolený kľúč nie je plne dôveryhodný:"
-#~ msgstr[1] "Nasledujúce zvolené kľúče nie sú plne dôveryhodne:"
-#~ msgstr[2] "Nasledujúce zvolené kľúče nie sú plne dôveryhodne:"
-
-#~ msgid "Do you trust this key enough to use it anyway?"
-#~ msgid_plural "Do you trust these keys enough to use them anyway?"
-#~ msgstr[0] "Napriek tomu dôverujete tomuto kľúču tak, že ho hodláte použiť?"
-#~ msgstr[1] "Napriek tomu dôverujete týmto kľúčom tak, že ich hodláte použiť?"
-#~ msgstr[2] "Napriek tomu dôverujete týmto kľúčom tak, že ich hodláte použiť?"
-
-#~ msgid "No keys selected"
-#~ msgstr "Neboli zvolené žiadne kľúče"
-
-#~ msgid ""
-#~ "You must select a private key to sign the message, or some public keys to "
-#~ "encrypt the message, or both."
-#~ msgstr ""
-#~ "Na podpísanie správy si musíte zvoliť súkromný kľúč alebo nejaké verejné "
-#~ "kľúče pre jej zašifrovanie, prípadne oboje."
-
-#~ msgid "No keys available"
-#~ msgstr "Nie sú dostupné žiadne kľúče."
-
-#~ msgid ""
-#~ "You need a private key to sign messages or a public key to encrypt "
-#~ "messages."
-#~ msgstr ""
-#~ "Potrebujete súkromný kľúč na podpísanie správ alebo verejný kľúč na ich "
-#~ "šifrovanie."
-
-#~ msgid "GnuPG error"
-#~ msgstr "GnuPG chyba"
-
-#~ msgid "Therefore the operation cannot be performed."
-#~ msgstr "Operácia teda nemohla byť vykonaná."
-
-#~ msgid "GnuPG results"
-#~ msgstr "GnuPG výsledky"
-
-#~ msgid "Output of GnuPG:"
-#~ msgstr "Výstup GnuPG:"
-
-#~ msgid "Other messages provided by GnuPG:"
-#~ msgstr "Ostatné správy poskytnuté GnuPG:"
-
-#~ msgid "Shutdown Immediately"
-#~ msgstr "Okamžite vypnúť"
-
-#~ msgid "Reboot Immediately"
-#~ msgstr "Okamžite rebootovať"
-
-#~ msgid "The upgrade was successful."
-#~ msgstr "Aktualizácia prebehla úspešne."
-
-#~ msgid "Network connection blocked?"
-#~ msgstr "Sieťové pripojenie blokované?"
-
-#~ msgid ""
-#~ "It looks like you are blocked from the network. This may be related to "
-#~ "the MAC spoofing feature. For more information, see the <a href=\\"
-#~ "\"file:///usr/share/doc/tails/website/doc/first_steps/startup_options/"
-#~ "mac_spoofing.en.html#blocked\\\">MAC spoofing documentation</a>."
-#~ msgstr ""
-#~ "Vyzerá to, že máte zablokovaný prístup k sieti. To môže súvisieť s "
-#~ "funkciou MAC spoofing. Pre viac informácii si pozrite <a href=\\\"file:///"
-#~ "usr/share/doc/tails/website/doc/first_steps/startup_options/mac_spoofing."
-#~ "en.html#blocked\\\">MAC spoofing dokumentáciu </a>."
-
-#~ msgid ""
-#~ "<a href='file:///usr/share/doc/tails/website/doc/advanced_topics/"
-#~ "virtualization.en.html#security'>Learn more...</a>"
-#~ msgstr ""
-#~ "<a href='file:///usr/share/doc/tails/website/doc/advanced_topics/"
-#~ "virtualization.en.html#security'>Dozvedieť sa viac...</a>"
-
-#~ msgid ""
-#~ "NetworkManager passed us garbage data when trying to deduce the clearnet "
-#~ "DNS server."
-#~ msgstr ""
-#~ "NetworkManager nám odovzdal nežiadúce údaje keď sa pokúšal odvodiť "
-#~ "clearnet servera DNS."
-
-#~ msgid "I2P failed to start"
-#~ msgstr "I2P sa nepodarilo spustiť."
-
-#~ msgid ""
-#~ "Something went wrong when I2P was starting. Check the logs in /var/log/"
-#~ "i2p for more information."
-#~ msgstr ""
-#~ "Niečo sa stalo pri štarte I2P. Skontrolujte logy vo /var/log/i2p pre viac "
-#~ "informacií."
-
-#~ msgid "I2P's router console is ready"
-#~ msgstr "Konzola I2P routera je priravená."
-
-#~ msgid "You can now access I2P's router console on http://127.0.0.1:7657."
-#~ msgstr "Konzola I2P routera je teraz dostupná na http://127.0.0.1:7657."
-
-#~ msgid "I2P is not ready"
-#~ msgstr "I2P nieje pripravený"
-
-#~ msgid ""
-#~ "Eepsite tunnel not built within six minutes. Check the router console at "
-#~ "http://127.0.0.1:7657/logs or the logs in /var/log/i2p for more "
-#~ "information. Reconnect to the network to try again."
-#~ msgstr ""
-#~ "Eeepsite tunnel nebol skompilovaný do 6 minut. Skontrolujte konzolu "
-#~ "routera na http://127.0.0.1:7657/logs alebo logy vo /var/log/i2p pre viac "
-#~ "informácií. Pripojte sa na sieť na skúsenie znova."
-
-#~ msgid "I2P is ready"
-#~ msgstr "I2P je pripravený"
-
-#~ msgid "You can now access services on I2P."
-#~ msgstr "Teraz možte používať služby na I2P."
-
-#~ msgid "Anonymous overlay network browser"
-#~ msgstr "Anonmny overlay prehliadač siete."
-
-#~ msgid "I2P Browser"
-#~ msgstr "I2P Prehliadač"
-
-#~ msgid "Reboot"
-#~ msgstr "Reboot"
-
-#~ msgid "Immediately reboot computer"
-#~ msgstr "Okamžite rebootovať počítač"
-
-#~ msgid "Immediately shut down computer"
-#~ msgstr "Okamžite vypnúť počítač"
diff --git a/po/sk_SK.po b/po/sk_SK.po
index 5602134209ac5b371d702362edd9b4b01d1990e6..550ba690b9be8b9b0918da700c81c0c9278315dd 100644
--- a/po/sk_SK.po
+++ b/po/sk_SK.po
@@ -10,7 +10,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-14 21:20+0100\n"
+"POT-Creation-Date: 2019-04-06 14:00+0200\n"
 "PO-Revision-Date: 2017-05-26 14:47+0000\n"
 "Last-Translator: carolyn <carolyn@anhalt.org>\n"
 "Language-Team: Slovak (Slovakia) (http://www.transifex.com/otf/torproject/"
@@ -75,15 +75,15 @@ msgid ""
 "storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:173
 msgid ""
 "To add more, install some software using <a href=\"synaptic.desktop"
 "\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop"
 "\">APT on the command line</a>."
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:151
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
 msgid "_Create persistent storage"
 msgstr ""
 
@@ -141,14 +141,18 @@ msgid "su is disabled. Please use sudo instead."
 msgstr ""
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
-msgid "Restart"
-msgstr "Reštartovať"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:78
 msgid "Lock screen"
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:81
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79
+msgid "Suspend"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83
+msgid "Restart"
+msgstr "Reštartovať"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87
 msgid "Power Off"
 msgstr "Vypnúť"
 
@@ -181,7 +185,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:147
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
 #, fuzzy, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -191,81 +195,81 @@ msgstr ""
 "Skontrolujte, prosím, vaše pripojenie, skúste reštartovať Tails alebo si "
 "prečítajte záznam z konzoly, aby ste problém lepšie pochopili."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
 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:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 msgid "Show Log"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 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:222
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
 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:289
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
 #, fuzzy, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "Váš prídavný software"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
 msgid "Install Every Time"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:297
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 msgid "Install Only Once"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 msgid "The configuration of your additional software failed."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
 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:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:335
 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:341
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
 msgid ""
 "To do so, you need to run Tails from a USB stick installed using <i>Tails "
 "Installer</i>."
@@ -273,51 +277,52 @@ msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:359
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
 #, fuzzy, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "Váš prídavný software"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:363
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:365
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:368
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:156
 msgid "Remove"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:369
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #: config/chroot_local-includes/usr/local/bin/tor-browser:46
 msgid "Cancel"
 msgstr "Zrušiť"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:547
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:546
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:549
 msgid "This can take several minutes."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:559
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:562
 #, fuzzy
 msgid "The installation of your additional software failed"
 msgstr "Váš prídavný software"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:574
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:577
 msgid "Additional software installed successfully"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:594
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:597
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:596
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:599
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:607
 #, fuzzy
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
@@ -327,12 +332,12 @@ msgstr ""
 "Skontrolujte, prosím, vaše pripojenie, skúste reštartovať Tails alebo si "
 "prečítajte záznam z konzoly, aby ste problém lepšie pochopili."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:606
 #, fuzzy
 msgid "The upgrade of your additional software failed"
 msgstr "Váš prídavný software"
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:39
 #, fuzzy
 msgid "Documentation"
 msgstr "Tails dokumentácia"
@@ -362,34 +367,34 @@ msgstr "Váš prídavný software"
 msgid "Stop installing {package} automatically"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
 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:188
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:189
 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:198
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:199
 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:206
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:207
 msgid ""
 "To do so, install Tails on a USB stick using <a href=\"tails-installer."
 "desktop\">Tails Installer</a> and create a persistent storage."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:254
 #, fuzzy
 msgid "[package not available]"
 msgstr "nedostupné"
diff --git a/po/sl_SI.po b/po/sl_SI.po
index adea1c9065380d753e30dc171619b0d9c8691f1a..dd45057dc775c0bc11b0710838783bfa2716c8fb 100644
--- a/po/sl_SI.po
+++ b/po/sl_SI.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-14 21:20+0100\n"
+"POT-Creation-Date: 2019-04-06 14:00+0200\n"
 "PO-Revision-Date: 2015-02-12 14:52+0000\n"
 "Last-Translator: runasand <runa.sandvik@gmail.com>\n"
 "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/projects/p/"
@@ -72,15 +72,15 @@ msgid ""
 "storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:173
 msgid ""
 "To add more, install some software using <a href=\"synaptic.desktop"
 "\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop"
 "\">APT on the command line</a>."
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:151
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
 msgid "_Create persistent storage"
 msgstr ""
 
@@ -135,14 +135,18 @@ msgid "su is disabled. Please use sudo instead."
 msgstr ""
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
-msgid "Restart"
+msgid "Lock screen"
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:78
-msgid "Lock screen"
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79
+msgid "Suspend"
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:81
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83
+msgid "Restart"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87
 msgid "Power Off"
 msgstr "Izklop"
 
@@ -175,7 +179,7 @@ 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:147
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
 #, fuzzy, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -185,81 +189,81 @@ msgstr ""
 "povezavo, poskusite ponovno zagnati Sledi, ali pa preberite sistemski "
 "dnevnik za boljše razumevanje problema."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
 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:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 msgid "Show Log"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 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:222
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
 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:289
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
 #, fuzzy, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "Vaša dodatna programska oprema"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
 msgid "Install Every Time"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:297
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 msgid "Install Only Once"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 msgid "The configuration of your additional software failed."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
 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:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:335
 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:341
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
 msgid ""
 "To do so, you need to run Tails from a USB stick installed using <i>Tails "
 "Installer</i>."
@@ -267,51 +271,52 @@ msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:359
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
 #, fuzzy, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "Vaša dodatna programska oprema"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:363
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:365
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:368
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:156
 msgid "Remove"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:369
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #: config/chroot_local-includes/usr/local/bin/tor-browser:46
 msgid "Cancel"
 msgstr "Opusti"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:547
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:546
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:549
 msgid "This can take several minutes."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:559
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:562
 #, fuzzy
 msgid "The installation of your additional software failed"
 msgstr "Vaša dodatna programska oprema"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:574
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:577
 msgid "Additional software installed successfully"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:594
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:597
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:596
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:599
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:607
 #, fuzzy
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
@@ -321,12 +326,12 @@ msgstr ""
 "povezavo, poskusite ponovno zagnati Sledi, ali pa preberite sistemski "
 "dnevnik za boljše razumevanje problema."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:606
 #, fuzzy
 msgid "The upgrade of your additional software failed"
 msgstr "Vaša dodatna programska oprema"
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:39
 #, fuzzy
 msgid "Documentation"
 msgstr "Dokumentacija Sledi"
@@ -356,34 +361,34 @@ msgstr "Vaša dodatna programska oprema"
 msgid "Stop installing {package} automatically"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
 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:188
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:189
 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:198
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:199
 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:206
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:207
 msgid ""
 "To do so, install Tails on a USB stick using <a href=\"tails-installer."
 "desktop\">Tails Installer</a> and create a persistent storage."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:254
 #, fuzzy
 msgid "[package not available]"
 msgstr "ni primeren"
diff --git a/po/sq.po b/po/sq.po
index 892954ebfe54580195a3ae5d6ade1d632e2e2756..9f5f40e8bfee7a9d7b43db5f484c847e753afc4d 100644
--- a/po/sq.po
+++ b/po/sq.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-14 21:20+0100\n"
+"POT-Creation-Date: 2019-04-06 14:00+0200\n"
 "PO-Revision-Date: 2017-05-26 14:47+0000\n"
 "Last-Translator: carolyn <carolyn@anhalt.org>\n"
 "Language-Team: Albanian (http://www.transifex.com/otf/torproject/language/"
@@ -74,15 +74,15 @@ msgid ""
 "storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:173
 msgid ""
 "To add more, install some software using <a href=\"synaptic.desktop"
 "\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop"
 "\">APT on the command line</a>."
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:151
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
 msgid "_Create persistent storage"
 msgstr ""
 
@@ -140,14 +140,18 @@ msgid "su is disabled. Please use sudo instead."
 msgstr ""
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
-msgid "Restart"
-msgstr "Rihap"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:78
 msgid "Lock screen"
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:81
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79
+msgid "Suspend"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83
+msgid "Restart"
+msgstr "Rihap"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87
 msgid "Power Off"
 msgstr "Shuajeni"
 
@@ -180,7 +184,7 @@ msgstr "i padisponueshëm"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:147
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
 #, fuzzy, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -190,81 +194,81 @@ msgstr ""
 "rrjetit. Ju lutemi kontrolloni lidhjen e rrjetit tuaj, provoni të rinisni "
 "Tails, ose lexoni regjistrin e sistemit, që ta kuptoni më mirë problemin."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
 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:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 msgid "Show Log"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 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:222
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
 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:289
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
 #, fuzzy, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "Programi juaj shtesë"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
 msgid "Install Every Time"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:297
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 msgid "Install Only Once"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 msgid "The configuration of your additional software failed."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
 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:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:335
 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:341
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
 msgid ""
 "To do so, you need to run Tails from a USB stick installed using <i>Tails "
 "Installer</i>."
@@ -272,51 +276,52 @@ msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:359
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
 #, fuzzy, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "Programi juaj shtesë"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:363
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:365
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:368
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:156
 msgid "Remove"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:369
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #: config/chroot_local-includes/usr/local/bin/tor-browser:46
 msgid "Cancel"
 msgstr "Anuloni"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:547
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:546
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:549
 msgid "This can take several minutes."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:559
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:562
 #, fuzzy
 msgid "The installation of your additional software failed"
 msgstr "Programi juaj shtesë"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:574
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:577
 msgid "Additional software installed successfully"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:594
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:597
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:596
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:599
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:607
 #, fuzzy
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
@@ -326,12 +331,12 @@ msgstr ""
 "rrjetit. Ju lutemi kontrolloni lidhjen e rrjetit tuaj, provoni të rinisni "
 "Tails, ose lexoni regjistrin e sistemit, që ta kuptoni më mirë problemin."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:606
 #, fuzzy
 msgid "The upgrade of your additional software failed"
 msgstr "Programi juaj shtesë"
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:39
 #, fuzzy
 msgid "Documentation"
 msgstr "Dokumentacioni i Tails"
@@ -361,34 +366,34 @@ msgstr "Programi juaj shtesë"
 msgid "Stop installing {package} automatically"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
 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:188
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:189
 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:198
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:199
 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:206
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:207
 msgid ""
 "To do so, install Tails on a USB stick using <a href=\"tails-installer."
 "desktop\">Tails Installer</a> and create a persistent storage."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:254
 #, fuzzy
 msgid "[package not available]"
 msgstr "i padisponueshëm"
diff --git a/po/sr.po b/po/sr.po
index a544bd9e02e112c4f0560d454d009f1b658cd081..e22e109646b8451d50b3a66d6df0de96ac36dc7a 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -10,7 +10,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-14 21:20+0100\n"
+"POT-Creation-Date: 2019-04-06 14:00+0200\n"
 "PO-Revision-Date: 2015-03-29 20:33+0000\n"
 "Last-Translator: JanaDi <dijana1706@gmail.com>\n"
 "Language-Team: Serbian (http://www.transifex.com/projects/p/torproject/"
@@ -86,15 +86,15 @@ msgid ""
 "storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:173
 msgid ""
 "To add more, install some software using <a href=\"synaptic.desktop"
 "\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop"
 "\">APT on the command line</a>."
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:151
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
 msgid "_Create persistent storage"
 msgstr ""
 
@@ -152,14 +152,18 @@ msgid "su is disabled. Please use sudo instead."
 msgstr ""
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
-msgid "Restart"
+msgid "Lock screen"
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:78
-msgid "Lock screen"
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79
+msgid "Suspend"
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:81
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83
+msgid "Restart"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87
 msgid "Power Off"
 msgstr "Искључити"
 
@@ -192,7 +196,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:147
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
 #, fuzzy, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -202,81 +206,81 @@ msgstr ""
 "проверите вашу мрежну конекцију, да рестартујете Tails, или прочитајте "
 "системски дневник да бисте боље разумели проблем."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
 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:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 msgid "Show Log"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 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:222
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
 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:289
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
 #, fuzzy, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "Ваш додатни софтвер"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
 msgid "Install Every Time"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:297
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 msgid "Install Only Once"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 msgid "The configuration of your additional software failed."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
 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:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:335
 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:341
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
 msgid ""
 "To do so, you need to run Tails from a USB stick installed using <i>Tails "
 "Installer</i>."
@@ -284,51 +288,52 @@ msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:359
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
 #, fuzzy, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "Ваш додатни софтвер"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:363
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:365
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:368
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:156
 msgid "Remove"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:369
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #: config/chroot_local-includes/usr/local/bin/tor-browser:46
 msgid "Cancel"
 msgstr "Откажи"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:547
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:546
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:549
 msgid "This can take several minutes."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:559
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:562
 #, fuzzy
 msgid "The installation of your additional software failed"
 msgstr "Ваш додатни софтвер"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:574
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:577
 msgid "Additional software installed successfully"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:594
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:597
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:596
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:599
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:607
 #, fuzzy
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
@@ -338,12 +343,12 @@ msgstr ""
 "проверите вашу мрежну конекцију, да рестартујете Tails, или прочитајте "
 "системски дневник да бисте боље разумели проблем."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:606
 #, fuzzy
 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:39
 #, fuzzy
 msgid "Documentation"
 msgstr "Tails документација"
@@ -373,34 +378,34 @@ msgstr "Ваш додатни софтвер"
 msgid "Stop installing {package} automatically"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
 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:188
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:189
 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:198
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:199
 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:206
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:207
 msgid ""
 "To do so, install Tails on a USB stick using <a href=\"tails-installer."
 "desktop\">Tails Installer</a> and create a persistent storage."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:254
 #, fuzzy
 msgid "[package not available]"
 msgstr "недоступно"
diff --git a/po/sv.po b/po/sv.po
index 083e54f8da49f6d889883e1338ed62fde3694ee9..78919b5f64e008831eb9686ad34253b2329498c2 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -24,7 +24,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-14 21:20+0100\n"
+"POT-Creation-Date: 2019-04-06 14:00+0200\n"
 "PO-Revision-Date: 2019-01-28 19:26+0000\n"
 "Last-Translator: Jonatan Nyberg\n"
 "Language-Team: Swedish (http://www.transifex.com/otf/torproject/language/"
@@ -91,8 +91,8 @@ msgstr ""
 "Följande program installeras automatiskt från din bestående lagring när "
 "Tails startas."
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:173
 msgid ""
 "To add more, install some software using <a href=\"synaptic.desktop"
 "\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop"
@@ -102,7 +102,7 @@ msgstr ""
 "desktop\">Synaptic pakethanterare</a> eller <a href=\"org.gnome.Terminal."
 "desktop\">APT på kommandoraden</a>."
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:151
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
 msgid "_Create persistent storage"
 msgstr "_Skapa bestående lagring"
 
@@ -168,14 +168,18 @@ msgid "su is disabled. Please use sudo instead."
 msgstr "su är inaktiverad. Använd sudo istället."
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
-msgid "Restart"
-msgstr "Starta om"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:78
 msgid "Lock screen"
 msgstr "Lås skärmen"
 
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:81
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79
+msgid "Suspend"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83
+msgid "Restart"
+msgstr "Starta om"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87
 msgid "Power Off"
 msgstr "Stäng av"
 
@@ -208,7 +212,7 @@ msgstr "ej 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:147
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -217,7 +221,7 @@ msgstr ""
 "{details} Kontrollera din lista över extra program eller läs systemloggen "
 "för att förstå problemet."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
@@ -225,56 +229,56 @@ msgstr ""
 "Kontrollera din lista över extra program eller läs systemloggen för att "
 "förstå problemet."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 msgid "Show Log"
 msgstr "Visa loggen"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 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:222
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} och {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
 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:289
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
 #, 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:291
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
 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:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
 msgid "Install Every Time"
 msgstr "Installera varje gång"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:297
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 msgid "Install Only Once"
 msgstr "Installera endast en gång"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 msgid "The configuration of your additional software failed."
 msgstr "Konfigurationen av extra programvara misslyckades."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -282,22 +286,22 @@ 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:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
 msgid "Create Persistent Storage"
 msgstr "Skapa bestående lagring"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:335
 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:341
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
 #, 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:344
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
 msgid ""
 "To do so, you need to run Tails from a USB stick installed using <i>Tails "
 "Installer</i>."
@@ -307,50 +311,51 @@ msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:359
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
 #, 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:363
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
 #, 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:365
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:368
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:156
 msgid "Remove"
 msgstr "Ta bort"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:369
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #: config/chroot_local-includes/usr/local/bin/tor-browser:46
 msgid "Cancel"
 msgstr "Avbryt"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:547
 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:546
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:549
 msgid "This can take several minutes."
 msgstr "Detta kan ta flera minuter."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:559
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:562
 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:574
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:577
 msgid "Additional software installed successfully"
 msgstr "Installation av extraprogram lyckades"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:594
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:597
 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:596
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:599
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:607
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -358,11 +363,11 @@ msgstr ""
 "Vänligen 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:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:606
 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:39
 msgid "Documentation"
 msgstr "Dokumentation"
 
@@ -392,7 +397,7 @@ msgstr "Det gick inte att läsa extra programkonfiguration"
 msgid "Stop installing {package} automatically"
 msgstr "Sluta installera {package} automatiskt"
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
 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 "
@@ -402,7 +407,7 @@ msgstr ""
 "\">Synaptic pakethanteraren</a> eller <a href=\"org.gnome.Terminal.desktop"
 "\">APT på kommandoraden</a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:189
 msgid ""
 "To do so, unlock your persistent storage when starting Tails and install "
 "some software using <a href=\"synaptic.desktop\">Synaptic Package Manager</"
@@ -413,7 +418,7 @@ msgstr ""
 "pakethanteraren</a> eller <a href=\"org.gnome.Terminal.desktop\">APT på "
 "kommandoraden</a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:199
 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."
@@ -423,7 +428,7 @@ msgstr ""
 "med <a href=\"synaptic.desktop\">Synaptic pakethanteraren</a> eller <a href="
 "\"org.gnome.Terminal.desktop\">APT på kommandoraden</a>."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:207
 msgid ""
 "To do so, install Tails on a USB stick using <a href=\"tails-installer."
 "desktop\">Tails Installer</a> and create a persistent storage."
@@ -431,7 +436,7 @@ msgstr ""
 "För att göra det, installera Tails på ett USB-minne med <a href=\"tails-"
 "installer.desktop\">Tails Installer</a> och skapa en bestående lagring."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:254
 msgid "[package not available]"
 msgstr "[package not available]"
 
diff --git a/po/tails.pot b/po/tails.pot
index b3339f2302c482c2887345ea0929f7eb0b2c9b52..ea270e7f93a3fb872f40877ce253afebd8d79be3 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: 2019-01-14 21:20+0100\n"
+"POT-Creation-Date: 2019-04-06 14:00+0200\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"
@@ -56,15 +56,15 @@ msgid ""
 "storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:173
 msgid ""
 "To add more, install some software using <a href=\"synaptic.desktop"
 "\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop"
 "\">APT on the command line</a>."
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:151
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
 msgid "_Create persistent storage"
 msgstr ""
 
@@ -119,14 +119,18 @@ msgid "su is disabled. Please use sudo instead."
 msgstr ""
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
-msgid "Restart"
+msgid "Lock screen"
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:78
-msgid "Lock screen"
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79
+msgid "Suspend"
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:81
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83
+msgid "Restart"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87
 msgid "Power Off"
 msgstr ""
 
@@ -157,88 +161,88 @@ msgstr ""
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:147
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
 #, 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:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
 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:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 msgid "Show Log"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 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:222
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
 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:289
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
 msgid "Install Every Time"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:297
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 msgid "Install Only Once"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 msgid "The configuration of your additional software failed."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
 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:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:335
 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:341
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
 msgid ""
 "To do so, you need to run Tails from a USB stick installed using <i>Tails "
 "Installer</i>."
@@ -246,60 +250,61 @@ msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:359
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:363
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:365
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:368
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:156
 msgid "Remove"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:369
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #: config/chroot_local-includes/usr/local/bin/tor-browser:46
 msgid "Cancel"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:547
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:546
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:549
 msgid "This can take several minutes."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:559
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:562
 msgid "The installation of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:574
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:577
 msgid "Additional software installed successfully"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:594
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:597
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:596
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:599
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:607
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:606
 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:39
 msgid "Documentation"
 msgstr ""
 
@@ -327,34 +332,34 @@ msgstr ""
 msgid "Stop installing {package} automatically"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
 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:188
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:189
 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:198
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:199
 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:206
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:207
 msgid ""
 "To do so, install Tails on a USB stick using <a href=\"tails-installer."
 "desktop\">Tails Installer</a> and create a persistent storage."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:254
 msgid "[package not available]"
 msgstr ""
 
diff --git a/po/tr.po b/po/tr.po
index eab6f3b8da8a85f31550fcefbabea632a04ab5d6..161ec22ce2b6cb1a371f091e87f281f637552f62 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -20,7 +20,7 @@
 # Ozancan Karataş <ozancankaratas96@outlook.com>, 2015-2016
 # Tails_developers <tails@boum.org>, 2014
 # Tails_developers <tails@boum.org>, 2014
-# T. E. Kalayci <tekrei@fsfe.org>, 2017-2018
+# T. E. Kalayci <tekrei@gmail.com>, 2017-2018
 # Th3Kh3d1v3, 2018
 # Ümit Türk <zucchinitr@gmail.com>, 2013
 # Volkan Gezer <volkangezer@gmail.com>, 2013-2016
@@ -29,8 +29,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-14 21:20+0100\n"
-"PO-Revision-Date: 2019-01-26 04:22+0000\n"
+"POT-Creation-Date: 2019-04-06 14:00+0200\n"
+"PO-Revision-Date: 2019-04-07 05:12+0000\n"
 "Last-Translator: Kaya Zeren <kayazeren@gmail.com>\n"
 "Language-Team: Turkish (http://www.transifex.com/otf/torproject/language/"
 "tr/)\n"
@@ -99,8 +99,8 @@ msgstr ""
 "Şu yazılımlar Tails başlatılırken otomatik olarak kalıcı depolama "
 "alanınızdan kurulacak."
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:173
 msgid ""
 "To add more, install some software using <a href=\"synaptic.desktop"
 "\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop"
@@ -110,7 +110,7 @@ msgstr ""
 "Yöneticisi</a> ya da <a href=\"org.gnome.Terminal.desktop\">komut satırından "
 "APT kullanarak</a> başka yazılımlar kurun."
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:151
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
 msgid "_Create persistent storage"
 msgstr "_Kalıcı depolama oluştur"
 
@@ -178,14 +178,18 @@ msgstr ""
 " su komutu devre dışı bırakılmış. Lütfen yerine sudo komutunu kullanın."
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
-msgid "Restart"
-msgstr "Yeniden başlat"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:78
 msgid "Lock screen"
 msgstr "Ekranı kilitle"
 
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:81
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79
+msgid "Suspend"
+msgstr "Duraklat"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83
+msgid "Restart"
+msgstr "Yeniden başlat"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87
 msgid "Power Off"
 msgstr "Gücü Kapat"
 
@@ -218,7 +222,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:147
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
 #, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -227,7 +231,7 @@ msgstr ""
 "{details} Lütfen ek yazılım listenizi denetleyin ya da sorunu anlamak için "
 "sistem günlüğüne bakın."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
@@ -235,55 +239,55 @@ msgstr ""
 "Lütfen ek yazılım listenizi denetleyin ya da sorunu anlamak için sistem "
 "günlüğüne bakın."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 msgid "Show Log"
 msgstr "Günlüğü Görüntüle"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 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:222
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} ile {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
 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:289
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "Ek yazılımlarına {packages} eklensin mi?"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 "Tails başlatılırken otomatik olarak kalıcı depolama alanınızdan kurmak için."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
 msgid "Install Every Time"
 msgstr "Her Defasında Kurulsun"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:297
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 msgid "Install Only Once"
 msgstr "Yalnız Bir Kez Kurulsun"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 msgid "The configuration of your additional software failed."
 msgstr "Ek yazılımınız yapılandırılamadı."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -291,22 +295,22 @@ msgstr ""
 "Tails başlatılırken otomatik olarak kurulması için bir kalıcı depolama "
 "oluşturarak <b>Ek Yazılımlar</b> özelliğini etkinleştirmeniz gerekir."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
 msgid "Create Persistent Storage"
 msgstr "Kalıcı Depolama Oluştur"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:335
 msgid "Creating your persistent storage failed."
 msgstr "Kalıcı depolamanız 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:341
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
 #, 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:344
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
 msgid ""
 "To do so, you need to run Tails from a USB stick installed using <i>Tails "
 "Installer</i>."
@@ -316,50 +320,51 @@ msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:359
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "{packages} ek yazılımları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:363
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
 #, 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:365
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:368
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:156
 msgid "Remove"
 msgstr "Kaldır"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:369
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #: config/chroot_local-includes/usr/local/bin/tor-browser:46
 msgid "Cancel"
 msgstr "İptal"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:547
 msgid "Installing your additional software from persistent storage..."
 msgstr "Ek yazılımınız kalıcı depolama alanınızdan kuruluyor..."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:546
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:549
 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:559
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:562
 msgid "The installation of your additional software failed"
 msgstr "Ek yazılım kurulamadı"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:574
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:577
 msgid "Additional software installed successfully"
 msgstr "Ek yazılım kuruldu"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:594
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:597
 msgid "The check for upgrades of your additional software failed"
 msgstr "Ek yazılımınızın güncellemeleri denetlenemedi"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:596
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:599
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:607
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
@@ -367,11 +372,11 @@ msgstr ""
 "Lütfen ağ bağlantınızı denetleyin, Tails uygulamasını 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:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:606
 msgid "The upgrade of your additional software failed"
 msgstr "Ek yazılım 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:39
 msgid "Documentation"
 msgstr "Belgeler"
 
@@ -401,7 +406,7 @@ msgstr "Ek yazılım yapılandırması okunamadı"
 msgid "Stop installing {package} automatically"
 msgstr "{package} otomatik olarak kurulmasın"
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
 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 "
@@ -411,7 +416,7 @@ msgstr ""
 "<a href=\"org.gnome.Terminal.desktop\">komut satırından APT kullanarak</a> "
 "başka yazılımlar kurun."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:189
 msgid ""
 "To do so, unlock your persistent storage when starting Tails and install "
 "some software using <a href=\"synaptic.desktop\">Synaptic Package Manager</"
@@ -422,7 +427,7 @@ msgstr ""
 "\"org.gnome.Terminal.desktop\">komut satırından APT kullanarak</a> başka "
 "yazılımlar kurun."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:199
 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."
@@ -432,7 +437,7 @@ msgstr ""
 "Paket Yöneticisi</a> ya da <a href=\"org.gnome.Terminal.desktop\">komut "
 "satırından APT kullanarak</a> başka yazılımlar kurun."
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:207
 msgid ""
 "To do so, install Tails on a USB stick using <a href=\"tails-installer."
 "desktop\">Tails Installer</a> and create a persistent storage."
@@ -441,7 +446,7 @@ msgstr ""
 "kullanarak bir Tails uygulamasını bir USB belleğe kurun ve kalıcı bir depo "
 "ekleyin. "
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:254
 msgid "[package not available]"
 msgstr "[paket kullanılamıyor]"
 
diff --git a/po/uk.po b/po/uk.po
index 1856af82544323a0ff2a3af02c0dbbf5e8d26cac..4dac1a4082ac2e52f264dc22f05a1f42cc91669f 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -18,7 +18,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-14 21:20+0100\n"
+"POT-Creation-Date: 2019-04-06 14:00+0200\n"
 "PO-Revision-Date: 2018-04-23 12:35+0000\n"
 "Last-Translator: O Herenko <herenko@ex.ua>\n"
 "Language-Team: Ukrainian (http://www.transifex.com/otf/torproject/language/"
@@ -86,15 +86,15 @@ msgid ""
 "storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:173
 msgid ""
 "To add more, install some software using <a href=\"synaptic.desktop"
 "\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop"
 "\">APT on the command line</a>."
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:151
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
 msgid "_Create persistent storage"
 msgstr ""
 
@@ -152,14 +152,18 @@ msgid "su is disabled. Please use sudo instead."
 msgstr ""
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
-msgid "Restart"
-msgstr "Перезавантажити"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:78
 msgid "Lock screen"
 msgstr "Заблокувати екран"
 
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:81
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79
+msgid "Suspend"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83
+msgid "Restart"
+msgstr "Перезавантажити"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87
 msgid "Power Off"
 msgstr "Вимкнення живлення"
 
@@ -192,7 +196,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:147
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
 #, fuzzy, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -201,7 +205,7 @@ msgstr ""
 "Встановлення не вдалося. Перевірте додаткову конфігурацію програмного "
 "забезпечення або прочитайте системний журнал, щоб краще зрозуміти проблему."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
 #, fuzzy
 msgid ""
 "Please check your list of additional software or read the system log to "
@@ -210,77 +214,77 @@ msgstr ""
 "Встановлення не вдалося. Перевірте додаткову конфігурацію програмного "
 "забезпечення або прочитайте системний журнал, щоб краще зрозуміти проблему."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 msgid "Show Log"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 #, fuzzy
 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:222
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
 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:289
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
 msgid "Install Every Time"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:297
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 msgid "Install Only Once"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 #, fuzzy
 msgid "The configuration of your additional software failed."
 msgstr "Ваше оновлення додаткового програмного забезпечення не вдалося"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
 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:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:335
 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:341
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
 msgid ""
 "To do so, you need to run Tails from a USB stick installed using <i>Tails "
 "Installer</i>."
@@ -288,54 +292,55 @@ msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:359
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:363
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:365
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:368
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:156
 msgid "Remove"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:369
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #: config/chroot_local-includes/usr/local/bin/tor-browser:46
 msgid "Cancel"
 msgstr "Відмова"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:547
 #, fuzzy
 msgid "Installing your additional software from persistent storage..."
 msgstr "Ваше додаткове програмне забезпечення встановлено"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:546
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:549
 msgid "This can take several minutes."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:559
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:562
 #, fuzzy
 msgid "The installation of your additional software failed"
 msgstr "Ваше оновлення додаткового програмного забезпечення не вдалося"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:574
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:577
 #, fuzzy
 msgid "Additional software installed successfully"
 msgstr "Ваше додаткове програмне забезпечення встановлено"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:594
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:597
 #, fuzzy
 msgid "The check for upgrades of your additional software failed"
 msgstr "Ваше оновлення додаткового програмного забезпечення не вдалося"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:596
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:599
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:607
 #, fuzzy
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
@@ -345,12 +350,12 @@ msgstr ""
 "перевірте підключення до мережі, спробуйте перезавантажити Tails, або "
 "прочитайте логи, щоб краще зрозуміти проблему."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:606
 #, fuzzy
 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:39
 #, fuzzy
 msgid "Documentation"
 msgstr "Документація по Tails"
@@ -380,34 +385,34 @@ msgstr "Ваше додаткове встановлення не вдалося
 msgid "Stop installing {package} automatically"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
 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:188
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:189
 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:198
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:199
 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:206
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:207
 msgid ""
 "To do so, install Tails on a USB stick using <a href=\"tails-installer."
 "desktop\">Tails Installer</a> and create a persistent storage."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:254
 #, fuzzy
 msgid "[package not available]"
 msgstr "недоступно"
diff --git a/po/vi.po b/po/vi.po
index dbd25260b3dd003c43faf28f7952614064a8e572..b51ca737872d467a6788da275a0c5ef524eaa340 100644
--- a/po/vi.po
+++ b/po/vi.po
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-14 21:20+0100\n"
+"POT-Creation-Date: 2019-04-06 14:00+0200\n"
 "PO-Revision-Date: 2017-11-03 13:02+0000\n"
 "Last-Translator: Khanh Nguyen <nguyenduykhanh85@gmail.com>\n"
 "Language-Team: Vietnamese (http://www.transifex.com/otf/torproject/language/"
@@ -75,15 +75,15 @@ msgid ""
 "storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:173
 msgid ""
 "To add more, install some software using <a href=\"synaptic.desktop"
 "\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop"
 "\">APT on the command line</a>."
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:151
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
 msgid "_Create persistent storage"
 msgstr ""
 
@@ -141,14 +141,18 @@ msgid "su is disabled. Please use sudo instead."
 msgstr ""
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
-msgid "Restart"
-msgstr "Khởi động lại"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:78
 msgid "Lock screen"
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:81
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79
+msgid "Suspend"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83
+msgid "Restart"
+msgstr "Khởi động lại"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87
 msgid "Power Off"
 msgstr "Tắt nguồn"
 
@@ -181,7 +185,7 @@ 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:147
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
 #, fuzzy, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -191,81 +195,81 @@ msgstr ""
 "kết nối của bạn, cố gắng khởi động lại Tails, hoặc xem nhật ký hệ thống để "
 "hiểu rõ hơn vấn đề."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
 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:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 msgid "Show Log"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 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:222
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
 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:289
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
 #, fuzzy, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "Phần mềm thêm của bạn"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
 msgid "Install Every Time"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:297
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 msgid "Install Only Once"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 msgid "The configuration of your additional software failed."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
 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:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:335
 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:341
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
 msgid ""
 "To do so, you need to run Tails from a USB stick installed using <i>Tails "
 "Installer</i>."
@@ -273,51 +277,52 @@ msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:359
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
 #, fuzzy, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "Phần mềm thêm của bạn"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:363
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:365
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:368
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:156
 msgid "Remove"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:369
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #: config/chroot_local-includes/usr/local/bin/tor-browser:46
 msgid "Cancel"
 msgstr "Hủy bỏ"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:547
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:546
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:549
 msgid "This can take several minutes."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:559
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:562
 #, fuzzy
 msgid "The installation of your additional software failed"
 msgstr "Phần mềm thêm của bạn"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:574
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:577
 msgid "Additional software installed successfully"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:594
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:597
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:596
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:599
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:607
 #, fuzzy
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
@@ -327,12 +332,12 @@ msgstr ""
 "kết nối của bạn, cố gắng khởi động lại Tails, hoặc xem nhật ký hệ thống để "
 "hiểu rõ hơn vấn đề."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:606
 #, fuzzy
 msgid "The upgrade of your additional software failed"
 msgstr "Phần mềm thêm của bạn"
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:39
 #, fuzzy
 msgid "Documentation"
 msgstr "Tài liệu về Tails"
@@ -362,34 +367,34 @@ msgstr "Phần mềm thêm của bạn"
 msgid "Stop installing {package} automatically"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
 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:188
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:189
 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:198
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:199
 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:206
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:207
 msgid ""
 "To do so, install Tails on a USB stick using <a href=\"tails-installer."
 "desktop\">Tails Installer</a> and create a persistent storage."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:254
 #, fuzzy
 msgid "[package not available]"
 msgstr "không có sẵn"
diff --git a/po/zh.po b/po/zh.po
index a2bb3e7d7f5edc4f69706b81982239e43f5744e0..4e311ef9047a5e1ed8341d3c021d16a85ff11b23 100644
--- a/po/zh.po
+++ b/po/zh.po
@@ -57,7 +57,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-14 21:20+0100\n"
+"POT-Creation-Date: 2019-04-06 14:00+0200\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"
@@ -114,15 +114,15 @@ msgid ""
 "storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:173
 msgid ""
 "To add more, install some software using <a href=\"synaptic.desktop"
 "\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop"
 "\">APT on the command line</a>."
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:151
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
 msgid "_Create persistent storage"
 msgstr ""
 
@@ -177,14 +177,18 @@ msgid "su is disabled. Please use sudo instead."
 msgstr ""
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
-msgid "Restart"
+msgid "Lock screen"
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:78
-msgid "Lock screen"
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79
+msgid "Suspend"
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:81
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83
+msgid "Restart"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87
 msgid "Power Off"
 msgstr ""
 
@@ -215,88 +219,88 @@ msgstr ""
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:147
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
 #, 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:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
 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:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 msgid "Show Log"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 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:222
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
 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:289
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
 msgid "Install Every Time"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:297
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 msgid "Install Only Once"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 msgid "The configuration of your additional software failed."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
 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:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:335
 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:341
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
 msgid ""
 "To do so, you need to run Tails from a USB stick installed using <i>Tails "
 "Installer</i>."
@@ -304,60 +308,61 @@ msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:359
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
 #, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:363
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:365
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:368
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:156
 msgid "Remove"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:369
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #: config/chroot_local-includes/usr/local/bin/tor-browser:46
 msgid "Cancel"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:547
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:546
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:549
 msgid "This can take several minutes."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:559
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:562
 msgid "The installation of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:574
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:577
 msgid "Additional software installed successfully"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:594
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:597
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:596
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:599
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:607
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
 "to understand the problem."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:606
 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:39
 msgid "Documentation"
 msgstr ""
 
@@ -385,34 +390,34 @@ msgstr ""
 msgid "Stop installing {package} automatically"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
 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:188
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:189
 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:198
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:199
 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:206
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:207
 msgid ""
 "To do so, install Tails on a USB stick using <a href=\"tails-installer."
 "desktop\">Tails Installer</a> and create a persistent storage."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:254
 msgid "[package not available]"
 msgstr ""
 
diff --git a/po/zh_CN.po b/po/zh_CN.po
index bb90cbac5ee5906cb6e4c37b38a27240bc4fb2bd..7fa00196bd74977767bfbf0dd56bf51cfe6ac67c 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -9,6 +9,7 @@
 # Herman Gu <hkoe.academic@gmail.com>, 2018
 # bnw, 2014
 # Lafrenze Laurant, 2018
+# James David, 2019
 # Meng San, 2014
 # Lafrenze Laurant, 2018
 # leungsookfan <leung.sookfan@riseup.net>, 2014
@@ -18,14 +19,15 @@
 # Xiaolan <xiaolan@protonmail.ch>, 2014
 # YFdyh000 <yfdyh000@gmail.com>, 2016
 # YFdyh000 <yfdyh000@gmail.com>, 2013-2016
+# Zhui Shen <12231252@bjtu.edu.cn>, 2019
 # ヨイツの賢狼ホロ, 2018
 msgid ""
 msgstr ""
 "Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-14 21:20+0100\n"
-"PO-Revision-Date: 2019-01-11 14:12+0000\n"
-"Last-Translator: H Zeng <zhx@cnzhx.net>\n"
+"POT-Creation-Date: 2019-04-06 14:00+0200\n"
+"PO-Revision-Date: 2019-04-07 16:32+0000\n"
+"Last-Translator: Zhui Shen <12231252@bjtu.edu.cn>\n"
 "Language-Team: Chinese (China) (http://www.transifex.com/otf/torproject/"
 "language/zh_CN/)\n"
 "Language: zh_CN\n"
@@ -82,8 +84,8 @@ msgid ""
 "storage when starting Tails."
 msgstr "在 Tails 启动时会从持久存储中安装下列附加软件。"
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:173
 msgid ""
 "To add more, install some software using <a href=\"synaptic.desktop"
 "\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop"
@@ -92,7 +94,7 @@ msgstr ""
 "要添加更多附加软件,可以使用 <a href=\"synaptic.desktop\">新立得软件包管理器"
 "</a> 或<a href=\"org.gnome.Terminal.desktop\">通过终端使用 APT</a>。"
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:151
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
 msgid "_Create persistent storage"
 msgstr "_创建持久存储"
 
@@ -135,28 +137,39 @@ msgid ""
 "Renaming it to <i>keepassx.kdbx</i> would allow <i>KeePassX</i> to open it "
 "automatically in the future."
 msgstr ""
+"<b><big>您想重命名您的<i>KeePassX</i>数据库?</big></b>\n"
+"\n"
+"您的<i>KeePassX</i>数据库位于<i>永久</i>文件夹下:\n"
+"\n"
+"<i>${filename}</i>\n"
+"\n"
+"如果把它重命名为<i>keepassx.kdbx</i>,这样<i>KeePassX</i>以后会自动打开它。"
 
 #: config/chroot_local-includes/usr/local/bin/keepassx:25
 msgid "Rename"
-msgstr ""
+msgstr "重命名"
 
 #: config/chroot_local-includes/usr/local/bin/keepassx:26
 msgid "Keep current name"
-msgstr ""
+msgstr "保持当前名称"
 
 #: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
 msgid "su is disabled. Please use sudo instead."
-msgstr ""
+msgstr "su 无法使用。请用 sudo 来替代。"
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
-msgid "Restart"
-msgstr "重新启动"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:78
 msgid "Lock screen"
 msgstr "屏幕锁定"
 
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:81
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79
+msgid "Suspend"
+msgstr "暂停"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83
+msgid "Restart"
+msgstr "重新启动"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87
 msgid "Power Off"
 msgstr "关机"
 
@@ -189,67 +202,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:147
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
 #, 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:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
 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:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 msgid "Show Log"
 msgstr "显示日志"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 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:222
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr "{beginning} 和 {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
 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:289
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
 #, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "添加 {packages} 为附加软件?"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr "使它在每次启动 Tails 时从持久存储中安装。"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
 msgid "Install Every Time"
 msgstr "始终安装"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:297
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 msgid "Install Only Once"
 msgstr "仅安装一次"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 msgid "The configuration of your additional software failed."
 msgstr "配置附加软件失败。"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
 msgid ""
 "To install it automatically when starting Tails, you can create a persistent "
 "storage and activate the <b>Additional Software</b> feature."
@@ -257,22 +270,22 @@ msgstr ""
 "要在 Tails 每次启动时安装此软件,你可以创建一个持久存储并启动 <b>附加软件</b>"
 "功能。"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
 msgid "Create Persistent Storage"
 msgstr "创建持久存储"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:335
 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:341
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
 #, 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:344
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
 msgid ""
 "To do so, you need to run Tails from a USB stick installed using <i>Tails "
 "Installer</i>."
@@ -280,60 +293,61 @@ msgstr "要实现以上操作,你需要通过USB来运行<i>Tails Installer</i
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:359
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
 #, 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:363
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr "这将导致 {packages}的安装进程自动中止。"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:365
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:368
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:156
 msgid "Remove"
 msgstr "移除"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:369
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #: config/chroot_local-includes/usr/local/bin/tor-browser:46
 msgid "Cancel"
 msgstr "取消"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:547
 msgid "Installing your additional software from persistent storage..."
 msgstr "从持久存储中安装您的附加软件……"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:546
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:549
 msgid "This can take several minutes."
 msgstr "这可能会花费几分钟。"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:559
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:562
 msgid "The installation of your additional software failed"
 msgstr "附加软件安装失败。"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:574
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:577
 msgid "Additional software installed successfully"
 msgstr "附加软件安装成功。"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:594
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:597
 msgid "The check for upgrades of your additional software failed"
 msgstr "附加软件更新检查失败。"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:596
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:599
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:607
 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:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:606
 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:39
 msgid "Documentation"
 msgstr "文档"
 
@@ -361,7 +375,7 @@ msgstr "读取附加软件配置失败。"
 msgid "Stop installing {package} automatically"
 msgstr " {package} 安装自动中止。"
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
 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 "
@@ -370,7 +384,7 @@ msgstr ""
 "为实现以上操作,可以使用 <a href=\"synaptic.desktop\">新立得软件包管理器</a> "
 "或<a href=\"org.gnome.Terminal.desktop\">通过终端使用 APT</a>。"
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:189
 msgid ""
 "To do so, unlock your persistent storage when starting Tails and install "
 "some software using <a href=\"synaptic.desktop\">Synaptic Package Manager</"
@@ -380,7 +394,7 @@ msgstr ""
 "href=\"synaptic.desktop\">新立得软件包管理器</a> 或<a href=\"org.gnome."
 "Terminal.desktop\">通过终端使用 APT</a>。"
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:199
 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."
@@ -390,7 +404,7 @@ msgstr ""
 "desktop\">新立得软件包管理器</a> 或<a href=\"org.gnome.Terminal.desktop\">通"
 "过终端使用 APT</a>。"
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:207
 msgid ""
 "To do so, install Tails on a USB stick using <a href=\"tails-installer."
 "desktop\">Tails Installer</a> and create a persistent storage."
@@ -398,7 +412,7 @@ msgstr ""
 "为实现以上操作,在USB存储器上安装Tails时请使用<a href=\"tails-installer."
 "desktop\">Tails安装程序</a>并创建一个持久存储。"
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:254
 msgid "[package not available]"
 msgstr "[无法使用此原件包]"
 
diff --git a/po/zh_HK.po b/po/zh_HK.po
index c15fcd4267e9e442f5fa322789497cfae264f5f4..169ee2200c78590fa9612db9037464723496250a 100644
--- a/po/zh_HK.po
+++ b/po/zh_HK.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-14 21:20+0100\n"
+"POT-Creation-Date: 2019-04-06 14:00+0200\n"
 "PO-Revision-Date: 2017-05-26 14:47+0000\n"
 "Last-Translator: carolyn <carolyn@anhalt.org>\n"
 "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/otf/torproject/"
@@ -71,15 +71,15 @@ msgid ""
 "storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:173
 msgid ""
 "To add more, install some software using <a href=\"synaptic.desktop"
 "\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop"
 "\">APT on the command line</a>."
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:151
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
 msgid "_Create persistent storage"
 msgstr ""
 
@@ -136,14 +136,18 @@ msgid "su is disabled. Please use sudo instead."
 msgstr ""
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
-msgid "Restart"
-msgstr "重新啟動"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:78
 msgid "Lock screen"
 msgstr ""
 
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:81
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79
+msgid "Suspend"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83
+msgid "Restart"
+msgstr "重新啟動"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87
 msgid "Power Off"
 msgstr "關閉電源"
 
@@ -176,7 +180,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:147
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
 #, fuzzy, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
@@ -185,81 +189,81 @@ msgstr ""
 "升級失敗。可能由於網絡問題。請檢查網絡連線、嘗試將Tails重新啟動,或者讀取系統"
 "記錄,以便進一步澄清問題。"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
 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:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 msgid "Show Log"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 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:222
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
 #, python-brace-format
 msgid "{beginning} and {last}"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
 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:289
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
 #, fuzzy, python-brace-format
 msgid "Add {packages} to your additional software?"
 msgstr "其他軟件"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
 msgid "Install Every Time"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:297
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 msgid "Install Only Once"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 msgid "The configuration of your additional software failed."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
 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:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
 msgid "Create Persistent Storage"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:335
 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:341
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
 msgid ""
 "To do so, you need to run Tails from a USB stick installed using <i>Tails "
 "Installer</i>."
@@ -267,51 +271,52 @@ msgstr ""
 
 #. Translators: Don't translate {packages}, it's a placeholder and will be
 #. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:359
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
 #, fuzzy, python-brace-format
 msgid "Remove {packages} from your additional software?"
 msgstr "其他軟件"
 
 #. Translators: Don't translate {packages}, it's a placeholder
 #. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:363
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:365
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:368
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:156
 msgid "Remove"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:369
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #: config/chroot_local-includes/usr/local/bin/tor-browser:46
 msgid "Cancel"
 msgstr "取消"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:547
 msgid "Installing your additional software from persistent storage..."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:546
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:549
 msgid "This can take several minutes."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:559
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:562
 #, fuzzy
 msgid "The installation of your additional software failed"
 msgstr "其他軟件"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:574
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:577
 msgid "Additional software installed successfully"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:594
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:597
 msgid "The check for upgrades of your additional software failed"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:596
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:599
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:607
 #, fuzzy
 msgid ""
 "Please check your network connection, restart Tails, or read the system log "
@@ -320,12 +325,12 @@ msgstr ""
 "升級失敗。可能由於網絡問題。請檢查網絡連線、嘗試將Tails重新啟動,或者讀取系統"
 "記錄,以便進一步澄清問題。"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:606
 #, fuzzy
 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:39
 #, fuzzy
 msgid "Documentation"
 msgstr "Tails文件"
@@ -355,34 +360,34 @@ msgstr "其他軟件"
 msgid "Stop installing {package} automatically"
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
 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:188
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:189
 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:198
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:199
 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:206
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:207
 msgid ""
 "To do so, install Tails on a USB stick using <a href=\"tails-installer."
 "desktop\">Tails Installer</a> and create a persistent storage."
 msgstr ""
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:254
 #, fuzzy
 msgid "[package not available]"
 msgstr "唔可以揀"
diff --git a/po/zh_TW.po b/po/zh_TW.po
index 49c2a654814b831da234dacb65b125fb9b944599..bdb869778a3242a89c77323666b257976afc494c 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -9,19 +9,20 @@
 # Chi-Hsun Tsai, 2017-2018
 # danfong <danfong.hsieh@gmail.com>, 2014
 # danfong <danfong.hsieh@gmail.com>, 2014
+# Hsiu-Ming Chang <cges30901@gmail.com>, 2019
 # 大圈洋蔥, 2016
 # LNDDYL, 2014
 # Po-Chun Huang <aphroteus@gmail.com>, 2014
-# Wen-Gan Li <wgli@wgli.net>, 2015
+# wenganli, 2015
 # x4r <xatierlike@gmail.com>, 2015
 # LNDDYL, 2014
 msgid ""
 msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-14 21:20+0100\n"
-"PO-Revision-Date: 2018-01-09 08:08+0000\n"
-"Last-Translator: Chi-Hsun Tsai\n"
+"POT-Creation-Date: 2019-04-06 14:00+0200\n"
+"PO-Revision-Date: 2019-04-26 12:06+0000\n"
+"Last-Translator: Hsiu-Ming Chang <cges30901@gmail.com>\n"
 "Language-Team: Chinese (Taiwan) (http://www.transifex.com/otf/torproject/"
 "language/zh_TW/)\n"
 "Language: zh_TW\n"
@@ -70,25 +71,27 @@ msgstr ""
 msgid ""
 "You can install additional software automatically from your persistent "
 "storage when starting Tails."
-msgstr ""
+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 ""
+msgstr "在 Tails 啟動時會從永久性儲存裝置中安裝下列其他軟體。"
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:173
 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 套件管理程"
+"式</a>或<a href=\"org.gnome.Terminal.desktop\">透過終端機使用 APT</a>。"
 
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:151
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
 msgid "_Create persistent storage"
-msgstr ""
+msgstr "建立永久性儲存裝置(_C)"
 
 #: config/chroot_local-includes/usr/local/bin/electrum:57
 msgid "Persistence is disabled for Electrum"
@@ -129,28 +132,39 @@ msgid ""
 "Renaming it to <i>keepassx.kdbx</i> would allow <i>KeePassX</i> to open it "
 "automatically in the future."
 msgstr ""
+"<b><big>您想要重新命名您的<i>KeePassX</i>資料庫嗎?</big></b>\n"
+"\n"
+"在您的<i>永久</i>資料夾,您有 <i>KeePassX</i> 資料庫:\n"
+"\n"
+"<i>${filename}</i>\n"
+"\n"
+"將它重新命名為 <i>keepassx.kdbx</i> 可以讓 <i>KeePassX</i> 在未來自動開啟它。"
 
 #: config/chroot_local-includes/usr/local/bin/keepassx:25
 msgid "Rename"
-msgstr ""
+msgstr "重新命名"
 
 #: config/chroot_local-includes/usr/local/bin/keepassx:26
 msgid "Keep current name"
-msgstr ""
+msgstr "保持目前的時間"
 
 #: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
 msgid "su is disabled. Please use sudo instead."
-msgstr ""
+msgstr "su 已停用。請改用 sudo。"
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
+msgid "Lock screen"
+msgstr "鎖定螢幕"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79
+msgid "Suspend"
+msgstr "暫停"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83
 msgid "Restart"
 msgstr "重新啟動"
 
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:78
-msgid "Lock screen"
-msgstr ""
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:81
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87
 msgid "Power Off"
 msgstr "關閉電源"
 
@@ -183,159 +197,156 @@ msgstr "不可用"
 
 #. Translators: Don't translate {details}, it's a placeholder and will
 #. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:147
-#, fuzzy, python-brace-format
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:150
+#, python-brace-format
 msgid ""
 "{details} Please check your list of additional software or read the system "
 "log to understand the problem."
-msgstr ""
-"升級失敗。這可能是由於網路問題。請檢查您的網路連線,請嘗試將 Tails 重新啟動,"
-"或者讀取系統記錄,以便進一步釐清這個問題。"
+msgstr "{details} 請檢查您的其他軟體清單或閱讀系統記錄來了解問題的詳細資訊。"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:155
 msgid ""
 "Please check your list of additional software or read the system log to "
 "understand the problem."
-msgstr ""
+msgstr "請檢查您的其他軟體清單或閱讀系統記錄來了解問題的詳細資訊。"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 msgid "Show Log"
-msgstr ""
+msgstr "顯示日誌"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:156
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:159
 msgid "Configure"
-msgstr ""
+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:222
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:225
 #, python-brace-format
 msgid "{beginning} and {last}"
-msgstr ""
+msgstr "{beginning} 和 {last}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:226
 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:289
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
-#, fuzzy, python-brace-format
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#, python-brace-format
 msgid "Add {packages} to your additional software?"
-msgstr "您的其他軟體"
+msgstr "將 {packages} 加入到您的其他軟體嗎?"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:291
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
 msgid ""
 "To install it automatically from your persistent storage when starting Tails."
-msgstr ""
+msgstr "在 Tails 啟動時從永久性儲存裝置中安裝它。 "
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:293
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:296
 msgid "Install Every Time"
-msgstr ""
+msgstr "每次安裝"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:297
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:328
 msgid "Install Only Once"
-msgstr ""
+msgstr "只安裝一次"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:300
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:330
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:303
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:374
 msgid "The configuration of your additional software failed."
-msgstr ""
+msgstr "設定其他軟體失敗。"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:321
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
 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>其他軟體</b>功"
+"能。"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:327
 msgid "Create Persistent Storage"
-msgstr ""
+msgstr "建立永久性儲存裝置"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:335
 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:341
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
 #, python-brace-format
 msgid "You could install {packages} automatically when starting Tails"
-msgstr ""
+msgstr "你可以在 Tails 啟動時自動安裝 {packages}"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:344
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
 msgid ""
 "To do so, you need to run Tails from a USB stick installed using <i>Tails "
 "Installer</i>."
 msgstr ""
+"要實現以上操作,您需要使用從 <i>Tails 安裝程式</i>安裝的 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:359
-#, fuzzy, python-brace-format
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
+#, python-brace-format
 msgid "Remove {packages} from your additional software?"
-msgstr "您的其他軟體"
+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:363
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
 #, python-brace-format
 msgid "This will stop installing {packages} automatically."
-msgstr ""
+msgstr "這會停止自動安裝 {packages} 。"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:365
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:368
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:156
 msgid "Remove"
-msgstr ""
+msgstr "移除"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:369
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
 #: config/chroot_local-includes/usr/local/bin/tor-browser:46
 msgid "Cancel"
 msgstr "取消"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:547
 msgid "Installing your additional software from persistent storage..."
-msgstr ""
+msgstr "從永久性儲存裝置安裝您的其他軟體..."
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:546
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:549
 msgid "This can take several minutes."
-msgstr ""
+msgstr "這可能會花幾分鐘。"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:559
-#, fuzzy
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:562
 msgid "The installation of your additional software failed"
-msgstr "您的其他軟體"
+msgstr "安裝您的其他軟體失敗"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:574
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:577
 msgid "Additional software installed successfully"
-msgstr ""
+msgstr "其他軟體安裝成功"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:594
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:597
 msgid "The check for upgrades of your additional software failed"
-msgstr ""
+msgstr "檢查其他軟體的升級失敗"
 
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:596
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
-#, fuzzy
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:599
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:607
 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:603
-#, fuzzy
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:606
 msgid "The upgrade of your additional software failed"
-msgstr "您的其他軟體"
+msgstr "升級您的其他軟體失敗"
 
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
-#, fuzzy
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:39
 msgid "Documentation"
-msgstr "Tails 文件"
+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:96
@@ -343,56 +354,65 @@ msgstr "Tails 文件"
 msgid ""
 "Remove {package} from your additional software? This will stop installing "
 "the package automatically."
-msgstr ""
+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:107
 #, python-brace-format
 msgid "Failed to remove {pkg}"
-msgstr ""
+msgstr "無法移除 {pkg}"
 
 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
-#, fuzzy
 msgid "Failed to read additional software configuration"
-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:154
 #, python-brace-format
 msgid "Stop installing {package} automatically"
-msgstr ""
+msgstr "停止自動安裝 {package}"
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:180
 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 套件管理程式</"
+"a>或<a href=\"org.gnome.Terminal.desktop\">透過終端機使用 APT</a>安裝一些軟"
+"體。"
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:189
 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 套件管理程式</a>或<a href=\"org.gnome.Terminal."
+"desktop\">透過終端機使用 APT</a> 安裝一些軟體。"
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:199
 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 套件管理程式</a>或<a href=\"org.gnome.Terminal.desktop\">透過終端"
+"機使用 APT</a> 安裝一些軟體。"
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:207
 msgid ""
 "To do so, install Tails on a USB stick using <a href=\"tails-installer."
 "desktop\">Tails Installer</a> and create a persistent storage."
 msgstr ""
+"要實現以上操作,請使用 <a href=\"tails-installer.desktop\">Tails 安裝程式</a>"
+"在隨身碟上安裝 Tails ,並建立一個永久性儲存裝置。"
 
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
-#, fuzzy
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:254
 msgid "[package not available]"
-msgstr "不可用"
+msgstr "[套件不可用]"
 
 #: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:52
 msgid "Synchronizing the system's clock"
@@ -448,26 +468,25 @@ msgstr ""
 
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:110
 msgid "Lock Screen"
-msgstr ""
+msgstr "鎖定螢幕"
 
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:125
 msgid "Screen Locker"
-msgstr ""
+msgstr "螢幕鎖定器"
 
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:131
 msgid "Set up a password to unlock the screen."
-msgstr ""
+msgstr "設定解鎖螢幕的密碼。"
 
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:136
 msgid "Password"
-msgstr ""
+msgstr "密碼"
 
 #: config/chroot_local-includes/usr/local/bin/tails-screen-locker:142
 msgid "Confirm"
-msgstr ""
+msgstr "確認"
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:35
-#, fuzzy
 msgid ""
 "\"<b>Not enough memory available to check for upgrades.</b>\n"
 "\n"
@@ -479,7 +498,7 @@ msgid ""
 "Or do a manual upgrade.\n"
 "See https://tails.boum.org/doc/first_steps/upgrade#manual\""
 msgstr ""
-"<b>檢查升級時沒有足夠的記憶體可用。</b>\n"
+"「<b>檢查升級時沒有足夠的記憶體可用。</b>\n"
 "\n"
 "請確保該系統能滿足執行 Tails 的要求。\n"
 "請參閱 file:///usr/share/doc/tails/website/doc/about/requirements.en.html\n"
@@ -487,7 +506,7 @@ msgstr ""
 "請試著將 Tails 重新啟動後再次檢查升級。\n"
 "\n"
 "或手動執行升級。\n"
-"請參閱 https://tails.boum.org/doc/first_steps/upgrade#manual"
+"請參閱 https://tails.boum.org/doc/first_steps/upgrade#manual」"
 
 #: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:72
 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
@@ -535,11 +554,11 @@ msgstr "啟動洋蔥路由瀏覽器"
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/torstatus@tails.boum.org/extension.js:40
 msgid "Tor"
-msgstr ""
+msgstr "Tor"
 
 #: config/chroot_local-includes/usr/share/gnome-shell/extensions/torstatus@tails.boum.org/extension.js:55
 msgid "Open Onion Circuits"
-msgstr ""
+msgstr "開啟洋蔥迴路"
 
 #: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
 msgid "Do you really want to launch the Unsafe Browser?"
@@ -611,35 +630,35 @@ msgstr "無法開啟瀏覽器"
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
 #, 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.
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
 #, 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.
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
 #, python-brace-format
 msgid "{volume_size} Volume"
-msgstr ""
+msgstr "{volume_size} 加密區"
 
 #. Translators: Don't translate {volume_name}, it's a placeholder and
 #. will be replaced.
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
 #, python-brace-format
 msgid "{volume_name} (Read-Only)"
-msgstr ""
+msgstr "{volume_name}(唯讀)"
 
 #. Translators: Don't translate {partition_name} and {container_path}, they
 #. are placeholders and will be replaced.
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
 #, python-brace-format
 msgid "{partition_name} in {container_path}"
-msgstr ""
+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
@@ -647,14 +666,14 @@ msgstr ""
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
 #, 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.
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
 #, python-brace-format
 msgid "{partition_name} on {drive_name}"
-msgstr ""
+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
@@ -662,15 +681,15 @@ msgstr ""
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
 #, python-brace-format
 msgid "{volume_name} – {drive_name}"
-msgstr ""
+msgstr "{volume_name} – {drive_name}"
 
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
 msgid "Wrong passphrase or parameters"
-msgstr ""
+msgstr "密碼或參數錯誤"
 
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
 msgid "Error unlocking volume"
-msgstr ""
+msgstr "解鎖加密區時發生錯誤"
 
 #. Translators: Don't translate {volume_name} or {error_message},
 #. they are placeholder and will be replaced.
@@ -680,27 +699,29 @@ msgid ""
 "Couldn't unlock volume {volume_name}:\n"
 "{error_message}"
 msgstr ""
+"無法解鎖加密區 {volume_name}:\n"
+"{error_message}"
 
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
 msgid "No file containers added"
-msgstr ""
+msgstr "沒有加入檔案容器"
 
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:98
 msgid "No VeraCrypt devices detected"
-msgstr ""
+msgstr "沒有偵測到 VeraCrypt 裝置"
 
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:114
 msgid "Container already added"
-msgstr ""
+msgstr "容器已經加入"
 
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:115
 #, python-format
 msgid "The file container %s should already be listed."
-msgstr ""
+msgstr "檔案容器 %s 應該已經被列出。"
 
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:131
 msgid "Container opened read-only"
-msgstr ""
+msgstr "已經以唯讀模式開啟容器"
 
 #. Translators: Don't translate {path}, it's a placeholder  and will be replaced.
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
@@ -711,24 +732,26 @@ msgid ""
 "container.\n"
 "{error_message}"
 msgstr ""
+"檔案容器 {path} 無法以寫入模式開啟,將以唯讀模式開啟。您無法修改容器的內"
+"容。\n"
+"{error_message}"
 
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
 msgid "Error opening file"
-msgstr ""
+msgstr "開啟檔案時發生錯誤"
 
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
 msgid "Not a VeraCrypt container"
-msgstr ""
+msgstr "不是一個 VeraCrypt 容器"
 
 #: config/chroot_local-includes/usr/local/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 "檔案 %s 似乎不是一個 VeraCrypt 容器。"
 
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
-#, fuzzy
 msgid "Failed to add container"
-msgstr "無法設定瀏覽器"
+msgstr "無法加入容器"
 
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
 #, python-format
@@ -736,10 +759,11 @@ msgid ""
 "Could not add file container %s: Timeout while waiting for loop setup.Please "
 "try using the <i>Disks</i> application instead."
 msgstr ""
+"無法加入檔案容器 %s:等待 loop 設定時逾時。請試著改用<i>磁碟</i>應用程式。"
 
 #: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
 msgid "Choose File Container"
-msgstr ""
+msgstr "選擇檔案容器"
 
 #: ../config/chroot_local-includes/etc/skel/Desktop/Report_an_error.desktop.in.h:1
 msgid "Report an error"
@@ -776,22 +800,21 @@ msgstr "不安全的網頁瀏覽器"
 
 #: ../config/chroot_local-includes/usr/share/applications/unlock-veracrypt-volumes.desktop.in.h:1
 msgid "Unlock VeraCrypt Volumes"
-msgstr ""
+msgstr "解鎖 VeraCrypt 加密區"
 
 #: ../config/chroot_local-includes/usr/share/applications/unlock-veracrypt-volumes.desktop.in.h:2
 msgid "Mount VeraCrypt encrypted file containers and devices"
-msgstr ""
+msgstr "掛載 VeraCrypt 加密檔案容器和裝置"
 
 #: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1
-#, fuzzy
 msgid "Additional Software"
-msgstr "您的其他軟體"
+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 ""
+msgstr "設定在 Tails 啟動時從永久性儲存裝置中安裝的其他軟體"
 
 #: ../config/chroot_local-includes/usr/share/desktop-directories/Tails.directory.in.h:2
 msgid "Tails specific tools"
@@ -802,59 +825,45 @@ 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
-#, fuzzy
 msgid "Remove an additional software package"
-msgstr "您的其他軟體"
+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 ""
+msgstr "需要驗證來從其他軟體中移除套件 ($(command_line))"
 
 #: ../config/chroot_local-includes/usr/share/unlock-veracrypt-volumes/ui/main.ui.in:61
 msgid "File Containers"
-msgstr ""
+msgstr "檔案容器"
 
 #: ../config/chroot_local-includes/usr/share/unlock-veracrypt-volumes/ui/main.ui.in:80
 msgid "_Add"
-msgstr ""
+msgstr "加入(_A)"
 
 #: ../config/chroot_local-includes/usr/share/unlock-veracrypt-volumes/ui/main.ui.in:86
 msgid "Add a file container"
-msgstr ""
+msgstr "加入檔案容器"
 
 #: ../config/chroot_local-includes/usr/share/unlock-veracrypt-volumes/ui/main.ui.in:103
 msgid "Partitions and Drives"
-msgstr ""
+msgstr "分割區和磁碟"
 
 #: ../config/chroot_local-includes/usr/share/unlock-veracrypt-volumes/ui/main.ui.in:121
 msgid ""
 "This application is not affiliated with or endorsed by the VeraCrypt project "
 "or IDRIX."
-msgstr ""
+msgstr "本應用程式與 VeraCrypt 項目或 IDRIX 無關聯或認可。"
 
 #: ../config/chroot_local-includes/usr/share/unlock-veracrypt-volumes/ui/volume.ui.in:38
 msgid "Lock this volume"
-msgstr ""
+msgstr "鎖定此加密區"
 
 #: ../config/chroot_local-includes/usr/share/unlock-veracrypt-volumes/ui/volume.ui.in:61
 msgid "Detach this volume"
-msgstr ""
+msgstr "分離此加密區"
 
 #: ../config/chroot_local-includes/usr/local/share/mime/packages/unlock-veracrypt-volumes.xml.in.h:1
 msgid "TrueCrypt/VeraCrypt container"
-msgstr ""
-
-#~ msgid "The upgrade was successful."
-#~ msgstr "升級成功。"
-
-#~ msgid ""
-#~ "Both the host operating system and the virtualization software are able "
-#~ "to monitor what you are doing in Tails."
-#~ msgstr "主系統和虛擬化軟體都能夠監控您在 Tails 中做什麼。"
-
-#~ msgid ""
-#~ "NetworkManager passed us garbage data when trying to deduce the clearnet "
-#~ "DNS server."
-#~ msgstr "NetworkManager 通過我們的垃圾資料當試著減少 cleranet DNS server 時"
+msgstr "TrueCrypt/VeraCrypt 容器"
diff --git a/vagrant/provision/assets/build-tails b/vagrant/provision/assets/build-tails
index 7ead5cdb35b49b1a0d49a886428aeb4da94702f9..1a0d08307c2a5f26a62c9771287ba90a77aba444 100755
--- a/vagrant/provision/assets/build-tails
+++ b/vagrant/provision/assets/build-tails
@@ -138,7 +138,7 @@ if [ "${TAILS_PROXY_TYPE}" = "vmproxy" ]; then
     # of it is used there is 5G before each build, which should be
     # enough for any build, even if we have to download a complete set
     # of new packages for a new Debian release.
-    /usr/lib/apt-cacher-ng/acngtool shrink 10G -f || \
+    as_root_do /usr/lib/apt-cacher-ng/acngtool shrink 10G -f || \
         echo "The clean-up of apt-cacher-ng's cache failed: this is" \
              "not fatal and most likely just means that some disk" \
              "space could not be reclaimed -- in order to fix that" \
diff --git a/wiki/src/about/contact.de.po b/wiki/src/about/contact.de.po
index 308e1da6c53a32a87fd9252da760f8bc1a7abb4e..c2dfb3bcb420eeafa038549a054a91d12581c7d1 100644
--- a/wiki/src/about/contact.de.po
+++ b/wiki/src/about/contact.de.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
-"POT-Creation-Date: 2019-05-02 08:46+0000\n"
+"POT-Creation-Date: 2019-05-06 14:52+0200\n"
 "PO-Revision-Date: 2018-12-23 20:10+0100\n"
 "Last-Translator: spriver <spriver@autistici.org>\n"
 "Language-Team: \n"
@@ -38,8 +38,9 @@ msgid "[[!toc levels=2]]\n"
 msgstr "[[!toc levels=2]]\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Public mailing lists\n"
+#, fuzzy, no-wrap
+#| msgid "Public mailing lists\n"
+msgid "Public mailing lists"
 msgstr "Öffentliche Mailinglisten\n"
 
 #. type: Plain text
@@ -69,8 +70,9 @@ msgid "<a id=\"amnesia-news\"></a>\n"
 msgstr "<a id=\"amnesia-news\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "amnesia-news\n"
+#, fuzzy, no-wrap
+#| msgid "amnesia-news\n"
+msgid "amnesia-news"
 msgstr "amnesia-news\n"
 
 #. type: Plain text
@@ -131,8 +133,9 @@ msgid "<a id=\"tails-project\"></a>\n"
 msgstr "<a id=\"tails-project\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "tails-project\n"
+#, fuzzy, no-wrap
+#| msgid "tails-project\n"
+msgid "tails-project"
 msgstr "tails-project\n"
 
 #. type: Plain text
@@ -191,8 +194,9 @@ msgid "<a id=\"tails-dev\"></a>\n"
 msgstr "<a id=\"tails-dev\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "tails-dev\n"
+#, fuzzy, no-wrap
+#| msgid "tails-dev\n"
+msgid "tails-dev"
 msgstr "tails-dev\n"
 
 #. type: Plain text
@@ -252,8 +256,9 @@ msgid "<a id=\"tails-testers\"></a>\n"
 msgstr "<a id=\"tails-testers\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "tails-testers\n"
+#, fuzzy, no-wrap
+#| msgid "tails-testers\n"
+msgid "tails-testers"
 msgstr "tails-testers\n"
 
 #. type: Plain text
@@ -311,8 +316,9 @@ msgid "<a id=\"tails-ux\"></a>\n"
 msgstr "<a id=\"tails-ux\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "tails-ux\n"
+#, fuzzy, no-wrap
+#| msgid "tails-ux\n"
+msgid "tails-ux"
 msgstr "tails-ux\n"
 
 #. type: Plain text
@@ -370,8 +376,9 @@ msgid "<a id=\"tails-l10n\"></a>\n"
 msgstr "<a id=\"tails-l10n\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "tails-l10n\n"
+#, fuzzy, no-wrap
+#| msgid "tails-l10n\n"
+msgid "tails-l10n"
 msgstr "tails-l10n\n"
 
 #. type: Plain text
@@ -380,8 +387,9 @@ msgid "[[!inline pages=\"contribute/how/translate/tails-l10n.inline\" raw=\"yes\
 msgstr "[[!inline pages=\"contribute/how/translate/tails-l10n.inline\" raw=\"yes\" sort=\"age\"]]\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Private email addresses\n"
+#, fuzzy, no-wrap
+#| msgid "Private email addresses\n"
+msgid "Private email addresses"
 msgstr "Private E-Mail-Adressen\n"
 
 #. type: Plain text
@@ -390,8 +398,9 @@ msgid "<a id=\"tails-support-private\"></a>\n"
 msgstr "<a id=\"tails-support-private\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "tails-support-private\n"
+#, fuzzy, no-wrap
+#| msgid "tails-support-private\n"
+msgid "tails-support-private"
 msgstr "tails-support-private\n"
 
 #. type: Plain text
@@ -421,8 +430,9 @@ msgid "<a id=\"tails-press\"></a>\n"
 msgstr "<a id=\"tails-press\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "tails-press\n"
+#, fuzzy, no-wrap
+#| msgid "tails-press\n"
+msgid "tails-press"
 msgstr "tails-press\n"
 
 #. type: Plain text
@@ -449,13 +459,10 @@ msgid "<a id=\"tails-accounting\"></a>\n"
 msgstr "<a id=\"tails-accounting\"></a>\n"
 
 #. type: Plain text
-#, no-wrap
-msgid ""
-"tails-accounting\n"
-"-----------------\n"
-msgstr ""
-"tails-accounting\n"
-"-----------------\n"
+#, fuzzy
+#| msgid "tails-sysadmins\n"
+msgid "tails-accounting"
+msgstr "tails-sysadmins\n"
 
 #. type: Plain text
 #, no-wrap
@@ -479,7 +486,7 @@ msgstr "<a id=\"tails-accounting\"></a>\n"
 #. type: Title -
 #, fuzzy, no-wrap
 #| msgid "tails-sysadmins\n"
-msgid "tails-foundations\n"
+msgid "tails-foundations"
 msgstr "tails-sysadmins\n"
 
 #. type: Plain text
@@ -508,13 +515,10 @@ msgid "<a id=\"tails-mirrors\"></a>\n"
 msgstr "<a id=\"tails-mirrors\"></a>\n"
 
 #. type: Plain text
-#, no-wrap
-msgid ""
-"tails-mirrors\n"
-"-----------------\n"
-msgstr ""
-"tails-mirrors\n"
-"-----------------\n"
+#, fuzzy
+#| msgid "<a id=\"tails-mirrors\"></a>\n"
+msgid "tails-mirrors"
+msgstr "<a id=\"tails-mirrors\"></a>\n"
 
 #. type: Plain text
 #, no-wrap
@@ -535,8 +539,9 @@ msgid "<a id=\"tails-sysadmins\"></a>\n"
 msgstr "<a id=\"tails-sysadmins\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "tails-sysadmins\n"
+#, fuzzy, no-wrap
+#| msgid "tails-sysadmins\n"
+msgid "tails-sysadmins"
 msgstr "tails-sysadmins\n"
 
 #. type: Plain text
@@ -562,8 +567,9 @@ msgid "<a id=\"tails\"></a>\n"
 msgstr "<a id=\"tails\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "tails\n"
+#, fuzzy, no-wrap
+#| msgid "tails\n"
+msgid "tails"
 msgstr "tails\n"
 
 #. type: Plain text
@@ -587,8 +593,9 @@ msgid "<a id=\"chat\"></a>\n"
 msgstr "<a id=\"chat\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Chat rooms\n"
+#, fuzzy, no-wrap
+#| msgid "Chat rooms\n"
+msgid "Chat rooms"
 msgstr "Chaträume\n"
 
 #. type: Plain text
@@ -614,7 +621,7 @@ msgstr "<a id=\"tails\"></a>\n"
 #| msgid ""
 #| "tails-accounting\n"
 #| "-----------------\n"
-msgid "Legal representative\n"
+msgid "Legal representative"
 msgstr ""
 "tails-accounting\n"
 "-----------------\n"
@@ -633,6 +640,20 @@ msgid ""
 "</pre>\n"
 msgstr ""
 
+#~ msgid ""
+#~ "tails-accounting\n"
+#~ "-----------------\n"
+#~ msgstr ""
+#~ "tails-accounting\n"
+#~ "-----------------\n"
+
+#~ msgid ""
+#~ "tails-mirrors\n"
+#~ "-----------------\n"
+#~ msgstr ""
+#~ "tails-mirrors\n"
+#~ "-----------------\n"
+
 #~ msgid "<a id=\"tails-support\"></a>\n"
 #~ msgstr "<a id=\"tails-support\"></a>\n"
 
diff --git a/wiki/src/about/contact.es.po b/wiki/src/about/contact.es.po
index 96cccc36f3bfe7782f3952143b9ae8c239b4702c..0eff12d82c8cd5f794d0a7e9cc16512a59f2f834 100644
--- a/wiki/src/about/contact.es.po
+++ b/wiki/src/about/contact.es.po
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2019-05-02 08:46+0000\n"
+"POT-Creation-Date: 2019-05-06 14:52+0200\n"
 "PO-Revision-Date: 2018-12-23 20:09+0100\n"
 "Last-Translator: victorhck <victorhck@opensuse.org>\n"
 "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/"
@@ -39,8 +39,9 @@ msgid "[[!toc levels=2]]\n"
 msgstr "[[!toc levels=2]]\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Public mailing lists\n"
+#, fuzzy, no-wrap
+#| msgid "Public mailing lists\n"
+msgid "Public mailing lists"
 msgstr "Listas de correo públicas\n"
 
 #. type: Plain text
@@ -70,8 +71,9 @@ msgid "<a id=\"amnesia-news\"></a>\n"
 msgstr "<a id=\"amnesia-news\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "amnesia-news\n"
+#, fuzzy, no-wrap
+#| msgid "amnesia-news\n"
+msgid "amnesia-news"
 msgstr "amnesia-news\n"
 
 #. type: Plain text
@@ -131,8 +133,9 @@ msgid "<a id=\"tails-project\"></a>\n"
 msgstr "<a id=\"tails-project\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "tails-project\n"
+#, fuzzy, no-wrap
+#| msgid "tails-project\n"
+msgid "tails-project"
 msgstr "tails-project\n"
 
 #. type: Plain text
@@ -190,8 +193,9 @@ msgid "<a id=\"tails-dev\"></a>\n"
 msgstr "<a id=\"tails-dev\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "tails-dev\n"
+#, fuzzy, no-wrap
+#| msgid "tails-dev\n"
+msgid "tails-dev"
 msgstr "tails-dev\n"
 
 #. type: Plain text
@@ -251,8 +255,9 @@ msgid "<a id=\"tails-testers\"></a>\n"
 msgstr "<a id=\"tails-testers\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "tails-testers\n"
+#, fuzzy, no-wrap
+#| msgid "tails-testers\n"
+msgid "tails-testers"
 msgstr "tails-testers\n"
 
 #. type: Plain text
@@ -310,8 +315,9 @@ msgid "<a id=\"tails-ux\"></a>\n"
 msgstr "<a id=\"tails-ux\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "tails-ux\n"
+#, fuzzy, no-wrap
+#| msgid "tails-ux\n"
+msgid "tails-ux"
 msgstr "tails-ux\n"
 
 #. type: Plain text
@@ -369,8 +375,9 @@ msgid "<a id=\"tails-l10n\"></a>\n"
 msgstr "<a id=\"tails-l10n\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "tails-l10n\n"
+#, fuzzy, no-wrap
+#| msgid "tails-l10n\n"
+msgid "tails-l10n"
 msgstr "tails-l10n\n"
 
 #. type: Plain text
@@ -379,8 +386,9 @@ msgid "[[!inline pages=\"contribute/how/translate/tails-l10n.inline\" raw=\"yes\
 msgstr "[[!inline pages=\"contribute/how/translate/tails-l10n.inline.es\" raw=\"yes\"  sort=\"age\"]]\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Private email addresses\n"
+#, fuzzy, no-wrap
+#| msgid "Private email addresses\n"
+msgid "Private email addresses"
 msgstr "Direcciones de correo privadas\n"
 
 #. type: Plain text
@@ -389,8 +397,9 @@ msgid "<a id=\"tails-support-private\"></a>\n"
 msgstr "<a id=\"tails-support-private\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "tails-support-private\n"
+#, fuzzy, no-wrap
+#| msgid "tails-support-private\n"
+msgid "tails-support-private"
 msgstr "tails-support-private\n"
 
 #. type: Plain text
@@ -420,8 +429,9 @@ msgid "<a id=\"tails-press\"></a>\n"
 msgstr "<a id=\"tails-press\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "tails-press\n"
+#, fuzzy, no-wrap
+#| msgid "tails-press\n"
+msgid "tails-press"
 msgstr "tails-press\n"
 
 #. type: Plain text
@@ -448,13 +458,10 @@ msgid "<a id=\"tails-accounting\"></a>\n"
 msgstr "<a id=\"tails-accounting\"></a>\n"
 
 #. type: Plain text
-#, no-wrap
-msgid ""
-"tails-accounting\n"
-"-----------------\n"
-msgstr ""
-"tails-accounting\n"
-"-----------------\n"
+#, fuzzy
+#| msgid "tails-sysadmins\n"
+msgid "tails-accounting"
+msgstr "tails-sysadmins\n"
 
 #. type: Plain text
 #, no-wrap
@@ -478,7 +485,7 @@ msgstr "<a id=\"tails-accounting\"></a>\n"
 #. type: Title -
 #, fuzzy, no-wrap
 #| msgid "tails-sysadmins\n"
-msgid "tails-foundations\n"
+msgid "tails-foundations"
 msgstr "tails-sysadmins\n"
 
 #. type: Plain text
@@ -507,13 +514,10 @@ msgid "<a id=\"tails-mirrors\"></a>\n"
 msgstr "<a id=\"tails-mirrors\"></a>\n"
 
 #. type: Plain text
-#, no-wrap
-msgid ""
-"tails-mirrors\n"
-"-----------------\n"
-msgstr ""
-"tails-mirrors\n"
-"-----------------\n"
+#, fuzzy
+#| msgid "<a id=\"tails-mirrors\"></a>\n"
+msgid "tails-mirrors"
+msgstr "<a id=\"tails-mirrors\"></a>\n"
 
 #. type: Plain text
 #, no-wrap
@@ -534,8 +538,9 @@ msgid "<a id=\"tails-sysadmins\"></a>\n"
 msgstr "<a id=\"tails-sysadmins\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "tails-sysadmins\n"
+#, fuzzy, no-wrap
+#| msgid "tails-sysadmins\n"
+msgid "tails-sysadmins"
 msgstr "tails-sysadmins\n"
 
 #. type: Plain text
@@ -561,8 +566,9 @@ msgid "<a id=\"tails\"></a>\n"
 msgstr "<a id=\"tails\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "tails\n"
+#, fuzzy, no-wrap
+#| msgid "tails\n"
+msgid "tails"
 msgstr "tails\n"
 
 #. type: Plain text
@@ -586,8 +592,9 @@ msgid "<a id=\"chat\"></a>\n"
 msgstr "<a id=\"chat\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Chat rooms\n"
+#, fuzzy, no-wrap
+#| msgid "Chat rooms\n"
+msgid "Chat rooms"
 msgstr "Chat rooms\n"
 
 #. type: Plain text
@@ -613,7 +620,7 @@ msgstr "<a id=\"tails\"></a>\n"
 #| msgid ""
 #| "tails-accounting\n"
 #| "-----------------\n"
-msgid "Legal representative\n"
+msgid "Legal representative"
 msgstr ""
 "tails-accounting\n"
 "-----------------\n"
@@ -632,6 +639,20 @@ msgid ""
 "</pre>\n"
 msgstr ""
 
+#~ msgid ""
+#~ "tails-accounting\n"
+#~ "-----------------\n"
+#~ msgstr ""
+#~ "tails-accounting\n"
+#~ "-----------------\n"
+
+#~ msgid ""
+#~ "tails-mirrors\n"
+#~ "-----------------\n"
+#~ msgstr ""
+#~ "tails-mirrors\n"
+#~ "-----------------\n"
+
 #~ msgid "<a id=\"tails-support\"></a>\n"
 #~ msgstr "<a id=\"tails-support\"></a>\n"
 
diff --git a/wiki/src/about/contact.fa.po b/wiki/src/about/contact.fa.po
index 15decb0a0b86d2661d3ed3ed2fb2e517d6e4ac1b..8a9545546b04487a6ae429a92887d0d846db3806 100644
--- a/wiki/src/about/contact.fa.po
+++ b/wiki/src/about/contact.fa.po
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2019-05-02 08:46+0000\n"
+"POT-Creation-Date: 2019-05-06 14:52+0200\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"
@@ -37,7 +37,7 @@ msgstr ""
 
 #. type: Title =
 #, no-wrap
-msgid "Public mailing lists\n"
+msgid "Public mailing lists"
 msgstr ""
 
 #. type: Plain text
@@ -65,7 +65,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "amnesia-news\n"
+msgid "amnesia-news"
 msgstr ""
 
 #. type: Plain text
@@ -112,7 +112,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "tails-project\n"
+msgid "tails-project"
 msgstr ""
 
 #. type: Plain text
@@ -158,7 +158,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "tails-dev\n"
+msgid "tails-dev"
 msgstr ""
 
 #. type: Plain text
@@ -205,7 +205,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "tails-testers\n"
+msgid "tails-testers"
 msgstr ""
 
 #. type: Plain text
@@ -251,7 +251,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "tails-ux\n"
+msgid "tails-ux"
 msgstr ""
 
 #. type: Plain text
@@ -296,7 +296,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "tails-l10n\n"
+msgid "tails-l10n"
 msgstr ""
 
 #. type: Plain text
@@ -306,7 +306,7 @@ msgstr ""
 
 #. type: Title =
 #, no-wrap
-msgid "Private email addresses\n"
+msgid "Private email addresses"
 msgstr ""
 
 #. type: Plain text
@@ -316,7 +316,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "tails-support-private\n"
+msgid "tails-support-private"
 msgstr ""
 
 #. type: Plain text
@@ -343,7 +343,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "tails-press\n"
+msgid "tails-press"
 msgstr ""
 
 #. type: Plain text
@@ -365,10 +365,7 @@ msgid "<a id=\"tails-accounting\"></a>\n"
 msgstr ""
 
 #. type: Plain text
-#, no-wrap
-msgid ""
-"tails-accounting\n"
-"-----------------\n"
+msgid "tails-accounting"
 msgstr ""
 
 #. type: Plain text
@@ -389,7 +386,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "tails-foundations\n"
+msgid "tails-foundations"
 msgstr ""
 
 #. type: Plain text
@@ -412,10 +409,7 @@ msgid "<a id=\"tails-mirrors\"></a>\n"
 msgstr ""
 
 #. type: Plain text
-#, no-wrap
-msgid ""
-"tails-mirrors\n"
-"-----------------\n"
+msgid "tails-mirrors"
 msgstr ""
 
 #. type: Plain text
@@ -436,7 +430,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "tails-sysadmins\n"
+msgid "tails-sysadmins"
 msgstr ""
 
 #. type: Plain text
@@ -459,7 +453,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "tails\n"
+msgid "tails"
 msgstr ""
 
 #. type: Plain text
@@ -480,7 +474,7 @@ msgstr ""
 
 #. type: Title =
 #, no-wrap
-msgid "Chat rooms\n"
+msgid "Chat rooms"
 msgstr ""
 
 #. type: Plain text
@@ -497,7 +491,7 @@ msgstr ""
 
 #. type: Title =
 #, no-wrap
-msgid "Legal representative\n"
+msgid "Legal representative"
 msgstr ""
 
 #. type: Plain text
diff --git a/wiki/src/about/contact.fr.po b/wiki/src/about/contact.fr.po
index 08de7bcaf7179639c7a2a333c83cccba0f8b8821..04ab675a2ab5199b7af411dd6fa888c7d7eb56df 100644
--- a/wiki/src/about/contact.fr.po
+++ b/wiki/src/about/contact.fr.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: Tails\n"
-"POT-Creation-Date: 2019-05-02 08:46+0000\n"
+"POT-Creation-Date: 2019-05-06 14:52+0200\n"
 "PO-Revision-Date: 2018-12-23 20:08+0100\n"
 "Last-Translator: AtomiKe <tails@atomike.ninja>\n"
 "Language-Team: Tails translators <tails@boum.org>\n"
@@ -38,8 +38,9 @@ msgid "[[!toc levels=2]]\n"
 msgstr "[[!toc levels=2]]\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Public mailing lists\n"
+#, fuzzy, no-wrap
+#| msgid "Public mailing lists\n"
+msgid "Public mailing lists"
 msgstr "Listes email publiques\n"
 
 #. type: Plain text
@@ -69,8 +70,9 @@ msgid "<a id=\"amnesia-news\"></a>\n"
 msgstr "<a id=\"amnesia-news\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "amnesia-news\n"
+#, fuzzy, no-wrap
+#| msgid "amnesia-news\n"
+msgid "amnesia-news"
 msgstr "amnesia-news\n"
 
 #. type: Plain text
@@ -131,8 +133,9 @@ msgid "<a id=\"tails-project\"></a>\n"
 msgstr "<a id=\"tails-project\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "tails-project\n"
+#, fuzzy, no-wrap
+#| msgid "tails-project\n"
+msgid "tails-project"
 msgstr "tails-project\n"
 
 #. type: Plain text
@@ -190,8 +193,9 @@ msgid "<a id=\"tails-dev\"></a>\n"
 msgstr "<a id=\"tails-dev\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "tails-dev\n"
+#, fuzzy, no-wrap
+#| msgid "tails-dev\n"
+msgid "tails-dev"
 msgstr "tails-dev\n"
 
 #. type: Plain text
@@ -251,8 +255,9 @@ msgid "<a id=\"tails-testers\"></a>\n"
 msgstr "<a id=\"tails-testers\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "tails-testers\n"
+#, fuzzy, no-wrap
+#| msgid "tails-testers\n"
+msgid "tails-testers"
 msgstr "tails-testers\n"
 
 #. type: Plain text
@@ -310,8 +315,9 @@ msgid "<a id=\"tails-ux\"></a>\n"
 msgstr "<a id=\"tails-ux\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "tails-ux\n"
+#, fuzzy, no-wrap
+#| msgid "tails-ux\n"
+msgid "tails-ux"
 msgstr "tails-ux\n"
 
 #. type: Plain text
@@ -368,8 +374,9 @@ msgid "<a id=\"tails-l10n\"></a>\n"
 msgstr "<a id=\"tails-l10n\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "tails-l10n\n"
+#, fuzzy, no-wrap
+#| msgid "tails-l10n\n"
+msgid "tails-l10n"
 msgstr "tails-l10n\n"
 
 #. type: Plain text
@@ -378,8 +385,9 @@ msgid "[[!inline pages=\"contribute/how/translate/tails-l10n.inline\" raw=\"yes\
 msgstr "[[!inline pages=\"contribute/how/translate/tails-l10n.inline\" raw=\"yes\" sort=\"age\"]]\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Private email addresses\n"
+#, fuzzy, no-wrap
+#| msgid "Private email addresses\n"
+msgid "Private email addresses"
 msgstr "Adresses email privées\n"
 
 #. type: Plain text
@@ -388,8 +396,9 @@ msgid "<a id=\"tails-support-private\"></a>\n"
 msgstr "<a id=\"tails-support-private\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "tails-support-private\n"
+#, fuzzy, no-wrap
+#| msgid "tails-support-private\n"
+msgid "tails-support-private"
 msgstr "tails-support-private\n"
 
 #. type: Plain text
@@ -418,8 +427,9 @@ msgid "<a id=\"tails-press\"></a>\n"
 msgstr "<a id=\"tails-press\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "tails-press\n"
+#, fuzzy, no-wrap
+#| msgid "tails-press\n"
+msgid "tails-press"
 msgstr "tails-press\n"
 
 #. type: Plain text
@@ -445,13 +455,10 @@ msgid "<a id=\"tails-accounting\"></a>\n"
 msgstr "<a id=\"tails-accounting\"></a>\n"
 
 #. type: Plain text
-#, no-wrap
-msgid ""
-"tails-accounting\n"
-"-----------------\n"
-msgstr ""
-"tails-accounting\n"
-"-----------------\n"
+#, fuzzy
+#| msgid "tails-foundations\n"
+msgid "tails-accounting"
+msgstr "tails-foundations\n"
 
 #. type: Plain text
 #, no-wrap
@@ -472,8 +479,9 @@ msgid "<a id=\"tails-foundations\"></a>\n"
 msgstr "<a id=\"tails-foundations\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "tails-foundations\n"
+#, fuzzy, no-wrap
+#| msgid "tails-foundations\n"
+msgid "tails-foundations"
 msgstr "tails-foundations\n"
 
 #. type: Plain text
@@ -501,13 +509,10 @@ msgid "<a id=\"tails-mirrors\"></a>\n"
 msgstr "<a id=\"tails-mirrors\"></a>\n"
 
 #. type: Plain text
-#, no-wrap
-msgid ""
-"tails-mirrors\n"
-"-----------------\n"
-msgstr ""
-"tails-mirrors\n"
-"-----------------\n"
+#, fuzzy
+#| msgid "<a id=\"tails-mirrors\"></a>\n"
+msgid "tails-mirrors"
+msgstr "<a id=\"tails-mirrors\"></a>\n"
 
 #. type: Plain text
 #, no-wrap
@@ -528,8 +533,9 @@ msgid "<a id=\"tails-sysadmins\"></a>\n"
 msgstr "<a id=\"tails-sysadmins\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "tails-sysadmins\n"
+#, fuzzy, no-wrap
+#| msgid "tails-sysadmins\n"
+msgid "tails-sysadmins"
 msgstr "tails-sysadmins\n"
 
 #. type: Plain text
@@ -555,8 +561,9 @@ msgid "<a id=\"tails\"></a>\n"
 msgstr "<a id=\"tails\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "tails\n"
+#, fuzzy, no-wrap
+#| msgid "tails\n"
+msgid "tails"
 msgstr "tails\n"
 
 #. type: Plain text
@@ -579,8 +586,9 @@ msgid "<a id=\"chat\"></a>\n"
 msgstr "<a id=\"chat\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Chat rooms\n"
+#, fuzzy, no-wrap
+#| msgid "Chat rooms\n"
+msgid "Chat rooms"
 msgstr "Salons de discussion\n"
 
 #. type: Plain text
@@ -600,8 +608,9 @@ msgid "<a id=\"legal\"></a>\n"
 msgstr "<a id=\"legal\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Legal representative\n"
+#, fuzzy, no-wrap
+#| msgid "Legal representative\n"
+msgid "Legal representative"
 msgstr "Représentant légal\n"
 
 #. type: Plain text
@@ -627,6 +636,20 @@ msgstr ""
 "Handelsregister Berlin Charlottenburg, HRB 180673 B. CEO : Moritz Bartl.\n"
 "</pre>\n"
 
+#~ msgid ""
+#~ "tails-accounting\n"
+#~ "-----------------\n"
+#~ msgstr ""
+#~ "tails-accounting\n"
+#~ "-----------------\n"
+
+#~ msgid ""
+#~ "tails-mirrors\n"
+#~ "-----------------\n"
+#~ msgstr ""
+#~ "tails-mirrors\n"
+#~ "-----------------\n"
+
 #~ msgid "<a id=\"tails-support\"></a>\n"
 #~ msgstr "<a id=\"tails-support\"></a>\n"
 
diff --git a/wiki/src/about/contact.it.po b/wiki/src/about/contact.it.po
index d0f71cfae509d68514728ee9e8a485efc23760de..949eb6449db5426cb972a38651a7055cac122f47 100644
--- a/wiki/src/about/contact.it.po
+++ b/wiki/src/about/contact.it.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
-"POT-Creation-Date: 2019-05-02 08:46+0000\n"
+"POT-Creation-Date: 2019-05-06 14:52+0200\n"
 "PO-Revision-Date: 2018-12-23 20:11+0100\n"
 "Last-Translator: \n"
 "Language-Team: ita <transitails@inventati.org>\n"
@@ -37,8 +37,9 @@ msgid "[[!toc levels=2]]\n"
 msgstr "[[!toc levels=2]]\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Public mailing lists\n"
+#, fuzzy, no-wrap
+#| msgid "Public mailing lists\n"
+msgid "Public mailing lists"
 msgstr "Mailing list pubbliche\n"
 
 #. type: Plain text
@@ -68,8 +69,9 @@ msgid "<a id=\"amnesia-news\"></a>\n"
 msgstr "<a id=\"amnesia-news\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "amnesia-news\n"
+#, fuzzy, no-wrap
+#| msgid "amnesia-news\n"
+msgid "amnesia-news"
 msgstr "amnesia-news\n"
 
 #. type: Plain text
@@ -129,8 +131,9 @@ msgid "<a id=\"tails-project\"></a>\n"
 msgstr "<a id=\"tails-project\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "tails-project\n"
+#, fuzzy, no-wrap
+#| msgid "tails-project\n"
+msgid "tails-project"
 msgstr "tails-project\n"
 
 #. type: Plain text
@@ -188,8 +191,9 @@ msgid "<a id=\"tails-dev\"></a>\n"
 msgstr "<a id=\"tails-dev\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "tails-dev\n"
+#, fuzzy, no-wrap
+#| msgid "tails-dev\n"
+msgid "tails-dev"
 msgstr "tails-dev\n"
 
 #. type: Plain text
@@ -249,8 +253,9 @@ msgid "<a id=\"tails-testers\"></a>\n"
 msgstr "<a id=\"tails-testers\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "tails-testers\n"
+#, fuzzy, no-wrap
+#| msgid "tails-testers\n"
+msgid "tails-testers"
 msgstr "tails-testers\n"
 
 #. type: Plain text
@@ -308,8 +313,9 @@ msgid "<a id=\"tails-ux\"></a>\n"
 msgstr "<a id=\"tails-ux\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "tails-ux\n"
+#, fuzzy, no-wrap
+#| msgid "tails-ux\n"
+msgid "tails-ux"
 msgstr "tails-ux\n"
 
 #. type: Plain text
@@ -366,8 +372,9 @@ msgid "<a id=\"tails-l10n\"></a>\n"
 msgstr "<a id=\"tails-l10n\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "tails-l10n\n"
+#, fuzzy, no-wrap
+#| msgid "tails-l10n\n"
+msgid "tails-l10n"
 msgstr "tails-l10n\n"
 
 #. type: Plain text
@@ -376,8 +383,9 @@ msgid "[[!inline pages=\"contribute/how/translate/tails-l10n.inline\" raw=\"yes\
 msgstr "[[!inline pages=\"contribute/how/translate/tails-l10n.inline\" raw=\"yes\" sort=\"age\"]]\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Private email addresses\n"
+#, fuzzy, no-wrap
+#| msgid "Private email addresses\n"
+msgid "Private email addresses"
 msgstr "Indirizzi email privati\n"
 
 #. type: Plain text
@@ -386,8 +394,9 @@ msgid "<a id=\"tails-support-private\"></a>\n"
 msgstr "<a id=\"tails-support-private\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "tails-support-private\n"
+#, fuzzy, no-wrap
+#| msgid "tails-support-private\n"
+msgid "tails-support-private"
 msgstr "tails-support-private\n"
 
 #. type: Plain text
@@ -417,8 +426,9 @@ msgid "<a id=\"tails-press\"></a>\n"
 msgstr "<a id=\"tails-press\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "tails-press\n"
+#, fuzzy, no-wrap
+#| msgid "tails-press\n"
+msgid "tails-press"
 msgstr "tails-press\n"
 
 #. type: Plain text
@@ -445,13 +455,10 @@ msgid "<a id=\"tails-accounting\"></a>\n"
 msgstr "<a id=\"tails-accounting\"></a>\n"
 
 #. type: Plain text
-#, no-wrap
-msgid ""
-"tails-accounting\n"
-"-----------------\n"
-msgstr ""
-"tails-accounting\n"
-"-----------------\n"
+#, fuzzy
+#| msgid "tails-sysadmins\n"
+msgid "tails-accounting"
+msgstr "tails-sysadmins\n"
 
 #. type: Plain text
 #, no-wrap
@@ -475,7 +482,7 @@ msgstr "<a id=\"tails-accounting\"></a>\n"
 #. type: Title -
 #, fuzzy, no-wrap
 #| msgid "tails-sysadmins\n"
-msgid "tails-foundations\n"
+msgid "tails-foundations"
 msgstr "tails-sysadmins\n"
 
 #. type: Plain text
@@ -504,13 +511,10 @@ msgid "<a id=\"tails-mirrors\"></a>\n"
 msgstr "<a id=\"tails-mirrors\"></a>\n"
 
 #. type: Plain text
-#, no-wrap
-msgid ""
-"tails-mirrors\n"
-"-----------------\n"
-msgstr ""
-"tails-mirrors\n"
-"-----------------\n"
+#, fuzzy
+#| msgid "<a id=\"tails-mirrors\"></a>\n"
+msgid "tails-mirrors"
+msgstr "<a id=\"tails-mirrors\"></a>\n"
 
 #. type: Plain text
 #, no-wrap
@@ -531,8 +535,9 @@ msgid "<a id=\"tails-sysadmins\"></a>\n"
 msgstr "<a id=\"tails-sysadmins\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "tails-sysadmins\n"
+#, fuzzy, no-wrap
+#| msgid "tails-sysadmins\n"
+msgid "tails-sysadmins"
 msgstr "tails-sysadmins\n"
 
 #. type: Plain text
@@ -558,8 +563,9 @@ msgid "<a id=\"tails\"></a>\n"
 msgstr "<a id=\"tails\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "tails\n"
+#, fuzzy, no-wrap
+#| msgid "tails\n"
+msgid "tails"
 msgstr "tails\n"
 
 #. type: Plain text
@@ -584,8 +590,9 @@ msgid "<a id=\"chat\"></a>\n"
 msgstr "<a id=\"chat\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Chat rooms\n"
+#, fuzzy, no-wrap
+#| msgid "Chat rooms\n"
+msgid "Chat rooms"
 msgstr "Chat\n"
 
 #. type: Plain text
@@ -610,7 +617,7 @@ msgstr "<a id=\"tails\"></a>\n"
 #| msgid ""
 #| "tails-accounting\n"
 #| "-----------------\n"
-msgid "Legal representative\n"
+msgid "Legal representative"
 msgstr ""
 "tails-accounting\n"
 "-----------------\n"
@@ -628,3 +635,17 @@ msgid ""
 "Handelsregister Berlin Charlottenburg, HRB 180673 B. CEO: Moritz Bartl.\n"
 "</pre>\n"
 msgstr ""
+
+#~ msgid ""
+#~ "tails-accounting\n"
+#~ "-----------------\n"
+#~ msgstr ""
+#~ "tails-accounting\n"
+#~ "-----------------\n"
+
+#~ msgid ""
+#~ "tails-mirrors\n"
+#~ "-----------------\n"
+#~ msgstr ""
+#~ "tails-mirrors\n"
+#~ "-----------------\n"
diff --git a/wiki/src/about/contact.pt.po b/wiki/src/about/contact.pt.po
index e8e0ab1cc221b63f33f0ea873303f6b1623ba93b..e996c346669b15dd108f45de4bea25dc80eb0c35 100644
--- a/wiki/src/about/contact.pt.po
+++ b/wiki/src/about/contact.pt.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2019-05-02 08:46+0000\n"
+"POT-Creation-Date: 2019-05-06 14:52+0200\n"
 "PO-Revision-Date: 2018-12-23 20:11+0100\n"
 "Last-Translator: Tails translators <tails@boum.org>\n"
 "Language-Team: \n"
@@ -40,8 +40,9 @@ msgid "[[!toc levels=2]]\n"
 msgstr "[[!toc levels=2]]\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Public mailing lists\n"
+#, fuzzy, no-wrap
+#| msgid "Public mailing lists\n"
+msgid "Public mailing lists"
 msgstr "Listas de e-mail públicas\n"
 
 #. type: Plain text
@@ -71,8 +72,9 @@ msgid "<a id=\"amnesia-news\"></a>\n"
 msgstr "<a id=\"amnesia-news\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "amnesia-news\n"
+#, fuzzy, no-wrap
+#| msgid "amnesia-news\n"
+msgid "amnesia-news"
 msgstr "amnesia-news\n"
 
 #. type: Plain text
@@ -132,8 +134,9 @@ msgid "<a id=\"tails-project\"></a>\n"
 msgstr "<a id=\"tails-project\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "tails-project\n"
+#, fuzzy, no-wrap
+#| msgid "tails-project\n"
+msgid "tails-project"
 msgstr "tails-project\n"
 
 #. type: Plain text
@@ -191,8 +194,9 @@ msgid "<a id=\"tails-dev\"></a>\n"
 msgstr "<a id=\"tails-dev\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "tails-dev\n"
+#, fuzzy, no-wrap
+#| msgid "tails-dev\n"
+msgid "tails-dev"
 msgstr "tails-dev\n"
 
 #. type: Plain text
@@ -252,8 +256,9 @@ msgid "<a id=\"tails-testers\"></a>\n"
 msgstr "<a id=\"tails-testers\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "tails-testers\n"
+#, fuzzy, no-wrap
+#| msgid "tails-testers\n"
+msgid "tails-testers"
 msgstr "tails-testers\n"
 
 #. type: Plain text
@@ -311,8 +316,9 @@ msgid "<a id=\"tails-ux\"></a>\n"
 msgstr "<a id=\"tails-ux\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "tails-ux\n"
+#, fuzzy, no-wrap
+#| msgid "tails-ux\n"
+msgid "tails-ux"
 msgstr "tails-ux\n"
 
 #. type: Plain text
@@ -370,8 +376,9 @@ msgid "<a id=\"tails-l10n\"></a>\n"
 msgstr "<a id=\"tails-l10n\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "tails-l10n\n"
+#, fuzzy, no-wrap
+#| msgid "tails-l10n\n"
+msgid "tails-l10n"
 msgstr "tails-l10n\n"
 
 #. type: Plain text
@@ -380,8 +387,9 @@ msgid "[[!inline pages=\"contribute/how/translate/tails-l10n.inline\" raw=\"yes\
 msgstr "[[!inline pages=\"contribute/how/translate/tails-l10n.inline\" raw=\"yes\" sort=\"age\"]]\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Private email addresses\n"
+#, fuzzy, no-wrap
+#| msgid "Private email addresses\n"
+msgid "Private email addresses"
 msgstr "Endereços de e-mail privados\n"
 
 #. type: Plain text
@@ -390,8 +398,9 @@ msgid "<a id=\"tails-support-private\"></a>\n"
 msgstr "<a id=\"tails-support-private\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "tails-support-private\n"
+#, fuzzy, no-wrap
+#| msgid "tails-support-private\n"
+msgid "tails-support-private"
 msgstr "tails-support-private\n"
 
 #. type: Plain text
@@ -419,8 +428,9 @@ msgid "<a id=\"tails-press\"></a>\n"
 msgstr "<a id=\"tails-press\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "tails-press\n"
+#, fuzzy, no-wrap
+#| msgid "tails-press\n"
+msgid "tails-press"
 msgstr "tails-press\n"
 
 #. type: Plain text
@@ -445,13 +455,10 @@ msgid "<a id=\"tails-accounting\"></a>\n"
 msgstr "<a id=\"tails-accounting\"></a>\n"
 
 #. type: Plain text
-#, no-wrap
-msgid ""
-"tails-accounting\n"
-"-----------------\n"
-msgstr ""
-"tails-accounting\n"
-"-----------------\n"
+#, fuzzy
+#| msgid "tails-sysadmins\n"
+msgid "tails-accounting"
+msgstr "tails-sysadmins\n"
 
 #. type: Plain text
 #, no-wrap
@@ -475,7 +482,7 @@ msgstr "<a id=\"tails-accounting\"></a>\n"
 #. type: Title -
 #, fuzzy, no-wrap
 #| msgid "tails-sysadmins\n"
-msgid "tails-foundations\n"
+msgid "tails-foundations"
 msgstr "tails-sysadmins\n"
 
 #. type: Plain text
@@ -504,13 +511,10 @@ msgid "<a id=\"tails-mirrors\"></a>\n"
 msgstr "<a id=\"tails-mirrors\"></a>\n"
 
 #. type: Plain text
-#, no-wrap
-msgid ""
-"tails-mirrors\n"
-"-----------------\n"
-msgstr ""
-"tails-mirrors\n"
-"-----------------\n"
+#, fuzzy
+#| msgid "<a id=\"tails-mirrors\"></a>\n"
+msgid "tails-mirrors"
+msgstr "<a id=\"tails-mirrors\"></a>\n"
 
 #. type: Plain text
 #, no-wrap
@@ -531,8 +535,9 @@ msgid "<a id=\"tails-sysadmins\"></a>\n"
 msgstr "<a id=\"tails-sysadmins\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "tails-sysadmins\n"
+#, fuzzy, no-wrap
+#| msgid "tails-sysadmins\n"
+msgid "tails-sysadmins"
 msgstr "tails-sysadmins\n"
 
 #. type: Plain text
@@ -558,8 +563,9 @@ msgid "<a id=\"tails\"></a>\n"
 msgstr "<a id=\"tails\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "tails\n"
+#, fuzzy, no-wrap
+#| msgid "tails\n"
+msgid "tails"
 msgstr "tails\n"
 
 #. type: Plain text
@@ -583,8 +589,9 @@ msgid "<a id=\"chat\"></a>\n"
 msgstr "<a id=\"chat\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Chat rooms\n"
+#, fuzzy, no-wrap
+#| msgid "Chat rooms\n"
+msgid "Chat rooms"
 msgstr "Bate papo\n"
 
 #. type: Plain text
@@ -610,7 +617,7 @@ msgstr "<a id=\"tails\"></a>\n"
 #| msgid ""
 #| "tails-accounting\n"
 #| "-----------------\n"
-msgid "Legal representative\n"
+msgid "Legal representative"
 msgstr ""
 "tails-accounting\n"
 "-----------------\n"
@@ -628,3 +635,17 @@ msgid ""
 "Handelsregister Berlin Charlottenburg, HRB 180673 B. CEO: Moritz Bartl.\n"
 "</pre>\n"
 msgstr ""
+
+#~ msgid ""
+#~ "tails-accounting\n"
+#~ "-----------------\n"
+#~ msgstr ""
+#~ "tails-accounting\n"
+#~ "-----------------\n"
+
+#~ msgid ""
+#~ "tails-mirrors\n"
+#~ "-----------------\n"
+#~ msgstr ""
+#~ "tails-mirrors\n"
+#~ "-----------------\n"
diff --git a/wiki/src/blueprint/logo.mdwn b/wiki/src/blueprint/logo.mdwn
index ba8963377138f5069b969230a8050d96d38c7de2..28cd056147e116602b88aaae17fbb42d61781d4c 100644
--- a/wiki/src/blueprint/logo.mdwn
+++ b/wiki/src/blueprint/logo.mdwn
@@ -16,7 +16,7 @@ requirements.
 Andrew
 ======
 
-[[!img andrew.png link="no" class="margin"]]
+[[!img andrew.png link="no" class="top-margin"]]
 
 - [Complete concept with other proposals](https://labs.riseup.net/code/attachments/download/362/andrew-concept.pdf)
 
@@ -25,7 +25,7 @@ Andrew
 Carmie
 ======
 
-[[!img carmie.png link="no" class="margin"]]
+[[!img carmie.png link="no" class="top-margin"]]
 
 - [SVG source](https://labs.riseup.net/code/attachments/download/364/carmie-1.svg)
 
@@ -34,10 +34,10 @@ Carmie
 Gareth
 ======
 
-[[!img gareth-red.png link="no" class="margin"]]
+[[!img gareth-red.png link="no" class="top-margin"]]
 
-[[!img gareth-purple.png link="no" class="margin"]]
-[[!img gareth-yellow.png link="no" class="margin"]]
+[[!img gareth-purple.png link="no" class="top-margin"]]
+[[!img gareth-yellow.png link="no" class="top-margin"]]
 
 - [PDF source](https://labs.riseup.net/code/attachments/download/390/gareth.pdf)
 - License: any license we choose
@@ -45,7 +45,7 @@ Gareth
 Edu
 ===
 
-[[!img edu.png link="no" class="margin"]]
+[[!img edu.png link="no" class="top-margin"]]
 
 - [Original JPEG image](https://labs.riseup.net/code/attachments/download/402/edake.jpg)
 
@@ -56,8 +56,8 @@ Edu
 Constantin
 ==========
 
-[[!img constantin-1.png link="no" class="margin"]]
-[[!img constantin-2.png link="no" class="margin"]]
+[[!img constantin-1.png link="no" class="top-margin"]]
+[[!img constantin-2.png link="no" class="top-margin"]]
 
 - [Original SVG image with gradient](https://labs.riseup.net/code/attachments/download/423/constantin-1.svg)
 - [Original SVG image without gradient](https://labs.riseup.net/code/attachments/download/424/constantin-2.svg)
@@ -66,7 +66,7 @@ Constantin
 Leonardo
 ========
 
-[[!img leonardo.png link="no" class="margin"]]
+[[!img leonardo.png link="no" class="top-margin"]]
 
 - [Original proposal with additional materials](https://mediacru.sh/eccdae994629)
 - License: [Creative Commons Attribution 4.0 International](https://creativecommons.org/licenses/by/4.0/)
@@ -74,7 +74,7 @@ Leonardo
 Maurice
 =======
 
-[[!img maurice.png link="no" class="margin"]]
+[[!img maurice.png link="no" class="top-margin"]]
 
 - [Original SVG version](https://labs.riseup.net/code/attachments/download/422/maurice.svg)
 - Color could be changed but should be a fairly 'sharp' tone.
@@ -85,7 +85,7 @@ Maurice
 Jared
 =====
 
-[[!img jared.png link="no" class="margin"]]
+[[!img jared.png link="no" class="top-margin"]]
 
 - [Original proposal with sketches](http://protoplanetoid.tumblr.com/post/79465306252/tails-logo-sketches-from-start-to-finish-start-in)
 - License: GPLV3
@@ -93,7 +93,7 @@ Jared
 Nobody
 ======
 
-[[!img nobody.png link="no" class="margin"]]
+[[!img nobody.png link="no" class="top-margin"]]
 
 - [Original proposal with additional materials](https://mega.co.nz/#F!ql5jjKwA!3ejwnrsWTumcGA4JPgxg1Q)
 - [USB trident logo in public domain according to Wikipedia](https://commons.wikimedia.org/wiki/File:USB_Icon.svg)
@@ -102,7 +102,7 @@ Nobody
 Jesse
 =====
 
-[[!img jesse.png link="no" class="margin"]]
+[[!img jesse.png link="no" class="top-margin"]]
 
 - [Original proposal](http://s12.postimg.org/k4na2rv0d/Tails_maze.jpg)
 
@@ -111,7 +111,7 @@ Jesse
 DrBit, racoon
 =============
 
-[[!img drbit-racoon.png link="no" class="margin"]]
+[[!img drbit-racoon.png link="no" class="top-margin"]]
 
 - Original proposal
   [racoon](https://mega.co.nz/#!1c9VmSqY!SRUFfGHFhl-1xUd9hmZI0fTJ8RwFVfQIrbrF1BbrILE)
@@ -121,7 +121,7 @@ DrBit, racoon
 DrBit, skunk
 ============
 
-[[!img drbit-skunk.png link="no" class="margin"]]
+[[!img drbit-skunk.png link="no" class="top-margin"]]
 
 - Original proposal
   [racoon](https://mega.co.nz/#!1c9VmSqY!SRUFfGHFhl-1xUd9hmZI0fTJ8RwFVfQIrbrF1BbrILE)
@@ -133,11 +133,11 @@ DrBit, skunk
 Tchou
 =====
 
-[[!img tchou.png link="no" class="margin"]]
-[[!img tchou-inverted.png link="no" class="margin"]]
+[[!img tchou.png link="no" class="top-margin"]]
+[[!img tchou-inverted.png link="no" class="top-margin"]]
 
-[[!img tchou-icon.png link="no" class="margin"]]
-[[!img tchou-t.png link="no" class="margin"]]
+[[!img tchou-icon.png link="no" class="top-margin"]]
+[[!img tchou-t.png link="no" class="top-margin"]]
 
 - [Original proposal with alternative versions](http://tails-logo.nursit.com/the-proposal)
 - License: [Creative Commons Attribution 4.0 International](https://creativecommons.org/licenses/by/4.0/)
@@ -145,7 +145,7 @@ Tchou
 Tom
 ===
 
-[[!img tom.png link="no" class="margin"]]
+[[!img tom.png link="no" class="top-margin"]]
 
 - [Original proposal with alternative versions](https://mega.co.nz/#F!Z4hhlRKL!fp5UKraTi_kzzF3S9CBd6w)
 - License: GPL-3+
@@ -153,7 +153,7 @@ Tom
 David
 =====
 
-[[!img david.png link="no" class="margin"]]
+[[!img david.png link="no" class="top-margin"]]
 
 - Original proposal with additional materials:
   - [logo only](https://secure.flickr.com/photos/24394019@N00/13449492975/)
@@ -168,7 +168,7 @@ David
 John
 ====
 
-[[!img john.png link="no" class="margin"]]
+[[!img john.png link="no" class="top-margin"]]
 
 - [Original proposal with 55 alternate versions](http://upfile.mobi/422737)
 
@@ -181,7 +181,7 @@ John
 Joe
 ===
 
-[[!img joe.png link="no" class="margin"]]
+[[!img joe.png link="no" class="top-margin"]]
 
 - [Original proposal with additional materials](https://www.dropbox.com/sh/vldyzpvjsynnnfc/YA1EexwrY)
 - [Abstract about the logo](https://mailman.boum.org/pipermail/tails-dev/2014-March/005284.html)
@@ -193,8 +193,8 @@ Joe
 Renato
 ======
 
-[[!img renato-1.png link="no" class="margin"]]
-[[!img renato-2.png link="no" class="margin"]]
+[[!img renato-1.png link="no" class="top-margin"]]
+[[!img renato-2.png link="no" class="top-margin"]]
 
 - [Original proposal with alternative versions](https://www.dropbox.com/sh/kq4ghl6010unu0x/KcnDWMUpgW)
 - License: [Creative Commons Attribution Share Alike](https://creativecommons.org/licenses/by-sa/4.0/)
@@ -202,8 +202,8 @@ Renato
 Sara
 ====
 
-[[!img sara.png link="no" class="margin"]]
-[[!img sara-monochrome.png link="no" class="margin"]]
+[[!img sara.png link="no" class="top-margin"]]
+[[!img sara-monochrome.png link="no" class="top-margin"]]
 
 - [Original proposal with additional materials](http://imgur.com/3EUElYg)
 - License: [Creative Commons Attribution](https://creativecommons.org/licenses/by/4.0/)
@@ -211,7 +211,7 @@ Sara
 Juan
 ====
 
-[[!img juan.png link="no" class="margin"]]
+[[!img juan.png link="no" class="top-margin"]]
 
 - [Original proposal](https://mailman.boum.org/pipermail/tails-dev/2014-March/005339.html)
 
@@ -221,7 +221,7 @@ Juan
 Stephanie, fluke
 ================
 
-[[!img stephanie-fluke.png link="no" class="margin"]]
+[[!img stephanie-fluke.png link="no" class="top-margin"]]
 
 - [Original proposal with additional materials](http://opposight.de/public/tails-logo-sketches.tar.bz2)
 - License: [Creative Commons Attribution Non Commercial Share Alike](https://creativecommons.org/licenses/by-nc-sa/4.0/)
@@ -229,8 +229,8 @@ Stephanie, fluke
 Stephanie, dolphin
 ==================
 
-[[!img stephanie-dolphin-1.png link="no" class="margin"]]
-[[!img stephanie-dolphin-2.png link="no" class="margin"]]
+[[!img stephanie-dolphin-1.png link="no" class="top-margin"]]
+[[!img stephanie-dolphin-2.png link="no" class="top-margin"]]
 
 - [Original proposal with additional materials](http://opposight.de/public/tails-logo-sketches.tar.bz2)
 - License: [Creative Commons Attribution Non Commercial Share Alike](https://creativecommons.org/licenses/by-nc-sa/4.0/)
@@ -238,8 +238,8 @@ Stephanie, dolphin
 Micky
 =====
 
-[[!img micky-colorful.png link="no" class="margin"]]
-[[!img micky-simple.png link="no" class="margin"]]
+[[!img micky-colorful.png link="no" class="top-margin"]]
+[[!img micky-simple.png link="no" class="top-margin"]]
 
 - Original proposals:
   - [colorful version](http://crystal-cults.tumblr.com/image/81242203722)
@@ -249,7 +249,7 @@ Micky
 Esperal
 =======
 
-[[!img esperal.png link="no" class="margin"]]
+[[!img esperal.png link="no" class="top-margin"]]
 - [Original proposal with additional materials](https://secure.flickr.com/photos/121865988@N03/)
 - The author can create more color variations.
 - License: GPLV3
@@ -257,7 +257,7 @@ Esperal
 MewChan, walking cat
 ====================
 
-[[!img mewchan-walking.png link="no" class="margin"]]
+[[!img mewchan-walking.png link="no" class="top-margin"]]
 
 - TODO: Clarify license.
 
@@ -266,14 +266,14 @@ MewChan, walking cat
 MewChan, hiding cat
 ===================
 
-[[!img mewchan-hiding.png link="no" class="margin"]]
+[[!img mewchan-hiding.png link="no" class="top-margin"]]
 
 - TODO: Clarify license.
 
 Anon404
 =======
 
-[[!img anon404-white.png link="no" class="margin"]]
+[[!img anon404-white.png link="no" class="top-margin"]]
 [[!img anon404.png link="no"]]
 
 - Original proposals:
@@ -286,8 +286,8 @@ Anon404
 Boishal
 =======
 
-[[!img boishal-1.png link="no" class="margin"]]
-[[!img boishal-2.png link="no" class="margin"]]
+[[!img boishal-1.png link="no" class="top-margin"]]
+[[!img boishal-2.png link="no" class="top-margin"]]
 
 - [Original proposal](https://www.dropbox.com/sh/0uye114ry4rilhn/5viqGRdhMR?lst)
 - License: GPLV3
@@ -295,28 +295,28 @@ Boishal
 Hector, word
 ============
 
-[[!img hector-word.png link="no" class="margin"]]
+[[!img hector-word.png link="no" class="top-margin"]]
 
 - License: GPLV3
 
 Hector, man
 ===========
 
-[[!img hector-man.png link="no" class="margin"]]
+[[!img hector-man.png link="no" class="top-margin"]]
 
 - License: GPLV3
 
 Hector, woman
 =============
 
-[[!img hector-woman.png link="no" class="margin"]]
+[[!img hector-woman.png link="no" class="top-margin"]]
 
 - License: GPLV3
 
 Luigi
 =====
 
-[[!img luigi.png link="no" class="margin"]]
+[[!img luigi.png link="no" class="top-margin"]]
 
 - [Original proposal](http://imgur.com/a/8OwQv)
 - License: [Creative Commons Attribution Share Alike](https://creativecommons.org/licenses/by-sa/4.0/)
@@ -327,7 +327,7 @@ Luigi
 Christopher
 ===========
 
-[[!img christopher.png link="no" class="margin"]]
+[[!img christopher.png link="no" class="top-margin"]]
 
 - [Original proposal with alternative materials](http://onegreatthing.com/tails/)
 
@@ -336,8 +336,8 @@ Christopher
 Design007
 =========
 
-[[!img design007-logo.png link="no" class="margin"]]
-[[!img design007.png link="no" class="margin"]]
+[[!img design007-logo.png link="no" class="top-margin"]]
+[[!img design007.png link="no" class="top-margin"]]
 
 - [Original proposal with alternative materials](https://img.bi/#!5TzSQsc!MOWocY4YCQuyLdWzdW4Jbm26ybt1DwBjgo6J1Osd)
 
@@ -347,15 +347,15 @@ Design007
 Ketchup66
 =========
 
-[[!img ketchup66.png link="no" class="margin"]]
+[[!img ketchup66.png link="no" class="top-margin"]]
 - [Original proposal with explanation](http://imgur.com/EP100wZ)
 - License: GPLV3
 
 Osiris
 ======
 
-[[!img osiris-2.png link="no" class="margin"]]
-[[!img osiris-1.png link="no" class="margin"]]
+[[!img osiris-2.png link="no" class="top-margin"]]
+[[!img osiris-1.png link="no" class="top-margin"]]
 
 - [Original proposal](http://imgur.com/a/TQ2hH)
 - License: GPLV3
diff --git a/wiki/src/contribute/design.mdwn b/wiki/src/contribute/design.mdwn
index ad15938792ffbbd320ffa287ae460e6691f2ad1a..d098bf06528911dec72d8d5c3f1ddeb45844312d 100644
--- a/wiki/src/contribute/design.mdwn
+++ b/wiki/src/contribute/design.mdwn
@@ -584,7 +584,7 @@ order to make users more comfortable with the PELD, and also to
 educate users about specific risks and non-intuitive situations that
 may affect their anonymity on the Internet.
 
-#### 2.6.4.1 Internationalization
+#### 2.6.4.1 Internationalization and localization
 
 The user MUST be able to easily select his or her language of
 preference among a great number of widespread ones. User applications
@@ -737,15 +737,48 @@ kernel security feature than the stock Debian kernel.
 
 See [[doc/about/features]].
 
-## 3.3 Internationalization
+## 3.3 Localization
+
+### 3.3.1 Best supported (Tier-1) languages
+
+The set of best supported languages is the union of:
+
+ - Languages proposed on our website
+ - Languages that make Tails understandable by a majority of the
+   population of the top 10 countries of either
+    - [directly-connecting Tor clients](https://metrics.torproject.org/userstats-relay-table.html)
+	- [Tor clients connecting via bridges](https://metrics.torproject.org/userstats-bridge-table.html)
+
+As of 2019-03-23, the resulting list is:
+
+ - Arabic (ar)
+ - German (de)
+ - English (en)
+ - Spanish (es)
+ - Farsi (fa)
+ - French (fr)
+ - Hindi (hi)
+ - Indonesian (id)
+ - Italian (it)
+ - Portuguese (pt-BR)
+ - Russian (ru)
+ - Turkish (tr)
+ - Simplified Chinese (zh-CN)
+
+### 3.3.2 Locales and spell checking
 
 Tails ships, as is, localization files provided by the installed
-Debian packages. All available Tor Browser localization packages
-are installed. Spell checking software and data is installed for the
-set of best supported languages; it is usable at least is Tor Browser,
-LibreOffice and gedit.
+Debian packages.
+
+Additionally, Tails installs by default:
+
+ - All available Tor Browser localization packages
+ - For each Tier-1 language, when available in Debian:
+   - Spell checking dictionaries (usable at least in Tor Browser,
+     LibreOffice and gedit)
+   - Localization packages for LibreOffice and Thunderbird
 
-### 3.3.1 Input methods
+### 3.3.3 Input methods
 
 Tails ships with IBus and a few engines (Anthy for Japanese, Pinyin
 and Bopomofo for Chinese, and Hangul for Korean).
diff --git a/wiki/src/contribute/design/memory_erasure.mdwn b/wiki/src/contribute/design/memory_erasure.mdwn
index f125d256dc4ccf06dfd98e4729514937e9ca77c2..1956bc0b4545b55399b71bc27212c9f8db33d10d 100644
--- a/wiki/src/contribute/design/memory_erasure.mdwn
+++ b/wiki/src/contribute/design/memory_erasure.mdwn
@@ -62,12 +62,19 @@ boot time, that brutally invokes the memory erasure process, bypassing
 other system shutdown scripts, when this medium happens to be
 physically removed.
 
+Note that the `udev-watchdog` is disabled while the system is suspended to RAM,
+in order to avoid a race condition when resuming from suspend, which used to
+occasionally trigger the emergency shutdown (see [[!tails_ticket 11729]]).
+This means that the memory erasure process is not triggered if the boot
+medium is removed while the system is suspended.
+
 - [[!tails_gitweb config/chroot_local-includes/usr/local/lib/udev-watchdog-wrapper]]
 - [[!tails_gitweb config/chroot_local-includes/usr/src/udev-watchdog.c]]
 - [[!tails_gitweb config/chroot_local-hooks/52-udev-watchdog]]
 - [[!tails_gitweb config/chroot_local-includes/lib/systemd/system/tails-shutdown-on-media-removal.service]]
 - [[!tails_gitweb config/chroot_local-hooks/52-update-rc.d]]
 - [[!tails_gitweb config/chroot_local-includes/lib/systemd/system/gdm.service.d/restart.conf]]
+- [[!tails_gitweb config/chroot_local-includes/lib/systemd/system-sleep/toggle-tails-shutdown-on-media-removal.sh]]
 
 #### Making sure needed files are available
 
diff --git a/wiki/src/contribute/release_process/test.mdwn b/wiki/src/contribute/release_process/test.mdwn
index 68a4b546606663fca740f19300d11dc4f0408a96..7025a795b4c1bf2a5aefdac92f3935148b55e05e 100644
--- a/wiki/src/contribute/release_process/test.mdwn
+++ b/wiki/src/contribute/release_process/test.mdwn
@@ -372,11 +372,11 @@ You *really* have to reboot between each language.
 
 ## Spellchecking
 
-To see which among the supported locales there should be no
+To see which among the supported locales there should be a
 spellchecker, run this in a Tails Git checkout of the commit the
 release under testing was built from:
 
-    git grep NO_SPELLCHECKER_LOCALES= config/chroot_local-hooks/11-localize_browser
+    git grep -E '^hunspell' config/chroot_local-packageslists/tails-common.list
 
 Then do the follow in the same Tor Browser session running in the
 `en_US.UTF-8` locale (or whatever locale you are most comfortable
diff --git a/wiki/src/doc/advanced_topics/virtualization/virt-manager.de.po b/wiki/src/doc/advanced_topics/virtualization/virt-manager.de.po
index c28adace3bd0418c8c83a231c7e13b6dbb2171b1..5ba7cfdb27605b7bc65596b674539239ef4c3dc5 100644
--- a/wiki/src/doc/advanced_topics/virtualization/virt-manager.de.po
+++ b/wiki/src/doc/advanced_topics/virtualization/virt-manager.de.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
-"POT-Creation-Date: 2019-04-12 12:00+0000\n"
+"POT-Creation-Date: 2019-05-06 14:52+0200\n"
 "PO-Revision-Date: 2017-02-16 11:30+0100\n"
 "Last-Translator: Tails translators <tails@boum.org>\n"
 "Language-Team: \n"
@@ -75,8 +75,9 @@ msgid "<p>The following instructions have been tested on Debian Stretch.</p>\n"
 msgstr "<p>Die nachfolgenden Anweisungen wurden unter Debian Stretch getestet.</p>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Terminology\n"
+#, fuzzy, no-wrap
+#| msgid "Terminology\n"
+msgid "Terminology"
 msgstr "Begrifflichkeiten\n"
 
 #. type: Plain text
@@ -139,8 +140,9 @@ msgid "<a id=\"iso\"></a>\n"
 msgstr "<a id=\"iso\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Installation\n"
+#, fuzzy, no-wrap
+#| msgid "Installation\n"
+msgid "Installation"
 msgstr "Installation\n"
 
 #. type: Plain text
@@ -164,8 +166,9 @@ msgid "    sudo apt install virt-manager libvirt-bin qemu-kvm\n"
 msgstr "    sudo apt install virt-manager libvirt-bin qemu-kvm\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Running Tails from an ISO image\n"
+#, fuzzy, no-wrap
+#| msgid "Running Tails from an ISO image\n"
+msgid "Running Tails from an ISO image"
 msgstr "Tails von einem ISO-Image aus benutzen\n"
 
 #. type: Bullet: '1. '
@@ -292,7 +295,7 @@ msgstr "<a id=\"usb\"></a>\n"
 #. type: Title =
 #, fuzzy, no-wrap
 #| msgid "Running Tails from an ISO image\n"
-msgid "Running Tails from a USB image\n"
+msgid "Running Tails from a USB image"
 msgstr "Tails von einem ISO-Image aus benutzen\n"
 
 #. type: Plain text
@@ -414,7 +417,7 @@ msgstr "<a id=\"usb\"></a>\n"
 #. type: Title =
 #, fuzzy, no-wrap
 #| msgid "Running Tails from a USB stick or SD card\n"
-msgid "Running Tails from a USB stick\n"
+msgid "Running Tails from a USB stick"
 msgstr "Tails von einem USB-Stick oder einer SD-Karte aus benutzen\n"
 
 #. type: Plain text
diff --git a/wiki/src/doc/advanced_topics/virtualization/virt-manager.es.po b/wiki/src/doc/advanced_topics/virtualization/virt-manager.es.po
index 92f2d2023380c04fa6333546abdd3739e07fcc83..51265ef20081b857920eff1c20a8e0d48a51eb64 100644
--- a/wiki/src/doc/advanced_topics/virtualization/virt-manager.es.po
+++ b/wiki/src/doc/advanced_topics/virtualization/virt-manager.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: 2019-04-12 12:00+0000\n"
+"POT-Creation-Date: 2019-05-06 14:52+0200\n"
 "PO-Revision-Date: 2018-05-24 20:31+0000\n"
 "Last-Translator: emmapeel <emma.peel@riseup.net>\n"
 "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/"
@@ -67,8 +67,9 @@ msgid "<p>The following instructions have been tested on Debian Stretch.</p>\n"
 msgstr "<p>Las instrucciones siguientes han sido probadas en Debian Stretch.</p>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Terminology\n"
+#, fuzzy, no-wrap
+#| msgid "Terminology\n"
+msgid "Terminology"
 msgstr "Terminología\n"
 
 #. type: Plain text
@@ -116,8 +117,9 @@ msgid "<a id=\"iso\"></a>\n"
 msgstr "<a id=\"iso\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Installation\n"
+#, fuzzy, no-wrap
+#| msgid "Installation\n"
+msgid "Installation"
 msgstr "Instalación\n"
 
 #. type: Plain text
@@ -139,8 +141,9 @@ msgid "    sudo apt install virt-manager libvirt-bin qemu-kvm\n"
 msgstr ""
 
 #. type: Title =
-#, no-wrap
-msgid "Running Tails from an ISO image\n"
+#, fuzzy, no-wrap
+#| msgid "Running Tails from an ISO image\n"
+msgid "Running Tails from an ISO image"
 msgstr "Ejecutar Tails desde una imagen ISO\n"
 
 #. type: Bullet: '1. '
@@ -242,7 +245,7 @@ msgstr "<a id=\"usb\"></a>\n"
 #. type: Title =
 #, fuzzy, no-wrap
 #| msgid "Running Tails from an ISO image\n"
-msgid "Running Tails from a USB image\n"
+msgid "Running Tails from a USB image"
 msgstr "Ejecutar Tails desde una imagen ISO\n"
 
 #. type: Plain text
@@ -347,9 +350,10 @@ msgid "<a id=\"usb\"></a>\n"
 msgstr "<a id=\"usb\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Running Tails from a USB stick\n"
-msgstr ""
+#, fuzzy, no-wrap
+#| msgid "Running Tails from an ISO image\n"
+msgid "Running Tails from a USB stick"
+msgstr "Ejecutar Tails desde una imagen ISO\n"
 
 #. type: Plain text
 msgid ""
diff --git a/wiki/src/doc/advanced_topics/virtualization/virt-manager.fa.po b/wiki/src/doc/advanced_topics/virtualization/virt-manager.fa.po
index c242b24d120887111deb6daab3708b29bee57403..deb2aa70be486999f1c0138a061d70361a9cc155 100644
--- a/wiki/src/doc/advanced_topics/virtualization/virt-manager.fa.po
+++ b/wiki/src/doc/advanced_topics/virtualization/virt-manager.fa.po
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2019-04-12 12:00+0000\n"
+"POT-Creation-Date: 2019-05-06 14:52+0200\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"
@@ -66,7 +66,7 @@ msgstr ""
 
 #. type: Title =
 #, no-wrap
-msgid "Terminology\n"
+msgid "Terminology"
 msgstr ""
 
 #. type: Plain text
@@ -115,7 +115,7 @@ msgstr ""
 
 #. type: Title =
 #, no-wrap
-msgid "Installation\n"
+msgid "Installation"
 msgstr ""
 
 #. type: Plain text
@@ -138,7 +138,7 @@ msgstr ""
 
 #. type: Title =
 #, no-wrap
-msgid "Running Tails from an ISO image\n"
+msgid "Running Tails from an ISO image"
 msgstr ""
 
 #. type: Bullet: '1. '
@@ -234,7 +234,7 @@ msgstr ""
 
 #. type: Title =
 #, no-wrap
-msgid "Running Tails from a USB image\n"
+msgid "Running Tails from a USB image"
 msgstr ""
 
 #. type: Plain text
@@ -340,7 +340,7 @@ msgstr ""
 
 #. type: Title =
 #, no-wrap
-msgid "Running Tails from a USB stick\n"
+msgid "Running Tails from a USB stick"
 msgstr ""
 
 #. type: Plain text
diff --git a/wiki/src/doc/advanced_topics/virtualization/virt-manager.fr.po b/wiki/src/doc/advanced_topics/virtualization/virt-manager.fr.po
index 56608839ded8b0757f709f73574b29ea9db1a048..d092fa15a46e5aa81171693ad204e902acb3fba2 100644
--- a/wiki/src/doc/advanced_topics/virtualization/virt-manager.fr.po
+++ b/wiki/src/doc/advanced_topics/virtualization/virt-manager.fr.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: Tails\n"
-"POT-Creation-Date: 2019-04-12 12:00+0000\n"
+"POT-Creation-Date: 2019-05-06 14:52+0200\n"
 "PO-Revision-Date: 2018-05-01 12:56+0000\n"
 "Last-Translator: \n"
 "Language-Team: Tails translators <tails@boum.org>\n"
@@ -76,8 +76,9 @@ msgid "<p>The following instructions have been tested on Debian Stretch.</p>\n"
 msgstr "<p>Les instructions suivantes ont été testées avec Debian Stretch.</p>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Terminology\n"
+#, fuzzy, no-wrap
+#| msgid "Terminology\n"
+msgid "Terminology"
 msgstr "Terminologie\n"
 
 #. type: Plain text
@@ -140,8 +141,9 @@ msgid "<a id=\"iso\"></a>\n"
 msgstr "<a id=\"iso\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Installation\n"
+#, fuzzy, no-wrap
+#| msgid "Installation\n"
+msgid "Installation"
 msgstr "Installation\n"
 
 #. type: Plain text
@@ -165,8 +167,9 @@ msgid "    sudo apt install virt-manager libvirt-bin qemu-kvm\n"
 msgstr "    sudo apt install virt-manager libvirt-bin qemu-kvm\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Running Tails from an ISO image\n"
+#, fuzzy, no-wrap
+#| msgid "Running Tails from an ISO image\n"
+msgid "Running Tails from an ISO image"
 msgstr "Lancer Tails depuis une image ISO\n"
 
 #. type: Bullet: '1. '
@@ -293,7 +296,7 @@ msgstr "<a id=\"usb\"></a>\n"
 #. type: Title =
 #, fuzzy, no-wrap
 #| msgid "Running Tails from an ISO image\n"
-msgid "Running Tails from a USB image\n"
+msgid "Running Tails from a USB image"
 msgstr "Lancer Tails depuis une image ISO\n"
 
 #. type: Plain text
@@ -413,8 +416,9 @@ msgid "<a id=\"usb\"></a>\n"
 msgstr "<a id=\"usb\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Running Tails from a USB stick\n"
+#, fuzzy, no-wrap
+#| msgid "Running Tails from a USB stick\n"
+msgid "Running Tails from a USB stick"
 msgstr "Lancer Tails depuis une clé USB\n"
 
 #. type: Plain text
diff --git a/wiki/src/doc/advanced_topics/virtualization/virt-manager.it.po b/wiki/src/doc/advanced_topics/virtualization/virt-manager.it.po
index 7789f91173e4e76820fe72a3d664d35e55c8f9cb..562b6ae623ad7a0e86a985b8bc994f801ca1958c 100644
--- a/wiki/src/doc/advanced_topics/virtualization/virt-manager.it.po
+++ b/wiki/src/doc/advanced_topics/virtualization/virt-manager.it.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2019-04-12 12:00+0000\n"
+"POT-Creation-Date: 2019-05-06 14:52+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: ita <transitails@inventati.org>\n"
@@ -65,7 +65,7 @@ msgstr ""
 
 #. type: Title =
 #, no-wrap
-msgid "Terminology\n"
+msgid "Terminology"
 msgstr ""
 
 #. type: Plain text
@@ -114,7 +114,7 @@ msgstr ""
 
 #. type: Title =
 #, no-wrap
-msgid "Installation\n"
+msgid "Installation"
 msgstr ""
 
 #. type: Plain text
@@ -137,7 +137,7 @@ msgstr ""
 
 #. type: Title =
 #, no-wrap
-msgid "Running Tails from an ISO image\n"
+msgid "Running Tails from an ISO image"
 msgstr ""
 
 #. type: Bullet: '1. '
@@ -233,7 +233,7 @@ msgstr ""
 
 #. type: Title =
 #, no-wrap
-msgid "Running Tails from a USB image\n"
+msgid "Running Tails from a USB image"
 msgstr ""
 
 #. type: Plain text
@@ -339,7 +339,7 @@ msgstr ""
 
 #. type: Title =
 #, no-wrap
-msgid "Running Tails from a USB stick\n"
+msgid "Running Tails from a USB stick"
 msgstr ""
 
 #. type: Plain text
diff --git a/wiki/src/doc/advanced_topics/virtualization/virt-manager.pt.po b/wiki/src/doc/advanced_topics/virtualization/virt-manager.pt.po
index 4d4f886b8b2489e49e9c6df226aea6cd4107b245..b82e2bd43cc4ae4a894dab0b27cd36a67604383a 100644
--- a/wiki/src/doc/advanced_topics/virtualization/virt-manager.pt.po
+++ b/wiki/src/doc/advanced_topics/virtualization/virt-manager.pt.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2019-04-12 12:00+0000\n"
+"POT-Creation-Date: 2019-05-06 14:52+0200\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"
@@ -67,7 +67,7 @@ msgstr ""
 
 #. type: Title =
 #, no-wrap
-msgid "Terminology\n"
+msgid "Terminology"
 msgstr ""
 
 #. type: Plain text
@@ -115,8 +115,9 @@ msgid "<a id=\"iso\"></a>\n"
 msgstr ""
 
 #. type: Title =
-#, no-wrap
-msgid "Installation\n"
+#, fuzzy, no-wrap
+#| msgid "Installation\n"
+msgid "Installation"
 msgstr "Instalação\n"
 
 #. type: Plain text
@@ -139,7 +140,7 @@ msgstr ""
 
 #. type: Title =
 #, no-wrap
-msgid "Running Tails from an ISO image\n"
+msgid "Running Tails from an ISO image"
 msgstr ""
 
 #. type: Bullet: '1. '
@@ -235,7 +236,7 @@ msgstr ""
 
 #. type: Title =
 #, no-wrap
-msgid "Running Tails from a USB image\n"
+msgid "Running Tails from a USB image"
 msgstr ""
 
 #. type: Plain text
@@ -341,7 +342,7 @@ msgstr ""
 
 #. type: Title =
 #, no-wrap
-msgid "Running Tails from a USB stick\n"
+msgid "Running Tails from a USB stick"
 msgstr ""
 
 #. type: Plain text
diff --git a/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop/system.png b/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop/system.png
index b497f2517bda0440078b63c43f4be77dc795ca78..83ff0eebd9346dd0d7b6f4de44bee8f0e5c97971 100644
Binary files a/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop/system.png and b/wiki/src/doc/first_steps/introduction_to_gnome_and_the_tails_desktop/system.png differ
diff --git a/wiki/src/inc/stable_amd64_date.html b/wiki/src/inc/stable_amd64_date.html
index 859510a5e58b79463c9678ca89bffd8b4fef640e..a47f841494294210533f0887d75ad870f831ed30 100644
--- a/wiki/src/inc/stable_amd64_date.html
+++ b/wiki/src/inc/stable_amd64_date.html
@@ -1 +1 @@
-2019-03-23
\ No newline at end of file
+2019-05-06
\ No newline at end of file
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 ebb469c32cc88cd7216985273bced3dd418b5294..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 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 +0,0 @@
-gpg:&nbsp;Signature&nbsp;made&nbsp;Fri&nbsp;22&nbsp;Mar&nbsp;2019&nbsp;09:28:47&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;(offline&nbsp;long-term&nbsp;identity&nbsp;key)&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;&lt;tails@boum.org&gt;"&nbsp;[full]<br/>
diff --git a/wiki/src/inc/stable_amd64_img_gpg_verify.html b/wiki/src/inc/stable_amd64_img_gpg_verify.html
index 9df0914a5e302ac209eb68f0834378bf784ecf2a..0f412bb6b034aedf2b0fc0a64b20c90f39b31505 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-3.13.1.img.sig tails-amd64-3.13.1.img
+TZ=UTC gpg --no-options --keyid-format long --verify tails-amd64-3.13.2.img.sig tails-amd64-3.13.2.img
diff --git a/wiki/src/inc/stable_amd64_img_sig_url.html b/wiki/src/inc/stable_amd64_img_sig_url.html
index 9e9f2468c662d25193db8fe9c107c9e5eea31279..3780dc4aaf98ee865bbd87d2959c6a5b24569d56 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-3.13.1.img.sig
+https://tails.boum.org/torrents/files/tails-amd64-3.13.2.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 b501a0a10467c49b55b182dc8deb781077dd912b..669c91f78a92b68344aa25aa2a5c02564b4fc9ab 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-3.13.1.img.torrent
+https://tails.boum.org/torrents/files/tails-amd64-3.13.2.img.torrent
diff --git a/wiki/src/inc/stable_amd64_img_url.html b/wiki/src/inc/stable_amd64_img_url.html
index 55382c5bdd513bd00cfd547bac37fb0bfb1f0885..ce4bfccd9cf2b52d8e6d9fa5b4f0c06001baad2b 100644
--- a/wiki/src/inc/stable_amd64_img_url.html
+++ b/wiki/src/inc/stable_amd64_img_url.html
@@ -1 +1 @@
-http://dl.amnesia.boum.org/tails/stable/tails-amd64-3.13.1/tails-amd64-3.13.1.img
+http://dl.amnesia.boum.org/tails/stable/tails-amd64-3.13.2/tails-amd64-3.13.2.img
diff --git a/wiki/src/inc/stable_amd64_iso_gpg_signature_output.html b/wiki/src/inc/stable_amd64_iso_gpg_signature_output.html
index 146404816cdc4dd66db0564ad00bf764c46a4534..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 100644
--- a/wiki/src/inc/stable_amd64_iso_gpg_signature_output.html
+++ b/wiki/src/inc/stable_amd64_iso_gpg_signature_output.html
@@ -1,4 +0,0 @@
-gpg:&nbsp;Signature&nbsp;made&nbsp;Fri&nbsp;22&nbsp;Mar&nbsp;2019&nbsp;09:28:38&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;(offline&nbsp;long-term&nbsp;identity&nbsp;key)&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;&lt;tails@boum.org&gt;"&nbsp;[full]<br/>
diff --git a/wiki/src/inc/stable_amd64_iso_gpg_verify.html b/wiki/src/inc/stable_amd64_iso_gpg_verify.html
index 640e7f5402ce1719bc4281dcf6c468a146ce8051..032f4eafffe4f0d04ed8b804aa23d2784183ee0a 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-3.13.1.iso.sig tails-amd64-3.13.1.iso
+TZ=UTC gpg --no-options --keyid-format long --verify tails-amd64-3.13.2.iso.sig tails-amd64-3.13.2.iso
diff --git a/wiki/src/inc/stable_amd64_iso_sig_url.html b/wiki/src/inc/stable_amd64_iso_sig_url.html
index 84b0d45ca21c7f1a1cb9086a7c028048ead90786..6d9d7de0d3899c84375a1e1557f3b5e6e4d3888a 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-3.13.1.iso.sig
+https://tails.boum.org/torrents/files/tails-amd64-3.13.2.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 104d309d2654277a9f9b950af75d50795b5ca6c5..e33126578015e0cb0aedcd3e632ddd5487ca4048 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-3.13.1.iso.torrent
+https://tails.boum.org/torrents/files/tails-amd64-3.13.2.iso.torrent
diff --git a/wiki/src/inc/stable_amd64_iso_url.html b/wiki/src/inc/stable_amd64_iso_url.html
index c0331a18537b71ff1d6c801a1677080a63978f36..524d75b16ff899b42c423603404e7a6f2850a673 100644
--- a/wiki/src/inc/stable_amd64_iso_url.html
+++ b/wiki/src/inc/stable_amd64_iso_url.html
@@ -1 +1 @@
-http://dl.amnesia.boum.org/tails/stable/tails-amd64-3.13.1/tails-amd64-3.13.1.iso
+http://dl.amnesia.boum.org/tails/stable/tails-amd64-3.13.2/tails-amd64-3.13.2.iso
diff --git a/wiki/src/inc/stable_amd64_version.html b/wiki/src/inc/stable_amd64_version.html
index c10780c628ad54d5dba5c4108b0a5ba6254a29fc..3e388a4ac94a7406622f7b6fa443fe3fbefa858f 100644
--- a/wiki/src/inc/stable_amd64_version.html
+++ b/wiki/src/inc/stable_amd64_version.html
@@ -1 +1 @@
-3.13.1
+3.13.2
diff --git a/wiki/src/install/v2/Tails/amd64/stable/latest.json b/wiki/src/install/v2/Tails/amd64/stable/latest.json
index 0af2bbb28ef5c0cc624809e4ebfe67fdef76db1d..86204c22adbc162d3a3bf25647e37ea74c352acf 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": "a950b18ce32ab937b07dff1ad74c44b0e23bdf51c85387540376374358f28f44",
-                            "size": 1235222528,
-                            "url": "http://dl.amnesia.boum.org/tails/stable/tails-amd64-3.13.1/tails-amd64-3.13.1.img"
+                            "sha256": "779a0c25998f40e18a26f9628d6cc958c9bc5ee39ac9c3c50deed192cf1f2621",
+                            "size": 1211105280,
+                            "url": "http://dl.amnesia.boum.org/tails/stable/tails-amd64-3.13.2/tails-amd64-3.13.2.img"
                         }
                     ],
                     "type": "img"
@@ -17,15 +17,15 @@
                 {
                     "target-files": [
                         {
-                            "sha256": "4e6b37c588f33b05c6a6909b0182bd31ca02a04e9d5fb6feb296b6e8d287e177",
-                            "size": 1225568256,
-                            "url": "http://dl.amnesia.boum.org/tails/stable/tails-amd64-3.13.1/tails-amd64-3.13.1.iso"
+                            "sha256": "f02d8bc7ab8877d666cf3817bdcb600b8d88175c6af99b2ed8fae5334a4b5bd4",
+                            "size": 1200891904,
+                            "url": "http://dl.amnesia.boum.org/tails/stable/tails-amd64-3.13.2/tails-amd64-3.13.2.iso"
                         }
                     ],
                     "type": "iso"
                 }
             ],
-            "version": "3.13.1"
+            "version": "3.13.2"
         }
     ],
     "product-name": "Tails"
diff --git a/wiki/src/local.css b/wiki/src/local.css
index 0796fed598cf2dd367758c7a371d348e46f51b08..87dddc841605af93bc390534469a0d6d9266aff2 100644
--- a/wiki/src/local.css
+++ b/wiki/src/local.css
@@ -179,8 +179,13 @@ img.img { /* overwrite style.css */
   margin: 0em;
 }
 
-img.margin { /* overwrite style.css */
-  margin: 2em 4em 2em 0em;
+img.top-margin { /* overwrite style.css */
+  margin-top: 2em;
+  margin-bottom: 2em;
+}
+
+img.right-margin { /* overwrite style.css */
+  margin-right: 4em;
 }
 
 /* Images with caption */
diff --git a/wiki/src/news/2018-fundraiser.de.po b/wiki/src/news/2018-fundraiser.de.po
index bdcd00a971de0a1bf4b8596cf3e3e190b44358b0..dd2ff163941d0d9633545fb33e4b5695170ceec8 100644
--- a/wiki/src/news/2018-fundraiser.de.po
+++ b/wiki/src/news/2018-fundraiser.de.po
@@ -120,10 +120,10 @@ msgstr ""
 #. type: Plain text
 #, no-wrap
 msgid ""
-"[[!img income.png link=\"no\" class=\"margin center\" alt=\"Individuals: 35%,\n"
+"[[!img income.png link=\"no\" class=\"top-margin center\" alt=\"Individuals: 35%,\n"
 "Foundations & NGOs: 34%, Related to US government: 24%, Companies: 7%\"]]\n"
 msgstr ""
-"[[!img income.png link=\"no\" class=\"margin center\" alt=\"Einzelpersonen: 35%,\n"
+"[[!img income.png link=\"no\" class=\"top-margin center\" alt=\"Einzelpersonen: 35%,\n"
 "Stiftungen & Nichtregierungsorganisation: 34%, Der US-Regierung nahestehend: 24%, Unternehmen: 7%\"]]\n"
 
 #. type: Plain text
diff --git a/wiki/src/news/2018-fundraiser.es.po b/wiki/src/news/2018-fundraiser.es.po
index dc92cdcdccbde481795eaff276d6db72fe39c7f4..34b76a191a3db32376d83f1a0f9d06cb22a8fc1a 100644
--- a/wiki/src/news/2018-fundraiser.es.po
+++ b/wiki/src/news/2018-fundraiser.es.po
@@ -97,7 +97,7 @@ msgstr ""
 #. type: Plain text
 #, no-wrap
 msgid ""
-"[[!img income.png link=\"no\" class=\"margin center\" alt=\"Individuals: 35%,\n"
+"[[!img income.png link=\"no\" class=\"top-margin center\" alt=\"Individuals: 35%,\n"
 "Foundations & NGOs: 34%, Related to US government: 24%, Companies: 7%\"]]\n"
 msgstr ""
 
diff --git a/wiki/src/news/2018-fundraiser.fa.po b/wiki/src/news/2018-fundraiser.fa.po
index 5b7c1c11dc1578e186fa6d729ffe77a24e84be10..69797c89061d97e26639d794294d5d1e440899f1 100644
--- a/wiki/src/news/2018-fundraiser.fa.po
+++ b/wiki/src/news/2018-fundraiser.fa.po
@@ -97,7 +97,7 @@ msgstr ""
 #. type: Plain text
 #, no-wrap
 msgid ""
-"[[!img income.png link=\"no\" class=\"margin center\" alt=\"Individuals: 35%,\n"
+"[[!img income.png link=\"no\" class=\"top-margin center\" alt=\"Individuals: 35%,\n"
 "Foundations & NGOs: 34%, Related to US government: 24%, Companies: 7%\"]]\n"
 msgstr ""
 
diff --git a/wiki/src/news/2018-fundraiser.fr.po b/wiki/src/news/2018-fundraiser.fr.po
index 9a514b9fef10f0bb950420914724bca9a8746449..30966e50f9555002f21cf120c7b9e1989d9943e7 100644
--- a/wiki/src/news/2018-fundraiser.fr.po
+++ b/wiki/src/news/2018-fundraiser.fr.po
@@ -125,10 +125,10 @@ msgstr ""
 #. type: Plain text
 #, no-wrap
 msgid ""
-"[[!img income.png link=\"no\" class=\"margin center\" alt=\"Individuals: 35%,\n"
+"[[!img income.png link=\"no\" class=\"top-margin center\" alt=\"Individuals: 35%,\n"
 "Foundations & NGOs: 34%, Related to US government: 24%, Companies: 7%\"]]\n"
 msgstr ""
-"[[!img income.fr.png link=\"no\" class=\"margin center\" alt=\"Individus : 35%,\n"
+"[[!img income.fr.png link=\"no\" class=\"top-margin center\" alt=\"Individus : 35%,\n"
 "Fondations et ONG : 34%, Lié au gouvernement des États-Unis : 24%, Compagnies privées : 7%\"]]\n"
 
 #. type: Plain text
diff --git a/wiki/src/news/2018-fundraiser.it.po b/wiki/src/news/2018-fundraiser.it.po
index 35c0c992510cd97d55e062bb1d4d230436444821..22cc538fe3b14a73f3ca911ae90b65ec7d0c71ea 100644
--- a/wiki/src/news/2018-fundraiser.it.po
+++ b/wiki/src/news/2018-fundraiser.it.po
@@ -99,7 +99,7 @@ msgstr ""
 #. type: Plain text
 #, no-wrap
 msgid ""
-"[[!img income.png link=\"no\" class=\"margin center\" alt=\"Individuals: 35%,\n"
+"[[!img income.png link=\"no\" class=\"top-margin center\" alt=\"Individuals: 35%,\n"
 "Foundations & NGOs: 34%, Related to US government: 24%, Companies: 7%\"]]\n"
 msgstr ""
 
diff --git a/wiki/src/news/2018-fundraiser.mdwn b/wiki/src/news/2018-fundraiser.mdwn
index d1a0380f5972fca8bb26a3da856c376737862d14..4191fd15a526626aec4a288130e6217bee1ae0c6 100644
--- a/wiki/src/news/2018-fundraiser.mdwn
+++ b/wiki/src/news/2018-fundraiser.mdwn
@@ -35,7 +35,7 @@ Our money comes from:
 <!-- Note for translators:
      LibreOffice source in /donate/income-diversity-chart.ods. -->
 
-[[!img income.png link="no" class="margin center" alt="Individuals: 35%,
+[[!img income.png link="no" class="top-margin center" alt="Individuals: 35%,
 Foundations & NGOs: 34%, Related to US government: 24%, Companies: 7%"]]
 
 We often hear complaints about software projects
diff --git a/wiki/src/news/2018-fundraiser.pt.po b/wiki/src/news/2018-fundraiser.pt.po
index 5b7c1c11dc1578e186fa6d729ffe77a24e84be10..69797c89061d97e26639d794294d5d1e440899f1 100644
--- a/wiki/src/news/2018-fundraiser.pt.po
+++ b/wiki/src/news/2018-fundraiser.pt.po
@@ -97,7 +97,7 @@ msgstr ""
 #. type: Plain text
 #, no-wrap
 msgid ""
-"[[!img income.png link=\"no\" class=\"margin center\" alt=\"Individuals: 35%,\n"
+"[[!img income.png link=\"no\" class=\"top-margin center\" alt=\"Individuals: 35%,\n"
 "Foundations & NGOs: 34%, Related to US government: 24%, Companies: 7%\"]]\n"
 msgstr ""
 
diff --git a/wiki/src/news/many_hands_make_tails.de.po b/wiki/src/news/many_hands_make_tails.de.po
index 0e6fe7753e0fbd4e2b04ea55c3d01102ec7b97a0..41fe76b67d307882c3efb158a8d920be65ce8e24 100644
--- a/wiki/src/news/many_hands_make_tails.de.po
+++ b/wiki/src/news/many_hands_make_tails.de.po
@@ -146,15 +146,15 @@ msgstr ""
 #, fuzzy, no-wrap
 #| msgid ""
 #| "This image shows the evolution of Tails boots per day since 2013:\n"
-#| "[[!img boots_per_day.png link=\"no\" class=\"margin center\" alt=\"Tails\n"
+#| "[[!img boots_per_day.png link=\"no\" class=\"top-margin center\" alt=\"Tails\n"
 #| "boots per day 2013-2017\"]]\n"
 msgid ""
 "This image shows the evolution of Tails boots per day since 2013:\n"
-"[[!img boots_per_day.png link=\"no\" class=\"margin center\" alt=\"Tails boots per\n"
+"[[!img boots_per_day.png link=\"no\" class=\"top-margin center\" alt=\"Tails boots per\n"
 "day increasing steadily from 7000 in December 2013 to 22000 in October 2017\"]]\n"
 msgstr ""
 "Dieses Bild veranschaulicht die Entwicklung der Starts von Tails pro Tag seit 2013:\n"
-"[[!img boots_per_day.png link=\"no\" class=\"margin center\" alt=\"Tails-Starts\n"
+"[[!img boots_per_day.png link=\"no\" class=\"top-margin center\" alt=\"Tails-Starts\n"
 "pro Tag, 2013-2017\"]]\n"
 
 #. type: Plain text
diff --git a/wiki/src/news/many_hands_make_tails.es.po b/wiki/src/news/many_hands_make_tails.es.po
index 83754b8f71507955bd2dab5f8a7f9e9b6f7de328..c309e78447baff468e04d7e46c22a12c7bf1172d 100755
--- a/wiki/src/news/many_hands_make_tails.es.po
+++ b/wiki/src/news/many_hands_make_tails.es.po
@@ -109,7 +109,7 @@ msgstr ""
 #, no-wrap
 msgid ""
 "This image shows the evolution of Tails boots per day since 2013:\n"
-"[[!img boots_per_day.png link=\"no\" class=\"margin center\" alt=\"Tails boots per\n"
+"[[!img boots_per_day.png link=\"no\" class=\"top-margin center\" alt=\"Tails boots per\n"
 "day increasing steadily from 7000 in December 2013 to 22000 in October 2017\"]]\n"
 msgstr ""
 
diff --git a/wiki/src/news/many_hands_make_tails.fa.po b/wiki/src/news/many_hands_make_tails.fa.po
index 40545c6692b53ab7e2f93208b73f7527ee4b4f67..58770d69b14faee60c57e43f356f2bb1117a5aef 100644
--- a/wiki/src/news/many_hands_make_tails.fa.po
+++ b/wiki/src/news/many_hands_make_tails.fa.po
@@ -106,7 +106,7 @@ msgstr ""
 #, no-wrap
 msgid ""
 "This image shows the evolution of Tails boots per day since 2013:\n"
-"[[!img boots_per_day.png link=\"no\" class=\"margin center\" alt=\"Tails boots per\n"
+"[[!img boots_per_day.png link=\"no\" class=\"top-margin center\" alt=\"Tails boots per\n"
 "day increasing steadily from 7000 in December 2013 to 22000 in October 2017\"]]\n"
 msgstr ""
 
diff --git a/wiki/src/news/many_hands_make_tails.fr.po b/wiki/src/news/many_hands_make_tails.fr.po
index 2e70bb63640519891decf9768151ef90dff034b7..d4e8b2f13b83546d35da90091e6c584cdd1cfd11 100644
--- a/wiki/src/news/many_hands_make_tails.fr.po
+++ b/wiki/src/news/many_hands_make_tails.fr.po
@@ -146,11 +146,11 @@ msgstr ""
 #, no-wrap
 msgid ""
 "This image shows the evolution of Tails boots per day since 2013:\n"
-"[[!img boots_per_day.png link=\"no\" class=\"margin center\" alt=\"Tails boots per\n"
+"[[!img boots_per_day.png link=\"no\" class=\"top-margin center\" alt=\"Tails boots per\n"
 "day increasing steadily from 7000 in December 2013 to 22000 in October 2017\"]]\n"
 msgstr ""
 "Cette image montre l'évolution du nombre de démarrage de Tails par jour depuis 2013 :\n"
-"[[!img boots_per_day.png link=\"no\" class=\"margin center\" alt=\"Les démarrages\n"
+"[[!img boots_per_day.png link=\"no\" class=\"top-margin center\" alt=\"Les démarrages\n"
 "de Tails par jour augmentent régulièrement de 7000 en décembre 2013 à 22000 en octobre 2017\"]]\n"
 
 #. type: Plain text
diff --git a/wiki/src/news/many_hands_make_tails.it.po b/wiki/src/news/many_hands_make_tails.it.po
index cce17327f9880b85be8f402f09e703e0e07c069f..80ad920fb31036c8a0d1dd9fea381350b2e9c165 100644
--- a/wiki/src/news/many_hands_make_tails.it.po
+++ b/wiki/src/news/many_hands_make_tails.it.po
@@ -107,7 +107,7 @@ msgstr ""
 #, no-wrap
 msgid ""
 "This image shows the evolution of Tails boots per day since 2013:\n"
-"[[!img boots_per_day.png link=\"no\" class=\"margin center\" alt=\"Tails boots per\n"
+"[[!img boots_per_day.png link=\"no\" class=\"top-margin center\" alt=\"Tails boots per\n"
 "day increasing steadily from 7000 in December 2013 to 22000 in October 2017\"]]\n"
 msgstr ""
 
diff --git a/wiki/src/news/many_hands_make_tails.mdwn b/wiki/src/news/many_hands_make_tails.mdwn
index 3f5b1d4ae156fdee2ae8366957aeb4ef9d6f1c58..e816df8b73e1ecf1b920fb1cd2ad0cd6020c2a4f 100644
--- a/wiki/src/news/many_hands_make_tails.mdwn
+++ b/wiki/src/news/many_hands_make_tails.mdwn
@@ -47,7 +47,7 @@ one day.** If we could fund Tails entirely through donations by our
 users, this would make us independent from government grants.
 
 This image shows the evolution of Tails boots per day since 2013:
-[[!img boots_per_day.png link="no" class="margin center" alt="Tails boots per
+[[!img boots_per_day.png link="no" class="top-margin center" alt="Tails boots per
 day increasing steadily from 7000 in December 2013 to 22000 in October 2017"]]
 
 **But many of our users could actually get in trouble** if they donated to
diff --git a/wiki/src/news/many_hands_make_tails.pt.po b/wiki/src/news/many_hands_make_tails.pt.po
index 35909b73cffbb4e01895fa4d1b6f09c816210edc..618474e33d1ef19bba0eec8578b42de72de0c397 100644
--- a/wiki/src/news/many_hands_make_tails.pt.po
+++ b/wiki/src/news/many_hands_make_tails.pt.po
@@ -107,7 +107,7 @@ msgstr ""
 #, no-wrap
 msgid ""
 "This image shows the evolution of Tails boots per day since 2013:\n"
-"[[!img boots_per_day.png link=\"no\" class=\"margin center\" alt=\"Tails boots per\n"
+"[[!img boots_per_day.png link=\"no\" class=\"top-margin center\" alt=\"Tails boots per\n"
 "day increasing steadily from 7000 in December 2013 to 22000 in October 2017\"]]\n"
 msgstr ""
 
diff --git a/wiki/src/news/test_3.0-beta1.mdwn b/wiki/src/news/test_3.0-beta1.mdwn
index c9e7db6b10b92fb2a65e9346f8e52b175f5ffb4d..94b780c8f714164a80fb1df62a89701156871d8d 100644
--- a/wiki/src/news/test_3.0-beta1.mdwn
+++ b/wiki/src/news/test_3.0-beta1.mdwn
@@ -23,7 +23,7 @@ Other changes include:
 
  * We redesigned Tails Greeter entirely.
 
-   [[!img news/test_redesigned_Tails_Greeter/greeter-alpha.png link="no" class="margin center" alt="Redesigned Tails Greeter alpha screenshot"]]
+   [[!img news/test_redesigned_Tails_Greeter/greeter-alpha.png link="no" class="top-margin center" alt="Redesigned Tails Greeter alpha screenshot"]]
 
  * GNOME Shell is now configured to use its default black theme.
 
diff --git a/wiki/src/news/test_redesigned_Tails_Greeter.mdwn b/wiki/src/news/test_redesigned_Tails_Greeter.mdwn
index 041afaf1751f6acaa6e98065e34272fde4369ea1..483e9d33c09fa7c4af31f685c1ca14ff7910894f 100644
--- a/wiki/src/news/test_redesigned_Tails_Greeter.mdwn
+++ b/wiki/src/news/test_redesigned_Tails_Greeter.mdwn
@@ -37,7 +37,7 @@ Nearly everything you can see has changed! We have been working for
 more than two years with designers to make <span
 class="application">Tails Greeter</span> easier to use:
 
-[[!img greeter-alpha.png link="no" class="margin center" alt="Redesigned Tails Greeter
+[[!img greeter-alpha.png link="no" class="top-margin center" alt="Redesigned Tails Greeter
 alpha screenshot"]]
 
 # How to test the redesigned <span class="application">Tails Greeter</span>?
diff --git a/wiki/src/news/version_3.13.2.de.po b/wiki/src/news/version_3.13.2.de.po
new file mode 100644
index 0000000000000000000000000000000000000000..55170ce7c08e8542c2aae488975b8f992caba275
--- /dev/null
+++ b/wiki/src/news/version_3.13.2.de.po
@@ -0,0 +1,542 @@
+# 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: 2019-05-06 14:52+0200\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
+#, no-wrap
+msgid "[[!meta date=\"Sun, 5 May 2019 12:34:56 +0000\"]]\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "[[!meta title=\"Tails 3.13.2 is out\"]]\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "[[!pagetemplate template=\"news.tmpl\"]]\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "[[!tag announce]]\n"
+msgstr ""
+
+#. type: Plain text
+msgid ""
+"This release is an emergency release to fix a critical security "
+"vulnerability in *Tor Browser*."
+msgstr ""
+
+#. type: Plain text
+msgid ""
+"It also fixes [[other security "
+"vulnerabilities|security/Numerous_security_holes_in_3.13.1]]. You should "
+"upgrade as soon as possible."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "[[!toc levels=1]]\n"
+msgstr ""
+
+#. type: Title #
+#, no-wrap
+msgid "Changes"
+msgstr ""
+
+#. type: Title ##
+#, no-wrap
+msgid "Upgrades and changes"
+msgstr ""
+
+#. type: Plain text
+msgid "- Update *Tor Browser* to 8.0.9."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "  XXX: Check if there's a new blog post upstream.\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  Starting from Friday May 3, a problem in *Firefox* and *Tor Browser*\n"
+"  disabled all add-ons.\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  This release fixes the activation of add-ons in *Tor Browser*,\n"
+"  especially the *NoScript* add-on which is used to:\n"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid ""
+"Most importantly, protect against a very strong fingerprinting technique "
+"called *HTML5 canvas fingerprinting* which can break your anonymity."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"    Using HTML5 canvas fingerprinting, 2 or more collaborating websites\n"
+"    can compare how graphics and text are displayed by your computer to\n"
+"    determine whether 2 website visits are coming from the same\n"
+"    computer.\n"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid ""
+"Strengthen *Tor Browser* against some JavaScript attacks that can lead to "
+"compromised accounts and credentials on websites."
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid ""
+"Enable or disable JavaScript on some websites using the NoScript interface, "
+"if you use it."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "  XXX: Create ticket\n"
+msgstr ""
+
+#. type: Bullet: '- '
+msgid ""
+"Remove the *OpenPGP Applet* and *Pidgin* notification icons from the top "
+"navigation bar."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "  [[!img top-navigation-bar.png link=\"no\"]]\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  You can still access the *OpenPGP Applet* and *Pidgin* notification "
+"icons\n"
+"  from the system tray in the bottom-left corner of the screen.\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  To display the system tray, move your mouse to the thin gray line on the "
+"of\n"
+"  the window list in the bottom-left of the screen:\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  [[!img system-tray-folded.png class=\"margin\" link=\"no\"]] [[!img "
+"system-tray-unfolded.png class=\"margin\" link=\"no\"]]\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  To move these icons back to the top navigation bar, you can execute the\n"
+"  following command in a *Terminal*:\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  <p class=\"pre command\">gnome-shell-extension-tool "
+"--enable-extension=TopIcons@phocean.net</p>\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  Until now, these icons were display in the top navigation bar by the\n"
+"  *TopIcons* GNOME extension. This extension is unmaintained, causes GNOME "
+"to\n"
+"  crash ([[!tails_ticket 11188]]), and will not work in Tails 5.0 based on\n"
+"  Debian 11 (Bullseye).\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "  XXX: Tell the help desk what to do\n"
+msgstr ""
+
+#. type: Plain text
+msgid "- Install localization packages only for the following languages:"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Arabic"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "English"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Farsi"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "French"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "German"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Hindi"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Indonesian"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Italian"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Portuguese"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Russian"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Simplified Chinese"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Spanish"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Turkish"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  You can install localization packages for other languages using the\n"
+"  *[[Additional Software|doc/first_steps/additional_software]]* feature.\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "  Localization packages include:\n"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid ""
+"*Thunderbird* localization: packages <span "
+"class=\"command\">thunderbird-l10n-<span "
+"class=\"command-placeholder\">lang</span></span>"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid ""
+"*LibreOffice* localization: packages <span "
+"class=\"command\">libreoffice-l10n-<span "
+"class=\"command-placeholder\">lang</span></span>"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid ""
+"Spell-checking dictionaries: packages <span class=\"command\">hunspell-<span "
+"class=\"command-placeholder\">lang</span></span>"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  Where <span class=\"command-placeholder\">lang</span> is the code for\n"
+"  your language. For example, <span class=\"command-placeholder\">es</span> "
+"for\n"
+"  Spanish.\n"
+msgstr ""
+
+#. type: Plain text
+msgid "- Add a suspend button to the system menu."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "  XXX: Add screenshot\n"
+msgstr ""
+
+#. type: Bullet: '- '
+msgid ""
+"Add shutdown and restart buttons to the system menu when the screen is "
+"locked."
+msgstr ""
+
+#. type: Bullet: '- '
+msgid ""
+"Replace all non-Latin fonts with the [[!wikipedia Noto_fonts desc=\"Noto "
+"fonts family\"]]."
+msgstr ""
+
+#. type: Plain text
+msgid "- Update *Debian* to 9.9."
+msgstr ""
+
+#. type: Plain text
+msgid "- Update *Thunderbird* to 60.6.1."
+msgstr ""
+
+#. type: Title ##
+#, no-wrap
+msgid "Fixed problems"
+msgstr ""
+
+#. type: Bullet: '- '
+msgid ""
+"Fix the automatic configuration of new email accounts in *Thunderbird*.  "
+"([[!tails_ticket 16573]])"
+msgstr ""
+
+#. type: Bullet: '- '
+msgid ""
+"Fix Tails shutting down when waking up from suspend on some computers.  "
+"([[!tails_ticket 11729]])"
+msgstr ""
+
+#. type: Bullet: '- '
+msgid ""
+"Fix the import of the [[Tails signing key|tails-signing.key]] in the "
+"*Passwords and Keys* utility."
+msgstr ""
+
+#. type: Bullet: '- '
+msgid ""
+"Don't show notifications about *TailsData* when configuring a persistent "
+"volume. ([[!tails_ticket 16632]])"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "  [[!img TailsData-notification.png link=\"no\"]]\n"
+msgstr ""
+
+#. type: Plain text
+msgid ""
+"For more details, read our [[!tails_gitweb debian/changelog "
+"desc=\"changelog\"]]."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "<a id=\"known-issues\"></a>\n"
+msgstr ""
+
+#. type: Title #
+#, no-wrap
+msgid "Known issues"
+msgstr ""
+
+#. type: Title ###
+#, no-wrap
+msgid ""
+"Tails fails to start a second time on some computers ([[!tails_ticket "
+"16389]])"
+msgstr ""
+
+#. type: Plain text
+msgid ""
+"On some computers, after installing Tails to a USB stick, Tails starts a "
+"first time but fails to start a second time. In some cases, only BIOS "
+"(Legacy) was affected and the USB stick was not listed in the Boot Menu."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"We are still investigating the issue, so if it happens to you, please\n"
+"report your findings by email to <tails-testers@boum.org>. Mention the\n"
+"model of the computer and the USB stick. This mailing\n"
+"list is [archived "
+"publicly](https://lists.autistici.org/list/tails-testers.html).\n"
+msgstr ""
+
+#. type: Plain text
+msgid "To fix this issue:"
+msgstr ""
+
+#. type: Bullet: '1. '
+msgid "Reinstall your USB stick using the same installation method."
+msgstr ""
+
+#. type: Bullet: '1. '
+msgid ""
+"Start Tails for the first time and [[set up an administration "
+"password|doc/first_steps/startup_options/administration_password]]."
+msgstr ""
+
+#. type: Bullet: '1. '
+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>."
+msgstr ""
+
+#. type: Bullet: '1. '
+msgid "Execute the following command:"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "   <p class=\"pre command\">sgdisk --recompute-chs /dev/bilibop</p>\n"
+msgstr ""
+
+#. type: Plain text
+msgid "You can also test an experimental image:"
+msgstr ""
+
+#. type: Bullet: '1. '
+msgid ""
+"[Download the *.img* file from our development "
+"server](https://nightly.tails.boum.org/build_Tails_ISO_bugfix-16389-recompute-chs/lastSuccessful/archive/build-artifacts/)."
+msgstr ""
+
+#. type: Bullet: '1. '
+msgid "Install it using the same installation methods."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"   We don't provide any OpenPGP signature or other verification technique\n"
+"   for this test image. Please only use it for testing.\n"
+msgstr ""
+
+#. type: Plain text
+msgid "See the list of [[long-standing issues|support/known_issues]]."
+msgstr ""
+
+#. type: Title #
+#, no-wrap
+msgid "Get Tails 3.13.2"
+msgstr ""
+
+#. type: Title ##
+#, no-wrap
+msgid "To upgrade your Tails USB stick and keep your persistent storage"
+msgstr ""
+
+#. type: Plain text
+msgid "- Automatic upgrades are available from 3.12.1, 3.13, and 3.13.1 to 3.13.2."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "  XXX: Check which IUK will be available with:\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"      git diff origin/master...origin/web/release-$VERSION "
+"wiki/src/upgrade/v1/Tails | grep \"to_$VERSION\"\n"
+msgstr ""
+
+#. type: Bullet: '- '
+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|upgrade]]."
+msgstr ""
+
+#. type: Title ##
+#, no-wrap
+msgid "To install Tails on a new USB stick"
+msgstr ""
+
+#. type: Plain text
+msgid "Follow our installation instructions:"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "[[Install from Windows|install/win]]"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "[[Install from macOS|install/mac]]"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "[[Install from Linux|install/linux]]"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"<div class=\"caution\"><p>All the data on this USB stick will be "
+"lost.</p></div>\n"
+msgstr ""
+
+#. type: Title ##
+#, no-wrap
+msgid "To download only"
+msgstr ""
+
+#. type: Plain text
+msgid ""
+"If you don't need installation or upgrade instructions, you can directly "
+"download Tails 3.13.2:"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "[[For USB sticks (USB image)|install/download]]"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "[[For DVDs and virtual machines (ISO image)|install/download-iso]]"
+msgstr ""
+
+#. type: Title #
+#, no-wrap
+msgid "What's coming up?"
+msgstr ""
+
+#. type: Plain text
+msgid "Tails 3.14 is [[scheduled|contribute/calendar]] for May 14."
+msgstr ""
+
+#. type: Plain text
+msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"We need your help and there are many ways to [[contribute to\n"
+"Tails|contribute]] (<a "
+"href=\"https://tails.boum.org/donate/?r=3.13.2\">donating</a> is only one "
+"of\n"
+"them). Come [[talk to us|about/contact#tails-dev]]!\n"
+msgstr ""
diff --git a/wiki/src/news/version_3.13.2.es.po b/wiki/src/news/version_3.13.2.es.po
new file mode 100644
index 0000000000000000000000000000000000000000..55170ce7c08e8542c2aae488975b8f992caba275
--- /dev/null
+++ b/wiki/src/news/version_3.13.2.es.po
@@ -0,0 +1,542 @@
+# 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: 2019-05-06 14:52+0200\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
+#, no-wrap
+msgid "[[!meta date=\"Sun, 5 May 2019 12:34:56 +0000\"]]\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "[[!meta title=\"Tails 3.13.2 is out\"]]\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "[[!pagetemplate template=\"news.tmpl\"]]\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "[[!tag announce]]\n"
+msgstr ""
+
+#. type: Plain text
+msgid ""
+"This release is an emergency release to fix a critical security "
+"vulnerability in *Tor Browser*."
+msgstr ""
+
+#. type: Plain text
+msgid ""
+"It also fixes [[other security "
+"vulnerabilities|security/Numerous_security_holes_in_3.13.1]]. You should "
+"upgrade as soon as possible."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "[[!toc levels=1]]\n"
+msgstr ""
+
+#. type: Title #
+#, no-wrap
+msgid "Changes"
+msgstr ""
+
+#. type: Title ##
+#, no-wrap
+msgid "Upgrades and changes"
+msgstr ""
+
+#. type: Plain text
+msgid "- Update *Tor Browser* to 8.0.9."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "  XXX: Check if there's a new blog post upstream.\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  Starting from Friday May 3, a problem in *Firefox* and *Tor Browser*\n"
+"  disabled all add-ons.\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  This release fixes the activation of add-ons in *Tor Browser*,\n"
+"  especially the *NoScript* add-on which is used to:\n"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid ""
+"Most importantly, protect against a very strong fingerprinting technique "
+"called *HTML5 canvas fingerprinting* which can break your anonymity."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"    Using HTML5 canvas fingerprinting, 2 or more collaborating websites\n"
+"    can compare how graphics and text are displayed by your computer to\n"
+"    determine whether 2 website visits are coming from the same\n"
+"    computer.\n"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid ""
+"Strengthen *Tor Browser* against some JavaScript attacks that can lead to "
+"compromised accounts and credentials on websites."
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid ""
+"Enable or disable JavaScript on some websites using the NoScript interface, "
+"if you use it."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "  XXX: Create ticket\n"
+msgstr ""
+
+#. type: Bullet: '- '
+msgid ""
+"Remove the *OpenPGP Applet* and *Pidgin* notification icons from the top "
+"navigation bar."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "  [[!img top-navigation-bar.png link=\"no\"]]\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  You can still access the *OpenPGP Applet* and *Pidgin* notification "
+"icons\n"
+"  from the system tray in the bottom-left corner of the screen.\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  To display the system tray, move your mouse to the thin gray line on the "
+"of\n"
+"  the window list in the bottom-left of the screen:\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  [[!img system-tray-folded.png class=\"margin\" link=\"no\"]] [[!img "
+"system-tray-unfolded.png class=\"margin\" link=\"no\"]]\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  To move these icons back to the top navigation bar, you can execute the\n"
+"  following command in a *Terminal*:\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  <p class=\"pre command\">gnome-shell-extension-tool "
+"--enable-extension=TopIcons@phocean.net</p>\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  Until now, these icons were display in the top navigation bar by the\n"
+"  *TopIcons* GNOME extension. This extension is unmaintained, causes GNOME "
+"to\n"
+"  crash ([[!tails_ticket 11188]]), and will not work in Tails 5.0 based on\n"
+"  Debian 11 (Bullseye).\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "  XXX: Tell the help desk what to do\n"
+msgstr ""
+
+#. type: Plain text
+msgid "- Install localization packages only for the following languages:"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Arabic"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "English"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Farsi"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "French"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "German"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Hindi"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Indonesian"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Italian"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Portuguese"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Russian"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Simplified Chinese"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Spanish"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Turkish"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  You can install localization packages for other languages using the\n"
+"  *[[Additional Software|doc/first_steps/additional_software]]* feature.\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "  Localization packages include:\n"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid ""
+"*Thunderbird* localization: packages <span "
+"class=\"command\">thunderbird-l10n-<span "
+"class=\"command-placeholder\">lang</span></span>"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid ""
+"*LibreOffice* localization: packages <span "
+"class=\"command\">libreoffice-l10n-<span "
+"class=\"command-placeholder\">lang</span></span>"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid ""
+"Spell-checking dictionaries: packages <span class=\"command\">hunspell-<span "
+"class=\"command-placeholder\">lang</span></span>"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  Where <span class=\"command-placeholder\">lang</span> is the code for\n"
+"  your language. For example, <span class=\"command-placeholder\">es</span> "
+"for\n"
+"  Spanish.\n"
+msgstr ""
+
+#. type: Plain text
+msgid "- Add a suspend button to the system menu."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "  XXX: Add screenshot\n"
+msgstr ""
+
+#. type: Bullet: '- '
+msgid ""
+"Add shutdown and restart buttons to the system menu when the screen is "
+"locked."
+msgstr ""
+
+#. type: Bullet: '- '
+msgid ""
+"Replace all non-Latin fonts with the [[!wikipedia Noto_fonts desc=\"Noto "
+"fonts family\"]]."
+msgstr ""
+
+#. type: Plain text
+msgid "- Update *Debian* to 9.9."
+msgstr ""
+
+#. type: Plain text
+msgid "- Update *Thunderbird* to 60.6.1."
+msgstr ""
+
+#. type: Title ##
+#, no-wrap
+msgid "Fixed problems"
+msgstr ""
+
+#. type: Bullet: '- '
+msgid ""
+"Fix the automatic configuration of new email accounts in *Thunderbird*.  "
+"([[!tails_ticket 16573]])"
+msgstr ""
+
+#. type: Bullet: '- '
+msgid ""
+"Fix Tails shutting down when waking up from suspend on some computers.  "
+"([[!tails_ticket 11729]])"
+msgstr ""
+
+#. type: Bullet: '- '
+msgid ""
+"Fix the import of the [[Tails signing key|tails-signing.key]] in the "
+"*Passwords and Keys* utility."
+msgstr ""
+
+#. type: Bullet: '- '
+msgid ""
+"Don't show notifications about *TailsData* when configuring a persistent "
+"volume. ([[!tails_ticket 16632]])"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "  [[!img TailsData-notification.png link=\"no\"]]\n"
+msgstr ""
+
+#. type: Plain text
+msgid ""
+"For more details, read our [[!tails_gitweb debian/changelog "
+"desc=\"changelog\"]]."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "<a id=\"known-issues\"></a>\n"
+msgstr ""
+
+#. type: Title #
+#, no-wrap
+msgid "Known issues"
+msgstr ""
+
+#. type: Title ###
+#, no-wrap
+msgid ""
+"Tails fails to start a second time on some computers ([[!tails_ticket "
+"16389]])"
+msgstr ""
+
+#. type: Plain text
+msgid ""
+"On some computers, after installing Tails to a USB stick, Tails starts a "
+"first time but fails to start a second time. In some cases, only BIOS "
+"(Legacy) was affected and the USB stick was not listed in the Boot Menu."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"We are still investigating the issue, so if it happens to you, please\n"
+"report your findings by email to <tails-testers@boum.org>. Mention the\n"
+"model of the computer and the USB stick. This mailing\n"
+"list is [archived "
+"publicly](https://lists.autistici.org/list/tails-testers.html).\n"
+msgstr ""
+
+#. type: Plain text
+msgid "To fix this issue:"
+msgstr ""
+
+#. type: Bullet: '1. '
+msgid "Reinstall your USB stick using the same installation method."
+msgstr ""
+
+#. type: Bullet: '1. '
+msgid ""
+"Start Tails for the first time and [[set up an administration "
+"password|doc/first_steps/startup_options/administration_password]]."
+msgstr ""
+
+#. type: Bullet: '1. '
+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>."
+msgstr ""
+
+#. type: Bullet: '1. '
+msgid "Execute the following command:"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "   <p class=\"pre command\">sgdisk --recompute-chs /dev/bilibop</p>\n"
+msgstr ""
+
+#. type: Plain text
+msgid "You can also test an experimental image:"
+msgstr ""
+
+#. type: Bullet: '1. '
+msgid ""
+"[Download the *.img* file from our development "
+"server](https://nightly.tails.boum.org/build_Tails_ISO_bugfix-16389-recompute-chs/lastSuccessful/archive/build-artifacts/)."
+msgstr ""
+
+#. type: Bullet: '1. '
+msgid "Install it using the same installation methods."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"   We don't provide any OpenPGP signature or other verification technique\n"
+"   for this test image. Please only use it for testing.\n"
+msgstr ""
+
+#. type: Plain text
+msgid "See the list of [[long-standing issues|support/known_issues]]."
+msgstr ""
+
+#. type: Title #
+#, no-wrap
+msgid "Get Tails 3.13.2"
+msgstr ""
+
+#. type: Title ##
+#, no-wrap
+msgid "To upgrade your Tails USB stick and keep your persistent storage"
+msgstr ""
+
+#. type: Plain text
+msgid "- Automatic upgrades are available from 3.12.1, 3.13, and 3.13.1 to 3.13.2."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "  XXX: Check which IUK will be available with:\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"      git diff origin/master...origin/web/release-$VERSION "
+"wiki/src/upgrade/v1/Tails | grep \"to_$VERSION\"\n"
+msgstr ""
+
+#. type: Bullet: '- '
+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|upgrade]]."
+msgstr ""
+
+#. type: Title ##
+#, no-wrap
+msgid "To install Tails on a new USB stick"
+msgstr ""
+
+#. type: Plain text
+msgid "Follow our installation instructions:"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "[[Install from Windows|install/win]]"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "[[Install from macOS|install/mac]]"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "[[Install from Linux|install/linux]]"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"<div class=\"caution\"><p>All the data on this USB stick will be "
+"lost.</p></div>\n"
+msgstr ""
+
+#. type: Title ##
+#, no-wrap
+msgid "To download only"
+msgstr ""
+
+#. type: Plain text
+msgid ""
+"If you don't need installation or upgrade instructions, you can directly "
+"download Tails 3.13.2:"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "[[For USB sticks (USB image)|install/download]]"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "[[For DVDs and virtual machines (ISO image)|install/download-iso]]"
+msgstr ""
+
+#. type: Title #
+#, no-wrap
+msgid "What's coming up?"
+msgstr ""
+
+#. type: Plain text
+msgid "Tails 3.14 is [[scheduled|contribute/calendar]] for May 14."
+msgstr ""
+
+#. type: Plain text
+msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"We need your help and there are many ways to [[contribute to\n"
+"Tails|contribute]] (<a "
+"href=\"https://tails.boum.org/donate/?r=3.13.2\">donating</a> is only one "
+"of\n"
+"them). Come [[talk to us|about/contact#tails-dev]]!\n"
+msgstr ""
diff --git a/wiki/src/news/version_3.13.2.fa.po b/wiki/src/news/version_3.13.2.fa.po
new file mode 100644
index 0000000000000000000000000000000000000000..55170ce7c08e8542c2aae488975b8f992caba275
--- /dev/null
+++ b/wiki/src/news/version_3.13.2.fa.po
@@ -0,0 +1,542 @@
+# 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: 2019-05-06 14:52+0200\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
+#, no-wrap
+msgid "[[!meta date=\"Sun, 5 May 2019 12:34:56 +0000\"]]\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "[[!meta title=\"Tails 3.13.2 is out\"]]\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "[[!pagetemplate template=\"news.tmpl\"]]\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "[[!tag announce]]\n"
+msgstr ""
+
+#. type: Plain text
+msgid ""
+"This release is an emergency release to fix a critical security "
+"vulnerability in *Tor Browser*."
+msgstr ""
+
+#. type: Plain text
+msgid ""
+"It also fixes [[other security "
+"vulnerabilities|security/Numerous_security_holes_in_3.13.1]]. You should "
+"upgrade as soon as possible."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "[[!toc levels=1]]\n"
+msgstr ""
+
+#. type: Title #
+#, no-wrap
+msgid "Changes"
+msgstr ""
+
+#. type: Title ##
+#, no-wrap
+msgid "Upgrades and changes"
+msgstr ""
+
+#. type: Plain text
+msgid "- Update *Tor Browser* to 8.0.9."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "  XXX: Check if there's a new blog post upstream.\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  Starting from Friday May 3, a problem in *Firefox* and *Tor Browser*\n"
+"  disabled all add-ons.\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  This release fixes the activation of add-ons in *Tor Browser*,\n"
+"  especially the *NoScript* add-on which is used to:\n"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid ""
+"Most importantly, protect against a very strong fingerprinting technique "
+"called *HTML5 canvas fingerprinting* which can break your anonymity."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"    Using HTML5 canvas fingerprinting, 2 or more collaborating websites\n"
+"    can compare how graphics and text are displayed by your computer to\n"
+"    determine whether 2 website visits are coming from the same\n"
+"    computer.\n"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid ""
+"Strengthen *Tor Browser* against some JavaScript attacks that can lead to "
+"compromised accounts and credentials on websites."
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid ""
+"Enable or disable JavaScript on some websites using the NoScript interface, "
+"if you use it."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "  XXX: Create ticket\n"
+msgstr ""
+
+#. type: Bullet: '- '
+msgid ""
+"Remove the *OpenPGP Applet* and *Pidgin* notification icons from the top "
+"navigation bar."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "  [[!img top-navigation-bar.png link=\"no\"]]\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  You can still access the *OpenPGP Applet* and *Pidgin* notification "
+"icons\n"
+"  from the system tray in the bottom-left corner of the screen.\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  To display the system tray, move your mouse to the thin gray line on the "
+"of\n"
+"  the window list in the bottom-left of the screen:\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  [[!img system-tray-folded.png class=\"margin\" link=\"no\"]] [[!img "
+"system-tray-unfolded.png class=\"margin\" link=\"no\"]]\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  To move these icons back to the top navigation bar, you can execute the\n"
+"  following command in a *Terminal*:\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  <p class=\"pre command\">gnome-shell-extension-tool "
+"--enable-extension=TopIcons@phocean.net</p>\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  Until now, these icons were display in the top navigation bar by the\n"
+"  *TopIcons* GNOME extension. This extension is unmaintained, causes GNOME "
+"to\n"
+"  crash ([[!tails_ticket 11188]]), and will not work in Tails 5.0 based on\n"
+"  Debian 11 (Bullseye).\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "  XXX: Tell the help desk what to do\n"
+msgstr ""
+
+#. type: Plain text
+msgid "- Install localization packages only for the following languages:"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Arabic"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "English"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Farsi"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "French"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "German"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Hindi"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Indonesian"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Italian"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Portuguese"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Russian"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Simplified Chinese"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Spanish"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Turkish"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  You can install localization packages for other languages using the\n"
+"  *[[Additional Software|doc/first_steps/additional_software]]* feature.\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "  Localization packages include:\n"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid ""
+"*Thunderbird* localization: packages <span "
+"class=\"command\">thunderbird-l10n-<span "
+"class=\"command-placeholder\">lang</span></span>"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid ""
+"*LibreOffice* localization: packages <span "
+"class=\"command\">libreoffice-l10n-<span "
+"class=\"command-placeholder\">lang</span></span>"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid ""
+"Spell-checking dictionaries: packages <span class=\"command\">hunspell-<span "
+"class=\"command-placeholder\">lang</span></span>"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  Where <span class=\"command-placeholder\">lang</span> is the code for\n"
+"  your language. For example, <span class=\"command-placeholder\">es</span> "
+"for\n"
+"  Spanish.\n"
+msgstr ""
+
+#. type: Plain text
+msgid "- Add a suspend button to the system menu."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "  XXX: Add screenshot\n"
+msgstr ""
+
+#. type: Bullet: '- '
+msgid ""
+"Add shutdown and restart buttons to the system menu when the screen is "
+"locked."
+msgstr ""
+
+#. type: Bullet: '- '
+msgid ""
+"Replace all non-Latin fonts with the [[!wikipedia Noto_fonts desc=\"Noto "
+"fonts family\"]]."
+msgstr ""
+
+#. type: Plain text
+msgid "- Update *Debian* to 9.9."
+msgstr ""
+
+#. type: Plain text
+msgid "- Update *Thunderbird* to 60.6.1."
+msgstr ""
+
+#. type: Title ##
+#, no-wrap
+msgid "Fixed problems"
+msgstr ""
+
+#. type: Bullet: '- '
+msgid ""
+"Fix the automatic configuration of new email accounts in *Thunderbird*.  "
+"([[!tails_ticket 16573]])"
+msgstr ""
+
+#. type: Bullet: '- '
+msgid ""
+"Fix Tails shutting down when waking up from suspend on some computers.  "
+"([[!tails_ticket 11729]])"
+msgstr ""
+
+#. type: Bullet: '- '
+msgid ""
+"Fix the import of the [[Tails signing key|tails-signing.key]] in the "
+"*Passwords and Keys* utility."
+msgstr ""
+
+#. type: Bullet: '- '
+msgid ""
+"Don't show notifications about *TailsData* when configuring a persistent "
+"volume. ([[!tails_ticket 16632]])"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "  [[!img TailsData-notification.png link=\"no\"]]\n"
+msgstr ""
+
+#. type: Plain text
+msgid ""
+"For more details, read our [[!tails_gitweb debian/changelog "
+"desc=\"changelog\"]]."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "<a id=\"known-issues\"></a>\n"
+msgstr ""
+
+#. type: Title #
+#, no-wrap
+msgid "Known issues"
+msgstr ""
+
+#. type: Title ###
+#, no-wrap
+msgid ""
+"Tails fails to start a second time on some computers ([[!tails_ticket "
+"16389]])"
+msgstr ""
+
+#. type: Plain text
+msgid ""
+"On some computers, after installing Tails to a USB stick, Tails starts a "
+"first time but fails to start a second time. In some cases, only BIOS "
+"(Legacy) was affected and the USB stick was not listed in the Boot Menu."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"We are still investigating the issue, so if it happens to you, please\n"
+"report your findings by email to <tails-testers@boum.org>. Mention the\n"
+"model of the computer and the USB stick. This mailing\n"
+"list is [archived "
+"publicly](https://lists.autistici.org/list/tails-testers.html).\n"
+msgstr ""
+
+#. type: Plain text
+msgid "To fix this issue:"
+msgstr ""
+
+#. type: Bullet: '1. '
+msgid "Reinstall your USB stick using the same installation method."
+msgstr ""
+
+#. type: Bullet: '1. '
+msgid ""
+"Start Tails for the first time and [[set up an administration "
+"password|doc/first_steps/startup_options/administration_password]]."
+msgstr ""
+
+#. type: Bullet: '1. '
+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>."
+msgstr ""
+
+#. type: Bullet: '1. '
+msgid "Execute the following command:"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "   <p class=\"pre command\">sgdisk --recompute-chs /dev/bilibop</p>\n"
+msgstr ""
+
+#. type: Plain text
+msgid "You can also test an experimental image:"
+msgstr ""
+
+#. type: Bullet: '1. '
+msgid ""
+"[Download the *.img* file from our development "
+"server](https://nightly.tails.boum.org/build_Tails_ISO_bugfix-16389-recompute-chs/lastSuccessful/archive/build-artifacts/)."
+msgstr ""
+
+#. type: Bullet: '1. '
+msgid "Install it using the same installation methods."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"   We don't provide any OpenPGP signature or other verification technique\n"
+"   for this test image. Please only use it for testing.\n"
+msgstr ""
+
+#. type: Plain text
+msgid "See the list of [[long-standing issues|support/known_issues]]."
+msgstr ""
+
+#. type: Title #
+#, no-wrap
+msgid "Get Tails 3.13.2"
+msgstr ""
+
+#. type: Title ##
+#, no-wrap
+msgid "To upgrade your Tails USB stick and keep your persistent storage"
+msgstr ""
+
+#. type: Plain text
+msgid "- Automatic upgrades are available from 3.12.1, 3.13, and 3.13.1 to 3.13.2."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "  XXX: Check which IUK will be available with:\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"      git diff origin/master...origin/web/release-$VERSION "
+"wiki/src/upgrade/v1/Tails | grep \"to_$VERSION\"\n"
+msgstr ""
+
+#. type: Bullet: '- '
+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|upgrade]]."
+msgstr ""
+
+#. type: Title ##
+#, no-wrap
+msgid "To install Tails on a new USB stick"
+msgstr ""
+
+#. type: Plain text
+msgid "Follow our installation instructions:"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "[[Install from Windows|install/win]]"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "[[Install from macOS|install/mac]]"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "[[Install from Linux|install/linux]]"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"<div class=\"caution\"><p>All the data on this USB stick will be "
+"lost.</p></div>\n"
+msgstr ""
+
+#. type: Title ##
+#, no-wrap
+msgid "To download only"
+msgstr ""
+
+#. type: Plain text
+msgid ""
+"If you don't need installation or upgrade instructions, you can directly "
+"download Tails 3.13.2:"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "[[For USB sticks (USB image)|install/download]]"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "[[For DVDs and virtual machines (ISO image)|install/download-iso]]"
+msgstr ""
+
+#. type: Title #
+#, no-wrap
+msgid "What's coming up?"
+msgstr ""
+
+#. type: Plain text
+msgid "Tails 3.14 is [[scheduled|contribute/calendar]] for May 14."
+msgstr ""
+
+#. type: Plain text
+msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"We need your help and there are many ways to [[contribute to\n"
+"Tails|contribute]] (<a "
+"href=\"https://tails.boum.org/donate/?r=3.13.2\">donating</a> is only one "
+"of\n"
+"them). Come [[talk to us|about/contact#tails-dev]]!\n"
+msgstr ""
diff --git a/wiki/src/news/version_3.13.2.fr.po b/wiki/src/news/version_3.13.2.fr.po
new file mode 100644
index 0000000000000000000000000000000000000000..55170ce7c08e8542c2aae488975b8f992caba275
--- /dev/null
+++ b/wiki/src/news/version_3.13.2.fr.po
@@ -0,0 +1,542 @@
+# 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: 2019-05-06 14:52+0200\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
+#, no-wrap
+msgid "[[!meta date=\"Sun, 5 May 2019 12:34:56 +0000\"]]\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "[[!meta title=\"Tails 3.13.2 is out\"]]\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "[[!pagetemplate template=\"news.tmpl\"]]\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "[[!tag announce]]\n"
+msgstr ""
+
+#. type: Plain text
+msgid ""
+"This release is an emergency release to fix a critical security "
+"vulnerability in *Tor Browser*."
+msgstr ""
+
+#. type: Plain text
+msgid ""
+"It also fixes [[other security "
+"vulnerabilities|security/Numerous_security_holes_in_3.13.1]]. You should "
+"upgrade as soon as possible."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "[[!toc levels=1]]\n"
+msgstr ""
+
+#. type: Title #
+#, no-wrap
+msgid "Changes"
+msgstr ""
+
+#. type: Title ##
+#, no-wrap
+msgid "Upgrades and changes"
+msgstr ""
+
+#. type: Plain text
+msgid "- Update *Tor Browser* to 8.0.9."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "  XXX: Check if there's a new blog post upstream.\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  Starting from Friday May 3, a problem in *Firefox* and *Tor Browser*\n"
+"  disabled all add-ons.\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  This release fixes the activation of add-ons in *Tor Browser*,\n"
+"  especially the *NoScript* add-on which is used to:\n"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid ""
+"Most importantly, protect against a very strong fingerprinting technique "
+"called *HTML5 canvas fingerprinting* which can break your anonymity."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"    Using HTML5 canvas fingerprinting, 2 or more collaborating websites\n"
+"    can compare how graphics and text are displayed by your computer to\n"
+"    determine whether 2 website visits are coming from the same\n"
+"    computer.\n"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid ""
+"Strengthen *Tor Browser* against some JavaScript attacks that can lead to "
+"compromised accounts and credentials on websites."
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid ""
+"Enable or disable JavaScript on some websites using the NoScript interface, "
+"if you use it."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "  XXX: Create ticket\n"
+msgstr ""
+
+#. type: Bullet: '- '
+msgid ""
+"Remove the *OpenPGP Applet* and *Pidgin* notification icons from the top "
+"navigation bar."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "  [[!img top-navigation-bar.png link=\"no\"]]\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  You can still access the *OpenPGP Applet* and *Pidgin* notification "
+"icons\n"
+"  from the system tray in the bottom-left corner of the screen.\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  To display the system tray, move your mouse to the thin gray line on the "
+"of\n"
+"  the window list in the bottom-left of the screen:\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  [[!img system-tray-folded.png class=\"margin\" link=\"no\"]] [[!img "
+"system-tray-unfolded.png class=\"margin\" link=\"no\"]]\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  To move these icons back to the top navigation bar, you can execute the\n"
+"  following command in a *Terminal*:\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  <p class=\"pre command\">gnome-shell-extension-tool "
+"--enable-extension=TopIcons@phocean.net</p>\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  Until now, these icons were display in the top navigation bar by the\n"
+"  *TopIcons* GNOME extension. This extension is unmaintained, causes GNOME "
+"to\n"
+"  crash ([[!tails_ticket 11188]]), and will not work in Tails 5.0 based on\n"
+"  Debian 11 (Bullseye).\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "  XXX: Tell the help desk what to do\n"
+msgstr ""
+
+#. type: Plain text
+msgid "- Install localization packages only for the following languages:"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Arabic"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "English"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Farsi"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "French"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "German"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Hindi"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Indonesian"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Italian"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Portuguese"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Russian"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Simplified Chinese"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Spanish"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Turkish"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  You can install localization packages for other languages using the\n"
+"  *[[Additional Software|doc/first_steps/additional_software]]* feature.\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "  Localization packages include:\n"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid ""
+"*Thunderbird* localization: packages <span "
+"class=\"command\">thunderbird-l10n-<span "
+"class=\"command-placeholder\">lang</span></span>"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid ""
+"*LibreOffice* localization: packages <span "
+"class=\"command\">libreoffice-l10n-<span "
+"class=\"command-placeholder\">lang</span></span>"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid ""
+"Spell-checking dictionaries: packages <span class=\"command\">hunspell-<span "
+"class=\"command-placeholder\">lang</span></span>"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  Where <span class=\"command-placeholder\">lang</span> is the code for\n"
+"  your language. For example, <span class=\"command-placeholder\">es</span> "
+"for\n"
+"  Spanish.\n"
+msgstr ""
+
+#. type: Plain text
+msgid "- Add a suspend button to the system menu."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "  XXX: Add screenshot\n"
+msgstr ""
+
+#. type: Bullet: '- '
+msgid ""
+"Add shutdown and restart buttons to the system menu when the screen is "
+"locked."
+msgstr ""
+
+#. type: Bullet: '- '
+msgid ""
+"Replace all non-Latin fonts with the [[!wikipedia Noto_fonts desc=\"Noto "
+"fonts family\"]]."
+msgstr ""
+
+#. type: Plain text
+msgid "- Update *Debian* to 9.9."
+msgstr ""
+
+#. type: Plain text
+msgid "- Update *Thunderbird* to 60.6.1."
+msgstr ""
+
+#. type: Title ##
+#, no-wrap
+msgid "Fixed problems"
+msgstr ""
+
+#. type: Bullet: '- '
+msgid ""
+"Fix the automatic configuration of new email accounts in *Thunderbird*.  "
+"([[!tails_ticket 16573]])"
+msgstr ""
+
+#. type: Bullet: '- '
+msgid ""
+"Fix Tails shutting down when waking up from suspend on some computers.  "
+"([[!tails_ticket 11729]])"
+msgstr ""
+
+#. type: Bullet: '- '
+msgid ""
+"Fix the import of the [[Tails signing key|tails-signing.key]] in the "
+"*Passwords and Keys* utility."
+msgstr ""
+
+#. type: Bullet: '- '
+msgid ""
+"Don't show notifications about *TailsData* when configuring a persistent "
+"volume. ([[!tails_ticket 16632]])"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "  [[!img TailsData-notification.png link=\"no\"]]\n"
+msgstr ""
+
+#. type: Plain text
+msgid ""
+"For more details, read our [[!tails_gitweb debian/changelog "
+"desc=\"changelog\"]]."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "<a id=\"known-issues\"></a>\n"
+msgstr ""
+
+#. type: Title #
+#, no-wrap
+msgid "Known issues"
+msgstr ""
+
+#. type: Title ###
+#, no-wrap
+msgid ""
+"Tails fails to start a second time on some computers ([[!tails_ticket "
+"16389]])"
+msgstr ""
+
+#. type: Plain text
+msgid ""
+"On some computers, after installing Tails to a USB stick, Tails starts a "
+"first time but fails to start a second time. In some cases, only BIOS "
+"(Legacy) was affected and the USB stick was not listed in the Boot Menu."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"We are still investigating the issue, so if it happens to you, please\n"
+"report your findings by email to <tails-testers@boum.org>. Mention the\n"
+"model of the computer and the USB stick. This mailing\n"
+"list is [archived "
+"publicly](https://lists.autistici.org/list/tails-testers.html).\n"
+msgstr ""
+
+#. type: Plain text
+msgid "To fix this issue:"
+msgstr ""
+
+#. type: Bullet: '1. '
+msgid "Reinstall your USB stick using the same installation method."
+msgstr ""
+
+#. type: Bullet: '1. '
+msgid ""
+"Start Tails for the first time and [[set up an administration "
+"password|doc/first_steps/startup_options/administration_password]]."
+msgstr ""
+
+#. type: Bullet: '1. '
+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>."
+msgstr ""
+
+#. type: Bullet: '1. '
+msgid "Execute the following command:"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "   <p class=\"pre command\">sgdisk --recompute-chs /dev/bilibop</p>\n"
+msgstr ""
+
+#. type: Plain text
+msgid "You can also test an experimental image:"
+msgstr ""
+
+#. type: Bullet: '1. '
+msgid ""
+"[Download the *.img* file from our development "
+"server](https://nightly.tails.boum.org/build_Tails_ISO_bugfix-16389-recompute-chs/lastSuccessful/archive/build-artifacts/)."
+msgstr ""
+
+#. type: Bullet: '1. '
+msgid "Install it using the same installation methods."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"   We don't provide any OpenPGP signature or other verification technique\n"
+"   for this test image. Please only use it for testing.\n"
+msgstr ""
+
+#. type: Plain text
+msgid "See the list of [[long-standing issues|support/known_issues]]."
+msgstr ""
+
+#. type: Title #
+#, no-wrap
+msgid "Get Tails 3.13.2"
+msgstr ""
+
+#. type: Title ##
+#, no-wrap
+msgid "To upgrade your Tails USB stick and keep your persistent storage"
+msgstr ""
+
+#. type: Plain text
+msgid "- Automatic upgrades are available from 3.12.1, 3.13, and 3.13.1 to 3.13.2."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "  XXX: Check which IUK will be available with:\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"      git diff origin/master...origin/web/release-$VERSION "
+"wiki/src/upgrade/v1/Tails | grep \"to_$VERSION\"\n"
+msgstr ""
+
+#. type: Bullet: '- '
+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|upgrade]]."
+msgstr ""
+
+#. type: Title ##
+#, no-wrap
+msgid "To install Tails on a new USB stick"
+msgstr ""
+
+#. type: Plain text
+msgid "Follow our installation instructions:"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "[[Install from Windows|install/win]]"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "[[Install from macOS|install/mac]]"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "[[Install from Linux|install/linux]]"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"<div class=\"caution\"><p>All the data on this USB stick will be "
+"lost.</p></div>\n"
+msgstr ""
+
+#. type: Title ##
+#, no-wrap
+msgid "To download only"
+msgstr ""
+
+#. type: Plain text
+msgid ""
+"If you don't need installation or upgrade instructions, you can directly "
+"download Tails 3.13.2:"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "[[For USB sticks (USB image)|install/download]]"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "[[For DVDs and virtual machines (ISO image)|install/download-iso]]"
+msgstr ""
+
+#. type: Title #
+#, no-wrap
+msgid "What's coming up?"
+msgstr ""
+
+#. type: Plain text
+msgid "Tails 3.14 is [[scheduled|contribute/calendar]] for May 14."
+msgstr ""
+
+#. type: Plain text
+msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"We need your help and there are many ways to [[contribute to\n"
+"Tails|contribute]] (<a "
+"href=\"https://tails.boum.org/donate/?r=3.13.2\">donating</a> is only one "
+"of\n"
+"them). Come [[talk to us|about/contact#tails-dev]]!\n"
+msgstr ""
diff --git a/wiki/src/news/version_3.13.2.it.po b/wiki/src/news/version_3.13.2.it.po
new file mode 100644
index 0000000000000000000000000000000000000000..55170ce7c08e8542c2aae488975b8f992caba275
--- /dev/null
+++ b/wiki/src/news/version_3.13.2.it.po
@@ -0,0 +1,542 @@
+# 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: 2019-05-06 14:52+0200\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
+#, no-wrap
+msgid "[[!meta date=\"Sun, 5 May 2019 12:34:56 +0000\"]]\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "[[!meta title=\"Tails 3.13.2 is out\"]]\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "[[!pagetemplate template=\"news.tmpl\"]]\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "[[!tag announce]]\n"
+msgstr ""
+
+#. type: Plain text
+msgid ""
+"This release is an emergency release to fix a critical security "
+"vulnerability in *Tor Browser*."
+msgstr ""
+
+#. type: Plain text
+msgid ""
+"It also fixes [[other security "
+"vulnerabilities|security/Numerous_security_holes_in_3.13.1]]. You should "
+"upgrade as soon as possible."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "[[!toc levels=1]]\n"
+msgstr ""
+
+#. type: Title #
+#, no-wrap
+msgid "Changes"
+msgstr ""
+
+#. type: Title ##
+#, no-wrap
+msgid "Upgrades and changes"
+msgstr ""
+
+#. type: Plain text
+msgid "- Update *Tor Browser* to 8.0.9."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "  XXX: Check if there's a new blog post upstream.\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  Starting from Friday May 3, a problem in *Firefox* and *Tor Browser*\n"
+"  disabled all add-ons.\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  This release fixes the activation of add-ons in *Tor Browser*,\n"
+"  especially the *NoScript* add-on which is used to:\n"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid ""
+"Most importantly, protect against a very strong fingerprinting technique "
+"called *HTML5 canvas fingerprinting* which can break your anonymity."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"    Using HTML5 canvas fingerprinting, 2 or more collaborating websites\n"
+"    can compare how graphics and text are displayed by your computer to\n"
+"    determine whether 2 website visits are coming from the same\n"
+"    computer.\n"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid ""
+"Strengthen *Tor Browser* against some JavaScript attacks that can lead to "
+"compromised accounts and credentials on websites."
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid ""
+"Enable or disable JavaScript on some websites using the NoScript interface, "
+"if you use it."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "  XXX: Create ticket\n"
+msgstr ""
+
+#. type: Bullet: '- '
+msgid ""
+"Remove the *OpenPGP Applet* and *Pidgin* notification icons from the top "
+"navigation bar."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "  [[!img top-navigation-bar.png link=\"no\"]]\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  You can still access the *OpenPGP Applet* and *Pidgin* notification "
+"icons\n"
+"  from the system tray in the bottom-left corner of the screen.\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  To display the system tray, move your mouse to the thin gray line on the "
+"of\n"
+"  the window list in the bottom-left of the screen:\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  [[!img system-tray-folded.png class=\"margin\" link=\"no\"]] [[!img "
+"system-tray-unfolded.png class=\"margin\" link=\"no\"]]\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  To move these icons back to the top navigation bar, you can execute the\n"
+"  following command in a *Terminal*:\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  <p class=\"pre command\">gnome-shell-extension-tool "
+"--enable-extension=TopIcons@phocean.net</p>\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  Until now, these icons were display in the top navigation bar by the\n"
+"  *TopIcons* GNOME extension. This extension is unmaintained, causes GNOME "
+"to\n"
+"  crash ([[!tails_ticket 11188]]), and will not work in Tails 5.0 based on\n"
+"  Debian 11 (Bullseye).\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "  XXX: Tell the help desk what to do\n"
+msgstr ""
+
+#. type: Plain text
+msgid "- Install localization packages only for the following languages:"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Arabic"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "English"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Farsi"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "French"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "German"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Hindi"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Indonesian"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Italian"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Portuguese"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Russian"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Simplified Chinese"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Spanish"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Turkish"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  You can install localization packages for other languages using the\n"
+"  *[[Additional Software|doc/first_steps/additional_software]]* feature.\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "  Localization packages include:\n"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid ""
+"*Thunderbird* localization: packages <span "
+"class=\"command\">thunderbird-l10n-<span "
+"class=\"command-placeholder\">lang</span></span>"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid ""
+"*LibreOffice* localization: packages <span "
+"class=\"command\">libreoffice-l10n-<span "
+"class=\"command-placeholder\">lang</span></span>"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid ""
+"Spell-checking dictionaries: packages <span class=\"command\">hunspell-<span "
+"class=\"command-placeholder\">lang</span></span>"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  Where <span class=\"command-placeholder\">lang</span> is the code for\n"
+"  your language. For example, <span class=\"command-placeholder\">es</span> "
+"for\n"
+"  Spanish.\n"
+msgstr ""
+
+#. type: Plain text
+msgid "- Add a suspend button to the system menu."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "  XXX: Add screenshot\n"
+msgstr ""
+
+#. type: Bullet: '- '
+msgid ""
+"Add shutdown and restart buttons to the system menu when the screen is "
+"locked."
+msgstr ""
+
+#. type: Bullet: '- '
+msgid ""
+"Replace all non-Latin fonts with the [[!wikipedia Noto_fonts desc=\"Noto "
+"fonts family\"]]."
+msgstr ""
+
+#. type: Plain text
+msgid "- Update *Debian* to 9.9."
+msgstr ""
+
+#. type: Plain text
+msgid "- Update *Thunderbird* to 60.6.1."
+msgstr ""
+
+#. type: Title ##
+#, no-wrap
+msgid "Fixed problems"
+msgstr ""
+
+#. type: Bullet: '- '
+msgid ""
+"Fix the automatic configuration of new email accounts in *Thunderbird*.  "
+"([[!tails_ticket 16573]])"
+msgstr ""
+
+#. type: Bullet: '- '
+msgid ""
+"Fix Tails shutting down when waking up from suspend on some computers.  "
+"([[!tails_ticket 11729]])"
+msgstr ""
+
+#. type: Bullet: '- '
+msgid ""
+"Fix the import of the [[Tails signing key|tails-signing.key]] in the "
+"*Passwords and Keys* utility."
+msgstr ""
+
+#. type: Bullet: '- '
+msgid ""
+"Don't show notifications about *TailsData* when configuring a persistent "
+"volume. ([[!tails_ticket 16632]])"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "  [[!img TailsData-notification.png link=\"no\"]]\n"
+msgstr ""
+
+#. type: Plain text
+msgid ""
+"For more details, read our [[!tails_gitweb debian/changelog "
+"desc=\"changelog\"]]."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "<a id=\"known-issues\"></a>\n"
+msgstr ""
+
+#. type: Title #
+#, no-wrap
+msgid "Known issues"
+msgstr ""
+
+#. type: Title ###
+#, no-wrap
+msgid ""
+"Tails fails to start a second time on some computers ([[!tails_ticket "
+"16389]])"
+msgstr ""
+
+#. type: Plain text
+msgid ""
+"On some computers, after installing Tails to a USB stick, Tails starts a "
+"first time but fails to start a second time. In some cases, only BIOS "
+"(Legacy) was affected and the USB stick was not listed in the Boot Menu."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"We are still investigating the issue, so if it happens to you, please\n"
+"report your findings by email to <tails-testers@boum.org>. Mention the\n"
+"model of the computer and the USB stick. This mailing\n"
+"list is [archived "
+"publicly](https://lists.autistici.org/list/tails-testers.html).\n"
+msgstr ""
+
+#. type: Plain text
+msgid "To fix this issue:"
+msgstr ""
+
+#. type: Bullet: '1. '
+msgid "Reinstall your USB stick using the same installation method."
+msgstr ""
+
+#. type: Bullet: '1. '
+msgid ""
+"Start Tails for the first time and [[set up an administration "
+"password|doc/first_steps/startup_options/administration_password]]."
+msgstr ""
+
+#. type: Bullet: '1. '
+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>."
+msgstr ""
+
+#. type: Bullet: '1. '
+msgid "Execute the following command:"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "   <p class=\"pre command\">sgdisk --recompute-chs /dev/bilibop</p>\n"
+msgstr ""
+
+#. type: Plain text
+msgid "You can also test an experimental image:"
+msgstr ""
+
+#. type: Bullet: '1. '
+msgid ""
+"[Download the *.img* file from our development "
+"server](https://nightly.tails.boum.org/build_Tails_ISO_bugfix-16389-recompute-chs/lastSuccessful/archive/build-artifacts/)."
+msgstr ""
+
+#. type: Bullet: '1. '
+msgid "Install it using the same installation methods."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"   We don't provide any OpenPGP signature or other verification technique\n"
+"   for this test image. Please only use it for testing.\n"
+msgstr ""
+
+#. type: Plain text
+msgid "See the list of [[long-standing issues|support/known_issues]]."
+msgstr ""
+
+#. type: Title #
+#, no-wrap
+msgid "Get Tails 3.13.2"
+msgstr ""
+
+#. type: Title ##
+#, no-wrap
+msgid "To upgrade your Tails USB stick and keep your persistent storage"
+msgstr ""
+
+#. type: Plain text
+msgid "- Automatic upgrades are available from 3.12.1, 3.13, and 3.13.1 to 3.13.2."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "  XXX: Check which IUK will be available with:\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"      git diff origin/master...origin/web/release-$VERSION "
+"wiki/src/upgrade/v1/Tails | grep \"to_$VERSION\"\n"
+msgstr ""
+
+#. type: Bullet: '- '
+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|upgrade]]."
+msgstr ""
+
+#. type: Title ##
+#, no-wrap
+msgid "To install Tails on a new USB stick"
+msgstr ""
+
+#. type: Plain text
+msgid "Follow our installation instructions:"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "[[Install from Windows|install/win]]"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "[[Install from macOS|install/mac]]"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "[[Install from Linux|install/linux]]"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"<div class=\"caution\"><p>All the data on this USB stick will be "
+"lost.</p></div>\n"
+msgstr ""
+
+#. type: Title ##
+#, no-wrap
+msgid "To download only"
+msgstr ""
+
+#. type: Plain text
+msgid ""
+"If you don't need installation or upgrade instructions, you can directly "
+"download Tails 3.13.2:"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "[[For USB sticks (USB image)|install/download]]"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "[[For DVDs and virtual machines (ISO image)|install/download-iso]]"
+msgstr ""
+
+#. type: Title #
+#, no-wrap
+msgid "What's coming up?"
+msgstr ""
+
+#. type: Plain text
+msgid "Tails 3.14 is [[scheduled|contribute/calendar]] for May 14."
+msgstr ""
+
+#. type: Plain text
+msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"We need your help and there are many ways to [[contribute to\n"
+"Tails|contribute]] (<a "
+"href=\"https://tails.boum.org/donate/?r=3.13.2\">donating</a> is only one "
+"of\n"
+"them). Come [[talk to us|about/contact#tails-dev]]!\n"
+msgstr ""
diff --git a/wiki/src/news/version_3.13.2.mdwn b/wiki/src/news/version_3.13.2.mdwn
new file mode 100644
index 0000000000000000000000000000000000000000..aff7fe3fe16d6b4244921586b476fd90434a80ce
--- /dev/null
+++ b/wiki/src/news/version_3.13.2.mdwn
@@ -0,0 +1,248 @@
+[[!meta date="Mon, 6 May 2019 16:00:00 +0000"]]
+[[!meta title="Tails 3.13.2 is out"]]
+[[!pagetemplate template="news.tmpl"]]
+[[!tag announce]]
+
+This release is an emergency release to fix a critical security
+vulnerability in *Tor Browser*.
+
+It also fixes [[other security
+vulnerabilities|security/Numerous_security_holes_in_3.13.1]]. You should upgrade as soon as possible.
+
+[[!toc levels=1]]
+
+# Changes
+
+<a id="noscript"></a>
+
+## Fixed *NoScript* activation in *Tor Browser*
+
+Starting from Friday May 3, a problem in *Firefox* and *Tor Browser*
+disabled all add-ons. This release reactivates all add-ons in *Tor
+Browser*, especially *NoScript* which is used to:
+
+- Most importantly, protect against a very strong fingerprinting
+  technique called *HTML5 canvas fingerprinting* which can break your
+  anonymity.
+
+  Using HTML5 canvas fingerprinting, 2 or more collaborating websites
+  can compare how graphics and text are displayed by your computer and
+  determine whether 2 website visits are coming from the same computer
+  or not.
+
+- Strengthen *Tor Browser* against some JavaScript attacks that can lead
+  to compromised accounts and credentials on websites.
+
+- Enable or disable JavaScript on some websites using the *NoScript*
+  interface, if you use it.
+
+<div class="caution">
+
+<p>This issue still affects <em>Tor Browser</em> when it is restarted.</p>
+
+</div>
+
+If *NoScript* is activated, the *NoScript* icon appears in the top-left corner
+and *Tor Browser* is safe:
+
+[[!img with-noscript.png alt="" link="no"]]
+
+If *NoScript* is deactivated, the *NoScript* icon is absent from the top-left corner and *Tor Browser* is unsafe:
+
+[[!img without-noscript.png alt="" link="no"]]
+
+To reactivate *NoScript* without restarting Tails, do the following:
+
+1. Open the address <span class="command">about:config</span> in *Tor
+   Browser*.
+
+   [[!img about-config.png link="no"]]
+
+1. Click the **I accept the risk!** button.
+
+1. At the top of the page, search for
+   <span class="command">xpinstall.signatures.required</span>.
+
+1. Double-click on the **xpinstall.signatures.required** line in the
+   results to set its value to **false**.
+
+1. Verify that *NoScript* is activated again.
+
+   [[!img xpinstall-false.png link="no"]]
+
+XXX: Copy to security/noscript_disabled_in_tor_browser.mdwn
+
+## Other upgrades and changes
+
+<a id="openpgp-applet"></a>
+
+- Remove the *OpenPGP Applet* and *Pidgin* notification icons from the top
+  navigation bar.
+
+  [[!img top-navigation-bar.png link="no"]]
+
+  You can still access the *OpenPGP Applet* and *Pidgin* notification icons
+  from the system tray in the bottom-left corner of the screen.
+
+  To display the system tray, move your mouse to the thin gray line in
+  the bottom-left of the screen, above the window list:
+
+  [[!img system-tray-folded.png class="right-margin" link="no"]] [[!img system-tray-unfolded.png link="no"]]
+
+  To move these icons back to the top navigation bar, execute the
+  following command in a *Terminal*:
+
+  <p class="pre command">gnome-shell-extension-tool --enable-extension=TopIcons@phocean.net</p>
+
+  Until now, these icons were displayed in the top navigation bar by the
+  *TopIcons* GNOME extension. This extension is unmaintained, causes GNOME to
+  crash ([[!tails_ticket 11188]]), and will not work in Tails 5.0 based on
+  Debian 11 (Bullseye).
+  
+- Install localization packages only for the following languages:
+
+  - Arabic
+  - English
+  - Farsi
+  - French
+  - German
+  - Hindi
+  - Indonesian
+  - Italian
+  - Portuguese
+  - Russian
+  - Simplified Chinese
+  - Spanish
+  - Turkish
+
+  You can install localization packages for other languages using the
+  *[[Additional Software|doc/first_steps/additional_software]]* feature.
+
+  Localization packages include:
+
+  - *Thunderbird* localization:
+    packages <span class="command">thunderbird-l10n-<span class="command-placeholder">lang</span></span>
+  - *LibreOffice* localization:
+    packages <span class="command">libreoffice-l10n-<span class="command-placeholder">lang</span></span>
+  - Spell-checking dictionaries:
+    packages <span class="command">hunspell-<span class="command-placeholder">lang</span></span>
+
+  Where <span class="command-placeholder">lang</span> is the code for
+  your language. For example, <span class="command-placeholder">es</span> for
+  Spanish.
+
+- Add a suspend button to the system menu.
+
+  [[!img doc/first_steps/introduction_to_gnome_and_the_tails_desktop/system.png link="no"]]
+
+- Add suspend, restart, and shutdown buttons to the system menu when the screen is
+  locked.
+
+  [[!img suspend-and-shutdown-while-locked.png link="no"]]
+
+- Replace all non-Latin fonts with the [[!wikipedia Noto_fonts
+  desc="Noto fonts family"]].
+
+- Update *Debian* to 9.9.
+
+- Update *Thunderbird* to 60.6.1.
+
+## Fixed problems
+
+- Fix the automatic configuration of new email accounts in *Thunderbird*.
+  ([[!tails_ticket 16573]])
+
+- Prevent Tails from shutting down when waking up from suspend on some computers.
+  ([[!tails_ticket 11729]])
+
+- Fix the import of the [[Tails signing key|tails-signing.key]] in the
+  *Passwords and Keys* utility. ([[!tails_ticket #15213]])
+
+- Don't show notifications about *TailsData* when configuring a persistent
+  volume. ([[!tails_ticket 16632]])
+
+  [[!img TailsData-notification.png link="no"]]
+
+For more details, read our [[!tails_gitweb debian/changelog desc="changelog"]].
+
+<a id="known-issues"></a>
+
+# Known issues
+
+### Tails fails to start a second time on some computers ([[!tails_ticket 16389]])
+
+On some computers, after installing Tails to a USB stick,
+Tails starts a first time but fails to start a second time. In some
+cases, only BIOS (Legacy) was affected and the USB stick was not listed
+in the Boot Menu.
+
+We are still investigating the issue, so if it happens to you, please
+report your findings by email to <tails-testers@boum.org>. Mention the
+model of the computer and the USB stick. This mailing
+list is [archived publicly](https://lists.autistici.org/list/tails-testers.html).
+
+To fix this issue:
+
+1. Reinstall your USB stick using the same installation method.
+
+1. Start Tails for the first time and [[set up an administration
+   password|doc/first_steps/startup_options/administration_password]].
+
+1. 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>.
+
+1. Execute the following command:
+
+   <p class="pre command">sgdisk --recompute-chs /dev/bilibop</p>
+
+You can also test an experimental image:
+
+1. [Download the *.img* file from our development
+   server](https://nightly.tails.boum.org/build_Tails_ISO_bugfix-16389-recompute-chs/lastSuccessful/archive/build-artifacts/).
+
+1. Install it using the same installation methods.
+
+   We don't provide any OpenPGP signature or other verification technique
+   for this test image. Please only use it for testing.
+
+See the list of [[long-standing issues|support/known_issues]].
+
+# Get Tails 3.13.2
+
+## To upgrade your Tails USB stick and keep your persistent storage
+
+- Automatic upgrades are available from 3.12, 3.12.1, 3.13, and 3.13.1 to 3.13.2.
+
+- If you cannot do an automatic upgrade or if Tails fails to start after an
+  automatic upgrade, please try to do a [[manual upgrade|upgrade]].
+
+## To install Tails on a new USB stick
+
+Follow our installation instructions:
+
+  - [[Install from Windows|install/win]]
+  - [[Install from macOS|install/mac]]
+  - [[Install from Linux|install/linux]]
+
+<div class="caution"><p>All the data on this USB stick will be lost.</p></div>
+
+## To download only
+
+If you don't need installation or upgrade instructions, you can directly download
+Tails 3.13.2:
+
+  - [[For USB sticks (USB image)|install/download]]
+  - [[For DVDs and virtual machines (ISO image)|install/download-iso]]
+
+# What's coming up?
+
+Tails 3.14 is [[scheduled|contribute/calendar]] for May 14.
+
+Have a look at our [[!tails_roadmap]] to see where we are heading to.
+
+We need your help and there are many ways to [[contribute to
+Tails|contribute]] (<a href="https://tails.boum.org/donate/?r=3.13.2">donating</a> is only one of
+them). Come [[talk to us|about/contact#tails-dev]]!
diff --git a/wiki/src/news/version_3.13.2.pt.po b/wiki/src/news/version_3.13.2.pt.po
new file mode 100644
index 0000000000000000000000000000000000000000..55170ce7c08e8542c2aae488975b8f992caba275
--- /dev/null
+++ b/wiki/src/news/version_3.13.2.pt.po
@@ -0,0 +1,542 @@
+# 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: 2019-05-06 14:52+0200\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
+#, no-wrap
+msgid "[[!meta date=\"Sun, 5 May 2019 12:34:56 +0000\"]]\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "[[!meta title=\"Tails 3.13.2 is out\"]]\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "[[!pagetemplate template=\"news.tmpl\"]]\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "[[!tag announce]]\n"
+msgstr ""
+
+#. type: Plain text
+msgid ""
+"This release is an emergency release to fix a critical security "
+"vulnerability in *Tor Browser*."
+msgstr ""
+
+#. type: Plain text
+msgid ""
+"It also fixes [[other security "
+"vulnerabilities|security/Numerous_security_holes_in_3.13.1]]. You should "
+"upgrade as soon as possible."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "[[!toc levels=1]]\n"
+msgstr ""
+
+#. type: Title #
+#, no-wrap
+msgid "Changes"
+msgstr ""
+
+#. type: Title ##
+#, no-wrap
+msgid "Upgrades and changes"
+msgstr ""
+
+#. type: Plain text
+msgid "- Update *Tor Browser* to 8.0.9."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "  XXX: Check if there's a new blog post upstream.\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  Starting from Friday May 3, a problem in *Firefox* and *Tor Browser*\n"
+"  disabled all add-ons.\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  This release fixes the activation of add-ons in *Tor Browser*,\n"
+"  especially the *NoScript* add-on which is used to:\n"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid ""
+"Most importantly, protect against a very strong fingerprinting technique "
+"called *HTML5 canvas fingerprinting* which can break your anonymity."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"    Using HTML5 canvas fingerprinting, 2 or more collaborating websites\n"
+"    can compare how graphics and text are displayed by your computer to\n"
+"    determine whether 2 website visits are coming from the same\n"
+"    computer.\n"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid ""
+"Strengthen *Tor Browser* against some JavaScript attacks that can lead to "
+"compromised accounts and credentials on websites."
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid ""
+"Enable or disable JavaScript on some websites using the NoScript interface, "
+"if you use it."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "  XXX: Create ticket\n"
+msgstr ""
+
+#. type: Bullet: '- '
+msgid ""
+"Remove the *OpenPGP Applet* and *Pidgin* notification icons from the top "
+"navigation bar."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "  [[!img top-navigation-bar.png link=\"no\"]]\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  You can still access the *OpenPGP Applet* and *Pidgin* notification "
+"icons\n"
+"  from the system tray in the bottom-left corner of the screen.\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  To display the system tray, move your mouse to the thin gray line on the "
+"of\n"
+"  the window list in the bottom-left of the screen:\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  [[!img system-tray-folded.png class=\"margin\" link=\"no\"]] [[!img "
+"system-tray-unfolded.png class=\"margin\" link=\"no\"]]\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  To move these icons back to the top navigation bar, you can execute the\n"
+"  following command in a *Terminal*:\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  <p class=\"pre command\">gnome-shell-extension-tool "
+"--enable-extension=TopIcons@phocean.net</p>\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  Until now, these icons were display in the top navigation bar by the\n"
+"  *TopIcons* GNOME extension. This extension is unmaintained, causes GNOME "
+"to\n"
+"  crash ([[!tails_ticket 11188]]), and will not work in Tails 5.0 based on\n"
+"  Debian 11 (Bullseye).\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "  XXX: Tell the help desk what to do\n"
+msgstr ""
+
+#. type: Plain text
+msgid "- Install localization packages only for the following languages:"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Arabic"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "English"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Farsi"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "French"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "German"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Hindi"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Indonesian"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Italian"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Portuguese"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Russian"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Simplified Chinese"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Spanish"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "Turkish"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  You can install localization packages for other languages using the\n"
+"  *[[Additional Software|doc/first_steps/additional_software]]* feature.\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "  Localization packages include:\n"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid ""
+"*Thunderbird* localization: packages <span "
+"class=\"command\">thunderbird-l10n-<span "
+"class=\"command-placeholder\">lang</span></span>"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid ""
+"*LibreOffice* localization: packages <span "
+"class=\"command\">libreoffice-l10n-<span "
+"class=\"command-placeholder\">lang</span></span>"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid ""
+"Spell-checking dictionaries: packages <span class=\"command\">hunspell-<span "
+"class=\"command-placeholder\">lang</span></span>"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"  Where <span class=\"command-placeholder\">lang</span> is the code for\n"
+"  your language. For example, <span class=\"command-placeholder\">es</span> "
+"for\n"
+"  Spanish.\n"
+msgstr ""
+
+#. type: Plain text
+msgid "- Add a suspend button to the system menu."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "  XXX: Add screenshot\n"
+msgstr ""
+
+#. type: Bullet: '- '
+msgid ""
+"Add shutdown and restart buttons to the system menu when the screen is "
+"locked."
+msgstr ""
+
+#. type: Bullet: '- '
+msgid ""
+"Replace all non-Latin fonts with the [[!wikipedia Noto_fonts desc=\"Noto "
+"fonts family\"]]."
+msgstr ""
+
+#. type: Plain text
+msgid "- Update *Debian* to 9.9."
+msgstr ""
+
+#. type: Plain text
+msgid "- Update *Thunderbird* to 60.6.1."
+msgstr ""
+
+#. type: Title ##
+#, no-wrap
+msgid "Fixed problems"
+msgstr ""
+
+#. type: Bullet: '- '
+msgid ""
+"Fix the automatic configuration of new email accounts in *Thunderbird*.  "
+"([[!tails_ticket 16573]])"
+msgstr ""
+
+#. type: Bullet: '- '
+msgid ""
+"Fix Tails shutting down when waking up from suspend on some computers.  "
+"([[!tails_ticket 11729]])"
+msgstr ""
+
+#. type: Bullet: '- '
+msgid ""
+"Fix the import of the [[Tails signing key|tails-signing.key]] in the "
+"*Passwords and Keys* utility."
+msgstr ""
+
+#. type: Bullet: '- '
+msgid ""
+"Don't show notifications about *TailsData* when configuring a persistent "
+"volume. ([[!tails_ticket 16632]])"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "  [[!img TailsData-notification.png link=\"no\"]]\n"
+msgstr ""
+
+#. type: Plain text
+msgid ""
+"For more details, read our [[!tails_gitweb debian/changelog "
+"desc=\"changelog\"]]."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "<a id=\"known-issues\"></a>\n"
+msgstr ""
+
+#. type: Title #
+#, no-wrap
+msgid "Known issues"
+msgstr ""
+
+#. type: Title ###
+#, no-wrap
+msgid ""
+"Tails fails to start a second time on some computers ([[!tails_ticket "
+"16389]])"
+msgstr ""
+
+#. type: Plain text
+msgid ""
+"On some computers, after installing Tails to a USB stick, Tails starts a "
+"first time but fails to start a second time. In some cases, only BIOS "
+"(Legacy) was affected and the USB stick was not listed in the Boot Menu."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"We are still investigating the issue, so if it happens to you, please\n"
+"report your findings by email to <tails-testers@boum.org>. Mention the\n"
+"model of the computer and the USB stick. This mailing\n"
+"list is [archived "
+"publicly](https://lists.autistici.org/list/tails-testers.html).\n"
+msgstr ""
+
+#. type: Plain text
+msgid "To fix this issue:"
+msgstr ""
+
+#. type: Bullet: '1. '
+msgid "Reinstall your USB stick using the same installation method."
+msgstr ""
+
+#. type: Bullet: '1. '
+msgid ""
+"Start Tails for the first time and [[set up an administration "
+"password|doc/first_steps/startup_options/administration_password]]."
+msgstr ""
+
+#. type: Bullet: '1. '
+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>."
+msgstr ""
+
+#. type: Bullet: '1. '
+msgid "Execute the following command:"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "   <p class=\"pre command\">sgdisk --recompute-chs /dev/bilibop</p>\n"
+msgstr ""
+
+#. type: Plain text
+msgid "You can also test an experimental image:"
+msgstr ""
+
+#. type: Bullet: '1. '
+msgid ""
+"[Download the *.img* file from our development "
+"server](https://nightly.tails.boum.org/build_Tails_ISO_bugfix-16389-recompute-chs/lastSuccessful/archive/build-artifacts/)."
+msgstr ""
+
+#. type: Bullet: '1. '
+msgid "Install it using the same installation methods."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"   We don't provide any OpenPGP signature or other verification technique\n"
+"   for this test image. Please only use it for testing.\n"
+msgstr ""
+
+#. type: Plain text
+msgid "See the list of [[long-standing issues|support/known_issues]]."
+msgstr ""
+
+#. type: Title #
+#, no-wrap
+msgid "Get Tails 3.13.2"
+msgstr ""
+
+#. type: Title ##
+#, no-wrap
+msgid "To upgrade your Tails USB stick and keep your persistent storage"
+msgstr ""
+
+#. type: Plain text
+msgid "- Automatic upgrades are available from 3.12.1, 3.13, and 3.13.1 to 3.13.2."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid "  XXX: Check which IUK will be available with:\n"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"      git diff origin/master...origin/web/release-$VERSION "
+"wiki/src/upgrade/v1/Tails | grep \"to_$VERSION\"\n"
+msgstr ""
+
+#. type: Bullet: '- '
+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|upgrade]]."
+msgstr ""
+
+#. type: Title ##
+#, no-wrap
+msgid "To install Tails on a new USB stick"
+msgstr ""
+
+#. type: Plain text
+msgid "Follow our installation instructions:"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "[[Install from Windows|install/win]]"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "[[Install from macOS|install/mac]]"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "[[Install from Linux|install/linux]]"
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"<div class=\"caution\"><p>All the data on this USB stick will be "
+"lost.</p></div>\n"
+msgstr ""
+
+#. type: Title ##
+#, no-wrap
+msgid "To download only"
+msgstr ""
+
+#. type: Plain text
+msgid ""
+"If you don't need installation or upgrade instructions, you can directly "
+"download Tails 3.13.2:"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "[[For USB sticks (USB image)|install/download]]"
+msgstr ""
+
+#. type: Bullet: '  - '
+msgid "[[For DVDs and virtual machines (ISO image)|install/download-iso]]"
+msgstr ""
+
+#. type: Title #
+#, no-wrap
+msgid "What's coming up?"
+msgstr ""
+
+#. type: Plain text
+msgid "Tails 3.14 is [[scheduled|contribute/calendar]] for May 14."
+msgstr ""
+
+#. type: Plain text
+msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to."
+msgstr ""
+
+#. type: Plain text
+#, no-wrap
+msgid ""
+"We need your help and there are many ways to [[contribute to\n"
+"Tails|contribute]] (<a "
+"href=\"https://tails.boum.org/donate/?r=3.13.2\">donating</a> is only one "
+"of\n"
+"them). Come [[talk to us|about/contact#tails-dev]]!\n"
+msgstr ""
diff --git a/wiki/src/news/version_3.13.2/TailsData-notification.png b/wiki/src/news/version_3.13.2/TailsData-notification.png
new file mode 100644
index 0000000000000000000000000000000000000000..ed61beb3efd5eb8aaefa72ad5b211b4bd01e9f5a
Binary files /dev/null and b/wiki/src/news/version_3.13.2/TailsData-notification.png differ
diff --git a/wiki/src/news/version_3.13.2/about-config.png b/wiki/src/news/version_3.13.2/about-config.png
new file mode 100644
index 0000000000000000000000000000000000000000..f1858b060c3493e08ee37783c8c70c24c3cc602a
Binary files /dev/null and b/wiki/src/news/version_3.13.2/about-config.png differ
diff --git a/wiki/src/news/version_3.13.2/suspend-and-shutdown-while-locked.png b/wiki/src/news/version_3.13.2/suspend-and-shutdown-while-locked.png
new file mode 100644
index 0000000000000000000000000000000000000000..bef4484dee52b0bb9cb5c94be83c0d44e20f473a
Binary files /dev/null and b/wiki/src/news/version_3.13.2/suspend-and-shutdown-while-locked.png differ
diff --git a/wiki/src/news/version_3.13.2/system-tray-folded.png b/wiki/src/news/version_3.13.2/system-tray-folded.png
new file mode 100644
index 0000000000000000000000000000000000000000..6e312a9982c3f643c244362b44df193df333d297
Binary files /dev/null and b/wiki/src/news/version_3.13.2/system-tray-folded.png differ
diff --git a/wiki/src/news/version_3.13.2/system-tray-unfolded.png b/wiki/src/news/version_3.13.2/system-tray-unfolded.png
new file mode 100644
index 0000000000000000000000000000000000000000..87821baa45402d9499537d08bf990f862c4777ad
Binary files /dev/null and b/wiki/src/news/version_3.13.2/system-tray-unfolded.png differ
diff --git a/wiki/src/news/version_3.13.2/top-navigation-bar.png b/wiki/src/news/version_3.13.2/top-navigation-bar.png
new file mode 100644
index 0000000000000000000000000000000000000000..b0fd03fc4f874a8ae7e13e9fb60aa0e878a75d54
Binary files /dev/null and b/wiki/src/news/version_3.13.2/top-navigation-bar.png differ
diff --git a/wiki/src/news/version_3.13.2/with-noscript.png b/wiki/src/news/version_3.13.2/with-noscript.png
new file mode 100644
index 0000000000000000000000000000000000000000..f615e2c5d5f8588a2d370ab2a06516a98a32dfd3
Binary files /dev/null and b/wiki/src/news/version_3.13.2/with-noscript.png differ
diff --git a/wiki/src/news/version_3.13.2/without-noscript.png b/wiki/src/news/version_3.13.2/without-noscript.png
new file mode 100644
index 0000000000000000000000000000000000000000..18700a790fcf80624f41175e05db685373c3ad58
Binary files /dev/null and b/wiki/src/news/version_3.13.2/without-noscript.png differ
diff --git a/wiki/src/news/version_3.13.2/xpinstall-false.png b/wiki/src/news/version_3.13.2/xpinstall-false.png
new file mode 100644
index 0000000000000000000000000000000000000000..117b58d592825d619713dd1d5019dc1694331bfe
Binary files /dev/null and b/wiki/src/news/version_3.13.2/xpinstall-false.png differ
diff --git a/wiki/src/news/what_we_do_with_your_money.de.po b/wiki/src/news/what_we_do_with_your_money.de.po
index 74a18d9bebedeb537a605c68ab68dfa43b89f58c..d4bbe80f717b0e49cba04260fcecc55a484d9481 100644
--- a/wiki/src/news/what_we_do_with_your_money.de.po
+++ b/wiki/src/news/what_we_do_with_your_money.de.po
@@ -49,7 +49,7 @@ msgstr ""
 #. type: Plain text
 #, no-wrap
 msgid ""
-"[[!img expenses.png link=\"no\" class=\"margin center\" alt=\"Releases &\n"
+"[[!img expenses.png link=\"no\" class=\"top-margin center\" alt=\"Releases &\n"
 "foundations: 25%, New features: 23%, Help desk: 16%, Infrastructure: 13%,\n"
 "Administration: 12%, Meetings: 10%\"]]\n"
 msgstr ""
diff --git a/wiki/src/news/what_we_do_with_your_money.es.po b/wiki/src/news/what_we_do_with_your_money.es.po
index 4721776451bcb4a9478d556258c53f16b9a5eb84..e3149af113322c3ef1f052290fca044f88a4aedc 100644
--- a/wiki/src/news/what_we_do_with_your_money.es.po
+++ b/wiki/src/news/what_we_do_with_your_money.es.po
@@ -53,11 +53,11 @@ msgstr "En 2015, gastamos unos 184 000€, distribuidos como sigue:"
 #. type: Plain text
 #, no-wrap
 msgid ""
-"[[!img expenses.png link=\"no\" class=\"margin center\" alt=\"Releases &\n"
+"[[!img expenses.png link=\"no\" class=\"top-margin center\" alt=\"Releases &\n"
 "foundations: 25%, New features: 23%, Help desk: 16%, Infrastructure: 13%,\n"
 "Administration: 12%, Meetings: 10%\"]]\n"
 msgstr ""
-"[[!img expenses.png link=\"no\" class=\"margin center\" alt=\"Versiones &\n"
+"[[!img expenses.png link=\"no\" class=\"top-margin center\" alt=\"Versiones &\n"
 "cimientos: 25%, Nuevas funcionalidades: 23%, Soporte: 16%, Infraestructura: 13%,\n"
 "Administración: 12%, Encuentros: 10%\"]]\n"
 
diff --git a/wiki/src/news/what_we_do_with_your_money.fa.po b/wiki/src/news/what_we_do_with_your_money.fa.po
index af8c44992f827814944f8f43a96ce512e5216052..9d53505c4084d6beacd110e418fd78ceb82f71d5 100644
--- a/wiki/src/news/what_we_do_with_your_money.fa.po
+++ b/wiki/src/news/what_we_do_with_your_money.fa.po
@@ -49,7 +49,7 @@ msgstr ""
 #. type: Plain text
 #, no-wrap
 msgid ""
-"[[!img expenses.png link=\"no\" class=\"margin center\" alt=\"Releases &\n"
+"[[!img expenses.png link=\"no\" class=\"top-margin center\" alt=\"Releases &\n"
 "foundations: 25%, New features: 23%, Help desk: 16%, Infrastructure: 13%,\n"
 "Administration: 12%, Meetings: 10%\"]]\n"
 msgstr ""
diff --git a/wiki/src/news/what_we_do_with_your_money.fr.po b/wiki/src/news/what_we_do_with_your_money.fr.po
index 859146d726bb803362f54b0e507a4dc15306d802..1ddf8e265ed8478d57cdb1b61752d99709f15750 100644
--- a/wiki/src/news/what_we_do_with_your_money.fr.po
+++ b/wiki/src/news/what_we_do_with_your_money.fr.po
@@ -52,11 +52,11 @@ msgstr "En 2015, nous avons dépensé environ 184 000€, répartis comme suit :
 #. type: Plain text
 #, no-wrap
 msgid ""
-"[[!img expenses.png link=\"no\" class=\"margin center\" alt=\"Releases &\n"
+"[[!img expenses.png link=\"no\" class=\"top-margin center\" alt=\"Releases &\n"
 "foundations: 25%, New features: 23%, Help desk: 16%, Infrastructure: 13%,\n"
 "Administration: 12%, Meetings: 10%\"]]\n"
 msgstr ""
-"[[!img expenses.fr.png link=\"no\" class=\"margin center\" alt=\"Nouvelles versions\n"
+"[[!img expenses.fr.png link=\"no\" class=\"top-margin center\" alt=\"Nouvelles versions\n"
 "et fondations : 25%, Nouvelles fonctionnalités : 23%, Assistance : 16%, Infrastructure : 13%,\n"
 "Administration : 12%, Réunions : 10%\"]]\n"
 
diff --git a/wiki/src/news/what_we_do_with_your_money.it.po b/wiki/src/news/what_we_do_with_your_money.it.po
index ca44a98379abf30824c3b4d3e0012f02706c87b0..b030fb5bedced38d2a4c775774b6d7d15e1b0d66 100644
--- a/wiki/src/news/what_we_do_with_your_money.it.po
+++ b/wiki/src/news/what_we_do_with_your_money.it.po
@@ -50,7 +50,7 @@ msgstr ""
 #. type: Plain text
 #, no-wrap
 msgid ""
-"[[!img expenses.png link=\"no\" class=\"margin center\" alt=\"Releases &\n"
+"[[!img expenses.png link=\"no\" class=\"top-margin center\" alt=\"Releases &\n"
 "foundations: 25%, New features: 23%, Help desk: 16%, Infrastructure: 13%,\n"
 "Administration: 12%, Meetings: 10%\"]]\n"
 msgstr ""
diff --git a/wiki/src/news/what_we_do_with_your_money.mdwn b/wiki/src/news/what_we_do_with_your_money.mdwn
index 84636bb51dfab0385ad14e7ce22a46aefde01b64..26c4fd1e46f140c85df85ae4e40ccf016b629fb1 100644
--- a/wiki/src/news/what_we_do_with_your_money.mdwn
+++ b/wiki/src/news/what_we_do_with_your_money.mdwn
@@ -8,7 +8,7 @@ telling you more about how we use these donations.
 
 In 2015, we spent around 184 000€, distributed as follows:
 
-[[!img expenses.png link="no" class="margin center" alt="Releases &
+[[!img expenses.png link="no" class="top-margin center" alt="Releases &
 foundations: 25%, New features: 23%, Help desk: 16%, Infrastructure: 13%,
 Administration: 12%, Meetings: 10%"]]
 
diff --git a/wiki/src/news/what_we_do_with_your_money.pt.po b/wiki/src/news/what_we_do_with_your_money.pt.po
index 6c62e5959d0acef2bb6ca1f1494541356cbba16d..e078ec870cafd85a33de99319e34ddf0a27bc2e5 100644
--- a/wiki/src/news/what_we_do_with_your_money.pt.po
+++ b/wiki/src/news/what_we_do_with_your_money.pt.po
@@ -50,7 +50,7 @@ msgstr ""
 #. type: Plain text
 #, no-wrap
 msgid ""
-"[[!img expenses.png link=\"no\" class=\"margin center\" alt=\"Releases &\n"
+"[[!img expenses.png link=\"no\" class=\"top-margin center\" alt=\"Releases &\n"
 "foundations: 25%, New features: 23%, Help desk: 16%, Infrastructure: 13%,\n"
 "Administration: 12%, Meetings: 10%\"]]\n"
 msgstr ""
diff --git a/wiki/src/news/why_we_need_donations.de.po b/wiki/src/news/why_we_need_donations.de.po
index e13ffee526daa3f70cb071d9bc72b22325a426f1..249d5ad4bd6329869afd8ea607a98ecdb5e023f0 100644
--- a/wiki/src/news/why_we_need_donations.de.po
+++ b/wiki/src/news/why_we_need_donations.de.po
@@ -94,11 +94,11 @@ msgstr ""
 #. type: Plain text
 #, no-wrap
 msgid ""
-"[[!img income.png link=\"no\" class=\"margin center\" alt=\"Related to US\n"
+"[[!img income.png link=\"no\" class=\"top-margin center\" alt=\"Related to US\n"
 "government: 34%, Foundations & NGOs: 34%, Individuals: 17%, Companies:\n"
 "15%\"]]\n"
 msgstr ""
-"[[!img income.png link=\"no\" class=\"margin center\" alt=\"Mit Bezug zur US-\n"
+"[[!img income.png link=\"no\" class=\"top-margin center\" alt=\"Mit Bezug zur US-\n"
 "Regierung: 34%, Stiftungen und NGO's: 34%, Einzelpersonen: 17%, Firmen:\n"
 "15%\"]]\n"
 
diff --git a/wiki/src/news/why_we_need_donations.es.po b/wiki/src/news/why_we_need_donations.es.po
index 56dc2cb3864fd221a818ac8f4c5527f4b5b79c5d..ac8c415b14dd279cdc2adc47e898429dd37dfe44 100644
--- a/wiki/src/news/why_we_need_donations.es.po
+++ b/wiki/src/news/why_we_need_donations.es.po
@@ -88,7 +88,7 @@ msgstr ""
 #. type: Plain text
 #, no-wrap
 msgid ""
-"[[!img income.png link=\"no\" class=\"margin center\" alt=\"Related to US\n"
+"[[!img income.png link=\"no\" class=\"top-margin center\" alt=\"Related to US\n"
 "government: 34%, Foundations & NGOs: 34%, Individuals: 17%, Companies:\n"
 "15%\"]]\n"
 msgstr ""
diff --git a/wiki/src/news/why_we_need_donations.fa.po b/wiki/src/news/why_we_need_donations.fa.po
index d969205d13208ace52969b524a9028e2ca40f92d..45ee26987830959ac13252ccce09ed5bd81abf52 100644
--- a/wiki/src/news/why_we_need_donations.fa.po
+++ b/wiki/src/news/why_we_need_donations.fa.po
@@ -79,7 +79,7 @@ msgstr ""
 #. type: Plain text
 #, no-wrap
 msgid ""
-"[[!img income.png link=\"no\" class=\"margin center\" alt=\"Related to US\n"
+"[[!img income.png link=\"no\" class=\"top-margin center\" alt=\"Related to US\n"
 "government: 34%, Foundations & NGOs: 34%, Individuals: 17%, Companies:\n"
 "15%\"]]\n"
 msgstr ""
diff --git a/wiki/src/news/why_we_need_donations.fr.po b/wiki/src/news/why_we_need_donations.fr.po
index 2a79f4943033408affe4053b43f66186053a4879..13be91c016a30b2a310fb8dfa6d7346c70b369f4 100644
--- a/wiki/src/news/why_we_need_donations.fr.po
+++ b/wiki/src/news/why_we_need_donations.fr.po
@@ -94,11 +94,11 @@ msgstr ""
 #. type: Plain text
 #, no-wrap
 msgid ""
-"[[!img income.png link=\"no\" class=\"margin center\" alt=\"Related to US\n"
+"[[!img income.png link=\"no\" class=\"top-margin center\" alt=\"Related to US\n"
 "government: 34%, Foundations & NGOs: 34%, Individuals: 17%, Companies:\n"
 "15%\"]]\n"
 msgstr ""
-"[[!img income.fr.png link=\"no\" class=\"margin center\" alt=\"Lié au gouvernement\n"
+"[[!img income.fr.png link=\"no\" class=\"top-margin center\" alt=\"Lié au gouvernement\n"
 "US : 34%, Fondations et ONG : 34%, Individus : 17%, Compagnies :\n"
 "15%\"]]\n"
 
diff --git a/wiki/src/news/why_we_need_donations.it.po b/wiki/src/news/why_we_need_donations.it.po
index 8b0c57fb20cbe949dccedcb38cbd52a7c8abe9c6..72b923266cffcaa9bc14f7b005f3c4ce5bbe02b0 100644
--- a/wiki/src/news/why_we_need_donations.it.po
+++ b/wiki/src/news/why_we_need_donations.it.po
@@ -80,7 +80,7 @@ msgstr ""
 #. type: Plain text
 #, no-wrap
 msgid ""
-"[[!img income.png link=\"no\" class=\"margin center\" alt=\"Related to US\n"
+"[[!img income.png link=\"no\" class=\"top-margin center\" alt=\"Related to US\n"
 "government: 34%, Foundations & NGOs: 34%, Individuals: 17%, Companies:\n"
 "15%\"]]\n"
 msgstr ""
diff --git a/wiki/src/news/why_we_need_donations.mdwn b/wiki/src/news/why_we_need_donations.mdwn
index 32e49401b1a95f22ba6335398c48793405028ef9..98c93d11d339076e05cf827aa2e1a7fc0e335e79 100644
--- a/wiki/src/news/why_we_need_donations.mdwn
+++ b/wiki/src/news/why_we_need_donations.mdwn
@@ -22,7 +22,7 @@ trustworthy.
   - Entities related to the US government like the Open Technology Fund (OTF)
     or the National Democratic Institute (NDI)
 
-[[!img income.png link="no" class="margin center" alt="Related to US
+[[!img income.png link="no" class="top-margin center" alt="Related to US
 government: 34%, Foundations & NGOs: 34%, Individuals: 17%, Companies:
 15%"]]
 
diff --git a/wiki/src/news/why_we_need_donations.pt.po b/wiki/src/news/why_we_need_donations.pt.po
index 5212e3d75db0d700b5ef871ef12f377a5cfb5d2c..02656ba6127b854fe8a90b65acdc01aaa44adfe9 100644
--- a/wiki/src/news/why_we_need_donations.pt.po
+++ b/wiki/src/news/why_we_need_donations.pt.po
@@ -80,7 +80,7 @@ msgstr ""
 #. type: Plain text
 #, no-wrap
 msgid ""
-"[[!img income.png link=\"no\" class=\"margin center\" alt=\"Related to US\n"
+"[[!img income.png link=\"no\" class=\"top-margin center\" alt=\"Related to US\n"
 "government: 34%, Foundations & NGOs: 34%, Individuals: 17%, Companies:\n"
 "15%\"]]\n"
 msgstr ""
diff --git a/wiki/src/security/Numerous_security_holes_in_3.13.1.mdwn b/wiki/src/security/Numerous_security_holes_in_3.13.1.mdwn
new file mode 100644
index 0000000000000000000000000000000000000000..e5e0414d923fac911af6d7bbf2e9a4873e7fb72b
--- /dev/null
+++ b/wiki/src/security/Numerous_security_holes_in_3.13.1.mdwn
@@ -0,0 +1,21 @@
+[[!meta date="Sat, 4 May 2019 12:23:45 +0100"]]
+[[!meta title="Numerous security holes in Tails 3.13.1"]]
+
+[[!tag security/fixed]]
+
+Several security holes that affect Tails 3.13.1 are now fixed in Tails 3.13.2.
+
+We **strongly** encourage you to
+[[upgrade to Tails 3.13.2|news/version_3.13.2]] as soon as possible.
+
+ - Tor Browser: Armagadd-on-2.0 ([[!tails_ticket 16694]])
+ - thunderbird: [[!debsa2019 4420]]
+ - wget: [[!debsa2019 4425]]
+ - samba: [[!debsa2019 4427]]
+ - systemd: [[!debsa2019 4428]]
+ - wpa: [[!debsa2019 4430]]
+ - libssh2: [[!debsa2019 4431]]
+ - ghostscript: [[!debsa2019 4432]]
+ - libpng1.6: [[!debsa2019 4435]]
+ - imagemagick: [[!debsa2019 4436]]
+ - gst-plugins-base1.0: [[!debsa2019 4437]]
diff --git a/wiki/src/security/noscript_disabled_in_tor_browser.de.po b/wiki/src/security/noscript_disabled_in_tor_browser.de.po
index 0e8fe20aa4f22bcfbdc6aa26df4b665ea53c7b86..5e04f7d359fd9b7c54e6219764aa1cf651da0db2 100644
--- a/wiki/src/security/noscript_disabled_in_tor_browser.de.po
+++ b/wiki/src/security/noscript_disabled_in_tor_browser.de.po
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2019-05-04 08:38+0000\n"
+"POT-Creation-Date: 2019-05-06 14:52+0200\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"
@@ -26,6 +26,11 @@ msgstr ""
 msgid "[[!meta title=\"Tor Browser not safe without manual action\"]]\n"
 msgstr ""
 
+#. type: Plain text
+#, no-wrap
+msgid "[[!tag security/fixed]]\n"
+msgstr ""
+
 #. type: Plain text
 #, no-wrap
 msgid ""
diff --git a/wiki/src/security/noscript_disabled_in_tor_browser.es.po b/wiki/src/security/noscript_disabled_in_tor_browser.es.po
index 0e8fe20aa4f22bcfbdc6aa26df4b665ea53c7b86..5e04f7d359fd9b7c54e6219764aa1cf651da0db2 100644
--- a/wiki/src/security/noscript_disabled_in_tor_browser.es.po
+++ b/wiki/src/security/noscript_disabled_in_tor_browser.es.po
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2019-05-04 08:38+0000\n"
+"POT-Creation-Date: 2019-05-06 14:52+0200\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"
@@ -26,6 +26,11 @@ msgstr ""
 msgid "[[!meta title=\"Tor Browser not safe without manual action\"]]\n"
 msgstr ""
 
+#. type: Plain text
+#, no-wrap
+msgid "[[!tag security/fixed]]\n"
+msgstr ""
+
 #. type: Plain text
 #, no-wrap
 msgid ""
diff --git a/wiki/src/security/noscript_disabled_in_tor_browser.fa.po b/wiki/src/security/noscript_disabled_in_tor_browser.fa.po
index 0e8fe20aa4f22bcfbdc6aa26df4b665ea53c7b86..5e04f7d359fd9b7c54e6219764aa1cf651da0db2 100644
--- a/wiki/src/security/noscript_disabled_in_tor_browser.fa.po
+++ b/wiki/src/security/noscript_disabled_in_tor_browser.fa.po
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2019-05-04 08:38+0000\n"
+"POT-Creation-Date: 2019-05-06 14:52+0200\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"
@@ -26,6 +26,11 @@ msgstr ""
 msgid "[[!meta title=\"Tor Browser not safe without manual action\"]]\n"
 msgstr ""
 
+#. type: Plain text
+#, no-wrap
+msgid "[[!tag security/fixed]]\n"
+msgstr ""
+
 #. type: Plain text
 #, no-wrap
 msgid ""
diff --git a/wiki/src/security/noscript_disabled_in_tor_browser.fr.po b/wiki/src/security/noscript_disabled_in_tor_browser.fr.po
index 0e8fe20aa4f22bcfbdc6aa26df4b665ea53c7b86..5e04f7d359fd9b7c54e6219764aa1cf651da0db2 100644
--- a/wiki/src/security/noscript_disabled_in_tor_browser.fr.po
+++ b/wiki/src/security/noscript_disabled_in_tor_browser.fr.po
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2019-05-04 08:38+0000\n"
+"POT-Creation-Date: 2019-05-06 14:52+0200\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"
@@ -26,6 +26,11 @@ msgstr ""
 msgid "[[!meta title=\"Tor Browser not safe without manual action\"]]\n"
 msgstr ""
 
+#. type: Plain text
+#, no-wrap
+msgid "[[!tag security/fixed]]\n"
+msgstr ""
+
 #. type: Plain text
 #, no-wrap
 msgid ""
diff --git a/wiki/src/security/noscript_disabled_in_tor_browser.it.po b/wiki/src/security/noscript_disabled_in_tor_browser.it.po
index 0e8fe20aa4f22bcfbdc6aa26df4b665ea53c7b86..5e04f7d359fd9b7c54e6219764aa1cf651da0db2 100644
--- a/wiki/src/security/noscript_disabled_in_tor_browser.it.po
+++ b/wiki/src/security/noscript_disabled_in_tor_browser.it.po
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2019-05-04 08:38+0000\n"
+"POT-Creation-Date: 2019-05-06 14:52+0200\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"
@@ -26,6 +26,11 @@ msgstr ""
 msgid "[[!meta title=\"Tor Browser not safe without manual action\"]]\n"
 msgstr ""
 
+#. type: Plain text
+#, no-wrap
+msgid "[[!tag security/fixed]]\n"
+msgstr ""
+
 #. type: Plain text
 #, no-wrap
 msgid ""
diff --git a/wiki/src/security/noscript_disabled_in_tor_browser.mdwn b/wiki/src/security/noscript_disabled_in_tor_browser.mdwn
index 3ce60e4ea5d4a2c8faa87c7a550d9ca5e4a9b91d..21c01171207efc380e6c9c24e26a17117193e72a 100644
--- a/wiki/src/security/noscript_disabled_in_tor_browser.mdwn
+++ b/wiki/src/security/noscript_disabled_in_tor_browser.mdwn
@@ -1,25 +1,57 @@
 [[!meta date="Sat, 04 May 2019 00:00:00 +0000"]]
 [[!meta title="Tor Browser not safe without manual action"]]
 
+[[!tag security/fixed]]
+
 <div class="caution">Tor Browser in Tails 3.13.1 is not safe to use
 without taking the manual steps listed below each time you start
 Tails!</div>
 
-Due to [a mistake in Mozilla's signing
-infrastructure](https://bugzilla.mozilla.org/show_bug.cgi?id=1548973)
-all Firefox and Tor Browser add-ons are currently disabled, which
-disables important protections (the NoScript add-on) for Tails users.
+Starting from Friday May 3, a problem in *Firefox* and *Tor Browser*
+disabled all add-ons, especially *NoScript* which is used to:
+
+- Most importantly, protect against a very strong fingerprinting
+  technique called *HTML5 canvas fingerprinting* which can break your
+  anonymity.
+
+  Using HTML5 canvas fingerprinting, 2 or more collaborating websites
+  can compare how graphics and text are displayed by your computer and
+  determine whether 2 website visits are coming from the same computer
+  or not.
+
+- Strengthen *Tor Browser* against some JavaScript attacks that can lead
+  to compromised accounts and credentials on websites.
+
+- Enable or disable JavaScript on some websites using the *NoScript*
+  interface, if you use it.
+
+If *NoScript* is activated, the *NoScript* icon appears in the top-left corner
+and *Tor Browser* is safe:
+
+[[!img news/version_3.13.2/with-noscript.png alt="" link="no"]]
+
+If *NoScript* is deactivated, the *NoScript* icon is absent from the top-left corner and *Tor Browser* is unsafe:
+
+[[!img news/version_3.13.2/without-noscript.png alt="" link="no"]]
+
+## Activate *NoScript* manually
+
+To secure *Tor Browser* in Tails 3.13.1 or earlier, you must activate
+*NoScript* every time you start Tails:
+
+1. Open the address <span class="command">about:config</span> in *Tor
+   Browser*.
+
+   [[!img news/version_3.13.2/about-config.png link="no"]]
+
+1. Click the **I accept the risk!** button.
+
+1. At the top of the page, search for
+   <span class="command">xpinstall.signatures.required</span>.
 
-To secure your Tor Browser you must follow these steps each time you
-start Tails 3.13.1:
+1. Double-click on the **xpinstall.signatures.required** line in the
+   results to set its value to **false**.
 
-  1. Open the address `about:config` in the Tor Browser address bar
-  2. Click the "I accept the risk!" button
-  3. At the top of the page, search for
-     `xpinstall.signatures.required`
-  4. Set the `xpinstall.signatures.required` entry to **false** by
-     double clicking it
+1. Verify that *NoScript* is activated again.
 
-To the right of the address bar an icon with a blue S (and possibly a
-red question mark or other variations) should appear, and this
-indicates that your browser is safe again.
+   [[!img news/version_3.13.2/xpinstall-false.png link="no"]]
diff --git a/wiki/src/security/noscript_disabled_in_tor_browser.pt.po b/wiki/src/security/noscript_disabled_in_tor_browser.pt.po
index 0e8fe20aa4f22bcfbdc6aa26df4b665ea53c7b86..5e04f7d359fd9b7c54e6219764aa1cf651da0db2 100644
--- a/wiki/src/security/noscript_disabled_in_tor_browser.pt.po
+++ b/wiki/src/security/noscript_disabled_in_tor_browser.pt.po
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2019-05-04 08:38+0000\n"
+"POT-Creation-Date: 2019-05-06 14:52+0200\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"
@@ -26,6 +26,11 @@ msgstr ""
 msgid "[[!meta title=\"Tor Browser not safe without manual action\"]]\n"
 msgstr ""
 
+#. type: Plain text
+#, no-wrap
+msgid "[[!tag security/fixed]]\n"
+msgstr ""
+
 #. type: Plain text
 #, no-wrap
 msgid ""
diff --git a/wiki/src/support/faq.de.po b/wiki/src/support/faq.de.po
index 758c7ad2e6f8839eef0f6aeec558ba6c99c92210..092e96a2992aa2170babea63770cd62ffc7c68f0 100644
--- a/wiki/src/support/faq.de.po
+++ b/wiki/src/support/faq.de.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2019-05-02 16:25+0000\n"
+"POT-Creation-Date: 2019-05-06 14:52+0200\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"
@@ -41,7 +41,7 @@ msgstr ""
 
 #. type: Title =
 #, no-wrap
-msgid "Other useful resources\n"
+msgid "Other useful resources"
 msgstr ""
 
 #. type: Bullet: '  - '
@@ -56,7 +56,7 @@ msgstr ""
 
 #. type: Title =
 #, no-wrap
-msgid "Tails project\n"
+msgid "Tails project"
 msgstr ""
 
 #. type: Plain text
@@ -66,7 +66,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "What is the relationship between Tor and Tails?\n"
+msgid "What is the relationship between Tor and Tails?"
 msgstr ""
 
 #. type: Plain text
@@ -82,7 +82,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Why is Tails based on Debian and not on another distribution?\n"
+msgid "Why is Tails based on Debian and not on another distribution?"
 msgstr ""
 
 #. type: Plain text
@@ -108,7 +108,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Why isn't Tails based on Ubuntu?\n"
+msgid "Why isn't Tails based on Ubuntu?"
 msgstr ""
 
 #. type: Plain text
@@ -171,7 +171,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Why does Tails ship the GNOME Desktop?\n"
+msgid "Why does Tails ship the GNOME Desktop?"
 msgstr ""
 
 #. type: Plain text
@@ -223,7 +223,7 @@ msgstr ""
 
 #. type: Title =
 #, no-wrap
-msgid "Hardware compatibility\n"
+msgid "Hardware compatibility"
 msgstr ""
 
 #. type: Plain text
@@ -233,7 +233,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Does Tails work on ARM architecture, Raspberry Pi, tablets, or phones?\n"
+msgid "Does Tails work on ARM architecture, Raspberry Pi, tablets, or phones?"
 msgstr ""
 
 #. type: Plain text
@@ -262,8 +262,9 @@ msgid "<a id=\"installation\"></a>\n"
 msgstr ""
 
 #. type: Title =
-#, no-wrap
-msgid "Installation\n"
+#, fuzzy, no-wrap
+#| msgid "Installation\n"
+msgid "Installation"
 msgstr "Installation\n"
 
 #. type: Plain text
@@ -273,7 +274,7 @@ msgstr "<a id=\"install_permanently\"></a>\n"
 
 #. type: Title -
 #, no-wrap
-msgid "Can I install Tails permanently onto my hard disk?\n"
+msgid "Can I install Tails permanently onto my hard disk?"
 msgstr ""
 
 #. type: Plain text
@@ -297,7 +298,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Can I install Tails with UNetbootin, YUMI, Rufus or my other favorite tool?\n"
+msgid "Can I install Tails with UNetbootin, YUMI, Rufus or my other favorite tool?"
 msgstr ""
 
 #. type: Plain text
@@ -315,7 +316,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Should I update Tails using `apt` or <span class=\"application\">Synaptic</span>?\n"
+msgid "Should I update Tails using `apt` or <span class=\"application\">Synaptic</span>?"
 msgstr ""
 
 #. type: Plain text
@@ -335,7 +336,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Can I buy a preinstalled Tails USB stick or DVD?\n"
+msgid "Can I buy a preinstalled Tails USB stick or DVD?"
 msgstr ""
 
 #. type: Plain text
@@ -371,7 +372,7 @@ msgstr "<a id=\"browser\"></a>\n"
 
 #. type: Title -
 #, no-wrap
-msgid "Where can I find the checksum to verify my Tails download?\n"
+msgid "Where can I find the checksum to verify my Tails download?"
 msgstr ""
 
 #. type: Plain text
@@ -410,7 +411,7 @@ msgstr "<a id=\"browser\"></a>\n"
 
 #. type: Title =
 #, no-wrap
-msgid "Web browser\n"
+msgid "Web browser"
 msgstr ""
 
 #. type: Plain text
@@ -420,7 +421,7 @@ msgstr "<a id=\"javascript\"></a>\n"
 
 #. type: Title -
 #, no-wrap
-msgid "Why is JavaScript enabled by default in <span class=\"application\">Tor Browser</span>?\n"
+msgid "Why is JavaScript enabled by default in <span class=\"application\">Tor Browser</span>?"
 msgstr ""
 
 #. type: Plain text
@@ -455,7 +456,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Can I install other add-ons in <span class=\"application\">Tor Browser</span>?\n"
+msgid "Can I install other add-ons in <span class=\"application\">Tor Browser</span>?"
 msgstr ""
 
 #. type: Plain text
@@ -533,7 +534,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Should I manually update add-ons included in <span class=\"application\">Tor Browser</span>?\n"
+msgid "Should I manually update add-ons included in <span class=\"application\">Tor Browser</span>?"
 msgstr ""
 
 #. type: Plain text
@@ -552,7 +553,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Can I view websites using Adobe Flash with Tails?\n"
+msgid "Can I view websites using Adobe Flash with Tails?"
 msgstr ""
 
 #. type: Plain text
@@ -602,7 +603,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "How to analyse the results of online anonymity tests?\n"
+msgid "How to analyse the results of online anonymity tests?"
 msgstr ""
 
 #. type: Plain text
@@ -652,7 +653,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Is Java installed in the <span class=\"application\">Tor Browser</span>?\n"
+msgid "Is Java installed in the <span class=\"application\">Tor Browser</span>?"
 msgstr ""
 
 #. type: Plain text
@@ -668,7 +669,7 @@ msgstr "<a id=\"persistence\"></a>\n"
 
 #. type: Title =
 #, no-wrap
-msgid "Persistence\n"
+msgid "Persistence"
 msgstr ""
 
 #. type: Plain text
@@ -678,7 +679,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Can I save my custom settings?\n"
+msgid "Can I save my custom settings?"
 msgstr ""
 
 #. type: Plain text
@@ -711,7 +712,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "How strong is the encryption of the persistent volume and LUKS?\n"
+msgid "How strong is the encryption of the persistent volume and LUKS?"
 msgstr ""
 
 #. type: Plain text
@@ -747,7 +748,7 @@ msgstr "<a id=\"recover_passphrase\"></a>\n"
 
 #. type: Title -
 #, no-wrap
-msgid "Is it possible to recover the passphrase of the persistent volume?\n"
+msgid "Is it possible to recover the passphrase of the persistent volume?"
 msgstr ""
 
 #. type: Plain text
@@ -764,8 +765,9 @@ msgid "<a id=\"networking\"></a>\n"
 msgstr ""
 
 #. type: Title =
-#, no-wrap
-msgid "Networking\n"
+#, fuzzy, no-wrap
+#| msgid "Networking\n"
+msgid "Networking"
 msgstr "Netzwerk\n"
 
 #. type: Plain text
@@ -775,7 +777,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Can I use Tails with a VPN?\n"
+msgid "Can I use Tails with a VPN?"
 msgstr ""
 
 #. type: Plain text
@@ -851,7 +853,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Can I choose the country of my exit nodes or further edit the `torrc`?\n"
+msgid "Can I choose the country of my exit nodes or further edit the `torrc`?"
 msgstr ""
 
 #. type: Plain text
@@ -878,7 +880,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "How does the DNS resolution work in Tails?\n"
+msgid "How does the DNS resolution work in Tails?"
 msgstr ""
 
 #. type: Plain text
@@ -894,7 +896,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Why does Tails automatically connect to several websites when starting?\n"
+msgid "Why does Tails automatically connect to several websites when starting?"
 msgstr ""
 
 #. type: Plain text
@@ -925,7 +927,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Can I help the Tor network by running a relay or a bridge in Tails?\n"
+msgid "Can I help the Tor network by running a relay or a bridge in Tails?"
 msgstr ""
 
 #. type: Plain text
@@ -940,10 +942,7 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#, no-wrap
-msgid ""
-"Can I run a Tor onion service on Tails?\n"
-"----------------------------------------\n"
+msgid "Can I run a Tor onion service on Tails?"
 msgstr ""
 
 #. type: Plain text
@@ -965,7 +964,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Can I use <span class=\"command\">ping</span> in Tails?\n"
+msgid "Can I use <span class=\"command\">ping</span> in Tails?"
 msgstr ""
 
 #. type: Plain text
@@ -983,7 +982,7 @@ msgstr "<a id=\"software\"></a>\n"
 
 #. type: Title =
 #, no-wrap
-msgid "Software not included in Tails\n"
+msgid "Software not included in Tails"
 msgstr ""
 
 #. type: Plain text
@@ -993,7 +992,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Can my favourite software be included in Tails?\n"
+msgid "Can my favourite software be included in Tails?"
 msgstr ""
 
 #. type: Plain text
@@ -1109,7 +1108,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Can I download using BitTorrent with Tails?\n"
+msgid "Can I download using BitTorrent with Tails?"
 msgstr ""
 
 #. type: Plain text
@@ -1148,7 +1147,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Can I download videos from websites?\n"
+msgid "Can I download videos from websites?"
 msgstr ""
 
 #. type: Plain text
@@ -1185,7 +1184,7 @@ msgstr ""
 
 #. type: Title =
 #, no-wrap
-msgid "Desktop environment\n"
+msgid "Desktop environment"
 msgstr ""
 
 #. type: Plain text
@@ -1195,7 +1194,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Why is the time set wrong?\n"
+msgid "Why is the time set wrong?"
 msgstr ""
 
 #. type: Plain text
@@ -1236,7 +1235,7 @@ msgstr ""
 
 #. type: Title =
 #, no-wrap
-msgid "Other security issues\n"
+msgid "Other security issues"
 msgstr ""
 
 #. type: Plain text
@@ -1246,7 +1245,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Is it safe to use Tails on a compromised system?\n"
+msgid "Is it safe to use Tails on a compromised system?"
 msgstr ""
 
 #. type: Plain text
@@ -1282,7 +1281,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Can I verify the integrity of a Tails USB stick or DVD?\n"
+msgid "Can I verify the integrity of a Tails USB stick or DVD?"
 msgstr ""
 
 #. type: Plain text
@@ -1316,7 +1315,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Can I use the memory wipe feature of Tails on another operating system?\n"
+msgid "Can I use the memory wipe feature of Tails on another operating system?"
 msgstr ""
 
 #. type: Plain text
@@ -1339,7 +1338,7 @@ msgstr "<a id=\"new_identity\"></a>\n"
 
 #. type: Title -
 #, no-wrap
-msgid "Where is the <span class=\"guilabel\">New Identity</span> button?\n"
+msgid "Where is the <span class=\"guilabel\">New Identity</span> button?"
 msgstr ""
 
 #. type: Plain text
@@ -1389,7 +1388,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Does Tails collect information about its users?\n"
+msgid "Does Tails collect information about its users?"
 msgstr ""
 
 #. type: Plain text
@@ -1428,7 +1427,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Does Tails need an antivirus?\n"
+msgid "Does Tails need an antivirus?"
 msgstr ""
 
 #. type: Plain text
diff --git a/wiki/src/support/faq.es.po b/wiki/src/support/faq.es.po
index 46a2e9ab05220d3383b8bc84ea89c8bc88717946..7829ff96e40ef48d06cd615d94bde08fb5a29aff 100644
--- a/wiki/src/support/faq.es.po
+++ b/wiki/src/support/faq.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: 2019-05-02 16:25+0000\n"
+"POT-Creation-Date: 2019-05-06 14:52+0200\n"
 "PO-Revision-Date: 2018-04-23 13:53+0000\n"
 "Last-Translator: Tails translators <tails-l10n@boum.org>\n"
 "Language-Team: Spanish <https://translate.tails.boum.org/projects/tails/faq/"
@@ -44,8 +44,9 @@ msgid "<a id=\"project\"></a>\n"
 msgstr "<a id=\"project\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Other useful resources\n"
+#, fuzzy, no-wrap
+#| msgid "Other useful resources\n"
+msgid "Other useful resources"
 msgstr "Otros recursos útiles\n"
 
 #. type: Bullet: '  - '
@@ -63,8 +64,9 @@ msgstr ""
 "(https://tor.stackexchange.com/)"
 
 #. type: Title =
-#, no-wrap
-msgid "Tails project\n"
+#, fuzzy, no-wrap
+#| msgid "Tails project\n"
+msgid "Tails project"
 msgstr "El proyecto Tails\n"
 
 #. type: Plain text
@@ -73,8 +75,9 @@ msgid "<a id=\"relationship_with_tor\"></a>\n"
 msgstr "<a id=\"relationship_with_tor\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "What is the relationship between Tor and Tails?\n"
+#, fuzzy, no-wrap
+#| msgid "What is the relationship between Tor and Tails?\n"
+msgid "What is the relationship between Tor and Tails?"
 msgstr "¿Qué relación hay entre Tor y Tails?\n"
 
 #. type: Plain text
@@ -91,8 +94,9 @@ msgid "<a id=\"debian\"></a>\n"
 msgstr "<a id=\"debian\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Why is Tails based on Debian and not on another distribution?\n"
+#, fuzzy, no-wrap
+#| msgid "Why is Tails based on Debian and not on another distribution?\n"
+msgid "Why is Tails based on Debian and not on another distribution?"
 msgstr "¿Por qué Tails está basado en Debian y no en otra distribución?\n"
 
 #. type: Plain text
@@ -126,8 +130,9 @@ msgid "<a id=\"ubuntu\"></a>\n"
 msgstr "<a id=\"ubuntu\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Why isn't Tails based on Ubuntu?\n"
+#, fuzzy, no-wrap
+#| msgid "Why isn't Tails based on Ubuntu?\n"
+msgid "Why isn't Tails based on Ubuntu?"
 msgstr "¿Por qué Tails no está basado en Ubuntu?\n"
 
 #. type: Plain text
@@ -209,8 +214,9 @@ msgid "<a id=\"gnome\"></a>\n"
 msgstr "<a id=\"gnome\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Why does Tails ship the GNOME Desktop?\n"
+#, fuzzy, no-wrap
+#| msgid "Why does Tails ship the GNOME Desktop?\n"
+msgid "Why does Tails ship the GNOME Desktop?"
 msgstr "¿Por qué Tails viene con el Escritorio GNOME?\n"
 
 #. type: Plain text
@@ -271,8 +277,9 @@ msgid "<a id=\"hardware\"></a>\n"
 msgstr "<a id=\"hardware\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Hardware compatibility\n"
+#, fuzzy, no-wrap
+#| msgid "Hardware compatibility\n"
+msgid "Hardware compatibility"
 msgstr "Compatibilidad de hardware\n"
 
 #. type: Plain text
@@ -281,8 +288,9 @@ msgid "<a id=\"arm\"></a>\n"
 msgstr "<a id=\"arm\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Does Tails work on ARM architecture, Raspberry Pi, tablets, or phones?\n"
+#, fuzzy, no-wrap
+#| msgid "Does Tails work on ARM architecture, Raspberry Pi, tablets, or phones?\n"
+msgid "Does Tails work on ARM architecture, Raspberry Pi, tablets, or phones?"
 msgstr "¿Tails funciona en arquitecturas ARM, Raspberry Pi, tablets o teléfonos?\n"
 
 #. type: Plain text
@@ -319,8 +327,9 @@ msgid "<a id=\"installation\"></a>\n"
 msgstr "<a id=\"installation\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Installation\n"
+#, fuzzy, no-wrap
+#| msgid "Installation\n"
+msgid "Installation"
 msgstr "Instalación\n"
 
 #. type: Plain text
@@ -329,8 +338,9 @@ msgid "<a id=\"install_permanently\"></a>\n"
 msgstr "<a id=\"install_permanently\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Can I install Tails permanently onto my hard disk?\n"
+#, fuzzy, no-wrap
+#| msgid "Can I install Tails permanently onto my hard disk?\n"
+msgid "Can I install Tails permanently onto my hard disk?"
 msgstr "¿Puedo instalar Tails permanentemente en mi computadora?\n"
 
 #. type: Plain text
@@ -359,8 +369,9 @@ msgid "<a id=\"unetbootin_etc\"></a>\n"
 msgstr "<a id=\"unetbootin_etc\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Can I install Tails with UNetbootin, YUMI, Rufus or my other favorite tool?\n"
+#, fuzzy, no-wrap
+#| msgid "Can I install Tails with UNetbootin, YUMI, Rufus or my other favorite tool?\n"
+msgid "Can I install Tails with UNetbootin, YUMI, Rufus or my other favorite tool?"
 msgstr "¿Puedo instalar Tails con UNetbootin, YUMI, Rufus o mi otra herramienta favorita?\n"
 
 #. type: Plain text
@@ -381,8 +392,9 @@ msgid "<a id=\"upgrade\"></a>\n"
 msgstr "<a id=\"upgrade\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Should I update Tails using `apt` or <span class=\"application\">Synaptic</span>?\n"
+#, fuzzy, no-wrap
+#| msgid "Should I update Tails using `apt` or <span class=\"application\">Synaptic</span>?\n"
+msgid "Should I update Tails using `apt` or <span class=\"application\">Synaptic</span>?"
 msgstr "¿Debo actualizar Tails con `apt` o <span class=\"application\">Synaptic</span>?\n"
 
 #. type: Plain text
@@ -406,8 +418,9 @@ msgid "<a id=\"preinstalled\"></a>\n"
 msgstr "<a id=\"preinstalled\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Can I buy a preinstalled Tails USB stick or DVD?\n"
+#, fuzzy, no-wrap
+#| msgid "Can I buy a preinstalled Tails USB stick or DVD?\n"
+msgid "Can I buy a preinstalled Tails USB stick or DVD?"
 msgstr "¿Puedo comprar una memoria USB o un DVD con Tails preinstalado?\n"
 
 #. type: Plain text
@@ -451,8 +464,9 @@ msgid "<a id=\"checksum\"></a>\n"
 msgstr "<a id=\"checksum\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Where can I find the checksum to verify my Tails download?\n"
+#, fuzzy, no-wrap
+#| msgid "Where can I find the checksum to verify my Tails download?\n"
+msgid "Where can I find the checksum to verify my Tails download?"
 msgstr "¿Dónde puedo encontrar el checksum para verificar mi descarga de Tails?\n"
 
 #. type: Plain text
@@ -492,8 +506,9 @@ msgid "<a id=\"browser\"></a>\n"
 msgstr "<a id=\"browser\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Web browser\n"
+#, fuzzy, no-wrap
+#| msgid "Web browser\n"
+msgid "Web browser"
 msgstr "Navegador web\n"
 
 #. type: Plain text
@@ -502,8 +517,9 @@ msgid "<a id=\"javascript\"></a>\n"
 msgstr "<a id=\"javascript\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Why is JavaScript enabled by default in <span class=\"application\">Tor Browser</span>?\n"
+#, fuzzy, no-wrap
+#| msgid "Why is JavaScript enabled by default in <span class=\"application\">Tor Browser</span>?\n"
+msgid "Why is JavaScript enabled by default in <span class=\"application\">Tor Browser</span>?"
 msgstr "¿Por qué JavaScript está habilitado por defecto en el <span class=\"application\">Tor Browser</span>?\n"
 
 #. type: Plain text
@@ -551,8 +567,9 @@ msgid "<a id=\"add-ons\"></a>\n"
 msgstr "<a id=\"add-ons\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Can I install other add-ons in <span class=\"application\">Tor Browser</span>?\n"
+#, fuzzy, no-wrap
+#| msgid "Can I install other add-ons in <span class=\"application\">Tor Browser</span>?\n"
+msgid "Can I install other add-ons in <span class=\"application\">Tor Browser</span>?"
 msgstr "¿Puedo instalar otras extensiones en el <span class=\"application\">Tor Browser</span>?\n"
 
 #. type: Plain text
@@ -655,8 +672,9 @@ msgid "<a id=\"add-ons_update\"></a>\n"
 msgstr "<a id=\"add-ons_update\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Should I manually update add-ons included in <span class=\"application\">Tor Browser</span>?\n"
+#, fuzzy, no-wrap
+#| msgid "Should I manually update add-ons included in <span class=\"application\">Tor Browser</span>?\n"
+msgid "Should I manually update add-ons included in <span class=\"application\">Tor Browser</span>?"
 msgstr "¿Debería actualizar las extensiones incluidas en <span class=\"application\">Tor Browser</span>?\n"
 
 #. type: Plain text
@@ -678,8 +696,9 @@ msgid "<a id=\"flash\"></a>\n"
 msgstr "<a id=\"flash\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Can I view websites using Adobe Flash with Tails?\n"
+#, fuzzy, no-wrap
+#| msgid "Can I view websites using Adobe Flash with Tails?\n"
+msgid "Can I view websites using Adobe Flash with Tails?"
 msgstr "¿Puedo ver sitios que usan Adobe Flash en Tails?\n"
 
 #. type: Plain text
@@ -739,8 +758,9 @@ msgid "<a id=\"anonymity_test\"></a>\n"
 msgstr "<a id=\"anonymity_test\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "How to analyse the results of online anonymity tests?\n"
+#, fuzzy, no-wrap
+#| msgid "How to analyse the results of online anonymity tests?\n"
+msgid "How to analyse the results of online anonymity tests?"
 msgstr "¿Cómo analizar los resultados de los tests de anonimato online?\n"
 
 #. type: Plain text
@@ -805,8 +825,9 @@ msgid "<a id=\"java\"></a>\n"
 msgstr "<a id=\"java\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Is Java installed in the <span class=\"application\">Tor Browser</span>?\n"
+#, fuzzy, no-wrap
+#| msgid "Is Java installed in the <span class=\"application\">Tor Browser</span>?\n"
+msgid "Is Java installed in the <span class=\"application\">Tor Browser</span>?"
 msgstr "¿Java está instalado en el <span class=\"application\">Tor Browser</span>?\n"
 
 #. type: Plain text
@@ -823,8 +844,9 @@ msgid "<a id=\"persistence\"></a>\n"
 msgstr "<a id=\"persistence\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Persistence\n"
+#, fuzzy, no-wrap
+#| msgid "Persistence\n"
+msgid "Persistence"
 msgstr "Persistencia\n"
 
 #. type: Plain text
@@ -833,8 +855,9 @@ msgid "<a id=\"persistent_features\"></a>\n"
 msgstr "<a id=\"persistent_features\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Can I save my custom settings?\n"
+#, fuzzy, no-wrap
+#| msgid "Can I save my custom settings?\n"
+msgid "Can I save my custom settings?"
 msgstr "¿Puedo guardar mis configuraciones personalizadas?\n"
 
 #. type: Plain text
@@ -877,8 +900,9 @@ msgid "<a id=\"luks\"></a>\n"
 msgstr "<a id=\"luks\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "How strong is the encryption of the persistent volume and LUKS?\n"
+#, fuzzy, no-wrap
+#| msgid "How strong is the encryption of the persistent volume and LUKS?\n"
+msgid "How strong is the encryption of the persistent volume and LUKS?"
 msgstr "¿Cuánta seguridad dan la encriptación del volumen persistente y LUKS?\n"
 
 #. type: Plain text
@@ -922,8 +946,9 @@ msgid "<a id=\"recover_passphrase\"></a>\n"
 msgstr "<a id=\"recover_passphrase\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Is it possible to recover the passphrase of the persistent volume?\n"
+#, fuzzy, no-wrap
+#| msgid "Is it possible to recover the passphrase of the persistent volume?\n"
+msgid "Is it possible to recover the passphrase of the persistent volume?"
 msgstr "¿Es posible recuperar la contraseña del volumen persistente?\n"
 
 #. type: Plain text
@@ -945,8 +970,9 @@ msgid "<a id=\"networking\"></a>\n"
 msgstr "<a id=\"networking\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Networking\n"
+#, fuzzy, no-wrap
+#| msgid "Networking\n"
+msgid "Networking"
 msgstr "Redes\n"
 
 #. type: Plain text
@@ -955,8 +981,9 @@ msgid "<a id=\"vpn\"></a>\n"
 msgstr "<a id=\"vpn\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Can I use Tails with a VPN?\n"
+#, fuzzy, no-wrap
+#| msgid "Can I use Tails with a VPN?\n"
+msgid "Can I use Tails with a VPN?"
 msgstr "¿Puedo usar Tails con una VPN?\n"
 
 #. type: Plain text
@@ -1050,8 +1077,9 @@ msgid "<a id=\"torrc\"></a>\n"
 msgstr "<a id=\"torrc\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Can I choose the country of my exit nodes or further edit the `torrc`?\n"
+#, fuzzy, no-wrap
+#| msgid "Can I choose the country of my exit nodes or further edit the `torrc`?\n"
+msgid "Can I choose the country of my exit nodes or further edit the `torrc`?"
 msgstr "¿Puedo elegir el país de mis nodos de salida, o editar de algún otro modo el archivo `torrc`?\n"
 
 #. type: Plain text
@@ -1084,8 +1112,9 @@ msgid "<a id=\"dns\"></a>\n"
 msgstr "<a id=\"dns\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "How does the DNS resolution work in Tails?\n"
+#, fuzzy, no-wrap
+#| msgid "How does the DNS resolution work in Tails?\n"
+msgid "How does the DNS resolution work in Tails?"
 msgstr "¿Cómo funciona la resolución de DNS en Tails?\n"
 
 #. type: Plain text
@@ -1102,8 +1131,9 @@ msgid "<a id=\"htp\"></a>\n"
 msgstr "<a id=\"htp\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Why does Tails automatically connect to several websites when starting?\n"
+#, fuzzy, no-wrap
+#| msgid "Why does Tails automatically connect to several websites when starting?\n"
+msgid "Why does Tails automatically connect to several websites when starting?"
 msgstr "¿Por qué Tails se conecta automáticamente a varios sitios al arrancar?\n"
 
 #. type: Plain text
@@ -1142,8 +1172,9 @@ msgid "<a id=\"relay\"></a>\n"
 msgstr "<a id=\"relay\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Can I help the Tor network by running a relay or a bridge in Tails?\n"
+#, fuzzy, no-wrap
+#| msgid "Can I help the Tor network by running a relay or a bridge in Tails?\n"
+msgid "Can I help the Tor network by running a relay or a bridge in Tails?"
 msgstr "¿Puedo colaborar con la red de Tor corriendo un relay o un puente de Tor en Tails?\n"
 
 #. type: Plain text
@@ -1165,11 +1196,9 @@ msgid ""
 msgstr "<a id=\"hidden_service\"></a>\n"
 
 #. type: Plain text
-#, fuzzy, no-wrap
+#, fuzzy
 #| msgid "Can I run a Tor hidden service on Tails?\n"
-msgid ""
-"Can I run a Tor onion service on Tails?\n"
-"----------------------------------------\n"
+msgid "Can I run a Tor onion service on Tails?"
 msgstr "¿Puedo tener un servicio escondido de Tor en Tails?\n"
 
 #. type: Plain text
@@ -1198,8 +1227,9 @@ msgid "<a id=\"ping\"></a>\n"
 msgstr "<a id=\"ping\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Can I use <span class=\"command\">ping</span> in Tails?\n"
+#, fuzzy, no-wrap
+#| msgid "Can I use <span class=\"command\">ping</span> in Tails?\n"
+msgid "Can I use <span class=\"command\">ping</span> in Tails?"
 msgstr "¿Puedo usar el comando <span class=\"command\">ping</span> en Tails?\n"
 
 #. type: Plain text
@@ -1219,8 +1249,9 @@ msgid "<a id=\"software\"></a>\n"
 msgstr "<a id=\"software\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Software not included in Tails\n"
+#, fuzzy, no-wrap
+#| msgid "Software not included in Tails\n"
+msgid "Software not included in Tails"
 msgstr "Software no incluido en Tails\n"
 
 #. type: Plain text
@@ -1229,8 +1260,9 @@ msgid "<a id=\"new_software\"></a>\n"
 msgstr "<a id=\"new_software\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Can my favourite software be included in Tails?\n"
+#, fuzzy, no-wrap
+#| msgid "Can my favourite software be included in Tails?\n"
+msgid "Can my favourite software be included in Tails?"
 msgstr "¿Puede incluirse mi software favorito en Tails?\n"
 
 #. type: Plain text
@@ -1380,8 +1412,9 @@ msgid "<a id=\"bittorrent\"></a>\n"
 msgstr "<a id=\"bittorrent\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Can I download using BitTorrent with Tails?\n"
+#, fuzzy, no-wrap
+#| msgid "Can I download using BitTorrent with Tails?\n"
+msgid "Can I download using BitTorrent with Tails?"
 msgstr "¿Puedo hacer descargas con BitTorrent en Tails?\n"
 
 #. type: Plain text
@@ -1424,8 +1457,9 @@ msgid "<a id=\"youtube\"></a>\n"
 msgstr "<a id=\"youtube\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Can I download videos from websites?\n"
+#, fuzzy, no-wrap
+#| msgid "Can I download videos from websites?\n"
+msgid "Can I download videos from websites?"
 msgstr "¿Puedo descargar videos de sitios web?\n"
 
 #. type: Plain text
@@ -1469,8 +1503,9 @@ msgid "<a id=\"desktop\"></a>\n"
 msgstr "<a id=\"desktop\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Desktop environment\n"
+#, fuzzy, no-wrap
+#| msgid "Desktop environment\n"
+msgid "Desktop environment"
 msgstr "Entorno de escritorio\n"
 
 #. type: Plain text
@@ -1479,8 +1514,9 @@ msgid "<a id=\"timezone\"></a>\n"
 msgstr "<a id=\"timezone\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Why is the time set wrong?\n"
+#, fuzzy, no-wrap
+#| msgid "Why is the time set wrong?\n"
+msgid "Why is the time set wrong?"
 msgstr "¿Por qué está mal configurada la hora?\n"
 
 #. type: Plain text
@@ -1530,8 +1566,9 @@ msgid "<a id=\"misc\"></a>\n"
 msgstr "<a id=\"misc\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Other security issues\n"
+#, fuzzy, no-wrap
+#| msgid "Other security issues\n"
+msgid "Other security issues"
 msgstr "Otros problemas de seguridad\n"
 
 #. type: Plain text
@@ -1540,8 +1577,9 @@ msgid "<a id=\"compromised_system\"></a>\n"
 msgstr "<a id=\"compromised_system\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Is it safe to use Tails on a compromised system?\n"
+#, fuzzy, no-wrap
+#| msgid "Is it safe to use Tails on a compromised system?\n"
+msgid "Is it safe to use Tails on a compromised system?"
 msgstr "¿Es seguro usar Tails en un sistema inseguro?\n"
 
 #. type: Plain text
@@ -1587,8 +1625,9 @@ msgid "<a id=\"integrity\"></a>\n"
 msgstr "<a id=\"integrity\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Can I verify the integrity of a Tails USB stick or DVD?\n"
+#, fuzzy, no-wrap
+#| msgid "Can I verify the integrity of a Tails USB stick or DVD?\n"
+msgid "Can I verify the integrity of a Tails USB stick or DVD?"
 msgstr "¿Puedo verificar la integridad de una memoria USB o un DVD de Tails?\n"
 
 #. type: Plain text
@@ -1634,8 +1673,9 @@ msgid "<a id=\"reuse_memory_wipe\"></a>\n"
 msgstr "<a id=\"reuse_memory_wipe\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Can I use the memory wipe feature of Tails on another operating system?\n"
+#, fuzzy, no-wrap
+#| msgid "Can I use the memory wipe feature of Tails on another operating system?\n"
+msgid "Can I use the memory wipe feature of Tails on another operating system?"
 msgstr "¿Puedo usar la funcionalidad wipe de Tails en otro sistema operativo?\n"
 
 #. type: Plain text
@@ -1663,8 +1703,9 @@ msgid "<a id=\"new_identity\"></a>\n"
 msgstr "<a id=\"new_identity\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Where is the <span class=\"guilabel\">New Identity</span> button?\n"
+#, fuzzy, no-wrap
+#| msgid "Where is the <span class=\"guilabel\">New Identity</span> button?\n"
+msgid "Where is the <span class=\"guilabel\">New Identity</span> button?"
 msgstr "¿Dónde está el botón de <span class=\"guilabel\">Nueva Identidad</span>?\n"
 
 #. type: Plain text
@@ -1728,8 +1769,9 @@ msgid "<a id=\"boot_statistics\"></a>\n"
 msgstr "<a id=\"boot_statistics\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Does Tails collect information about its users?\n"
+#, fuzzy, no-wrap
+#| msgid "Does Tails collect information about its users?\n"
+msgid "Does Tails collect information about its users?"
 msgstr "¿Tails junta información sobre sus usuarios?\n"
 
 #. type: Plain text
@@ -1780,8 +1822,9 @@ msgid "<a id=\"antivirus\"></a>\n"
 msgstr "<a id=\"antivirus\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Does Tails need an antivirus?\n"
+#, fuzzy, no-wrap
+#| msgid "Does Tails need an antivirus?\n"
+msgid "Does Tails need an antivirus?"
 msgstr "¿Tails necesita antivirus?\n"
 
 #. type: Plain text
diff --git a/wiki/src/support/faq.fa.po b/wiki/src/support/faq.fa.po
index b4d904cdd3fade7f384c16bc7a0e11f50ad7111c..212c437ccd05aca612051533e150037c7350eda8 100644
--- a/wiki/src/support/faq.fa.po
+++ b/wiki/src/support/faq.fa.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: 2019-05-02 16:25+0000\n"
+"POT-Creation-Date: 2019-05-06 14:52+0200\n"
 "PO-Revision-Date: 2018-02-26 09:59+0100\n"
 "Last-Translator: sprint5 <translation5@451f.org>\n"
 "Language-Team: Persian <http://weblate.451f.org:8889/projects/tails/faq/fa/"
@@ -42,8 +42,9 @@ msgid "<a id=\"project\"></a>\n"
 msgstr "<a id=\"project\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Other useful resources\n"
+#, fuzzy, no-wrap
+#| msgid "Other useful resources\n"
+msgid "Other useful resources"
 msgstr "منابع سودمند دیگر\n"
 
 #. type: Bullet: '  - '
@@ -60,8 +61,9 @@ msgstr ""
 "com/)"
 
 #. type: Title =
-#, no-wrap
-msgid "Tails project\n"
+#, fuzzy, no-wrap
+#| msgid "Tails project\n"
+msgid "Tails project"
 msgstr "پروژهٔ تیلز\n"
 
 #. type: Plain text
@@ -70,8 +72,9 @@ msgid "<a id=\"relationship_with_tor\"></a>\n"
 msgstr "<a id=\"relationship_with_tor\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "What is the relationship between Tor and Tails?\n"
+#, fuzzy, no-wrap
+#| msgid "What is the relationship between Tor and Tails?\n"
+msgid "What is the relationship between Tor and Tails?"
 msgstr "رابطهٔ تور و تیلز چیست؟\n"
 
 #. type: Plain text
@@ -88,8 +91,9 @@ msgid "<a id=\"debian\"></a>\n"
 msgstr "<a id=\"debian\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Why is Tails based on Debian and not on another distribution?\n"
+#, fuzzy, no-wrap
+#| msgid "Why is Tails based on Debian and not on another distribution?\n"
+msgid "Why is Tails based on Debian and not on another distribution?"
 msgstr "چرا تیلز مبتنی بر دبیان است و نه توزیع‌های دیگر؟\n"
 
 #. type: Plain text
@@ -121,8 +125,9 @@ msgid "<a id=\"ubuntu\"></a>\n"
 msgstr "<a id=\"ubuntu\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Why isn't Tails based on Ubuntu?\n"
+#, fuzzy, no-wrap
+#| msgid "Why isn't Tails based on Ubuntu?\n"
+msgid "Why isn't Tails based on Ubuntu?"
 msgstr "چرا تیلز توزیعی از اوبونتو نیست؟\n"
 
 #. type: Plain text
@@ -204,8 +209,9 @@ msgid "<a id=\"gnome\"></a>\n"
 msgstr "<a id=\"gnome\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Why does Tails ship the GNOME Desktop?\n"
+#, fuzzy, no-wrap
+#| msgid "Why does Tails ship the GNOME Desktop?\n"
+msgid "Why does Tails ship the GNOME Desktop?"
 msgstr "چرا تیلز از دسکتاپ گنوم استفاده می‌کند؟\n"
 
 #. type: Plain text
@@ -265,8 +271,9 @@ msgid "<a id=\"hardware\"></a>\n"
 msgstr "<a id=\"hardware\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Hardware compatibility\n"
+#, fuzzy, no-wrap
+#| msgid "Hardware compatibility\n"
+msgid "Hardware compatibility"
 msgstr "سازگاری سخت‌افزاری\n"
 
 #. type: Plain text
@@ -277,7 +284,7 @@ msgstr "<a id=\"arm\"></a>\n"
 #. type: Title -
 #, fuzzy, no-wrap
 #| msgid "Does Tails work on ARM architecture, Raspberry Pi, or tablets?\n"
-msgid "Does Tails work on ARM architecture, Raspberry Pi, tablets, or phones?\n"
+msgid "Does Tails work on ARM architecture, Raspberry Pi, tablets, or phones?"
 msgstr "آیا تیلز روی معماری آرم، رزبری پای یا تبلت‌ها کار می‌کند؟\n"
 
 #. type: Plain text
@@ -317,8 +324,9 @@ msgid "<a id=\"installation\"></a>\n"
 msgstr "<a id=\"installation\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Installation\n"
+#, fuzzy, no-wrap
+#| msgid "Installation\n"
+msgid "Installation"
 msgstr "نصب\n"
 
 #. type: Plain text
@@ -327,8 +335,9 @@ msgid "<a id=\"install_permanently\"></a>\n"
 msgstr "<a id=\"install_permanently\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Can I install Tails permanently onto my hard disk?\n"
+#, fuzzy, no-wrap
+#| msgid "Can I install Tails permanently onto my hard disk?\n"
+msgid "Can I install Tails permanently onto my hard disk?"
 msgstr "آیا می‌توانم تیلز را به طور دائم روی سخت‌دیسک خود نصب کنم؟\n"
 
 #. type: Plain text
@@ -364,7 +373,7 @@ msgstr "<a id=\"unetbootin_etc\"></a>\n"
 #. type: Title -
 #, fuzzy, no-wrap
 #| msgid "Can I install Tails with UNetbootin, YUMI or my other favorite tool?\n"
-msgid "Can I install Tails with UNetbootin, YUMI, Rufus or my other favorite tool?\n"
+msgid "Can I install Tails with UNetbootin, YUMI, Rufus or my other favorite tool?"
 msgstr "آیا می‌توانم تیلز را با UNetbootin، YUMI یا دیگر ابزارهای موردعلاقه‌ام نصب کنم؟\n"
 
 #. type: Plain text
@@ -392,7 +401,7 @@ msgstr "<a id=\"upgrade\"></a>\n"
 #. type: Title -
 #, fuzzy, no-wrap
 #| msgid "Should I manually update add-ons included in <span class=\"application\">Tor Browser</span>?\n"
-msgid "Should I update Tails using `apt` or <span class=\"application\">Synaptic</span>?\n"
+msgid "Should I update Tails using `apt` or <span class=\"application\">Synaptic</span>?"
 msgstr "آیا باید افزونه‌های گنجانده‌شده در <span class=\"application\">مرورگر تور</span> را دستی به‌روز کنم؟\n"
 
 #. type: Plain text
@@ -418,7 +427,7 @@ msgstr "<a id=\"preinstalled\"></a>\n"
 #. type: Title -
 #, fuzzy, no-wrap
 #| msgid "Can I buy a preinstalled Tails device?\n"
-msgid "Can I buy a preinstalled Tails USB stick or DVD?\n"
+msgid "Can I buy a preinstalled Tails USB stick or DVD?"
 msgstr "آیا می‌توانم یک دستگاه با تیلز از پیش‌نصب‌شده خریداری کنم؟\n"
 
 #. type: Plain text
@@ -471,7 +480,7 @@ msgstr "<a id=\"luks\"></a>\n"
 
 #. type: Title -
 #, no-wrap
-msgid "Where can I find the checksum to verify my Tails download?\n"
+msgid "Where can I find the checksum to verify my Tails download?"
 msgstr ""
 
 #. type: Plain text
@@ -509,8 +518,9 @@ msgid "<a id=\"browser\"></a>\n"
 msgstr "<a id=\"browser\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Web browser\n"
+#, fuzzy, no-wrap
+#| msgid "Web browser\n"
+msgid "Web browser"
 msgstr "مرورگر وب\n"
 
 #. type: Plain text
@@ -519,8 +529,9 @@ msgid "<a id=\"javascript\"></a>\n"
 msgstr "<a id=\"javascript\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Why is JavaScript enabled by default in <span class=\"application\">Tor Browser</span>?\n"
+#, fuzzy, no-wrap
+#| msgid "Why is JavaScript enabled by default in <span class=\"application\">Tor Browser</span>?\n"
+msgid "Why is JavaScript enabled by default in <span class=\"application\">Tor Browser</span>?"
 msgstr "چرا جاوااسکریپت به طور پیش‌فرض در <span class=\"application\">مرورگر تور</span> فعال است؟\n"
 
 #. type: Plain text
@@ -568,8 +579,9 @@ msgid "<a id=\"add-ons\"></a>\n"
 msgstr "<a id=\"add-ons\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Can I install other add-ons in <span class=\"application\">Tor Browser</span>?\n"
+#, fuzzy, no-wrap
+#| msgid "Can I install other add-ons in <span class=\"application\">Tor Browser</span>?\n"
+msgid "Can I install other add-ons in <span class=\"application\">Tor Browser</span>?"
 msgstr "آیا می‌توانم روی <span class=\"application\">مرورگر تور</span> افزونه‌های دیگری هم نصب کنم؟\n"
 
 #. type: Plain text
@@ -664,8 +676,9 @@ msgid "<a id=\"add-ons_update\"></a>\n"
 msgstr "<a id=\"add-ons_update\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Should I manually update add-ons included in <span class=\"application\">Tor Browser</span>?\n"
+#, fuzzy, no-wrap
+#| msgid "Should I manually update add-ons included in <span class=\"application\">Tor Browser</span>?\n"
+msgid "Should I manually update add-ons included in <span class=\"application\">Tor Browser</span>?"
 msgstr "آیا باید افزونه‌های گنجانده‌شده در <span class=\"application\">مرورگر تور</span> را دستی به‌روز کنم؟\n"
 
 #. type: Plain text
@@ -687,8 +700,9 @@ msgid "<a id=\"flash\"></a>\n"
 msgstr "<a id=\"flash\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Can I view websites using Adobe Flash with Tails?\n"
+#, fuzzy, no-wrap
+#| msgid "Can I view websites using Adobe Flash with Tails?\n"
+msgid "Can I view websites using Adobe Flash with Tails?"
 msgstr "آیا می‌توانم با تیلز از تارنماهایی که از ادوبی فلش استفاده می‌کنند بازدید کنم؟\n"
 
 #. type: Plain text
@@ -749,8 +763,9 @@ msgid "<a id=\"anonymity_test\"></a>\n"
 msgstr "<a id=\"anonymity_test\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "How to analyse the results of online anonymity tests?\n"
+#, fuzzy, no-wrap
+#| msgid "How to analyse the results of online anonymity tests?\n"
+msgid "How to analyse the results of online anonymity tests?"
 msgstr "چگونه نتایج آزمون‌های ناشناسی آنلاین را تحلیل کنیم؟\n"
 
 #. type: Plain text
@@ -815,8 +830,9 @@ msgid "<a id=\"java\"></a>\n"
 msgstr "<a id=\"java\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Is Java installed in the <span class=\"application\">Tor Browser</span>?\n"
+#, fuzzy, no-wrap
+#| msgid "Is Java installed in the <span class=\"application\">Tor Browser</span>?\n"
+msgid "Is Java installed in the <span class=\"application\">Tor Browser</span>?"
 msgstr "آیا جاوا روی <span class=\"application\">مرورگر تور</span> نصب شده‌است؟\n"
 
 #. type: Plain text
@@ -833,8 +849,9 @@ msgid "<a id=\"persistence\"></a>\n"
 msgstr "<a id=\"persistence\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Persistence\n"
+#, fuzzy, no-wrap
+#| msgid "Persistence\n"
+msgid "Persistence"
 msgstr "مانا\n"
 
 #. type: Plain text
@@ -843,8 +860,9 @@ msgid "<a id=\"persistent_features\"></a>\n"
 msgstr "<a id=\"persistent_features\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Can I save my custom settings?\n"
+#, fuzzy, no-wrap
+#| msgid "Can I save my custom settings?\n"
+msgid "Can I save my custom settings?"
 msgstr "آیا می‌توانم تنظیمات اختصاصی خود را ذخیره کنم؟\n"
 
 #. type: Plain text
@@ -886,8 +904,9 @@ msgid "<a id=\"luks\"></a>\n"
 msgstr "<a id=\"luks\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "How strong is the encryption of the persistent volume and LUKS?\n"
+#, fuzzy, no-wrap
+#| msgid "How strong is the encryption of the persistent volume and LUKS?\n"
+msgid "How strong is the encryption of the persistent volume and LUKS?"
 msgstr "رمزگذاری درایو مانا و LUKS تا چه حد قوی است؟\n"
 
 #. type: Plain text
@@ -930,8 +949,9 @@ msgid "<a id=\"recover_passphrase\"></a>\n"
 msgstr "<a id=\"recover_passphrase\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Is it possible to recover the passphrase of the persistent volume?\n"
+#, fuzzy, no-wrap
+#| msgid "Is it possible to recover the passphrase of the persistent volume?\n"
+msgid "Is it possible to recover the passphrase of the persistent volume?"
 msgstr "آیا بازیابی گذرواژه‌ها از درایو مانا ممکن است؟\n"
 
 #. type: Plain text
@@ -952,8 +972,9 @@ msgid "<a id=\"networking\"></a>\n"
 msgstr "<a id=\"networking\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Networking\n"
+#, fuzzy, no-wrap
+#| msgid "Networking\n"
+msgid "Networking"
 msgstr "شبکه\n"
 
 #. type: Plain text
@@ -962,8 +983,9 @@ msgid "<a id=\"vpn\"></a>\n"
 msgstr "<a id=\"vpn\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Can I use Tails with a VPN?\n"
+#, fuzzy, no-wrap
+#| msgid "Can I use Tails with a VPN?\n"
+msgid "Can I use Tails with a VPN?"
 msgstr "آیا می‌توانم در تیلز از وی‌پی‌ان استفاده کنم؟\n"
 
 #. type: Plain text
@@ -1067,8 +1089,9 @@ msgid "<a id=\"torrc\"></a>\n"
 msgstr "<a id=\"torrc\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Can I choose the country of my exit nodes or further edit the `torrc`?\n"
+#, fuzzy, no-wrap
+#| msgid "Can I choose the country of my exit nodes or further edit the `torrc`?\n"
+msgid "Can I choose the country of my exit nodes or further edit the `torrc`?"
 msgstr "آیا می‌توانم کشور گره خروجی خود را انتخاب کنم یا `torrc` را تغییر دهم؟\n"
 
 #. type: Plain text
@@ -1101,8 +1124,9 @@ msgid "<a id=\"dns\"></a>\n"
 msgstr "<a id=\"dns\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "How does the DNS resolution work in Tails?\n"
+#, fuzzy, no-wrap
+#| msgid "How does the DNS resolution work in Tails?\n"
+msgid "How does the DNS resolution work in Tails?"
 msgstr "گره‌گشایی دی‌ان‌اس در تیلز چگونه انجام می‌شود؟\n"
 
 #. type: Plain text
@@ -1119,8 +1143,9 @@ msgid "<a id=\"htp\"></a>\n"
 msgstr "<a id=\"htp\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Why does Tails automatically connect to several websites when starting?\n"
+#, fuzzy, no-wrap
+#| msgid "Why does Tails automatically connect to several websites when starting?\n"
+msgid "Why does Tails automatically connect to several websites when starting?"
 msgstr "چرا تیلز هنگام آغاز شدن خودکار به چندین تارنما متصل می‌شود؟\n"
 
 #. type: Plain text
@@ -1168,8 +1193,9 @@ msgid "<a id=\"relay\"></a>\n"
 msgstr "<a id=\"relay\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Can I help the Tor network by running a relay or a bridge in Tails?\n"
+#, fuzzy, no-wrap
+#| msgid "Can I help the Tor network by running a relay or a bridge in Tails?\n"
+msgid "Can I help the Tor network by running a relay or a bridge in Tails?"
 msgstr "آیا می‌توانم با راه‌اندازی یک رله یا پل در تیلز به شبکهٔ تور کمک کنم؟\n"
 
 #. type: Plain text
@@ -1191,11 +1217,9 @@ msgid ""
 msgstr "<a id=\"hidden_service\"></a>\n"
 
 #. type: Plain text
-#, fuzzy, no-wrap
+#, fuzzy
 #| msgid "Can I run a Tor hidden service on Tails?\n"
-msgid ""
-"Can I run a Tor onion service on Tails?\n"
-"----------------------------------------\n"
+msgid "Can I run a Tor onion service on Tails?"
 msgstr "آیا می‌توانم در تیلز از یک سیستم مخفی تور استفاده کنم؟\n"
 
 #. type: Plain text
@@ -1229,7 +1253,7 @@ msgstr "<a id=\"ping\"></a>\n"
 
 #. type: Title -
 #, no-wrap
-msgid "Can I use <span class=\"command\">ping</span> in Tails?\n"
+msgid "Can I use <span class=\"command\">ping</span> in Tails?"
 msgstr ""
 
 #. type: Plain text
@@ -1246,8 +1270,9 @@ msgid "<a id=\"software\"></a>\n"
 msgstr "<a id=\"software\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Software not included in Tails\n"
+#, fuzzy, no-wrap
+#| msgid "Software not included in Tails\n"
+msgid "Software not included in Tails"
 msgstr "نرم‌افزارهایی که در تیلز گنجانده نشده‌اند\n"
 
 #. type: Plain text
@@ -1256,8 +1281,9 @@ msgid "<a id=\"new_software\"></a>\n"
 msgstr "<a id=\"new_software\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Can my favourite software be included in Tails?\n"
+#, fuzzy, no-wrap
+#| msgid "Can my favourite software be included in Tails?\n"
+msgid "Can my favourite software be included in Tails?"
 msgstr "آیا امکان گنجانده‌شدن نرم‌افزار محبوب من در تیلز وجود دارد؟\n"
 
 #. type: Plain text
@@ -1405,8 +1431,9 @@ msgid "<a id=\"bittorrent\"></a>\n"
 msgstr "<a id=\"bittorrent\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Can I download using BitTorrent with Tails?\n"
+#, fuzzy, no-wrap
+#| msgid "Can I download using BitTorrent with Tails?\n"
+msgid "Can I download using BitTorrent with Tails?"
 msgstr "آیا می‌توانم در تیلز با بیت‌تورنت دانلود کنم؟\n"
 
 #. type: Plain text
@@ -1457,7 +1484,7 @@ msgstr "<a id=\"youtube\"></a>\n"
 #. type: Title -
 #, fuzzy, no-wrap
 #| msgid "Can I download using BitTorrent with Tails?\n"
-msgid "Can I download videos from websites?\n"
+msgid "Can I download videos from websites?"
 msgstr "آیا می‌توانم در تیلز با بیت‌تورنت دانلود کنم؟\n"
 
 #. type: Plain text
@@ -1493,8 +1520,9 @@ msgid "<a id=\"desktop\"></a>\n"
 msgstr "<a id=\"desktop\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Desktop environment\n"
+#, fuzzy, no-wrap
+#| msgid "Desktop environment\n"
+msgid "Desktop environment"
 msgstr "محیط دسکتاپ\n"
 
 #. type: Plain text
@@ -1503,8 +1531,9 @@ msgid "<a id=\"timezone\"></a>\n"
 msgstr "<a id=\"timezone\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Why is the time set wrong?\n"
+#, fuzzy, no-wrap
+#| msgid "Why is the time set wrong?\n"
+msgid "Why is the time set wrong?"
 msgstr "چرا ساعت درست تنظیم نشده است؟\n"
 
 #. type: Plain text
@@ -1553,8 +1582,9 @@ msgid "<a id=\"misc\"></a>\n"
 msgstr "<a id=\"misc\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Other security issues\n"
+#, fuzzy, no-wrap
+#| msgid "Other security issues\n"
+msgid "Other security issues"
 msgstr "مشکلات امنیتی دیگر\n"
 
 #. type: Plain text
@@ -1563,8 +1593,9 @@ msgid "<a id=\"compromised_system\"></a>\n"
 msgstr "<a id=\"compromised_system\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Is it safe to use Tails on a compromised system?\n"
+#, fuzzy, no-wrap
+#| msgid "Is it safe to use Tails on a compromised system?\n"
+msgid "Is it safe to use Tails on a compromised system?"
 msgstr "استفاده از تیلز روی یک سیستم مشکل‌دار امن است؟\n"
 
 #. type: Plain text
@@ -1607,7 +1638,7 @@ msgstr "<a id=\"integrity\"></a>\n"
 #. type: Title -
 #, fuzzy, no-wrap
 #| msgid "Can I verify the integrity of a Tails device?\n"
-msgid "Can I verify the integrity of a Tails USB stick or DVD?\n"
+msgid "Can I verify the integrity of a Tails USB stick or DVD?"
 msgstr "آیا می‌توانم یکپارچگی یک دستگاه تیلز را تأیید کنم؟\n"
 
 #. type: Plain text
@@ -1669,8 +1700,9 @@ msgid "<a id=\"reuse_memory_wipe\"></a>\n"
 msgstr "<a id=\"reuse_memory_wipe\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Can I use the memory wipe feature of Tails on another operating system?\n"
+#, fuzzy, no-wrap
+#| msgid "Can I use the memory wipe feature of Tails on another operating system?\n"
+msgid "Can I use the memory wipe feature of Tails on another operating system?"
 msgstr "آیا می‌توان از امکان پاک‌سازی حافظهٔ تیلز در سیستم‌‌عامل‌های دیگر استفاده کرد؟\n"
 
 #. type: Plain text
@@ -1705,7 +1737,7 @@ msgstr "<a id=\"new_identity\"></a>\n"
 
 #. type: Title -
 #, no-wrap
-msgid "Where is the <span class=\"guilabel\">New Identity</span> button?\n"
+msgid "Where is the <span class=\"guilabel\">New Identity</span> button?"
 msgstr ""
 
 #. type: Plain text
@@ -1756,8 +1788,9 @@ msgid "<a id=\"boot_statistics\"></a>\n"
 msgstr "<a id=\"boot_statistics\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Does Tails collect information about its users?\n"
+#, fuzzy, no-wrap
+#| msgid "Does Tails collect information about its users?\n"
+msgid "Does Tails collect information about its users?"
 msgstr "آیا تیلز اطلاعاتی راجع به کاربران خود جمع‌آوری می‌کند؟\n"
 
 #. type: Plain text
@@ -1806,8 +1839,9 @@ msgid "<a id=\"antivirus\"></a>\n"
 msgstr "<a id=\"antivirus\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Does Tails need an antivirus?\n"
+#, fuzzy, no-wrap
+#| msgid "Does Tails need an antivirus?\n"
+msgid "Does Tails need an antivirus?"
 msgstr "آیا تیلز ضدویروس هم دارد؟\n"
 
 #. type: Plain text
diff --git a/wiki/src/support/faq.fr.po b/wiki/src/support/faq.fr.po
index dbb2e0d04e8cc530fa8eac9b331103d8b0740087..ea4e5bc5d917d11213b300562cfa7e943cb216c3 100644
--- a/wiki/src/support/faq.fr.po
+++ b/wiki/src/support/faq.fr.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: Tails\n"
-"POT-Creation-Date: 2019-05-02 16:25+0000\n"
+"POT-Creation-Date: 2019-05-06 14:52+0200\n"
 "PO-Revision-Date: 2018-06-25 09:04+0000\n"
 "Last-Translator: AtomiKe <tails@atomike.ninja>\n"
 "Language-Team: Tails translators <tails@boum.org>\n"
@@ -43,8 +43,9 @@ msgid "<a id=\"project\"></a>\n"
 msgstr "<a id=\"project\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Other useful resources\n"
+#, fuzzy, no-wrap
+#| msgid "Other useful resources\n"
+msgid "Other useful resources"
 msgstr "Autres ressources utiles\n"
 
 #. type: Bullet: '  - '
@@ -62,8 +63,9 @@ msgstr ""
 "stackexchange.com/)"
 
 #. type: Title =
-#, no-wrap
-msgid "Tails project\n"
+#, fuzzy, no-wrap
+#| msgid "Tails project\n"
+msgid "Tails project"
 msgstr "Projet Tails\n"
 
 #. type: Plain text
@@ -72,8 +74,9 @@ msgid "<a id=\"relationship_with_tor\"></a>\n"
 msgstr "<a id=\"relationship_with_tor\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "What is the relationship between Tor and Tails?\n"
+#, fuzzy, no-wrap
+#| msgid "What is the relationship between Tor and Tails?\n"
+msgid "What is the relationship between Tor and Tails?"
 msgstr "Quelle est la relation entre Tor et Tails ?\n"
 
 #. type: Plain text
@@ -90,8 +93,9 @@ msgid "<a id=\"debian\"></a>\n"
 msgstr "<a id=\"debian\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Why is Tails based on Debian and not on another distribution?\n"
+#, fuzzy, no-wrap
+#| msgid "Why is Tails based on Debian and not on another distribution?\n"
+msgid "Why is Tails based on Debian and not on another distribution?"
 msgstr "Pourquoi Tails est-il basé sur Debian et non sur une autre distribution ?\n"
 
 #. type: Plain text
@@ -125,8 +129,9 @@ msgid "<a id=\"ubuntu\"></a>\n"
 msgstr "<a id=\"ubuntu\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Why isn't Tails based on Ubuntu?\n"
+#, fuzzy, no-wrap
+#| msgid "Why isn't Tails based on Ubuntu?\n"
+msgid "Why isn't Tails based on Ubuntu?"
 msgstr "Pourquoi Tails n'est pas basé sur Ubuntu ?\n"
 
 #. type: Plain text
@@ -209,8 +214,9 @@ msgid "<a id=\"gnome\"></a>\n"
 msgstr "<a id=\"gnome\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Why does Tails ship the GNOME Desktop?\n"
+#, fuzzy, no-wrap
+#| msgid "Why does Tails ship the GNOME Desktop?\n"
+msgid "Why does Tails ship the GNOME Desktop?"
 msgstr "Pourquoi Tails intègre le bureau GNOME ?\n"
 
 #. type: Plain text
@@ -274,8 +280,9 @@ msgid "<a id=\"hardware\"></a>\n"
 msgstr "<a id=\"hardware\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Hardware compatibility\n"
+#, fuzzy, no-wrap
+#| msgid "Hardware compatibility\n"
+msgid "Hardware compatibility"
 msgstr "Compatibilité matérielle\n"
 
 #. type: Plain text
@@ -284,8 +291,9 @@ msgid "<a id=\"arm\"></a>\n"
 msgstr "<a id=\"arm\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Does Tails work on ARM architecture, Raspberry Pi, tablets, or phones?\n"
+#, fuzzy, no-wrap
+#| msgid "Does Tails work on ARM architecture, Raspberry Pi, tablets, or phones?\n"
+msgid "Does Tails work on ARM architecture, Raspberry Pi, tablets, or phones?"
 msgstr "Tails fonctionne-t-il sur des architectures ARM, des Raspberry Pi, des tablettes ou des téléphones ?\n"
 
 #. type: Plain text
@@ -323,8 +331,9 @@ msgid "<a id=\"installation\"></a>\n"
 msgstr "<a id=\"installation\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Installation\n"
+#, fuzzy, no-wrap
+#| msgid "Installation\n"
+msgid "Installation"
 msgstr "Installation\n"
 
 #. type: Plain text
@@ -333,8 +342,9 @@ msgid "<a id=\"install_permanently\"></a>\n"
 msgstr "<a id=\"install_permanently\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Can I install Tails permanently onto my hard disk?\n"
+#, fuzzy, no-wrap
+#| msgid "Can I install Tails permanently onto my hard disk?\n"
+msgid "Can I install Tails permanently onto my hard disk?"
 msgstr "Puis-je installer Tails de manière permanente sur mon disque dur ?\n"
 
 #. type: Plain text
@@ -363,8 +373,9 @@ msgid "<a id=\"unetbootin_etc\"></a>\n"
 msgstr "<a id=\"unetbootin_etc\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Can I install Tails with UNetbootin, YUMI, Rufus or my other favorite tool?\n"
+#, fuzzy, no-wrap
+#| msgid "Can I install Tails with UNetbootin, YUMI, Rufus or my other favorite tool?\n"
+msgid "Can I install Tails with UNetbootin, YUMI, Rufus or my other favorite tool?"
 msgstr "Puis-je installer Tails avec UNetbootin, YUMI, Rufus ou mon autre outil favori ?\n"
 
 #. type: Plain text
@@ -386,8 +397,9 @@ msgid "<a id=\"upgrade\"></a>\n"
 msgstr "<a id=\"upgrade\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Should I update Tails using `apt` or <span class=\"application\">Synaptic</span>?\n"
+#, fuzzy, no-wrap
+#| msgid "Should I update Tails using `apt` or <span class=\"application\">Synaptic</span>?\n"
+msgid "Should I update Tails using `apt` or <span class=\"application\">Synaptic</span>?"
 msgstr "Puis-je mettre à jour Tails en utilisant `apt` ou <span class=\"application\">Synaptic</span> ?\n"
 
 #. type: Plain text
@@ -411,8 +423,9 @@ msgid "<a id=\"preinstalled\"></a>\n"
 msgstr "<a id=\"preinstalled\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Can I buy a preinstalled Tails USB stick or DVD?\n"
+#, fuzzy, no-wrap
+#| msgid "Can I buy a preinstalled Tails USB stick or DVD?\n"
+msgid "Can I buy a preinstalled Tails USB stick or DVD?"
 msgstr "Puis-je acheter une clé USB ou un DVD Tails pré-installé ?\n"
 
 #. type: Plain text
@@ -458,8 +471,9 @@ msgid "<a id=\"checksum\"></a>\n"
 msgstr "<a id=\"checksum\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Where can I find the checksum to verify my Tails download?\n"
+#, fuzzy, no-wrap
+#| msgid "Where can I find the checksum to verify my Tails download?\n"
+msgid "Where can I find the checksum to verify my Tails download?"
 msgstr "Où puis-je trouver la somme de contrôle pour vérifier mon téléchargement de Tails ?\n"
 
 #. type: Plain text
@@ -512,8 +526,9 @@ msgid "<a id=\"browser\"></a>\n"
 msgstr "<a id=\"browser\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Web browser\n"
+#, fuzzy, no-wrap
+#| msgid "Web browser\n"
+msgid "Web browser"
 msgstr "Navigateur web\n"
 
 #. type: Plain text
@@ -522,8 +537,9 @@ msgid "<a id=\"javascript\"></a>\n"
 msgstr "<a id=\"javascript\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Why is JavaScript enabled by default in <span class=\"application\">Tor Browser</span>?\n"
+#, fuzzy, no-wrap
+#| msgid "Why is JavaScript enabled by default in <span class=\"application\">Tor Browser</span>?\n"
+msgid "Why is JavaScript enabled by default in <span class=\"application\">Tor Browser</span>?"
 msgstr "Pourquoi est-ce que JavaScript est autorisé par défaut dans le <span class=\"application\">Navigateur Tor</span> ?\n"
 
 #. type: Plain text
@@ -571,8 +587,9 @@ msgid "<a id=\"add-ons\"></a>\n"
 msgstr "<a id=\"add-ons\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Can I install other add-ons in <span class=\"application\">Tor Browser</span>?\n"
+#, fuzzy, no-wrap
+#| msgid "Can I install other add-ons in <span class=\"application\">Tor Browser</span>?\n"
+msgid "Can I install other add-ons in <span class=\"application\">Tor Browser</span>?"
 msgstr "Puis-je installer d'autres extensions dans le <span class=\"application\">Navigateur Tor</span> ?\n"
 
 #. type: Plain text
@@ -677,8 +694,9 @@ msgid "<a id=\"add-ons_update\"></a>\n"
 msgstr "<a id=\"add-ons_update\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Should I manually update add-ons included in <span class=\"application\">Tor Browser</span>?\n"
+#, fuzzy, no-wrap
+#| msgid "Should I manually update add-ons included in <span class=\"application\">Tor Browser</span>?\n"
+msgid "Should I manually update add-ons included in <span class=\"application\">Tor Browser</span>?"
 msgstr "Puis-je mettre à jour manuellement les extensions dans le <span class=\"application\">Navigateur Tor</span> ?\n"
 
 #. type: Plain text
@@ -700,8 +718,9 @@ msgid "<a id=\"flash\"></a>\n"
 msgstr "<a id=\"flash\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Can I view websites using Adobe Flash with Tails?\n"
+#, fuzzy, no-wrap
+#| msgid "Can I view websites using Adobe Flash with Tails?\n"
+msgid "Can I view websites using Adobe Flash with Tails?"
 msgstr "Puis-je consulter les sites web qui utilisent Adobe Flash avec Tails ?\n"
 
 #. type: Plain text
@@ -763,8 +782,9 @@ msgid "<a id=\"anonymity_test\"></a>\n"
 msgstr "<a id=\"anonymity_test\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "How to analyse the results of online anonymity tests?\n"
+#, fuzzy, no-wrap
+#| msgid "How to analyse the results of online anonymity tests?\n"
+msgid "How to analyse the results of online anonymity tests?"
 msgstr "Comment analyser les résultats des tests d'anonymat en ligne ?\n"
 
 #. type: Plain text
@@ -831,8 +851,9 @@ msgid "<a id=\"java\"></a>\n"
 msgstr "<a id=\"java\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Is Java installed in the <span class=\"application\">Tor Browser</span>?\n"
+#, fuzzy, no-wrap
+#| msgid "Is Java installed in the <span class=\"application\">Tor Browser</span>?\n"
+msgid "Is Java installed in the <span class=\"application\">Tor Browser</span>?"
 msgstr "Est-ce que Java est installé dans le <span class=\"application\">Navigateur Tor</span> ?\n"
 
 #. type: Plain text
@@ -849,8 +870,9 @@ msgid "<a id=\"persistence\"></a>\n"
 msgstr "<a id=\"persistence\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Persistence\n"
+#, fuzzy, no-wrap
+#| msgid "Persistence\n"
+msgid "Persistence"
 msgstr "Persistance\n"
 
 #. type: Plain text
@@ -859,8 +881,9 @@ msgid "<a id=\"persistent_features\"></a>\n"
 msgstr "<a id=\"persistent_features\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Can I save my custom settings?\n"
+#, fuzzy, no-wrap
+#| msgid "Can I save my custom settings?\n"
+msgid "Can I save my custom settings?"
 msgstr "Puis-je sauvegarder mes configurations personnalisées ?\n"
 
 #. type: Plain text
@@ -904,8 +927,9 @@ msgid "<a id=\"luks\"></a>\n"
 msgstr "<a id=\"luks\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "How strong is the encryption of the persistent volume and LUKS?\n"
+#, fuzzy, no-wrap
+#| msgid "How strong is the encryption of the persistent volume and LUKS?\n"
+msgid "How strong is the encryption of the persistent volume and LUKS?"
 msgstr "Quelle est la qualité du chiffrement du volume persistant et de LUKS ?\n"
 
 #. type: Plain text
@@ -949,8 +973,9 @@ msgid "<a id=\"recover_passphrase\"></a>\n"
 msgstr "<a id=\"recover_passphrase\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Is it possible to recover the passphrase of the persistent volume?\n"
+#, fuzzy, no-wrap
+#| msgid "Is it possible to recover the passphrase of the persistent volume?\n"
+msgid "Is it possible to recover the passphrase of the persistent volume?"
 msgstr "Est-il possible de récupérer la phrase de passe du volume persistant ?\n"
 
 #. type: Plain text
@@ -972,8 +997,9 @@ msgid "<a id=\"networking\"></a>\n"
 msgstr "<a id=\"networking\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Networking\n"
+#, fuzzy, no-wrap
+#| msgid "Networking\n"
+msgid "Networking"
 msgstr "Réseau\n"
 
 #. type: Plain text
@@ -982,8 +1008,9 @@ msgid "<a id=\"vpn\"></a>\n"
 msgstr "<a id=\"vpn\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Can I use Tails with a VPN?\n"
+#, fuzzy, no-wrap
+#| msgid "Can I use Tails with a VPN?\n"
+msgid "Can I use Tails with a VPN?"
 msgstr "Puis-je utiliser Tails avec un VPN ?\n"
 
 #. type: Plain text
@@ -1076,8 +1103,9 @@ msgid "<a id=\"torrc\"></a>\n"
 msgstr "<a id=\"torrc\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Can I choose the country of my exit nodes or further edit the `torrc`?\n"
+#, fuzzy, no-wrap
+#| msgid "Can I choose the country of my exit nodes or further edit the `torrc`?\n"
+msgid "Can I choose the country of my exit nodes or further edit the `torrc`?"
 msgstr "Puis-je choisir le pays de mon nœud de sortie ou de manière générale éditer le fichier `torrc`?\n"
 
 #. type: Plain text
@@ -1111,8 +1139,9 @@ msgid "<a id=\"dns\"></a>\n"
 msgstr "<a id=\"dns\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "How does the DNS resolution work in Tails?\n"
+#, fuzzy, no-wrap
+#| msgid "How does the DNS resolution work in Tails?\n"
+msgid "How does the DNS resolution work in Tails?"
 msgstr "Comment la résolution DNS fonctionne-t-elle dans Tails ?\n"
 
 #. type: Plain text
@@ -1129,8 +1158,9 @@ msgid "<a id=\"htp\"></a>\n"
 msgstr "<a id=\"htp\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Why does Tails automatically connect to several websites when starting?\n"
+#, fuzzy, no-wrap
+#| msgid "Why does Tails automatically connect to several websites when starting?\n"
+msgid "Why does Tails automatically connect to several websites when starting?"
 msgstr "Pourquoi Tails se connecte-t-il automatiquement à de nombreux sites web au démarrage ?\n"
 
 #. type: Plain text
@@ -1169,8 +1199,9 @@ msgid "<a id=\"relay\"></a>\n"
 msgstr "<a id=\"relay\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Can I help the Tor network by running a relay or a bridge in Tails?\n"
+#, fuzzy, no-wrap
+#| msgid "Can I help the Tor network by running a relay or a bridge in Tails?\n"
+msgid "Can I help the Tor network by running a relay or a bridge in Tails?"
 msgstr "Puis-je aider le réseau Tor en faisant tourner un relai ou un bridge dans Tails ?\n"
 
 #. type: Plain text
@@ -1189,13 +1220,10 @@ msgstr ""
 "<a id=\"hidden_service\"></a>\n"
 
 #. type: Plain text
-#, no-wrap
-msgid ""
-"Can I run a Tor onion service on Tails?\n"
-"----------------------------------------\n"
-msgstr ""
-"Puis-je faire marcher un service oignon dans Tails ?\n"
-"---------------------------------------\n"
+#, fuzzy
+#| msgid "Can I run a Tor hidden service on Tails?\n"
+msgid "Can I run a Tor onion service on Tails?"
+msgstr "Puis-je faire tourner un service caché Tor sur Tails ?\n"
 
 #. type: Plain text
 msgid ""
@@ -1219,8 +1247,9 @@ msgid "<a id=\"ping\"></a>\n"
 msgstr "<a id=\"ping\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Can I use <span class=\"command\">ping</span> in Tails?\n"
+#, fuzzy, no-wrap
+#| msgid "Can I use <span class=\"command\">ping</span> in Tails?\n"
+msgid "Can I use <span class=\"command\">ping</span> in Tails?"
 msgstr "Puis-je utiliser <span class=\"command\">ping</span> dans Tails ?\n"
 
 #. type: Plain text
@@ -1240,8 +1269,9 @@ msgid "<a id=\"software\"></a>\n"
 msgstr "<a id=\"software\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Software not included in Tails\n"
+#, fuzzy, no-wrap
+#| msgid "Software not included in Tails\n"
+msgid "Software not included in Tails"
 msgstr "Logiciel non inclus dans Tails\n"
 
 #. type: Plain text
@@ -1250,8 +1280,9 @@ msgid "<a id=\"new_software\"></a>\n"
 msgstr "<a id=\"new_software\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Can my favourite software be included in Tails?\n"
+#, fuzzy, no-wrap
+#| msgid "Can my favourite software be included in Tails?\n"
+msgid "Can my favourite software be included in Tails?"
 msgstr "Mon logiciel favori peut-il être inclus dans Tails ?\n"
 
 #. type: Plain text
@@ -1401,8 +1432,9 @@ msgid "<a id=\"bittorrent\"></a>\n"
 msgstr "<a id=\"bittorrent\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Can I download using BitTorrent with Tails?\n"
+#, fuzzy, no-wrap
+#| msgid "Can I download using BitTorrent with Tails?\n"
+msgid "Can I download using BitTorrent with Tails?"
 msgstr "Puis-je télécharger en utilisant BitTorrent dans Tails ?\n"
 
 #. type: Plain text
@@ -1448,8 +1480,9 @@ msgid "<a id=\"youtube\"></a>\n"
 msgstr "<a id=\"youtube\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Can I download videos from websites?\n"
+#, fuzzy, no-wrap
+#| msgid "Can I download videos from websites?\n"
+msgid "Can I download videos from websites?"
 msgstr "Puis-je télécharger des vidéos depuis des sites web ?\n"
 
 #. type: Plain text
@@ -1493,8 +1526,9 @@ msgid "<a id=\"desktop\"></a>\n"
 msgstr "<a id=\"desktop\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Desktop environment\n"
+#, fuzzy, no-wrap
+#| msgid "Desktop environment\n"
+msgid "Desktop environment"
 msgstr "Environnement de bureau\n"
 
 #. type: Plain text
@@ -1503,8 +1537,9 @@ msgid "<a id=\"timezone\"></a>\n"
 msgstr "<a id=\"timezone\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Why is the time set wrong?\n"
+#, fuzzy, no-wrap
+#| msgid "Why is the time set wrong?\n"
+msgid "Why is the time set wrong?"
 msgstr "Pourquoi l'heure est-elle mal configurée ?\n"
 
 #. type: Plain text
@@ -1554,8 +1589,9 @@ msgid "<a id=\"misc\"></a>\n"
 msgstr "<a id=\"misc\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Other security issues\n"
+#, fuzzy, no-wrap
+#| msgid "Other security issues\n"
+msgid "Other security issues"
 msgstr "Autres problèmes de sécurité\n"
 
 #. type: Plain text
@@ -1564,8 +1600,9 @@ msgid "<a id=\"compromised_system\"></a>\n"
 msgstr "<a id=\"compromised_system\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Is it safe to use Tails on a compromised system?\n"
+#, fuzzy, no-wrap
+#| msgid "Is it safe to use Tails on a compromised system?\n"
+msgid "Is it safe to use Tails on a compromised system?"
 msgstr "Est-il sûr d'utiliser Tails sur un système compromis ?\n"
 
 #. type: Plain text
@@ -1612,8 +1649,9 @@ msgid "<a id=\"integrity\"></a>\n"
 msgstr "<a id=\"integrity\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Can I verify the integrity of a Tails USB stick or DVD?\n"
+#, fuzzy, no-wrap
+#| msgid "Can I verify the integrity of a Tails USB stick or DVD?\n"
+msgid "Can I verify the integrity of a Tails USB stick or DVD?"
 msgstr "Puis-je vérifier l'intégrité d'une clé USB ou d'un DVD Tails ?\n"
 
 #. type: Plain text
@@ -1658,8 +1696,9 @@ msgid "<a id=\"reuse_memory_wipe\"></a>\n"
 msgstr "<a id=\"reuse_memory_wipe\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Can I use the memory wipe feature of Tails on another operating system?\n"
+#, fuzzy, no-wrap
+#| msgid "Can I use the memory wipe feature of Tails on another operating system?\n"
+msgid "Can I use the memory wipe feature of Tails on another operating system?"
 msgstr "Puis-je utiliser la fonctionnalité d'effacement de mémoire sur un autre système d'exploitation ?\n"
 
 #. type: Plain text
@@ -1688,8 +1727,9 @@ msgid "<a id=\"new_identity\"></a>\n"
 msgstr "<a id=\"new_identity\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Where is the <span class=\"guilabel\">New Identity</span> button?\n"
+#, fuzzy, no-wrap
+#| msgid "Where is the <span class=\"guilabel\">New Identity</span> button?\n"
+msgid "Where is the <span class=\"guilabel\">New Identity</span> button?"
 msgstr "Où est le bouton <span class=\"guilabel\">Nouvelle identité</span> ?\n"
 
 #. type: Plain text
@@ -1754,8 +1794,9 @@ msgid "<a id=\"boot_statistics\"></a>\n"
 msgstr "<a id=\"boot_statistics\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Does Tails collect information about its users?\n"
+#, fuzzy, no-wrap
+#| msgid "Does Tails collect information about its users?\n"
+msgid "Does Tails collect information about its users?"
 msgstr "Tails collecte-t-il des informations à propos de ses utilisateurs ?\n"
 
 #. type: Plain text
@@ -1807,8 +1848,9 @@ msgid "<a id=\"antivirus\"></a>\n"
 msgstr "<a id=\"antivirus\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Does Tails need an antivirus?\n"
+#, fuzzy, no-wrap
+#| msgid "Does Tails need an antivirus?\n"
+msgid "Does Tails need an antivirus?"
 msgstr "Tails a-t-il besoin d'un antivirus ?\n"
 
 #. type: Plain text
@@ -1832,6 +1874,13 @@ msgstr ""
 "Voir la [[!wikipedia_fr Liste des malwares Linux desc=\"page Wikipédia sur "
 "les malwares Linux\"]] pour plus de détails."
 
+#~ msgid ""
+#~ "Can I run a Tor onion service on Tails?\n"
+#~ "----------------------------------------\n"
+#~ msgstr ""
+#~ "Puis-je faire marcher un service oignon dans Tails ?\n"
+#~ "---------------------------------------\n"
+
 #~ msgid ""
 #~ "Currently the default cipher is `aes-cbc-essiv:sha256` with a key size of "
 #~ "256 bits."
@@ -1839,9 +1888,6 @@ msgstr ""
 #~ "Actuellement le chiffrement par défaut est `aes-cbc-essiv:sha256` avec "
 #~ "une clé de taille 256 bits."
 
-#~ msgid "Can I run a Tor hidden service on Tails?\n"
-#~ msgstr "Puis-je faire tourner un service caché Tor sur Tails ?\n"
-
 #~ msgid "**torchat**: see [[!tails_ticket 5554]]"
 #~ msgstr "**torchat** : voir [[!tails_ticket 5554]]"
 
diff --git a/wiki/src/support/faq.it.po b/wiki/src/support/faq.it.po
index d944273e20318c7103dd701f58b6b47dfb41db2c..09dfbc7bd5058e2c9968dc61f635300d95d3500f 100644
--- a/wiki/src/support/faq.it.po
+++ b/wiki/src/support/faq.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: 2019-05-02 16:25+0000\n"
+"POT-Creation-Date: 2019-05-06 14:52+0200\n"
 "PO-Revision-Date: 2018-02-26 09:59+0100\n"
 "Last-Translator: \n"
 "Language-Team: ita <transitails@inventati.org>\n"
@@ -40,9 +40,10 @@ msgid "<a id=\"project\"></a>\n"
 msgstr "<a id=\"project\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Other useful resources\n"
-msgstr ""
+#, fuzzy, no-wrap
+#| msgid "Other security issues\n"
+msgid "Other useful resources"
+msgstr "Altri problemi di sicurezza\n"
 
 #. type: Bullet: '  - '
 msgid "[The Tor Project: FAQ](https://www.torproject.org/docs/faq.html.en)"
@@ -58,7 +59,7 @@ msgstr ""
 
 #. type: Title =
 #, no-wrap
-msgid "Tails project\n"
+msgid "Tails project"
 msgstr ""
 
 #. type: Plain text
@@ -67,9 +68,10 @@ msgid "<a id=\"relationship_with_tor\"></a>\n"
 msgstr "<a id=\"relationship_with_tor\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "What is the relationship between Tor and Tails?\n"
-msgstr ""
+#, fuzzy, no-wrap
+#| msgid "How does the DNS resolution work in Tails?\n"
+msgid "What is the relationship between Tor and Tails?"
+msgstr "Come funziona la risoluzione DNS in Tails?\n"
 
 #. type: Plain text
 msgid ""
@@ -86,7 +88,7 @@ msgstr "<a id=\"debian\"></a>\n"
 
 #. type: Title -
 #, no-wrap
-msgid "Why is Tails based on Debian and not on another distribution?\n"
+msgid "Why is Tails based on Debian and not on another distribution?"
 msgstr ""
 
 #. type: Plain text
@@ -121,7 +123,7 @@ msgstr "<a id=\"ubuntu\"></a>\n"
 
 #. type: Title -
 #, no-wrap
-msgid "Why isn't Tails based on Ubuntu?\n"
+msgid "Why isn't Tails based on Ubuntu?"
 msgstr ""
 
 #. type: Plain text
@@ -202,7 +204,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Why does Tails ship the GNOME Desktop?\n"
+msgid "Why does Tails ship the GNOME Desktop?"
 msgstr ""
 
 #. type: Plain text
@@ -261,7 +263,7 @@ msgstr ""
 
 #. type: Title =
 #, no-wrap
-msgid "Hardware compatibility\n"
+msgid "Hardware compatibility"
 msgstr ""
 
 #. type: Plain text
@@ -271,7 +273,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Does Tails work on ARM architecture, Raspberry Pi, tablets, or phones?\n"
+msgid "Does Tails work on ARM architecture, Raspberry Pi, tablets, or phones?"
 msgstr ""
 
 #. type: Plain text
@@ -301,7 +303,7 @@ msgstr ""
 
 #. type: Title =
 #, no-wrap
-msgid "Installation\n"
+msgid "Installation"
 msgstr ""
 
 #. type: Plain text
@@ -311,7 +313,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Can I install Tails permanently onto my hard disk?\n"
+msgid "Can I install Tails permanently onto my hard disk?"
 msgstr ""
 
 #. type: Plain text
@@ -342,7 +344,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Can I install Tails with UNetbootin, YUMI, Rufus or my other favorite tool?\n"
+msgid "Can I install Tails with UNetbootin, YUMI, Rufus or my other favorite tool?"
 msgstr ""
 
 #. type: Plain text
@@ -363,9 +365,10 @@ msgid "<a id=\"upgrade\"></a>\n"
 msgstr ""
 
 #. type: Title -
-#, no-wrap
-msgid "Should I update Tails using `apt` or <span class=\"application\">Synaptic</span>?\n"
-msgstr ""
+#, fuzzy, no-wrap
+#| msgid "Is Java installed in the <span class=\"application\">Tor Browser</span>?\n"
+msgid "Should I update Tails using `apt` or <span class=\"application\">Synaptic</span>?"
+msgstr "È installato Java in <span class=\"application\">Tor Browser</span>?\n"
 
 #. type: Plain text
 #, no-wrap
@@ -388,9 +391,10 @@ msgid "<a id=\"preinstalled\"></a>\n"
 msgstr ""
 
 #. type: Title -
-#, no-wrap
-msgid "Can I buy a preinstalled Tails USB stick or DVD?\n"
-msgstr ""
+#, fuzzy, no-wrap
+#| msgid "Can I verify the integrity of a Tails USB stick or DVD?\n"
+msgid "Can I buy a preinstalled Tails USB stick or DVD?"
+msgstr "Posso verificare l'integrità di un dispositivo Tails?\n"
 
 #. type: Plain text
 msgid "No, we don't sell preinstalled Tails devices."
@@ -433,7 +437,7 @@ msgstr "<a id=\"luks\"></a>\n"
 
 #. type: Title -
 #, no-wrap
-msgid "Where can I find the checksum to verify my Tails download?\n"
+msgid "Where can I find the checksum to verify my Tails download?"
 msgstr ""
 
 #. type: Plain text
@@ -472,7 +476,7 @@ msgstr "<a id=\"browser\"></a>\n"
 
 #. type: Title =
 #, no-wrap
-msgid "Web browser\n"
+msgid "Web browser"
 msgstr ""
 
 #. type: Plain text
@@ -481,9 +485,10 @@ msgid "<a id=\"javascript\"></a>\n"
 msgstr ""
 
 #. type: Title -
-#, no-wrap
-msgid "Why is JavaScript enabled by default in <span class=\"application\">Tor Browser</span>?\n"
-msgstr ""
+#, fuzzy, no-wrap
+#| msgid "Is Java installed in the <span class=\"application\">Tor Browser</span>?\n"
+msgid "Why is JavaScript enabled by default in <span class=\"application\">Tor Browser</span>?"
+msgstr "È installato Java in <span class=\"application\">Tor Browser</span>?\n"
 
 #. type: Plain text
 msgid ""
@@ -516,9 +521,10 @@ msgid "<a id=\"add-ons\"></a>\n"
 msgstr ""
 
 #. type: Title -
-#, no-wrap
-msgid "Can I install other add-ons in <span class=\"application\">Tor Browser</span>?\n"
-msgstr ""
+#, fuzzy, no-wrap
+#| msgid "Is Java installed in the <span class=\"application\">Tor Browser</span>?\n"
+msgid "Can I install other add-ons in <span class=\"application\">Tor Browser</span>?"
+msgstr "È installato Java in <span class=\"application\">Tor Browser</span>?\n"
 
 #. type: Plain text
 #, no-wrap
@@ -620,9 +626,10 @@ msgid "<a id=\"add-ons_update\"></a>\n"
 msgstr ""
 
 #. type: Title -
-#, no-wrap
-msgid "Should I manually update add-ons included in <span class=\"application\">Tor Browser</span>?\n"
-msgstr ""
+#, fuzzy, no-wrap
+#| msgid "Is Java installed in the <span class=\"application\">Tor Browser</span>?\n"
+msgid "Should I manually update add-ons included in <span class=\"application\">Tor Browser</span>?"
+msgstr "È installato Java in <span class=\"application\">Tor Browser</span>?\n"
 
 #. type: Plain text
 #, no-wrap
@@ -643,9 +650,10 @@ msgid "<a id=\"flash\"></a>\n"
 msgstr ""
 
 #. type: Title -
-#, no-wrap
-msgid "Can I view websites using Adobe Flash with Tails?\n"
-msgstr ""
+#, fuzzy, no-wrap
+#| msgid "Can I download using BitTorrent with Tails?\n"
+msgid "Can I view websites using Adobe Flash with Tails?"
+msgstr "Posso effettuare download utilizzando BitTorrent con Tails?\n"
 
 #. type: Plain text
 msgid "Adobe Flash Player is not included in Tails for several reasons:"
@@ -705,7 +713,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "How to analyse the results of online anonymity tests?\n"
+msgid "How to analyse the results of online anonymity tests?"
 msgstr ""
 
 #. type: Plain text
@@ -769,8 +777,9 @@ msgid "<a id=\"java\"></a>\n"
 msgstr "<a id=\"java\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Is Java installed in the <span class=\"application\">Tor Browser</span>?\n"
+#, fuzzy, no-wrap
+#| msgid "Is Java installed in the <span class=\"application\">Tor Browser</span>?\n"
+msgid "Is Java installed in the <span class=\"application\">Tor Browser</span>?"
 msgstr "È installato Java in <span class=\"application\">Tor Browser</span>?\n"
 
 #. type: Plain text
@@ -787,8 +796,9 @@ msgid "<a id=\"persistence\"></a>\n"
 msgstr "<a id=\"persistence\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Persistence\n"
+#, fuzzy, no-wrap
+#| msgid "Persistence\n"
+msgid "Persistence"
 msgstr "Persistenza\n"
 
 #. type: Plain text
@@ -797,8 +807,9 @@ msgid "<a id=\"persistent_features\"></a>\n"
 msgstr "<a id=\"persistent_features\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Can I save my custom settings?\n"
+#, fuzzy, no-wrap
+#| msgid "Can I save my custom settings?\n"
+msgid "Can I save my custom settings?"
 msgstr "Posso salvare le mie impostazioni personalizzate?\n"
 
 #. type: Plain text
@@ -842,8 +853,9 @@ msgid "<a id=\"luks\"></a>\n"
 msgstr "<a id=\"luks\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "How strong is the encryption of the persistent volume and LUKS?\n"
+#, fuzzy, no-wrap
+#| msgid "How strong is the encryption of the persistent volume and LUKS?\n"
+msgid "How strong is the encryption of the persistent volume and LUKS?"
 msgstr "Quanto è forte la crittografia del volume persistente e LUKS?\n"
 
 #. type: Plain text
@@ -887,8 +899,9 @@ msgid "<a id=\"recover_passphrase\"></a>\n"
 msgstr "<a id=\"recover_passphrase\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Is it possible to recover the passphrase of the persistent volume?\n"
+#, fuzzy, no-wrap
+#| msgid "Is it possible to recover the passphrase of the persistent volume?\n"
+msgid "Is it possible to recover the passphrase of the persistent volume?"
 msgstr "È possibile recuperare la passphrase del volume persistente?\n"
 
 #. type: Plain text
@@ -909,8 +922,9 @@ msgid "<a id=\"networking\"></a>\n"
 msgstr "<a id=\"networking\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Networking\n"
+#, fuzzy, no-wrap
+#| msgid "Networking\n"
+msgid "Networking"
 msgstr "Connessioni\n"
 
 #. type: Plain text
@@ -919,8 +933,9 @@ msgid "<a id=\"vpn\"></a>\n"
 msgstr "<a id=\"vpn\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Can I use Tails with a VPN?\n"
+#, fuzzy, no-wrap
+#| msgid "Can I use Tails with a VPN?\n"
+msgid "Can I use Tails with a VPN?"
 msgstr "Posso utilizzare Tails con una VPN?\n"
 
 #. type: Plain text
@@ -1018,8 +1033,9 @@ msgid "<a id=\"torrc\"></a>\n"
 msgstr "<a id=\"torrc\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Can I choose the country of my exit nodes or further edit the `torrc`?\n"
+#, fuzzy, no-wrap
+#| msgid "Can I choose the country of my exit nodes or further edit the `torrc`?\n"
+msgid "Can I choose the country of my exit nodes or further edit the `torrc`?"
 msgstr "Posso scegliere il paese dei miei nodi di uscita o modificare ulteriormente il `torrc`?\n"
 
 #. type: Plain text
@@ -1053,8 +1069,9 @@ msgid "<a id=\"dns\"></a>\n"
 msgstr "<a id=\"dns\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "How does the DNS resolution work in Tails?\n"
+#, fuzzy, no-wrap
+#| msgid "How does the DNS resolution work in Tails?\n"
+msgid "How does the DNS resolution work in Tails?"
 msgstr "Come funziona la risoluzione DNS in Tails?\n"
 
 #. type: Plain text
@@ -1071,8 +1088,9 @@ msgid "<a id=\"htp\"></a>\n"
 msgstr "<a id=\"htp\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Why does Tails automatically connect to several websites when starting?\n"
+#, fuzzy, no-wrap
+#| msgid "Why does Tails automatically connect to several websites when starting?\n"
+msgid "Why does Tails automatically connect to several websites when starting?"
 msgstr "Perché Tails si connette automaticamente a diversi siti web all'avvio?\n"
 
 #. type: Plain text
@@ -1117,8 +1135,9 @@ msgid "<a id=\"relay\"></a>\n"
 msgstr "<a id=\"relay\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Can I help the Tor network by running a relay or a bridge in Tails?\n"
+#, fuzzy, no-wrap
+#| msgid "Can I help the Tor network by running a relay or a bridge in Tails?\n"
+msgid "Can I help the Tor network by running a relay or a bridge in Tails?"
 msgstr "Posso aiutare la rete Tor eseguendo un relè o un ponte in Tails?\n"
 
 #. type: Plain text
@@ -1140,11 +1159,9 @@ msgid ""
 msgstr "<a id=\"hidden_service\"></a>\n"
 
 #. type: Plain text
-#, fuzzy, no-wrap
+#, fuzzy
 #| msgid "Can I run a Tor hidden service on Tails?\n"
-msgid ""
-"Can I run a Tor onion service on Tails?\n"
-"----------------------------------------\n"
+msgid "Can I run a Tor onion service on Tails?"
 msgstr "Posso eseguire un Tor hidden service su Tails?\n"
 
 #. type: Plain text
@@ -1177,8 +1194,9 @@ msgid "<a id=\"ping\"></a>\n"
 msgstr "<a id=\"ping\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Can I use <span class=\"command\">ping</span> in Tails?\n"
+#, fuzzy, no-wrap
+#| msgid "Can I use <span class=\"command\">ping</span> in Tails?\n"
+msgid "Can I use <span class=\"command\">ping</span> in Tails?"
 msgstr "Posso usare <span class=\"command\">ping</span> in Tails?\n"
 
 #. type: Plain text
@@ -1198,8 +1216,9 @@ msgid "<a id=\"software\"></a>\n"
 msgstr "<a id=\"software\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Software not included in Tails\n"
+#, fuzzy, no-wrap
+#| msgid "Software not included in Tails\n"
+msgid "Software not included in Tails"
 msgstr "Software non incluso in Tails\n"
 
 #. type: Plain text
@@ -1208,9 +1227,10 @@ msgid "<a id=\"new_software\"></a>\n"
 msgstr "<a id=\"new_software\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Can my favourite software be included in Tails?\n"
-msgstr ""
+#, fuzzy, no-wrap
+#| msgid "Software not included in Tails\n"
+msgid "Can my favourite software be included in Tails?"
+msgstr "Software non incluso in Tails\n"
 
 #. type: Plain text
 msgid ""
@@ -1357,8 +1377,9 @@ msgid "<a id=\"bittorrent\"></a>\n"
 msgstr "<a id=\"bittorrent\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Can I download using BitTorrent with Tails?\n"
+#, fuzzy, no-wrap
+#| msgid "Can I download using BitTorrent with Tails?\n"
+msgid "Can I download using BitTorrent with Tails?"
 msgstr "Posso effettuare download utilizzando BitTorrent con Tails?\n"
 
 #. type: Plain text
@@ -1404,9 +1425,10 @@ msgid "<a id=\"youtube\"></a>\n"
 msgstr ""
 
 #. type: Title -
-#, no-wrap
-msgid "Can I download videos from websites?\n"
-msgstr ""
+#, fuzzy, no-wrap
+#| msgid "Can I download using BitTorrent with Tails?\n"
+msgid "Can I download videos from websites?"
+msgstr "Posso effettuare download utilizzando BitTorrent con Tails?\n"
 
 #. type: Plain text
 #, no-wrap
@@ -1449,8 +1471,9 @@ msgid "<a id=\"desktop\"></a>\n"
 msgstr "<a id=\"desktop\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Desktop environment\n"
+#, fuzzy, no-wrap
+#| msgid "Desktop environment\n"
+msgid "Desktop environment"
 msgstr "Ambiente desktop\n"
 
 #. type: Plain text
@@ -1459,8 +1482,9 @@ msgid "<a id=\"timezone\"></a>\n"
 msgstr "<a id=\"timezone\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Why is the time set wrong?\n"
+#, fuzzy, no-wrap
+#| msgid "Why is the time set wrong?\n"
+msgid "Why is the time set wrong?"
 msgstr "Perché il tempo è impostato male?\n"
 
 #. type: Plain text
@@ -1511,8 +1535,9 @@ msgid "<a id=\"misc\"></a>\n"
 msgstr "<a id=\"misc\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Other security issues\n"
+#, fuzzy, no-wrap
+#| msgid "Other security issues\n"
+msgid "Other security issues"
 msgstr "Altri problemi di sicurezza\n"
 
 #. type: Plain text
@@ -1521,8 +1546,9 @@ msgid "<a id=\"compromised_system\"></a>\n"
 msgstr "<a id=\"compromised_system\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Is it safe to use Tails on a compromised system?\n"
+#, fuzzy, no-wrap
+#| msgid "Is it safe to use Tails on a compromised system?\n"
+msgid "Is it safe to use Tails on a compromised system?"
 msgstr "È sicuro utilizzare Tails su un sistema compromesso?\n"
 
 #. type: Plain text
@@ -1569,8 +1595,9 @@ msgid "<a id=\"integrity\"></a>\n"
 msgstr "<a id=\"integrity\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Can I verify the integrity of a Tails USB stick or DVD?\n"
+#, fuzzy, no-wrap
+#| msgid "Can I verify the integrity of a Tails USB stick or DVD?\n"
+msgid "Can I verify the integrity of a Tails USB stick or DVD?"
 msgstr "Posso verificare l'integrità di un dispositivo Tails?\n"
 
 #. type: Plain text
@@ -1623,8 +1650,9 @@ msgid "<a id=\"reuse_memory_wipe\"></a>\n"
 msgstr "<a id=\"reuse_memory_wipe\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Can I use the memory wipe feature of Tails on another operating system?\n"
+#, fuzzy, no-wrap
+#| msgid "Can I use the memory wipe feature of Tails on another operating system?\n"
+msgid "Can I use the memory wipe feature of Tails on another operating system?"
 msgstr "Posso utilizzare la funzione di pulizia della memoria di Tails in un altro sistema operativo?\n"
 
 #. type: Plain text
@@ -1653,8 +1681,9 @@ msgid "<a id=\"new_identity\"></a>\n"
 msgstr "<a id=\"new_identity\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Where is the <span class=\"guilabel\">New Identity</span> button?\n"
+#, fuzzy, no-wrap
+#| msgid "Where is the <span class=\"guilabel\">New Identity</span> button?\n"
+msgid "Where is the <span class=\"guilabel\">New Identity</span> button?"
 msgstr "Dove è il pulsante <span class=\"guilabel\">New Identity</span>?\n"
 
 #. type: Plain text
@@ -1720,8 +1749,9 @@ msgstr ""
 "\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Does Tails collect information about its users?\n"
+#, fuzzy, no-wrap
+#| msgid "Does Tails collect information about its users?\n"
+msgid "Does Tails collect information about its users?"
 msgstr "Tails raccoglie informazioni sui suoi utenti?\n"
 
 #. type: Plain text
@@ -1772,8 +1802,9 @@ msgid "<a id=\"antivirus\"></a>\n"
 msgstr "<a id=\"antivirus\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Does Tails need an antivirus?\n"
+#, fuzzy, no-wrap
+#| msgid "Does Tails need an antivirus?\n"
+msgid "Does Tails need an antivirus?"
 msgstr "Tails ha bisogno di un antivirus?\n"
 
 #. type: Plain text
diff --git a/wiki/src/support/faq.pt.po b/wiki/src/support/faq.pt.po
index 6ae3027432215d2a0d6b2f2837fc7b39c5bb08da..2d11d931c469ee6afb7697624cd49711ac36c210 100644
--- a/wiki/src/support/faq.pt.po
+++ b/wiki/src/support/faq.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: 2019-05-02 16:25+0000\n"
+"POT-Creation-Date: 2019-05-06 14:52+0200\n"
 "PO-Revision-Date: 2018-04-29 20:24+0000\n"
 "Last-Translator: Tails translators <tails-l10n@boum.org>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -41,8 +41,9 @@ msgid "<a id=\"project\"></a>\n"
 msgstr "<a id=\"project\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Other useful resources\n"
+#, fuzzy, no-wrap
+#| msgid "Other useful resources\n"
+msgid "Other useful resources"
 msgstr "Outros recursos úteis\n"
 
 #. type: Bullet: '  - '
@@ -60,8 +61,9 @@ msgstr ""
 "stackexchange.com/)"
 
 #. type: Title =
-#, no-wrap
-msgid "Tails project\n"
+#, fuzzy, no-wrap
+#| msgid "Tails project\n"
+msgid "Tails project"
 msgstr "Projeto Tails\n"
 
 #. type: Plain text
@@ -70,8 +72,9 @@ msgid "<a id=\"relationship_with_tor\"></a>\n"
 msgstr "<a id=\"relationship_with_tor\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "What is the relationship between Tor and Tails?\n"
+#, fuzzy, no-wrap
+#| msgid "What is the relationship between Tor and Tails?\n"
+msgid "What is the relationship between Tor and Tails?"
 msgstr "Qual é a relação entre Tor e Tails?\n"
 
 #. type: Plain text
@@ -88,8 +91,9 @@ msgid "<a id=\"debian\"></a>\n"
 msgstr "<a id=\"debian\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Why is Tails based on Debian and not on another distribution?\n"
+#, fuzzy, no-wrap
+#| msgid "Why is Tails based on Debian and not on another distribution?\n"
+msgid "Why is Tails based on Debian and not on another distribution?"
 msgstr "Por que o Tails é baseado em Debian e não em outra distribuição?\n"
 
 #. type: Plain text
@@ -123,8 +127,9 @@ msgid "<a id=\"ubuntu\"></a>\n"
 msgstr "<a id=\"ubuntu\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Why isn't Tails based on Ubuntu?\n"
+#, fuzzy, no-wrap
+#| msgid "Why isn't Tails based on Ubuntu?\n"
+msgid "Why isn't Tails based on Ubuntu?"
 msgstr "Por que o Tails não é baseado em Ubuntu?\n"
 
 #. type: Plain text
@@ -215,7 +220,7 @@ msgstr "<a id=\"arm\"></a>\n"
 
 #. type: Title -
 #, no-wrap
-msgid "Why does Tails ship the GNOME Desktop?\n"
+msgid "Why does Tails ship the GNOME Desktop?"
 msgstr ""
 
 #. type: Plain text
@@ -266,8 +271,9 @@ msgid "<a id=\"hardware\"></a>\n"
 msgstr "<a id=\"hardware\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Hardware compatibility\n"
+#, fuzzy, no-wrap
+#| msgid "Hardware compatibility\n"
+msgid "Hardware compatibility"
 msgstr "Compatibilidade de hardware\n"
 
 #. type: Plain text
@@ -278,7 +284,7 @@ msgstr "<a id=\"arm\"></a>\n"
 #. type: Title -
 #, fuzzy, no-wrap
 #| msgid "Does Tails work on ARM architecture, Raspberry Pi, or tablets?\n"
-msgid "Does Tails work on ARM architecture, Raspberry Pi, tablets, or phones?\n"
+msgid "Does Tails work on ARM architecture, Raspberry Pi, tablets, or phones?"
 msgstr "Tails funciona em arquitetura ARM, Raspberry PI ou tablets?\n"
 
 #. type: Plain text
@@ -318,8 +324,9 @@ msgid "<a id=\"installation\"></a>\n"
 msgstr "<a id=\"installation\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Installation\n"
+#, fuzzy, no-wrap
+#| msgid "Installation\n"
+msgid "Installation"
 msgstr "Instalação\n"
 
 #. type: Plain text
@@ -328,8 +335,9 @@ msgid "<a id=\"install_permanently\"></a>\n"
 msgstr "<a id=\"install_permanently\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Can I install Tails permanently onto my hard disk?\n"
+#, fuzzy, no-wrap
+#| msgid "Can I install Tails permanently onto my hard disk?\n"
+msgid "Can I install Tails permanently onto my hard disk?"
 msgstr "Posso instalar Tails permanentemente no meu disco rígido?\n"
 
 #. type: Plain text
@@ -365,7 +373,7 @@ msgstr "<a id=\"networking\"></a>\n"
 
 #. type: Title -
 #, no-wrap
-msgid "Can I install Tails with UNetbootin, YUMI, Rufus or my other favorite tool?\n"
+msgid "Can I install Tails with UNetbootin, YUMI, Rufus or my other favorite tool?"
 msgstr ""
 
 #. type: Plain text
@@ -384,7 +392,7 @@ msgstr "<a id=\"upgrade\"></a>\n"
 #. type: Title -
 #, fuzzy, no-wrap
 #| msgid "Can I install other add-ons in the browser?\n"
-msgid "Should I update Tails using `apt` or <span class=\"application\">Synaptic</span>?\n"
+msgid "Should I update Tails using `apt` or <span class=\"application\">Synaptic</span>?"
 msgstr "Posso instalar outras extensões no navegador?\n"
 
 #. type: Plain text
@@ -406,7 +414,7 @@ msgstr "<a id=\"installation\"></a>\n"
 #. type: Title -
 #, fuzzy, no-wrap
 #| msgid "Can I verify the integrity of a Tails device?\n"
-msgid "Can I buy a preinstalled Tails USB stick or DVD?\n"
+msgid "Can I buy a preinstalled Tails USB stick or DVD?"
 msgstr "Posso verificar a integridade de um dispositivo com Tails?\n"
 
 #. type: Plain text
@@ -442,7 +450,7 @@ msgstr "<a id=\"luks\"></a>\n"
 
 #. type: Title -
 #, no-wrap
-msgid "Where can I find the checksum to verify my Tails download?\n"
+msgid "Where can I find the checksum to verify my Tails download?"
 msgstr ""
 
 #. type: Plain text
@@ -480,8 +488,9 @@ msgid "<a id=\"browser\"></a>\n"
 msgstr "<a id=\"browser\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Web browser\n"
+#, fuzzy, no-wrap
+#| msgid "Web browser\n"
+msgid "Web browser"
 msgstr "Navegador web\n"
 
 #. type: Plain text
@@ -492,7 +501,7 @@ msgstr "<a id=\"javascript\"></a>\n"
 #. type: Title -
 #, fuzzy, no-wrap
 #| msgid "Why is JavaScript enabled by default in the Tor browser?\n"
-msgid "Why is JavaScript enabled by default in <span class=\"application\">Tor Browser</span>?\n"
+msgid "Why is JavaScript enabled by default in <span class=\"application\">Tor Browser</span>?"
 msgstr "Por que JavaScript está habilitado por padrão no navegador Tor?\n"
 
 #. type: Plain text
@@ -548,7 +557,7 @@ msgstr "<a id=\"add-ons\"></a>\n"
 #. type: Title -
 #, fuzzy, no-wrap
 #| msgid "Can I install other add-ons in the browser?\n"
-msgid "Can I install other add-ons in <span class=\"application\">Tor Browser</span>?\n"
+msgid "Can I install other add-ons in <span class=\"application\">Tor Browser</span>?"
 msgstr "Posso instalar outras extensões no navegador?\n"
 
 #. type: Plain text
@@ -662,7 +671,7 @@ msgstr "<a id=\"add-ons\"></a>\n"
 #. type: Title -
 #, fuzzy, no-wrap
 #| msgid "Can I install other add-ons in the browser?\n"
-msgid "Should I manually update add-ons included in <span class=\"application\">Tor Browser</span>?\n"
+msgid "Should I manually update add-ons included in <span class=\"application\">Tor Browser</span>?"
 msgstr "Posso instalar outras extensões no navegador?\n"
 
 #. type: Plain text
@@ -680,8 +689,9 @@ msgid "<a id=\"flash\"></a>\n"
 msgstr "<a id=\"flash\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Can I view websites using Adobe Flash with Tails?\n"
+#, fuzzy, no-wrap
+#| msgid "Can I view websites using Adobe Flash with Tails?\n"
+msgid "Can I view websites using Adobe Flash with Tails?"
 msgstr "Posso ver sites que usam Adobe Flash com Tails?\n"
 
 #. type: Plain text
@@ -746,8 +756,9 @@ msgid "<a id=\"anonymity_test\"></a>\n"
 msgstr "<a id=\"anonymity_test\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "How to analyse the results of online anonymity tests?\n"
+#, fuzzy, no-wrap
+#| msgid "How to analyse the results of online anonymity tests?\n"
+msgid "How to analyse the results of online anonymity tests?"
 msgstr "Como analisar os resultados dos testes online de anonimidade?\n"
 
 #. type: Plain text
@@ -805,9 +816,10 @@ msgid "<a id=\"java\"></a>\n"
 msgstr "<a id=\"java\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Is Java installed in the <span class=\"application\">Tor Browser</span>?\n"
-msgstr ""
+#, fuzzy, no-wrap
+#| msgid "Can I install other add-ons in the browser?\n"
+msgid "Is Java installed in the <span class=\"application\">Tor Browser</span>?"
+msgstr "Posso instalar outras extensões no navegador?\n"
 
 #. type: Plain text
 msgid ""
@@ -823,8 +835,9 @@ msgid "<a id=\"persistence\"></a>\n"
 msgstr "<a id=\"persistence\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Persistence\n"
+#, fuzzy, no-wrap
+#| msgid "Persistence\n"
+msgid "Persistence"
 msgstr "Persistência\n"
 
 #. type: Plain text
@@ -833,8 +846,9 @@ msgid "<a id=\"persistent_features\"></a>\n"
 msgstr "<a id=\"persistent_features\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Can I save my custom settings?\n"
+#, fuzzy, no-wrap
+#| msgid "Can I save my custom settings?\n"
+msgid "Can I save my custom settings?"
 msgstr "Posso salvar minhas configurações específicas?\n"
 
 #. type: Plain text
@@ -877,8 +891,9 @@ msgid "<a id=\"luks\"></a>\n"
 msgstr "<a id=\"luks\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "How strong is the encryption of the persistent volume and LUKS?\n"
+#, fuzzy, no-wrap
+#| msgid "How strong is the encryption of the persistent volume and LUKS?\n"
+msgid "How strong is the encryption of the persistent volume and LUKS?"
 msgstr "Quão forte é a criptografia do volume persistente e do LUKS?\n"
 
 #. type: Plain text
@@ -921,8 +936,9 @@ msgid "<a id=\"recover_passphrase\"></a>\n"
 msgstr "<a id=\"recover_passphrase\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Is it possible to recover the passphrase of the persistent volume?\n"
+#, fuzzy, no-wrap
+#| msgid "Is it possible to recover the passphrase of the persistent volume?\n"
+msgid "Is it possible to recover the passphrase of the persistent volume?"
 msgstr "É possível recuperar a senha de um volume persistente?\n"
 
 #. type: Plain text
@@ -943,8 +959,9 @@ msgid "<a id=\"networking\"></a>\n"
 msgstr "<a id=\"networking\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Networking\n"
+#, fuzzy, no-wrap
+#| msgid "Networking\n"
+msgid "Networking"
 msgstr "Rede\n"
 
 #. type: Plain text
@@ -953,8 +970,9 @@ msgid "<a id=\"vpn\"></a>\n"
 msgstr "<a id=\"vpn\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Can I use Tails with a VPN?\n"
+#, fuzzy, no-wrap
+#| msgid "Can I use Tails with a VPN?\n"
+msgid "Can I use Tails with a VPN?"
 msgstr "Posso usar Tails com uma VPN?\n"
 
 #. type: Plain text
@@ -1062,7 +1080,7 @@ msgstr "<a id=\"bittorrent\"></a>\n"
 
 #. type: Title -
 #, no-wrap
-msgid "Can I choose the country of my exit nodes or further edit the `torrc`?\n"
+msgid "Can I choose the country of my exit nodes or further edit the `torrc`?"
 msgstr ""
 
 #. type: Plain text
@@ -1088,8 +1106,9 @@ msgid "<a id=\"dns\"></a>\n"
 msgstr "<a id=\"dns\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "How does the DNS resolution work in Tails?\n"
+#, fuzzy, no-wrap
+#| msgid "How does the DNS resolution work in Tails?\n"
+msgid "How does the DNS resolution work in Tails?"
 msgstr "Como funciona a resolução de DNS no Tails?\n"
 
 #. type: Plain text
@@ -1106,8 +1125,9 @@ msgid "<a id=\"htp\"></a>\n"
 msgstr "<a id=\"htp\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Why does Tails automatically connect to several websites when starting?\n"
+#, fuzzy, no-wrap
+#| msgid "Why does Tails automatically connect to several websites when starting?\n"
+msgid "Why does Tails automatically connect to several websites when starting?"
 msgstr "Por que o Tails se conecta automaticamente a diversos sítios web ao iniciar?\n"
 
 #. type: Plain text
@@ -1158,9 +1178,10 @@ msgid "<a id=\"relay\"></a>\n"
 msgstr "<a id=\"flash\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Can I help the Tor network by running a relay or a bridge in Tails?\n"
-msgstr ""
+#, fuzzy, no-wrap
+#| msgid "This is currently not possible easily using Tails."
+msgid "Can I help the Tor network by running a relay or a bridge in Tails?"
+msgstr "Isto atualmente não é possível de fazer facilmente usando o Tails."
 
 #. type: Plain text
 #, fuzzy
@@ -1177,13 +1198,11 @@ msgid ""
 msgstr "<a id=\"dns\"></a>\n"
 
 #. type: Plain text
-#, fuzzy, no-wrap
+#, fuzzy
 #| msgid ""
 #| "Is Java installed in the Tor browser?\n"
 #| "---------------------------------------\n"
-msgid ""
-"Can I run a Tor onion service on Tails?\n"
-"----------------------------------------\n"
+msgid "Can I run a Tor onion service on Tails?"
 msgstr ""
 "Java está instalado no navegador Tor?\n"
 "---------------------------------------\n"
@@ -1208,7 +1227,7 @@ msgstr "<a id=\"vpn\"></a>\n"
 
 #. type: Title -
 #, no-wrap
-msgid "Can I use <span class=\"command\">ping</span> in Tails?\n"
+msgid "Can I use <span class=\"command\">ping</span> in Tails?"
 msgstr ""
 
 #. type: Plain text
@@ -1225,8 +1244,9 @@ msgid "<a id=\"software\"></a>\n"
 msgstr "<a id=\"software\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Software not included in Tails\n"
+#, fuzzy, no-wrap
+#| msgid "Software not included in Tails\n"
+msgid "Software not included in Tails"
 msgstr "Programas não inclusos no Tails\n"
 
 #. type: Plain text
@@ -1235,8 +1255,9 @@ msgid "<a id=\"new_software\"></a>\n"
 msgstr "<a id=\"new_software\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Can my favourite software be included in Tails?\n"
+#, fuzzy, no-wrap
+#| msgid "Can my favourite software be included in Tails?\n"
+msgid "Can my favourite software be included in Tails?"
 msgstr "Meu programa favorito pode ser incluído no Tails?\n"
 
 #. type: Plain text
@@ -1394,8 +1415,9 @@ msgid "<a id=\"bittorrent\"></a>\n"
 msgstr "<a id=\"bittorrent\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Can I download using BitTorrent with Tails?\n"
+#, fuzzy, no-wrap
+#| msgid "Can I download using BitTorrent with Tails?\n"
+msgid "Can I download using BitTorrent with Tails?"
 msgstr "Posso fazer downloads usando BitTorrent no Tails?\n"
 
 #. type: Plain text
@@ -1445,7 +1467,7 @@ msgstr "<a id=\"ubuntu\"></a>\n"
 #. type: Title -
 #, fuzzy, no-wrap
 #| msgid "Can I download using BitTorrent with Tails?\n"
-msgid "Can I download videos from websites?\n"
+msgid "Can I download videos from websites?"
 msgstr "Posso fazer downloads usando BitTorrent no Tails?\n"
 
 #. type: Plain text
@@ -1481,8 +1503,9 @@ msgid "<a id=\"desktop\"></a>\n"
 msgstr "<a id=\"desktop\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Desktop environment\n"
+#, fuzzy, no-wrap
+#| msgid "Desktop environment\n"
+msgid "Desktop environment"
 msgstr "Ambiente de trabalho\n"
 
 #. type: Plain text
@@ -1491,8 +1514,9 @@ msgid "<a id=\"timezone\"></a>\n"
 msgstr "<a id=\"timezone\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Why is the time set wrong?\n"
+#, fuzzy, no-wrap
+#| msgid "Why is the time set wrong?\n"
+msgid "Why is the time set wrong?"
 msgstr "Por que o horário está errado?\n"
 
 #. type: Plain text
@@ -1542,8 +1566,9 @@ msgid "<a id=\"misc\"></a>\n"
 msgstr "<a id=\"misc\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Other security issues\n"
+#, fuzzy, no-wrap
+#| msgid "Other security issues\n"
+msgid "Other security issues"
 msgstr "Outras questões de segurança\n"
 
 #. type: Plain text
@@ -1552,8 +1577,9 @@ msgid "<a id=\"compromised_system\"></a>\n"
 msgstr "<a id=\"compromised_system\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Is it safe to use Tails on a compromised system?\n"
+#, fuzzy, no-wrap
+#| msgid "Is it safe to use Tails on a compromised system?\n"
+msgid "Is it safe to use Tails on a compromised system?"
 msgstr "É seguro usar Tails em um sistema comprometido?\n"
 
 #. type: Plain text
@@ -1603,7 +1629,7 @@ msgstr "<a id=\"integrity\"></a>\n"
 #. type: Title -
 #, fuzzy, no-wrap
 #| msgid "Can I verify the integrity of a Tails device?\n"
-msgid "Can I verify the integrity of a Tails USB stick or DVD?\n"
+msgid "Can I verify the integrity of a Tails USB stick or DVD?"
 msgstr "Posso verificar a integridade de um dispositivo com Tails?\n"
 
 #. type: Plain text
@@ -1667,8 +1693,9 @@ msgid "<a id=\"reuse_memory_wipe\"></a>\n"
 msgstr "<a id=\"reuse_memory_wipe\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Can I use the memory wipe feature of Tails on another operating system?\n"
+#, fuzzy, no-wrap
+#| msgid "Can I use the memory wipe feature of Tails on another operating system?\n"
+msgid "Can I use the memory wipe feature of Tails on another operating system?"
 msgstr "Posso usar a funcionalidade de limpeza de memória do Tails em outro sistema operacional?\n"
 
 #. type: Plain text
@@ -1704,7 +1731,7 @@ msgstr "<a id=\"new_identity\"></a>\n"
 
 #. type: Title -
 #, no-wrap
-msgid "Where is the <span class=\"guilabel\">New Identity</span> button?\n"
+msgid "Where is the <span class=\"guilabel\">New Identity</span> button?"
 msgstr ""
 
 #. type: Plain text
@@ -1760,8 +1787,9 @@ msgid "<a id=\"boot_statistics\"></a>\n"
 msgstr "<a id=\"boot_statistics\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Does Tails collect information about its users?\n"
+#, fuzzy, no-wrap
+#| msgid "Does Tails collect information about its users?\n"
+msgid "Does Tails collect information about its users?"
 msgstr "O Tails coleta informação sobre seus usuários?\n"
 
 #. type: Plain text
@@ -1815,7 +1843,7 @@ msgstr "<a id=\"arm\"></a>\n"
 
 #. type: Title -
 #, no-wrap
-msgid "Does Tails need an antivirus?\n"
+msgid "Does Tails need an antivirus?"
 msgstr ""
 
 #. type: Plain text
diff --git a/wiki/src/support/known_issues.de.po b/wiki/src/support/known_issues.de.po
index d01b7f78f22c320dd55f9ec2dd84947e441a7e03..b8ecb24db100d9f8a1915698c154d03acdf79f26 100644
--- a/wiki/src/support/known_issues.de.po
+++ b/wiki/src/support/known_issues.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: 2019-05-02 15:30+0000\n"
+"POT-Creation-Date: 2019-05-06 14:52+0200\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"
@@ -36,7 +36,7 @@ msgstr "[[!toc levels=3]]\n"
 
 #. type: Title =
 #, no-wrap
-msgid "Problems starting Tails\n"
+msgid "Problems starting Tails"
 msgstr ""
 
 #. type: Plain text
@@ -53,7 +53,7 @@ msgstr "<a id=\"problematic-usb-sticks\"></a>\n"
 
 #. type: Title -
 #, no-wrap
-msgid "Problematic USB sticks\n"
+msgid "Problematic USB sticks"
 msgstr ""
 
 #. type: Plain text
@@ -217,10 +217,7 @@ msgid "<a id=\"mac\"></a>\n"
 msgstr ""
 
 #. type: Plain text
-#, no-wrap
-msgid ""
-"Mac\n"
-"---\n"
+msgid "Mac"
 msgstr ""
 
 #. type: Bullet: '* '
@@ -526,12 +523,12 @@ msgstr ""
 
 #. type: Title =
 #, no-wrap
-msgid "Graphics issues\n"
+msgid "Graphics issues"
 msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "GNOME desktop fails to start with some AMD/ATI Radeon graphic adapters\n"
+msgid "GNOME desktop fails to start with some AMD/ATI Radeon graphic adapters"
 msgstr ""
 
 #. type: Plain text
@@ -566,7 +563,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Tails Greeter fails to start with some AMD/ATI Radeon graphic adapters\n"
+msgid "Tails Greeter fails to start with some AMD/ATI Radeon graphic adapters"
 msgstr ""
 
 #. type: Plain text
@@ -592,7 +589,7 @@ msgstr "<a id=\"nvidia-maxwell\"></a>\n"
 
 #. type: Title -
 #, no-wrap
-msgid "Tails Greeter fails to start on computers with Nvidia Maxwell graphic cards\n"
+msgid "Tails Greeter fails to start on computers with Nvidia Maxwell graphic cards"
 msgstr ""
 
 #. type: Plain text
@@ -623,10 +620,8 @@ msgid "<a id=\"nvidia-pascal\"></a>\n"
 msgstr "<a id=\"nvidia-pascal\"></a>\n"
 
 #. type: Plain text
-#, no-wrap
 msgid ""
-"Tails Greeter fails to start on computers with Nvidia Pascal graphic cards\n"
-"---------------------------------------------------------------------------\n"
+"Tails Greeter fails to start on computers with Nvidia Pascal graphic cards"
 msgstr ""
 
 #. type: Plain text
@@ -647,7 +642,7 @@ msgstr "<a id=\"switchable_graphics_black_screen\"></a>\n"
 
 #. type: Title -
 #, no-wrap
-msgid "Black screen with switchable graphics computers\n"
+msgid "Black screen with switchable graphics computers"
 msgstr ""
 
 #. type: Plain text
@@ -735,7 +730,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Cannot start GNOME session with switchable graphics computers\n"
+msgid "Cannot start GNOME session with switchable graphics computers"
 msgstr ""
 
 #. type: Plain text
@@ -754,7 +749,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Laptops with Intel 855GM graphic card\n"
+msgid "Laptops with Intel 855GM graphic card"
 msgstr ""
 
 #. type: Plain text
@@ -770,7 +765,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Laptops with Intel GM965/GL960 graphic card\n"
+msgid "Laptops with Intel GM965/GL960 graphic card"
 msgstr ""
 
 #. type: Plain text
@@ -790,7 +785,7 @@ msgstr "<a id=\"xorg-driver\"></a>\n"
 
 #. type: Title -
 #, no-wrap
-msgid "Systems with Intel graphic cards\n"
+msgid "Systems with Intel graphic cards"
 msgstr ""
 
 #. type: Plain text
@@ -830,7 +825,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Virtual machines with *virt-manager*, *libvirt* and *QEMU*\n"
+msgid "Virtual machines with *virt-manager*, *libvirt* and *QEMU*"
 msgstr ""
 
 #. type: Plain text
@@ -842,7 +837,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Virtual machines with *VMware*\n"
+msgid "Virtual machines with *VMware*"
 msgstr ""
 
 #. type: Plain text
@@ -859,7 +854,7 @@ msgstr ""
 
 #. type: Title =
 #, no-wrap
-msgid "Wi-Fi issues\n"
+msgid "Wi-Fi issues"
 msgstr ""
 
 #. type: Plain text
@@ -881,7 +876,7 @@ msgstr "<a id=\"fingerprint\"></a>\n"
 
 #. type: Title -
 #, no-wrap
-msgid "Knowing the model of your Wi-Fi interface\n"
+msgid "Knowing the model of your Wi-Fi interface"
 msgstr ""
 
 #. type: Bullet: '1. '
@@ -897,7 +892,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "88W8897 [AVASTAR] 802.11ac Wireless\n"
+msgid "88W8897 [AVASTAR] 802.11ac Wireless"
 msgstr ""
 
 #. type: Plain text
@@ -915,7 +910,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "RTL8723BE PCIe Wireless Network Adapter\n"
+msgid "RTL8723BE PCIe Wireless Network Adapter"
 msgstr ""
 
 #. type: Plain text
@@ -970,7 +965,7 @@ msgstr "<a id=\"problematic-usb-sticks\"></a>\n"
 
 #. type: Title -
 #, no-wrap
-msgid "Broadcom Wi-Fi network interface needing `broadcom-sta-dkms`\n"
+msgid "Broadcom Wi-Fi network interface needing `broadcom-sta-dkms`"
 msgstr ""
 
 #. type: Plain text
@@ -994,7 +989,7 @@ msgstr ""
 
 #. type: Title =
 #, no-wrap
-msgid "Security issues\n"
+msgid "Security issues"
 msgstr ""
 
 #. type: Plain text
@@ -1004,7 +999,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Tails does not erase video memory\n"
+msgid "Tails does not erase video memory"
 msgstr ""
 
 #. type: Plain text
@@ -1032,7 +1027,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Tails fails to completely shutdown or restart\n"
+msgid "Tails fails to completely shutdown or restart"
 msgstr ""
 
 #. type: Plain text
@@ -1109,7 +1104,7 @@ msgstr "<a id=\"fingerprint\"></a>\n"
 
 #. type: Title =
 #, no-wrap
-msgid "Browser fingerprint\n"
+msgid "Browser fingerprint"
 msgstr ""
 
 #. type: Plain text
@@ -1132,7 +1127,7 @@ msgstr "-->\n"
 
 #. type: Title =
 #, no-wrap
-msgid "Other issues\n"
+msgid "Other issues"
 msgstr ""
 
 #. type: Plain text
@@ -1142,7 +1137,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Chainloading Tails from GRUB\n"
+msgid "Chainloading Tails from GRUB"
 msgstr ""
 
 #. type: Plain text
@@ -1167,7 +1162,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Boot Loader Menu has display issues\n"
+msgid "Boot Loader Menu has display issues"
 msgstr ""
 
 #. type: Plain text
@@ -1178,7 +1173,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Connecting to FTP servers is not possible\n"
+msgid "Connecting to FTP servers is not possible"
 msgstr ""
 
 #. type: Plain text
@@ -1189,7 +1184,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Tails fails to connect to certain Wi-Fi networks\n"
+msgid "Tails fails to connect to certain Wi-Fi networks"
 msgstr ""
 
 #. type: Plain text
@@ -1200,7 +1195,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "The desktop crashes when run with the default QEMU emulated processor\n"
+msgid "The desktop crashes when run with the default QEMU emulated processor"
 msgstr ""
 
 #. type: Plain text
@@ -1221,7 +1216,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Touchpad configurations\n"
+msgid "Touchpad configurations"
 msgstr ""
 
 #. type: Title ###
@@ -1254,7 +1249,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Bluetooth devices don't work\n"
+msgid "Bluetooth devices don't work"
 msgstr ""
 
 #. type: Plain text
@@ -1268,7 +1263,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Tor Browser is translated in a limited number of languages\n"
+msgid "Tor Browser is translated in a limited number of languages"
 msgstr ""
 
 #. type: Plain text
@@ -1281,7 +1276,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Playing WebM videos in the Tor Browser fails on old hardware\n"
+msgid "Playing WebM videos in the Tor Browser fails on old hardware"
 msgstr ""
 
 #. type: Plain text
@@ -1299,7 +1294,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Tails does not boot after automatic upgrade\n"
+msgid "Tails does not boot after automatic upgrade"
 msgstr ""
 
 #. type: Plain text
@@ -1325,7 +1320,7 @@ msgstr "<a id=\"persistence-disappears\"></a>\n"
 
 #. type: Title -
 #, no-wrap
-msgid "Persistent folder disappears and persistent feature configurations do not load\n"
+msgid "Persistent folder disappears and persistent feature configurations do not load"
 msgstr ""
 
 #. type: Plain text
@@ -1553,7 +1548,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Some languages do not have the correct keyboard layout set by default\n"
+msgid "Some languages do not have the correct keyboard layout set by default"
 msgstr ""
 
 #. type: Plain text
diff --git a/wiki/src/support/known_issues.es.po b/wiki/src/support/known_issues.es.po
index bae50e90283f6cf7a5ff986304e48b9419e791df..9c5d706b94fc3874142ceb4b511ada1f283215b8 100644
--- a/wiki/src/support/known_issues.es.po
+++ b/wiki/src/support/known_issues.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: 2019-05-02 15:30+0000\n"
+"POT-Creation-Date: 2019-05-06 14:52+0200\n"
 "PO-Revision-Date: 2019-01-03 10:25+0100\n"
 "Last-Translator: Joaquín Serna <bubuanabelas@cryptolab.net>\n"
 "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/"
@@ -43,8 +43,9 @@ msgid "[[!toc levels=3]]\n"
 msgstr "[[!toc levels=3]]\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Problems starting Tails\n"
+#, fuzzy, no-wrap
+#| msgid "Problems starting Tails\n"
+msgid "Problems starting Tails"
 msgstr "Problemas al arrancar Tails\n"
 
 #. type: Plain text
@@ -64,8 +65,9 @@ msgid "<a id=\"problematic-usb-sticks\"></a>\n"
 msgstr "<a id=\"problematic-usb-sticks\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Problematic USB sticks\n"
+#, fuzzy, no-wrap
+#| msgid "Problematic USB sticks\n"
+msgid "Problematic USB sticks"
 msgstr "Memorias USB problemáticas\n"
 
 #. type: Plain text
@@ -261,13 +263,8 @@ msgid "<a id=\"mac\"></a>\n"
 msgstr "<a id=\"mac\"></a>\n"
 
 #. type: Plain text
-#, no-wrap
-msgid ""
-"Mac\n"
-"---\n"
+msgid "Mac"
 msgstr ""
-"Mac\n"
-"---\n"
 
 #. type: Bullet: '* '
 msgid ""
@@ -624,12 +621,12 @@ msgstr ""
 #. type: Title =
 #, fuzzy, no-wrap
 #| msgid "Wi-Fi issues\n"
-msgid "Graphics issues\n"
+msgid "Graphics issues"
 msgstr "Problemas del Wi-Fi\n"
 
 #. type: Title -
 #, no-wrap
-msgid "GNOME desktop fails to start with some AMD/ATI Radeon graphic adapters\n"
+msgid "GNOME desktop fails to start with some AMD/ATI Radeon graphic adapters"
 msgstr ""
 
 #. type: Plain text
@@ -668,7 +665,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Tails Greeter fails to start with some AMD/ATI Radeon graphic adapters\n"
+msgid "Tails Greeter fails to start with some AMD/ATI Radeon graphic adapters"
 msgstr ""
 
 #. type: Plain text
@@ -700,7 +697,7 @@ msgstr "<a id=\"nvidia-maxwell\"></a>\n"
 
 #. type: Title -
 #, no-wrap
-msgid "Tails Greeter fails to start on computers with Nvidia Maxwell graphic cards\n"
+msgid "Tails Greeter fails to start on computers with Nvidia Maxwell graphic cards"
 msgstr ""
 
 #. type: Plain text
@@ -737,10 +734,8 @@ msgid "<a id=\"nvidia-pascal\"></a>\n"
 msgstr "<a id=\"nvidia-pascal\"></a>\n"
 
 #. type: Plain text
-#, no-wrap
 msgid ""
-"Tails Greeter fails to start on computers with Nvidia Pascal graphic cards\n"
-"---------------------------------------------------------------------------\n"
+"Tails Greeter fails to start on computers with Nvidia Pascal graphic cards"
 msgstr ""
 
 #. type: Plain text
@@ -761,8 +756,9 @@ msgid "<a id=\"switchable_graphics_black_screen\"></a>\n"
 msgstr "<a id=\"problematic-usb-sticks\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Black screen with switchable graphics computers\n"
+#, fuzzy, no-wrap
+#| msgid "Black screen with switchable graphics computers\n"
+msgid "Black screen with switchable graphics computers"
 msgstr "Pantalla negra con ordenadores de gráficos intercambiables\n"
 
 #. type: Plain text
@@ -856,9 +852,10 @@ msgid "<a id=switchable_graphics_segfault></a>\n"
 msgstr ""
 
 #. type: Title -
-#, no-wrap
-msgid "Cannot start GNOME session with switchable graphics computers\n"
-msgstr ""
+#, fuzzy, no-wrap
+#| msgid "Black screen with switchable graphics computers\n"
+msgid "Cannot start GNOME session with switchable graphics computers"
+msgstr "Pantalla negra con ordenadores de gráficos intercambiables\n"
 
 #. type: Plain text
 msgid ""
@@ -882,7 +879,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Laptops with Intel 855GM graphic card\n"
+msgid "Laptops with Intel 855GM graphic card"
 msgstr ""
 
 #. type: Plain text
@@ -898,7 +895,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Laptops with Intel GM965/GL960 graphic card\n"
+msgid "Laptops with Intel GM965/GL960 graphic card"
 msgstr ""
 
 #. type: Plain text
@@ -919,7 +916,7 @@ msgstr "<a id=\"aegis\"></a>\n"
 
 #. type: Title -
 #, no-wrap
-msgid "Systems with Intel graphic cards\n"
+msgid "Systems with Intel graphic cards"
 msgstr ""
 
 #. type: Plain text
@@ -965,7 +962,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Virtual machines with *virt-manager*, *libvirt* and *QEMU*\n"
+msgid "Virtual machines with *virt-manager*, *libvirt* and *QEMU*"
 msgstr ""
 
 #. type: Plain text
@@ -976,8 +973,9 @@ msgid ""
 msgstr ""
 
 #. type: Title -
-#, no-wrap
-msgid "Virtual machines with *VMware*\n"
+#, fuzzy, no-wrap
+#| msgid "Virtual machines with *VMware*\n"
+msgid "Virtual machines with *VMware*"
 msgstr "Maquinas virtuales con *VMware*\n"
 
 #. type: Plain text
@@ -996,8 +994,9 @@ msgid "<a id=\"wi-fi\"></a>\n"
 msgstr "<a id=\"wi-fi\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Wi-Fi issues\n"
+#, fuzzy, no-wrap
+#| msgid "Wi-Fi issues\n"
+msgid "Wi-Fi issues"
 msgstr "Problemas del Wi-Fi\n"
 
 #. type: Plain text
@@ -1019,7 +1018,7 @@ msgstr "<a id=\"wi-fi\"></a>\n"
 
 #. type: Title -
 #, no-wrap
-msgid "Knowing the model of your Wi-Fi interface\n"
+msgid "Knowing the model of your Wi-Fi interface"
 msgstr ""
 
 #. type: Bullet: '1. '
@@ -1036,7 +1035,7 @@ msgstr "       lspci -nn | grep Network\n"
 
 #. type: Title -
 #, no-wrap
-msgid "88W8897 [AVASTAR] 802.11ac Wireless\n"
+msgid "88W8897 [AVASTAR] 802.11ac Wireless"
 msgstr ""
 
 #. type: Plain text
@@ -1054,7 +1053,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "RTL8723BE PCIe Wireless Network Adapter\n"
+msgid "RTL8723BE PCIe Wireless Network Adapter"
 msgstr ""
 
 #. type: Plain text
@@ -1108,7 +1107,7 @@ msgstr "<a id=\"broadcom-sta-dkms\"></a>\n"
 
 #. type: Title -
 #, no-wrap
-msgid "Broadcom Wi-Fi network interface needing `broadcom-sta-dkms`\n"
+msgid "Broadcom Wi-Fi network interface needing `broadcom-sta-dkms`"
 msgstr ""
 
 #. type: Plain text
@@ -1131,9 +1130,10 @@ msgid ""
 msgstr ""
 
 #. type: Title =
-#, no-wrap
-msgid "Security issues\n"
-msgstr ""
+#, fuzzy, no-wrap
+#| msgid "Other issues\n"
+msgid "Security issues"
+msgstr "Otros problemas\n"
 
 #. type: Plain text
 #, no-wrap
@@ -1141,8 +1141,9 @@ msgid "<a id=\"video-memory\"></a>\n"
 msgstr "<a id=\"video-memory\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Tails does not erase video memory\n"
+#, fuzzy, no-wrap
+#| msgid "Tails does not erase video memory\n"
+msgid "Tails does not erase video memory"
 msgstr "Tails no borra la memoria de vídeo\n"
 
 #. type: Plain text
@@ -1175,8 +1176,9 @@ msgid "<a id=\"fails-to-shutdown\"></a>\n"
 msgstr "<a id=\"fails-to-shutdown\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Tails fails to completely shutdown or restart\n"
+#, fuzzy, no-wrap
+#| msgid "Tails fails to completely shutdown or restart\n"
+msgid "Tails fails to completely shutdown or restart"
 msgstr "Tails falla al apagarse o reiniciar\n"
 
 #. type: Plain text
@@ -1253,7 +1255,7 @@ msgstr "<a id=\"fingerprint\"></a>\n"
 
 #. type: Title =
 #, no-wrap
-msgid "Browser fingerprint\n"
+msgid "Browser fingerprint"
 msgstr ""
 
 #. type: Plain text
@@ -1275,8 +1277,9 @@ msgid "-->\n"
 msgstr "-->\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Other issues\n"
+#, fuzzy, no-wrap
+#| msgid "Other issues\n"
+msgid "Other issues"
 msgstr "Otros problemas\n"
 
 #. type: Plain text
@@ -1286,7 +1289,7 @@ msgstr "<a id=\"chainloading\"></a>\n"
 
 #. type: Title -
 #, no-wrap
-msgid "Chainloading Tails from GRUB\n"
+msgid "Chainloading Tails from GRUB"
 msgstr ""
 
 #. type: Plain text
@@ -1314,7 +1317,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Boot Loader Menu has display issues\n"
+msgid "Boot Loader Menu has display issues"
 msgstr ""
 
 #. type: Plain text
@@ -1325,7 +1328,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Connecting to FTP servers is not possible\n"
+msgid "Connecting to FTP servers is not possible"
 msgstr ""
 
 #. type: Plain text
@@ -1336,7 +1339,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Tails fails to connect to certain Wi-Fi networks\n"
+msgid "Tails fails to connect to certain Wi-Fi networks"
 msgstr ""
 
 #. type: Plain text
@@ -1347,7 +1350,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "The desktop crashes when run with the default QEMU emulated processor\n"
+msgid "The desktop crashes when run with the default QEMU emulated processor"
 msgstr ""
 
 #. type: Plain text
@@ -1368,7 +1371,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Touchpad configurations\n"
+msgid "Touchpad configurations"
 msgstr ""
 
 #. type: Title ###
@@ -1401,7 +1404,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Bluetooth devices don't work\n"
+msgid "Bluetooth devices don't work"
 msgstr ""
 
 #. type: Plain text
@@ -1415,7 +1418,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Tor Browser is translated in a limited number of languages\n"
+msgid "Tor Browser is translated in a limited number of languages"
 msgstr ""
 
 #. type: Plain text
@@ -1428,7 +1431,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Playing WebM videos in the Tor Browser fails on old hardware\n"
+msgid "Playing WebM videos in the Tor Browser fails on old hardware"
 msgstr ""
 
 #. type: Plain text
@@ -1446,7 +1449,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Tails does not boot after automatic upgrade\n"
+msgid "Tails does not boot after automatic upgrade"
 msgstr ""
 
 #. type: Plain text
@@ -1473,7 +1476,7 @@ msgstr "<a id=\"sandisk\"></a>\n"
 
 #. type: Title -
 #, no-wrap
-msgid "Persistent folder disappears and persistent feature configurations do not load\n"
+msgid "Persistent folder disappears and persistent feature configurations do not load"
 msgstr ""
 
 #. type: Plain text
@@ -1707,7 +1710,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Some languages do not have the correct keyboard layout set by default\n"
+msgid "Some languages do not have the correct keyboard layout set by default"
 msgstr ""
 
 #. type: Plain text
@@ -1842,6 +1845,13 @@ msgstr ""
 msgid "[[!inline pages=\"doc/anonymous_internet/electrum/phishing.inline\" raw=\"yes\" sort=\"age\"]]\n"
 msgstr ""
 
+#~ msgid ""
+#~ "Mac\n"
+#~ "---\n"
+#~ msgstr ""
+#~ "Mac\n"
+#~ "---\n"
+
 #, fuzzy
 #~| msgid "See also [[!tails_ticket 6397]]."
 #~ msgid "See [[!tails_ticket 15168]] for more details."
diff --git a/wiki/src/support/known_issues.fa.po b/wiki/src/support/known_issues.fa.po
index a14aec4528d7742f1dd09b98643d73db73459843..6cc704c755f3a06ab199acff9e74d879da9f0061 100644
--- a/wiki/src/support/known_issues.fa.po
+++ b/wiki/src/support/known_issues.fa.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: 2019-05-02 15:30+0000\n"
+"POT-Creation-Date: 2019-05-06 14:52+0200\n"
 "PO-Revision-Date: 2015-10-25 10:05+0000\n"
 "Last-Translator: sprint5 <translation5@451f.org>\n"
 "Language-Team: Persian <http://weblate.451f.org:8889/projects/tails/"
@@ -39,8 +39,9 @@ msgid "[[!toc levels=3]]\n"
 msgstr "[[!toc levels=2]]\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Problems starting Tails\n"
+#, fuzzy, no-wrap
+#| msgid "Problems starting Tails\n"
+msgid "Problems starting Tails"
 msgstr "مشکلات هنگام راه‌اندازی تیلز\n"
 
 #. type: Plain text
@@ -59,8 +60,9 @@ msgid "<a id=\"problematic-usb-sticks\"></a>\n"
 msgstr "<a id=\"problematic-usb-sticks\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Problematic USB sticks\n"
+#, fuzzy, no-wrap
+#| msgid "Problematic USB sticks\n"
+msgid "Problematic USB sticks"
 msgstr "درایوهای یواس‌بی مشکل‌دار\n"
 
 #. type: Plain text
@@ -258,13 +260,8 @@ msgid "<a id=\"mac\"></a>\n"
 msgstr "<a id=\"mac\"></a>\n"
 
 #. type: Plain text
-#, no-wrap
-msgid ""
-"Mac\n"
-"---\n"
+msgid "Mac"
 msgstr ""
-"مک\n"
-"---\n"
 
 #. type: Bullet: '* '
 msgid ""
@@ -670,12 +667,12 @@ msgstr ""
 #. type: Title =
 #, fuzzy, no-wrap
 #| msgid "Security issues\n"
-msgid "Graphics issues\n"
+msgid "Graphics issues"
 msgstr "مسائل امنیتی\n"
 
 #. type: Title -
 #, no-wrap
-msgid "GNOME desktop fails to start with some AMD/ATI Radeon graphic adapters\n"
+msgid "GNOME desktop fails to start with some AMD/ATI Radeon graphic adapters"
 msgstr ""
 
 #. type: Plain text
@@ -718,7 +715,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Tails Greeter fails to start with some AMD/ATI Radeon graphic adapters\n"
+msgid "Tails Greeter fails to start with some AMD/ATI Radeon graphic adapters"
 msgstr ""
 
 #. type: Plain text
@@ -752,7 +749,7 @@ msgstr "<a id=\"nvidia-maxwell\"></a>\n"
 
 #. type: Title -
 #, no-wrap
-msgid "Tails Greeter fails to start on computers with Nvidia Maxwell graphic cards\n"
+msgid "Tails Greeter fails to start on computers with Nvidia Maxwell graphic cards"
 msgstr ""
 
 #. type: Plain text
@@ -792,10 +789,8 @@ msgid "<a id=\"nvidia-pascal\"></a>\n"
 msgstr "<a id=\"nvidia-maxwell\"></a>\n"
 
 #. type: Plain text
-#, no-wrap
 msgid ""
-"Tails Greeter fails to start on computers with Nvidia Pascal graphic cards\n"
-"---------------------------------------------------------------------------\n"
+"Tails Greeter fails to start on computers with Nvidia Pascal graphic cards"
 msgstr ""
 
 #. type: Plain text
@@ -819,7 +814,7 @@ msgstr "<a id=\"switchable_graphics_black_screen\"></a>\n"
 #. type: Title -
 #, fuzzy, no-wrap
 #| msgid "Switchable graphics computers\n"
-msgid "Black screen with switchable graphics computers\n"
+msgid "Black screen with switchable graphics computers"
 msgstr "رایانه‌های با گرافیک قابل‌تغییر\n"
 
 #. type: Plain text
@@ -931,7 +926,7 @@ msgstr "<a id=switchable_graphics_segfault></a>\n"
 #. type: Title -
 #, fuzzy, no-wrap
 #| msgid "Switchable graphics computers\n"
-msgid "Cannot start GNOME session with switchable graphics computers\n"
+msgid "Cannot start GNOME session with switchable graphics computers"
 msgstr "رایانه‌های با گرافیک قابل‌تغییر\n"
 
 #. type: Plain text
@@ -956,7 +951,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Laptops with Intel 855GM graphic card\n"
+msgid "Laptops with Intel 855GM graphic card"
 msgstr ""
 
 #. type: Plain text
@@ -974,7 +969,7 @@ msgstr "همچنین رجوع کنید به [[!tails_ticket 6397]]."
 
 #. type: Title -
 #, no-wrap
-msgid "Laptops with Intel GM965/GL960 graphic card\n"
+msgid "Laptops with Intel GM965/GL960 graphic card"
 msgstr ""
 
 #. type: Plain text
@@ -996,7 +991,7 @@ msgstr "<a id=\"xorg-driver\"></a>\n"
 
 #. type: Title -
 #, no-wrap
-msgid "Systems with Intel graphic cards\n"
+msgid "Systems with Intel graphic cards"
 msgstr ""
 
 #. type: Plain text
@@ -1042,7 +1037,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Virtual machines with *virt-manager*, *libvirt* and *QEMU*\n"
+msgid "Virtual machines with *virt-manager*, *libvirt* and *QEMU*"
 msgstr ""
 
 #. type: Plain text
@@ -1054,7 +1049,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Virtual machines with *VMware*\n"
+msgid "Virtual machines with *VMware*"
 msgstr ""
 
 #. type: Plain text
@@ -1070,8 +1065,9 @@ msgid "<a id=\"wi-fi\"></a>\n"
 msgstr "<a id=\"wi-fi\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Wi-Fi issues\n"
+#, fuzzy, no-wrap
+#| msgid "Wi-Fi issues\n"
+msgid "Wi-Fi issues"
 msgstr "مشکلات وای‌فای\n"
 
 #. type: Plain text
@@ -1093,7 +1089,7 @@ msgstr "<a id=\"wi-fi\"></a>\n"
 
 #. type: Title -
 #, no-wrap
-msgid "Knowing the model of your Wi-Fi interface\n"
+msgid "Knowing the model of your Wi-Fi interface"
 msgstr ""
 
 #. type: Bullet: '1. '
@@ -1110,7 +1106,7 @@ msgstr "       lspci -nn | grep Network\n"
 
 #. type: Title -
 #, no-wrap
-msgid "88W8897 [AVASTAR] 802.11ac Wireless\n"
+msgid "88W8897 [AVASTAR] 802.11ac Wireless"
 msgstr ""
 
 #. type: Plain text
@@ -1128,7 +1124,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "RTL8723BE PCIe Wireless Network Adapter\n"
+msgid "RTL8723BE PCIe Wireless Network Adapter"
 msgstr ""
 
 #. type: Plain text
@@ -1187,8 +1183,9 @@ msgid "<a id=\"broadcom-sta-dkms\"></a>\n"
 msgstr "<a id=\"broadcom-sta-dkms\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Broadcom Wi-Fi network interface needing `broadcom-sta-dkms`\n"
+#, fuzzy, no-wrap
+#| msgid "Broadcom Wi-Fi network interface needing `broadcom-sta-dkms`\n"
+msgid "Broadcom Wi-Fi network interface needing `broadcom-sta-dkms`"
 msgstr "رابط شبکهٔ وای‌فای Broadcam نیازمند به `broadcom-sta-dkms\n"
 
 #. type: Plain text
@@ -1228,8 +1225,9 @@ msgstr ""
 "استفاده از کارت وای‌فای شما در تیلز غیرممکن است.\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Security issues\n"
+#, fuzzy, no-wrap
+#| msgid "Security issues\n"
+msgid "Security issues"
 msgstr "مسائل امنیتی\n"
 
 #. type: Plain text
@@ -1238,8 +1236,9 @@ msgid "<a id=\"video-memory\"></a>\n"
 msgstr "<a id=\"video-memory\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Tails does not erase video memory\n"
+#, fuzzy, no-wrap
+#| msgid "Tails does not erase video memory\n"
+msgid "Tails does not erase video memory"
 msgstr "تیلز حافظهٔ ویدیویی را پاک نمی‌کند\n"
 
 #. type: Plain text
@@ -1276,7 +1275,7 @@ msgstr "<a id=\"chainloading\"></a>\n"
 #. type: Title -
 #, fuzzy, no-wrap
 #| msgid "Tails fails to connect to certain Wi-Fi networks\n"
-msgid "Tails fails to completely shutdown or restart\n"
+msgid "Tails fails to completely shutdown or restart"
 msgstr "تیلز نمی‌تواند به بعضی شبکه‌های وای‌فای وصل شود\n"
 
 #. type: Plain text
@@ -1356,7 +1355,7 @@ msgstr "<a id=\"fingerprint\"></a>\n"
 #. type: Title =
 #, fuzzy, no-wrap
 #| msgid "Fingerprint\n"
-msgid "Browser fingerprint\n"
+msgid "Browser fingerprint"
 msgstr "اثر انگشت\n"
 
 #. type: Plain text
@@ -1379,8 +1378,9 @@ msgid "-->\n"
 msgstr ""
 
 #. type: Title =
-#, no-wrap
-msgid "Other issues\n"
+#, fuzzy, no-wrap
+#| msgid "Other issues\n"
+msgid "Other issues"
 msgstr "مسائل دیگر\n"
 
 #. type: Plain text
@@ -1389,8 +1389,9 @@ msgid "<a id=\"chainloading\"></a>\n"
 msgstr "<a id=\"chainloading\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Chainloading Tails from GRUB\n"
+#, fuzzy, no-wrap
+#| msgid "Chainloading Tails from GRUB\n"
+msgid "Chainloading Tails from GRUB"
 msgstr "بارگذاری زنجیره‌ای تیلز از GRUB\n"
 
 #. type: Plain text
@@ -1423,7 +1424,7 @@ msgstr ""
 #. type: Title -
 #, fuzzy, no-wrap
 #| msgid "Boot menu has display issues\n"
-msgid "Boot Loader Menu has display issues\n"
+msgid "Boot Loader Menu has display issues"
 msgstr "مشکلاتی در نمایش فهرست راه‌اندازی وجود دارد\n"
 
 #. type: Plain text
@@ -1440,8 +1441,9 @@ msgstr ""
 "می‌شود."
 
 #. type: Title -
-#, no-wrap
-msgid "Connecting to FTP servers is not possible\n"
+#, fuzzy, no-wrap
+#| msgid "Connecting to FTP servers is not possible\n"
+msgid "Connecting to FTP servers is not possible"
 msgstr "اتصال به سرورهای اف‌تی‌پی ممکن نیست\n"
 
 #. type: Plain text
@@ -1454,8 +1456,9 @@ msgstr ""
 "\"]]."
 
 #. type: Title -
-#, no-wrap
-msgid "Tails fails to connect to certain Wi-Fi networks\n"
+#, fuzzy, no-wrap
+#| msgid "Tails fails to connect to certain Wi-Fi networks\n"
+msgid "Tails fails to connect to certain Wi-Fi networks"
 msgstr "تیلز نمی‌تواند به بعضی شبکه‌های وای‌فای وصل شود\n"
 
 #. type: Plain text
@@ -1466,7 +1469,7 @@ msgstr "این مشکل ممکن است به آغاز پشتیبانی بی‌س
 
 #. type: Title -
 #, no-wrap
-msgid "The desktop crashes when run with the default QEMU emulated processor\n"
+msgid "The desktop crashes when run with the default QEMU emulated processor"
 msgstr ""
 
 #. type: Plain text
@@ -1486,8 +1489,9 @@ msgid ""
 msgstr ""
 
 #. type: Title -
-#, no-wrap
-msgid "Touchpad configurations\n"
+#, fuzzy, no-wrap
+#| msgid "Touchpad configurations\n"
+msgid "Touchpad configurations"
 msgstr "پیکربندی حس‌گر لمسی\n"
 
 #. type: Title ###
@@ -1525,8 +1529,9 @@ msgid ""
 msgstr ""
 
 #. type: Title -
-#, no-wrap
-msgid "Bluetooth devices don't work\n"
+#, fuzzy, no-wrap
+#| msgid "Bluetooth devices don't work\n"
+msgid "Bluetooth devices don't work"
 msgstr "دستگاه بلوتوث کار نمی‌کند\n"
 
 #. type: Plain text
@@ -1539,8 +1544,9 @@ msgid "<a id=\"browser_languages\"></a>\n"
 msgstr "<a id=\"browser_languages\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Tor Browser is translated in a limited number of languages\n"
+#, fuzzy, no-wrap
+#| msgid "Tor Browser is translated in a limited number of languages\n"
+msgid "Tor Browser is translated in a limited number of languages"
 msgstr "مرورگر تور تنها به چند زبان ترجمه می‌شود\n"
 
 #. type: Plain text
@@ -1556,7 +1562,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Playing WebM videos in the Tor Browser fails on old hardware\n"
+msgid "Playing WebM videos in the Tor Browser fails on old hardware"
 msgstr ""
 
 #. type: Plain text
@@ -1574,7 +1580,7 @@ msgstr "<a id=\"automatic_upgrade_fails\"></a>\n"
 
 #. type: Title -
 #, no-wrap
-msgid "Tails does not boot after automatic upgrade\n"
+msgid "Tails does not boot after automatic upgrade"
 msgstr ""
 
 #. type: Plain text
@@ -1609,7 +1615,7 @@ msgstr "<a id=\"sandisk\"></a>\n"
 
 #. type: Title -
 #, no-wrap
-msgid "Persistent folder disappears and persistent feature configurations do not load\n"
+msgid "Persistent folder disappears and persistent feature configurations do not load"
 msgstr ""
 
 #. type: Plain text
@@ -1840,7 +1846,7 @@ msgstr "همچنین رجوع کنید به [[!tails_ticket 6397]]."
 
 #. type: Title -
 #, no-wrap
-msgid "Some languages do not have the correct keyboard layout set by default\n"
+msgid "Some languages do not have the correct keyboard layout set by default"
 msgstr ""
 
 #. type: Plain text
@@ -1986,6 +1992,13 @@ msgstr ""
 msgid "[[!inline pages=\"doc/anonymous_internet/electrum/phishing.inline\" raw=\"yes\" sort=\"age\"]]\n"
 msgstr ""
 
+#~ msgid ""
+#~ "Mac\n"
+#~ "---\n"
+#~ msgstr ""
+#~ "مک\n"
+#~ "---\n"
+
 #, fuzzy
 #~| msgid "See also [[!tails_ticket 6397]]."
 #~ msgid "See [[!tails_ticket 15168]] for more details."
diff --git a/wiki/src/support/known_issues.fr.po b/wiki/src/support/known_issues.fr.po
index bfaee734b16c305b0044750588879c1155250dfd..fc93e49956c008a0d3973cec864978283c942599 100644
--- a/wiki/src/support/known_issues.fr.po
+++ b/wiki/src/support/known_issues.fr.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: Tails\n"
-"POT-Creation-Date: 2019-05-02 15:30+0000\n"
+"POT-Creation-Date: 2019-05-06 14:52+0200\n"
 "PO-Revision-Date: 2019-01-03 10:26+0100\n"
 "Last-Translator: \n"
 "Language-Team: Tails translators <tails@boum.org>\n"
@@ -41,8 +41,9 @@ msgid "[[!toc levels=3]]\n"
 msgstr "[[!toc levels=3]]\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Problems starting Tails\n"
+#, fuzzy, no-wrap
+#| msgid "Problems starting Tails\n"
+msgid "Problems starting Tails"
 msgstr "Problème pour démarrer Tails\n"
 
 #. type: Plain text
@@ -62,8 +63,9 @@ msgid "<a id=\"problematic-usb-sticks\"></a>\n"
 msgstr "<a id=\"problematic-usb-sticks\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Problematic USB sticks\n"
+#, fuzzy, no-wrap
+#| msgid "Problematic USB sticks\n"
+msgid "Problematic USB sticks"
 msgstr "Clés USB problématiques\n"
 
 #. type: Plain text
@@ -254,13 +256,8 @@ msgid "<a id=\"mac\"></a>\n"
 msgstr "<a id=\"mac\"></a>\n"
 
 #. type: Plain text
-#, no-wrap
-msgid ""
-"Mac\n"
-"---\n"
+msgid "Mac"
 msgstr ""
-"Mac\n"
-"---\n"
 
 #. type: Bullet: '* '
 msgid ""
@@ -629,13 +626,15 @@ msgid ""
 msgstr ""
 
 #. type: Title =
-#, no-wrap
-msgid "Graphics issues\n"
+#, fuzzy, no-wrap
+#| msgid "Graphics issues\n"
+msgid "Graphics issues"
 msgstr "Problèmes graphiques\n"
 
 #. type: Title -
-#, no-wrap
-msgid "GNOME desktop fails to start with some AMD/ATI Radeon graphic adapters\n"
+#, fuzzy, no-wrap
+#| msgid "GNOME desktop fails to start with some AMD/ATI Radeon graphic adapters\n"
+msgid "GNOME desktop fails to start with some AMD/ATI Radeon graphic adapters"
 msgstr "Le bureau GNOME n'arrive pas à démarrer avec certaines cartes graphiques AMD/ATI Radeon\n"
 
 #. type: Plain text
@@ -681,8 +680,9 @@ msgstr ""
 "problème."
 
 #. type: Title -
-#, no-wrap
-msgid "Tails Greeter fails to start with some AMD/ATI Radeon graphic adapters\n"
+#, fuzzy, no-wrap
+#| msgid "Tails Greeter fails to start with some AMD/ATI Radeon graphic adapters\n"
+msgid "Tails Greeter fails to start with some AMD/ATI Radeon graphic adapters"
 msgstr "Tails Greeter n'arrive pas à démarrer avec certaines cartes graphiques AMD/ATI Radeon\n"
 
 #. type: Plain text
@@ -711,8 +711,9 @@ msgid "<a id=\"nvidia-maxwell\"></a>\n"
 msgstr "<a id=\"nvidia-maxwell\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Tails Greeter fails to start on computers with Nvidia Maxwell graphic cards\n"
+#, fuzzy, no-wrap
+#| msgid "Tails Greeter fails to start on computers with Nvidia Maxwell graphic cards\n"
+msgid "Tails Greeter fails to start on computers with Nvidia Maxwell graphic cards"
 msgstr "Tails Greeter n'arrive pas à démarrer avec certaines cartes graphiques Nvidia Maxwell\n"
 
 #. type: Plain text
@@ -753,13 +754,15 @@ msgid "<a id=\"nvidia-pascal\"></a>\n"
 msgstr "<a id=\"nvidia-pascal\"></a>\n"
 
 #. type: Plain text
-#, no-wrap
+#, fuzzy
+#| msgid ""
+#| "Tails Greeter fails to start on computers with Nvidia Maxwell graphic "
+#| "cards\n"
 msgid ""
-"Tails Greeter fails to start on computers with Nvidia Pascal graphic cards\n"
-"---------------------------------------------------------------------------\n"
+"Tails Greeter fails to start on computers with Nvidia Pascal graphic cards"
 msgstr ""
-"Tails Greeter n'arrive pas à démarrer avec certaines cartes graphiques Nvidia Pascal\n"
-"---------------------------------------------------------------------------\n"
+"Tails Greeter n'arrive pas à démarrer avec certaines cartes graphiques "
+"Nvidia Maxwell\n"
 
 #. type: Plain text
 msgid ""
@@ -781,8 +784,9 @@ msgid "<a id=\"switchable_graphics_black_screen\"></a>\n"
 msgstr "<a id=\"switchable_graphics_black_screen\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Black screen with switchable graphics computers\n"
+#, fuzzy, no-wrap
+#| msgid "Black screen with switchable graphics computers\n"
+msgid "Black screen with switchable graphics computers"
 msgstr "Écran noir avec des ordinateurs avec cartes graphiques commutables\n"
 
 #. type: Plain text
@@ -892,8 +896,9 @@ msgid "<a id=switchable_graphics_segfault></a>\n"
 msgstr "<a id=switchable_graphics_segfault></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Cannot start GNOME session with switchable graphics computers\n"
+#, fuzzy, no-wrap
+#| msgid "Cannot start GNOME session with switchable graphics computers\n"
+msgid "Cannot start GNOME session with switchable graphics computers"
 msgstr "La session GNOME ne peut pas démarrer avec des ordinateurs avec cartes graphiques commutables\n"
 
 #. type: Plain text
@@ -917,8 +922,9 @@ msgstr ""
 "first_steps/startup_options#boot_loader_menu]]."
 
 #. type: Title -
-#, no-wrap
-msgid "Laptops with Intel 855GM graphic card\n"
+#, fuzzy, no-wrap
+#| msgid "Laptops with Intel 855GM graphic card\n"
+msgid "Laptops with Intel 855GM graphic card"
 msgstr "Ordinateurs portables avec une carte graphique Intel 855GM\n"
 
 #. type: Plain text
@@ -937,8 +943,9 @@ msgstr ""
 "d'informations."
 
 #. type: Title -
-#, no-wrap
-msgid "Laptops with Intel GM965/GL960 graphic card\n"
+#, fuzzy, no-wrap
+#| msgid "Laptops with Intel GM965/GL960 graphic card\n"
+msgid "Laptops with Intel GM965/GL960 graphic card"
 msgstr "Ordinateurs portables avec une carte graphique Intel GM965/GL960\n"
 
 #. type: Plain text
@@ -960,8 +967,9 @@ msgid "<a id=\"xorg-driver\"></a>\n"
 msgstr "<a id=\"xorg-driver\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Systems with Intel graphic cards\n"
+#, fuzzy, no-wrap
+#| msgid "Systems with Intel graphic cards\n"
+msgid "Systems with Intel graphic cards"
 msgstr "Systèmes avec cartes graphiques Intel\n"
 
 #. type: Plain text
@@ -1013,8 +1021,9 @@ msgstr ""
 "   exact de la carte graphique Intel.\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Virtual machines with *virt-manager*, *libvirt* and *QEMU*\n"
+#, fuzzy, no-wrap
+#| msgid "Virtual machines with *virt-manager*, *libvirt* and *QEMU*\n"
+msgid "Virtual machines with *virt-manager*, *libvirt* and *QEMU*"
 msgstr "Machines virtuelles avec *virt-manager*, *libvirt* et *QEMU*\n"
 
 #. type: Plain text
@@ -1029,8 +1038,9 @@ msgstr ""
 "manager*."
 
 #. type: Title -
-#, no-wrap
-msgid "Virtual machines with *VMware*\n"
+#, fuzzy, no-wrap
+#| msgid "Virtual machines with *VMware*\n"
+msgid "Virtual machines with *VMware*"
 msgstr "Machines virtuelles avec *VMware*\n"
 
 #. type: Plain text
@@ -1049,8 +1059,9 @@ msgid "<a id=\"wi-fi\"></a>\n"
 msgstr "<a id=\"wi-fi\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Wi-Fi issues\n"
+#, fuzzy, no-wrap
+#| msgid "Wi-Fi issues\n"
+msgid "Wi-Fi issues"
 msgstr "Problèmes de Wi-Fi\n"
 
 #. type: Plain text
@@ -1072,8 +1083,9 @@ msgid "<a id=\"wi-fi-workarounds\"></a>\n"
 msgstr "<a id=\"wi-fi-workarounds\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Knowing the model of your Wi-Fi interface\n"
+#, fuzzy, no-wrap
+#| msgid "Knowing the model of your Wi-Fi interface\n"
+msgid "Knowing the model of your Wi-Fi interface"
 msgstr "Connaître le modèle de votre interface Wi-Fi\n"
 
 #. type: Bullet: '1. '
@@ -1090,8 +1102,9 @@ msgid "       lspci -v | grep \"Network controller\"\n"
 msgstr "       lspci -v | grep \"Network controller\"\n"
 
 #. type: Title -
-#, no-wrap
-msgid "88W8897 [AVASTAR] 802.11ac Wireless\n"
+#, fuzzy, no-wrap
+#| msgid "88W8897 [AVASTAR] 802.11ac Wireless\n"
+msgid "88W8897 [AVASTAR] 802.11ac Wireless"
 msgstr "88W8897 [AVASTAR] 802.11ac Wireless\n"
 
 #. type: Plain text
@@ -1114,8 +1127,9 @@ msgstr ""
 "cela résout parfois ce problème."
 
 #. type: Title -
-#, no-wrap
-msgid "RTL8723BE PCIe Wireless Network Adapter\n"
+#, fuzzy, no-wrap
+#| msgid "RTL8723BE PCIe Wireless Network Adapter\n"
+msgid "RTL8723BE PCIe Wireless Network Adapter"
 msgstr "Adaptateur réseau sans fil RTL8723BE PCIe\n"
 
 #. type: Plain text
@@ -1180,8 +1194,9 @@ msgid "<a id=\"broadcom-sta-dkms\"></a>\n"
 msgstr "<a id=\"broadcom-sta-dkms\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Broadcom Wi-Fi network interface needing `broadcom-sta-dkms`\n"
+#, fuzzy, no-wrap
+#| msgid "Broadcom Wi-Fi network interface needing `broadcom-sta-dkms`\n"
+msgid "Broadcom Wi-Fi network interface needing `broadcom-sta-dkms`"
 msgstr "L'interface réseau Wi-Fi Broadcom a besoin de `broadcom-sta-dkms`\n"
 
 #. type: Plain text
@@ -1213,8 +1228,9 @@ msgstr ""
 "d'utiliser votre carte Wi-Fi avec Tails."
 
 #. type: Title =
-#, no-wrap
-msgid "Security issues\n"
+#, fuzzy, no-wrap
+#| msgid "Security issues\n"
+msgid "Security issues"
 msgstr "Problèmes de sécurité\n"
 
 #. type: Plain text
@@ -1223,8 +1239,9 @@ msgid "<a id=\"video-memory\"></a>\n"
 msgstr "<a id=\"video-memory\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Tails does not erase video memory\n"
+#, fuzzy, no-wrap
+#| msgid "Tails does not erase video memory\n"
+msgid "Tails does not erase video memory"
 msgstr "Tails n'efface pas la mémoire vidéo\n"
 
 #. type: Plain text
@@ -1257,8 +1274,9 @@ msgid "<a id=\"fails-to-shutdown\"></a>\n"
 msgstr "<a id=\"fails-to-shutdown\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Tails fails to completely shutdown or restart\n"
+#, fuzzy, no-wrap
+#| msgid "Tails fails to completely shutdown or restart\n"
+msgid "Tails fails to completely shutdown or restart"
 msgstr "Tails échoue à s'éteindre complètement ou à redémarrer\n"
 
 #. type: Plain text
@@ -1366,8 +1384,9 @@ msgid "<a id=\"fingerprint\"></a>\n"
 msgstr "<a id=\"fingerprint\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Browser fingerprint\n"
+#, fuzzy, no-wrap
+#| msgid "Browser fingerprint\n"
+msgid "Browser fingerprint"
 msgstr "Empreinte du navigateur\n"
 
 #. type: Plain text
@@ -1393,8 +1412,9 @@ msgid "-->\n"
 msgstr "-->\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Other issues\n"
+#, fuzzy, no-wrap
+#| msgid "Other issues\n"
+msgid "Other issues"
 msgstr "Autres problèmes\n"
 
 #. type: Plain text
@@ -1403,8 +1423,9 @@ msgid "<a id=\"chainloading\"></a>\n"
 msgstr "<a id=\"chainloading\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Chainloading Tails from GRUB\n"
+#, fuzzy, no-wrap
+#| msgid "Chainloading Tails from GRUB\n"
+msgid "Chainloading Tails from GRUB"
 msgstr "Chargement chaîné (chainloading) de Tails depuis GRUB\n"
 
 #. type: Plain text
@@ -1436,8 +1457,9 @@ msgstr ""
 "    boot\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Boot Loader Menu has display issues\n"
+#, fuzzy, no-wrap
+#| msgid "Boot Loader Menu has display issues\n"
+msgid "Boot Loader Menu has display issues"
 msgstr "Le menu du chargeur d’amorçage a des problèmes d'affichage\n"
 
 #. type: Plain text
@@ -1450,8 +1472,9 @@ msgstr ""
 "Tails démarre correctement."
 
 #. type: Title -
-#, no-wrap
-msgid "Connecting to FTP servers is not possible\n"
+#, fuzzy, no-wrap
+#| msgid "Connecting to FTP servers is not possible\n"
+msgid "Connecting to FTP servers is not possible"
 msgstr "Se connecter à des serveurs FTP n'est pas possible\n"
 
 #. type: Plain text
@@ -1463,8 +1486,9 @@ msgstr ""
 "Voir [[!tails_ticket 6096 desc=\"Fix FTP support\"]] pour plus de détails."
 
 #. type: Title -
-#, no-wrap
-msgid "Tails fails to connect to certain Wi-Fi networks\n"
+#, fuzzy, no-wrap
+#| msgid "Tails fails to connect to certain Wi-Fi networks\n"
+msgid "Tails fails to connect to certain Wi-Fi networks"
 msgstr "Tails échoue à se connecter à certains réseaux Wi-Fi\n"
 
 #. type: Plain text
@@ -1476,8 +1500,9 @@ msgstr ""
 "sans-fil depuis Tails 0.13."
 
 #. type: Title -
-#, no-wrap
-msgid "The desktop crashes when run with the default QEMU emulated processor\n"
+#, fuzzy, no-wrap
+#| msgid "The desktop crashes when run with the default QEMU emulated processor\n"
+msgid "The desktop crashes when run with the default QEMU emulated processor"
 msgstr "Le bureau plante lorsque l'on exécute l'émulateur de processeur QEMU par défaut\n"
 
 #. type: Plain text
@@ -1504,8 +1529,9 @@ msgstr ""
 "de configuration du processeur <span class=\"application\">virt-manager</span>.\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Touchpad configurations\n"
+#, fuzzy, no-wrap
+#| msgid "Touchpad configurations\n"
+msgid "Touchpad configurations"
 msgstr "Configuration du pavé tactile\n"
 
 #. type: Title ###
@@ -1545,8 +1571,9 @@ msgstr ""
 "    synclient FingerHigh=5;\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Bluetooth devices don't work\n"
+#, fuzzy, no-wrap
+#| msgid "Bluetooth devices don't work\n"
+msgid "Bluetooth devices don't work"
 msgstr "Les périphériques Bluetooth ne fonctionnent pas\n"
 
 #. type: Plain text
@@ -1559,8 +1586,9 @@ msgid "<a id=\"browser_languages\"></a>\n"
 msgstr "<a id=\"browser_languages\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Tor Browser is translated in a limited number of languages\n"
+#, fuzzy, no-wrap
+#| msgid "Tor Browser is translated in a limited number of languages\n"
+msgid "Tor Browser is translated in a limited number of languages"
 msgstr "Le navigateur Tor est traduit dans un nombre limité de langues\n"
 
 #. type: Plain text
@@ -1576,8 +1604,9 @@ msgstr ""
 "navigateur Tor](https://www.torproject.org/projects/torbrowser.html)."
 
 #. type: Title -
-#, no-wrap
-msgid "Playing WebM videos in the Tor Browser fails on old hardware\n"
+#, fuzzy, no-wrap
+#| msgid "Playing WebM videos in the Tor Browser fails on old hardware\n"
+msgid "Playing WebM videos in the Tor Browser fails on old hardware"
 msgstr "Échec de la lecture des vidéos WebM dans le Navigateur Tor sur du vieux matériel\n"
 
 #. type: Plain text
@@ -1599,8 +1628,9 @@ msgid "<a id=\"automatic_upgrade_fails\"></a>\n"
 msgstr "<a id=\"automatic_upgrade_fails\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Tails does not boot after automatic upgrade\n"
+#, fuzzy, no-wrap
+#| msgid "Tails does not boot after automatic upgrade\n"
+msgid "Tails does not boot after automatic upgrade"
 msgstr "Tails ne démarre pas après une mise à jour automatique\n"
 
 #. type: Plain text
@@ -1629,8 +1659,9 @@ msgid "<a id=\"persistence-disappears\"></a>\n"
 msgstr "<a id=\"persistence-disappears\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Persistent folder disappears and persistent feature configurations do not load\n"
+#, fuzzy, no-wrap
+#| msgid "Persistent folder disappears and persistent feature configurations do not load\n"
+msgid "Persistent folder disappears and persistent feature configurations do not load"
 msgstr "Le dossier Persistent disparaît et la configuration des options de persistance ne se charge pas\n"
 
 #. type: Plain text
@@ -1926,8 +1957,9 @@ msgid "See [[!tails_ticket 10576]] for more details."
 msgstr "Voir [[!tails_ticket 10576]] pour plus de détails."
 
 #. type: Title -
-#, no-wrap
-msgid "Some languages do not have the correct keyboard layout set by default\n"
+#, fuzzy, no-wrap
+#| msgid "Some languages do not have the correct keyboard layout set by default\n"
+msgid "Some languages do not have the correct keyboard layout set by default"
 msgstr "Certaines langues n'ont pas la bonne disposition du clavier configurée par défaut\n"
 
 #. type: Plain text
@@ -2094,6 +2126,20 @@ msgstr "Electrum est obsolète et ne peut pas se connecter aux serveurs"
 msgid "[[!inline pages=\"doc/anonymous_internet/electrum/phishing.inline\" raw=\"yes\" sort=\"age\"]]\n"
 msgstr "[[!inline pages=\"doc/anonymous_internet/electrum/phishing.inline.fr\" raw=\"yes\" sort=\"age\"]]\n"
 
+#~ msgid ""
+#~ "Mac\n"
+#~ "---\n"
+#~ msgstr ""
+#~ "Mac\n"
+#~ "---\n"
+
+#~ msgid ""
+#~ "Tails Greeter fails to start on computers with Nvidia Pascal graphic cards\n"
+#~ "---------------------------------------------------------------------------\n"
+#~ msgstr ""
+#~ "Tails Greeter n'arrive pas à démarrer avec certaines cartes graphiques Nvidia Pascal\n"
+#~ "---------------------------------------------------------------------------\n"
+
 #~ msgid ""
 #~ "For example, when this happened in Tails 3.4 the <span\n"
 #~ "class=\"guimenu\">Applications</span> menu sometimes stops working.\n"
diff --git a/wiki/src/support/known_issues.it.po b/wiki/src/support/known_issues.it.po
index 9ce15e97a77351d4af6493710df00b057bfed81b..ab2a19efdd1465bd68e7df2ff458026cadd15bad 100644
--- a/wiki/src/support/known_issues.it.po
+++ b/wiki/src/support/known_issues.it.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2019-05-02 15:30+0000\n"
+"POT-Creation-Date: 2019-05-06 14:52+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: ita <transitails@inventati.org>\n"
@@ -35,7 +35,7 @@ msgstr "[[!toc levels=3]]\n"
 
 #. type: Title =
 #, no-wrap
-msgid "Problems starting Tails\n"
+msgid "Problems starting Tails"
 msgstr ""
 
 #. type: Plain text
@@ -52,7 +52,7 @@ msgstr "<a id=\"problematic-usb-sticks\"></a>\n"
 
 #. type: Title -
 #, no-wrap
-msgid "Problematic USB sticks\n"
+msgid "Problematic USB sticks"
 msgstr ""
 
 #. type: Plain text
@@ -216,10 +216,7 @@ msgid "<a id=\"mac\"></a>\n"
 msgstr ""
 
 #. type: Plain text
-#, no-wrap
-msgid ""
-"Mac\n"
-"---\n"
+msgid "Mac"
 msgstr ""
 
 #. type: Bullet: '* '
@@ -525,12 +522,12 @@ msgstr ""
 
 #. type: Title =
 #, no-wrap
-msgid "Graphics issues\n"
+msgid "Graphics issues"
 msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "GNOME desktop fails to start with some AMD/ATI Radeon graphic adapters\n"
+msgid "GNOME desktop fails to start with some AMD/ATI Radeon graphic adapters"
 msgstr ""
 
 #. type: Plain text
@@ -565,7 +562,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Tails Greeter fails to start with some AMD/ATI Radeon graphic adapters\n"
+msgid "Tails Greeter fails to start with some AMD/ATI Radeon graphic adapters"
 msgstr ""
 
 #. type: Plain text
@@ -591,7 +588,7 @@ msgstr "<a id=\"nvidia-maxwell\"></a>\n"
 
 #. type: Title -
 #, no-wrap
-msgid "Tails Greeter fails to start on computers with Nvidia Maxwell graphic cards\n"
+msgid "Tails Greeter fails to start on computers with Nvidia Maxwell graphic cards"
 msgstr ""
 
 #. type: Plain text
@@ -622,10 +619,8 @@ msgid "<a id=\"nvidia-pascal\"></a>\n"
 msgstr ""
 
 #. type: Plain text
-#, no-wrap
 msgid ""
-"Tails Greeter fails to start on computers with Nvidia Pascal graphic cards\n"
-"---------------------------------------------------------------------------\n"
+"Tails Greeter fails to start on computers with Nvidia Pascal graphic cards"
 msgstr ""
 
 #. type: Plain text
@@ -646,7 +641,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Black screen with switchable graphics computers\n"
+msgid "Black screen with switchable graphics computers"
 msgstr ""
 
 #. type: Plain text
@@ -734,7 +729,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Cannot start GNOME session with switchable graphics computers\n"
+msgid "Cannot start GNOME session with switchable graphics computers"
 msgstr ""
 
 #. type: Plain text
@@ -753,7 +748,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Laptops with Intel 855GM graphic card\n"
+msgid "Laptops with Intel 855GM graphic card"
 msgstr ""
 
 #. type: Plain text
@@ -769,7 +764,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Laptops with Intel GM965/GL960 graphic card\n"
+msgid "Laptops with Intel GM965/GL960 graphic card"
 msgstr ""
 
 #. type: Plain text
@@ -789,7 +784,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Systems with Intel graphic cards\n"
+msgid "Systems with Intel graphic cards"
 msgstr ""
 
 #. type: Plain text
@@ -829,7 +824,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Virtual machines with *virt-manager*, *libvirt* and *QEMU*\n"
+msgid "Virtual machines with *virt-manager*, *libvirt* and *QEMU*"
 msgstr ""
 
 #. type: Plain text
@@ -841,7 +836,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Virtual machines with *VMware*\n"
+msgid "Virtual machines with *VMware*"
 msgstr ""
 
 #. type: Plain text
@@ -858,7 +853,7 @@ msgstr ""
 
 #. type: Title =
 #, no-wrap
-msgid "Wi-Fi issues\n"
+msgid "Wi-Fi issues"
 msgstr ""
 
 #. type: Plain text
@@ -880,7 +875,7 @@ msgstr "<a id=\"sandisk\"></a>\n"
 
 #. type: Title -
 #, no-wrap
-msgid "Knowing the model of your Wi-Fi interface\n"
+msgid "Knowing the model of your Wi-Fi interface"
 msgstr ""
 
 #. type: Bullet: '1. '
@@ -896,7 +891,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "88W8897 [AVASTAR] 802.11ac Wireless\n"
+msgid "88W8897 [AVASTAR] 802.11ac Wireless"
 msgstr ""
 
 #. type: Plain text
@@ -914,7 +909,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "RTL8723BE PCIe Wireless Network Adapter\n"
+msgid "RTL8723BE PCIe Wireless Network Adapter"
 msgstr ""
 
 #. type: Plain text
@@ -969,7 +964,7 @@ msgstr "<a id=\"sandisk\"></a>\n"
 
 #. type: Title -
 #, no-wrap
-msgid "Broadcom Wi-Fi network interface needing `broadcom-sta-dkms`\n"
+msgid "Broadcom Wi-Fi network interface needing `broadcom-sta-dkms`"
 msgstr ""
 
 #. type: Plain text
@@ -993,7 +988,7 @@ msgstr ""
 
 #. type: Title =
 #, no-wrap
-msgid "Security issues\n"
+msgid "Security issues"
 msgstr ""
 
 #. type: Plain text
@@ -1003,7 +998,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Tails does not erase video memory\n"
+msgid "Tails does not erase video memory"
 msgstr ""
 
 #. type: Plain text
@@ -1031,7 +1026,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Tails fails to completely shutdown or restart\n"
+msgid "Tails fails to completely shutdown or restart"
 msgstr ""
 
 #. type: Plain text
@@ -1108,7 +1103,7 @@ msgstr "<a id=\"fingerprint\"></a>\n"
 
 #. type: Title =
 #, no-wrap
-msgid "Browser fingerprint\n"
+msgid "Browser fingerprint"
 msgstr ""
 
 #. type: Plain text
@@ -1131,7 +1126,7 @@ msgstr ""
 
 #. type: Title =
 #, no-wrap
-msgid "Other issues\n"
+msgid "Other issues"
 msgstr ""
 
 #. type: Plain text
@@ -1141,7 +1136,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Chainloading Tails from GRUB\n"
+msgid "Chainloading Tails from GRUB"
 msgstr ""
 
 #. type: Plain text
@@ -1166,7 +1161,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Boot Loader Menu has display issues\n"
+msgid "Boot Loader Menu has display issues"
 msgstr ""
 
 #. type: Plain text
@@ -1177,7 +1172,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Connecting to FTP servers is not possible\n"
+msgid "Connecting to FTP servers is not possible"
 msgstr ""
 
 #. type: Plain text
@@ -1188,7 +1183,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Tails fails to connect to certain Wi-Fi networks\n"
+msgid "Tails fails to connect to certain Wi-Fi networks"
 msgstr ""
 
 #. type: Plain text
@@ -1199,7 +1194,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "The desktop crashes when run with the default QEMU emulated processor\n"
+msgid "The desktop crashes when run with the default QEMU emulated processor"
 msgstr ""
 
 #. type: Plain text
@@ -1220,7 +1215,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Touchpad configurations\n"
+msgid "Touchpad configurations"
 msgstr ""
 
 #. type: Title ###
@@ -1253,7 +1248,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Bluetooth devices don't work\n"
+msgid "Bluetooth devices don't work"
 msgstr ""
 
 #. type: Plain text
@@ -1267,7 +1262,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Tor Browser is translated in a limited number of languages\n"
+msgid "Tor Browser is translated in a limited number of languages"
 msgstr ""
 
 #. type: Plain text
@@ -1280,7 +1275,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Playing WebM videos in the Tor Browser fails on old hardware\n"
+msgid "Playing WebM videos in the Tor Browser fails on old hardware"
 msgstr ""
 
 #. type: Plain text
@@ -1298,7 +1293,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Tails does not boot after automatic upgrade\n"
+msgid "Tails does not boot after automatic upgrade"
 msgstr ""
 
 #. type: Plain text
@@ -1324,7 +1319,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Persistent folder disappears and persistent feature configurations do not load\n"
+msgid "Persistent folder disappears and persistent feature configurations do not load"
 msgstr ""
 
 #. type: Plain text
@@ -1557,7 +1552,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Some languages do not have the correct keyboard layout set by default\n"
+msgid "Some languages do not have the correct keyboard layout set by default"
 msgstr ""
 
 #. type: Plain text
diff --git a/wiki/src/support/known_issues.pt.po b/wiki/src/support/known_issues.pt.po
index b793231bb69b2d0fdb86f4af5a2e7d71a946e650..fe026b2652468577931afe9f83b24e9645a00638 100644
--- a/wiki/src/support/known_issues.pt.po
+++ b/wiki/src/support/known_issues.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: 2019-05-02 15:30+0000\n"
+"POT-Creation-Date: 2019-05-06 14:52+0200\n"
 "PO-Revision-Date: 2019-01-03 10:28+0100\n"
 "Last-Translator: Tails Developers <amnesia@boum.org>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -40,8 +40,9 @@ msgid "[[!toc levels=3]]\n"
 msgstr "[[!toc levels=3]]\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Problems starting Tails\n"
+#, fuzzy, no-wrap
+#| msgid "Problems starting Tails\n"
+msgid "Problems starting Tails"
 msgstr "Problemas ao iniciar Tails\n"
 
 #. type: Plain text
@@ -61,8 +62,9 @@ msgid "<a id=\"problematic-usb-sticks\"></a>\n"
 msgstr "<a id=\"problematic-usb-sticks\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Problematic USB sticks\n"
+#, fuzzy, no-wrap
+#| msgid "Problematic USB sticks\n"
+msgid "Problematic USB sticks"
 msgstr "Memórias USB que apresentam problemas\n"
 
 #. type: Plain text
@@ -267,13 +269,8 @@ msgid "<a id=\"mac\"></a>\n"
 msgstr "<a id=\"mac\"></a>\n"
 
 #. type: Plain text
-#, no-wrap
-msgid ""
-"Mac\n"
-"---\n"
+msgid "Mac"
 msgstr ""
-"Mac\n"
-"---\n"
 
 #. type: Bullet: '* '
 msgid ""
@@ -641,12 +638,12 @@ msgstr ""
 #. type: Title =
 #, fuzzy, no-wrap
 #| msgid "Security issues\n"
-msgid "Graphics issues\n"
+msgid "Graphics issues"
 msgstr "Problemas de segurança\n"
 
 #. type: Title -
 #, no-wrap
-msgid "GNOME desktop fails to start with some AMD/ATI Radeon graphic adapters\n"
+msgid "GNOME desktop fails to start with some AMD/ATI Radeon graphic adapters"
 msgstr ""
 
 #. type: Plain text
@@ -692,7 +689,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Tails Greeter fails to start with some AMD/ATI Radeon graphic adapters\n"
+msgid "Tails Greeter fails to start with some AMD/ATI Radeon graphic adapters"
 msgstr ""
 
 #. type: Plain text
@@ -729,7 +726,7 @@ msgstr "<a id=\"nvidia-maxwell\"></a>\n"
 
 #. type: Title -
 #, no-wrap
-msgid "Tails Greeter fails to start on computers with Nvidia Maxwell graphic cards\n"
+msgid "Tails Greeter fails to start on computers with Nvidia Maxwell graphic cards"
 msgstr ""
 
 #. type: Plain text
@@ -771,10 +768,8 @@ msgid "<a id=\"nvidia-pascal\"></a>\n"
 msgstr "<a id=\"nvidia-pascal\"></a>\n"
 
 #. type: Plain text
-#, no-wrap
 msgid ""
-"Tails Greeter fails to start on computers with Nvidia Pascal graphic cards\n"
-"---------------------------------------------------------------------------\n"
+"Tails Greeter fails to start on computers with Nvidia Pascal graphic cards"
 msgstr ""
 
 #. type: Plain text
@@ -797,7 +792,7 @@ msgstr "<a id=\"switchable_graphics_black_screen\"></a>\n"
 
 #. type: Title -
 #, no-wrap
-msgid "Black screen with switchable graphics computers\n"
+msgid "Black screen with switchable graphics computers"
 msgstr ""
 
 #. type: Plain text
@@ -890,7 +885,7 @@ msgstr "<a id=switchable_graphics_segfault></a>\n"
 
 #. type: Title -
 #, no-wrap
-msgid "Cannot start GNOME session with switchable graphics computers\n"
+msgid "Cannot start GNOME session with switchable graphics computers"
 msgstr ""
 
 #. type: Plain text
@@ -918,7 +913,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Laptops with Intel 855GM graphic card\n"
+msgid "Laptops with Intel 855GM graphic card"
 msgstr ""
 
 #. type: Plain text
@@ -936,7 +931,7 @@ msgstr "Veja também [[!tails_ticket 6397]]."
 
 #. type: Title -
 #, no-wrap
-msgid "Laptops with Intel GM965/GL960 graphic card\n"
+msgid "Laptops with Intel GM965/GL960 graphic card"
 msgstr ""
 
 #. type: Plain text
@@ -958,7 +953,7 @@ msgstr "<a id=\"xorg-driver\"></a>\n"
 
 #. type: Title -
 #, no-wrap
-msgid "Systems with Intel graphic cards\n"
+msgid "Systems with Intel graphic cards"
 msgstr ""
 
 #. type: Plain text
@@ -998,7 +993,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Virtual machines with *virt-manager*, *libvirt* and *QEMU*\n"
+msgid "Virtual machines with *virt-manager*, *libvirt* and *QEMU*"
 msgstr ""
 
 #. type: Plain text
@@ -1010,7 +1005,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Virtual machines with *VMware*\n"
+msgid "Virtual machines with *VMware*"
 msgstr ""
 
 #. type: Plain text
@@ -1026,8 +1021,9 @@ msgid "<a id=\"wi-fi\"></a>\n"
 msgstr "<a id=\"wi-fi\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Wi-Fi issues\n"
+#, fuzzy, no-wrap
+#| msgid "Wi-Fi issues\n"
+msgid "Wi-Fi issues"
 msgstr "Problemas com Wi-Fi\n"
 
 #. type: Plain text
@@ -1049,7 +1045,7 @@ msgstr "<a id=\"wi-fi\"></a>\n"
 
 #. type: Title -
 #, no-wrap
-msgid "Knowing the model of your Wi-Fi interface\n"
+msgid "Knowing the model of your Wi-Fi interface"
 msgstr ""
 
 #. type: Bullet: '1. '
@@ -1066,7 +1062,7 @@ msgstr "       lspci -nn | grep Network\n"
 
 #. type: Title -
 #, no-wrap
-msgid "88W8897 [AVASTAR] 802.11ac Wireless\n"
+msgid "88W8897 [AVASTAR] 802.11ac Wireless"
 msgstr ""
 
 #. type: Plain text
@@ -1084,7 +1080,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "RTL8723BE PCIe Wireless Network Adapter\n"
+msgid "RTL8723BE PCIe Wireless Network Adapter"
 msgstr ""
 
 #. type: Plain text
@@ -1145,8 +1141,9 @@ msgid "<a id=\"broadcom-sta-dkms\"></a>\n"
 msgstr "<a id=\"broadcom-sta-dkms\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Broadcom Wi-Fi network interface needing `broadcom-sta-dkms`\n"
+#, fuzzy, no-wrap
+#| msgid "Broadcom Wi-Fi network interface needing `broadcom-sta-dkms`\n"
+msgid "Broadcom Wi-Fi network interface needing `broadcom-sta-dkms`"
 msgstr "A interface de rede da Broadcom Wi-Fi precisa de `broadcom-sta-dkms`\n"
 
 #. type: Plain text
@@ -1188,8 +1185,9 @@ msgstr ""
 "é sinal de que é impossível usar o sua placa Wi-Fi no Tails.\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Security issues\n"
+#, fuzzy, no-wrap
+#| msgid "Security issues\n"
+msgid "Security issues"
 msgstr "Problemas de segurança\n"
 
 #. type: Plain text
@@ -1198,8 +1196,9 @@ msgid "<a id=\"video-memory\"></a>\n"
 msgstr "<a id=\"video-memory\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Tails does not erase video memory\n"
+#, fuzzy, no-wrap
+#| msgid "Tails does not erase video memory\n"
+msgid "Tails does not erase video memory"
 msgstr "Tails não apaga memória de vídeo\n"
 
 #. type: Plain text
@@ -1230,8 +1229,9 @@ msgid "<a id=\"fails-to-shutdown\"></a>\n"
 msgstr "<a id=\"fails-to-shutdown\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Tails fails to completely shutdown or restart\n"
+#, fuzzy, no-wrap
+#| msgid "Tails fails to completely shutdown or restart\n"
+msgid "Tails fails to completely shutdown or restart"
 msgstr "Tails não consegue desligar completamente ou reiniciar\n"
 
 #. type: Plain text
@@ -1331,8 +1331,9 @@ msgid "<a id=\"fingerprint\"></a>\n"
 msgstr "<a id=\"fingerprint\"></a>\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Browser fingerprint\n"
+#, fuzzy, no-wrap
+#| msgid "Browser fingerprint\n"
+msgid "Browser fingerprint"
 msgstr "Fingerprint do navegador\n"
 
 #. type: Plain text
@@ -1356,8 +1357,9 @@ msgid "-->\n"
 msgstr "-->\n"
 
 #. type: Title =
-#, no-wrap
-msgid "Other issues\n"
+#, fuzzy, no-wrap
+#| msgid "Other issues\n"
+msgid "Other issues"
 msgstr "Outros problemas\n"
 
 #. type: Plain text
@@ -1366,8 +1368,9 @@ msgid "<a id=\"chainloading\"></a>\n"
 msgstr "<a id=\"chainloading\"></a>\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Chainloading Tails from GRUB\n"
+#, fuzzy, no-wrap
+#| msgid "Chainloading Tails from GRUB\n"
+msgid "Chainloading Tails from GRUB"
 msgstr "Inicializando Tails \"em cadeia\" a partir do GRUB\n"
 
 #. type: Plain text
@@ -1400,8 +1403,9 @@ msgstr ""
 "    boot\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Boot Loader Menu has display issues\n"
+#, fuzzy, no-wrap
+#| msgid "Boot Loader Menu has display issues\n"
+msgid "Boot Loader Menu has display issues"
 msgstr "O menu de inicialização tem problemas de visualização\n"
 
 #. type: Plain text
@@ -1411,8 +1415,9 @@ msgid ""
 msgstr ""
 
 #. type: Title -
-#, no-wrap
-msgid "Connecting to FTP servers is not possible\n"
+#, fuzzy, no-wrap
+#| msgid "Connecting to FTP servers is not possible\n"
+msgid "Connecting to FTP servers is not possible"
 msgstr "Não é possível conectar a servidores FTP\n"
 
 #. type: Plain text
@@ -1424,8 +1429,9 @@ msgstr ""
 "tails_ticket 6096 desc=\"Fix FTP support\"]]  para mais detalhes."
 
 #. type: Title -
-#, no-wrap
-msgid "Tails fails to connect to certain Wi-Fi networks\n"
+#, fuzzy, no-wrap
+#| msgid "Tails fails to connect to certain Wi-Fi networks\n"
+msgid "Tails fails to connect to certain Wi-Fi networks"
 msgstr "Tails não consegue conectar a certas redes Wi-Fi\n"
 
 #. type: Plain text
@@ -1438,7 +1444,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "The desktop crashes when run with the default QEMU emulated processor\n"
+msgid "The desktop crashes when run with the default QEMU emulated processor"
 msgstr ""
 
 #. type: Plain text
@@ -1461,8 +1467,9 @@ msgstr ""
 "class=\"guilabel\">Copie a configuração da CPU hospedeira</span>na tela de configuração do processador da <span class=\"application\">admnistradora-virtual</span>.\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Touchpad configurations\n"
+#, fuzzy, no-wrap
+#| msgid "Touchpad configurations\n"
+msgid "Touchpad configurations"
 msgstr "Configurações do Touchpad\n"
 
 #. type: Title ###
@@ -1502,8 +1509,9 @@ msgstr ""
 "    synclient FingerHigh=5;\n"
 
 #. type: Title -
-#, no-wrap
-msgid "Bluetooth devices don't work\n"
+#, fuzzy, no-wrap
+#| msgid "Bluetooth devices don't work\n"
+msgid "Bluetooth devices don't work"
 msgstr "Dispositivos de Bluetooth não funcionam\n"
 
 #. type: Plain text
@@ -1517,7 +1525,7 @@ msgstr "<a id=\"browser_languages\"></a>\n"
 
 #. type: Title -
 #, no-wrap
-msgid "Tor Browser is translated in a limited number of languages\n"
+msgid "Tor Browser is translated in a limited number of languages"
 msgstr ""
 
 #. type: Plain text
@@ -1530,7 +1538,7 @@ msgstr ""
 
 #. type: Title -
 #, no-wrap
-msgid "Playing WebM videos in the Tor Browser fails on old hardware\n"
+msgid "Playing WebM videos in the Tor Browser fails on old hardware"
 msgstr ""
 
 #. type: Plain text
@@ -1558,7 +1566,7 @@ msgstr "<a id=\"automatic_upgrade_fails\"></a>\n"
 
 #. type: Title -
 #, no-wrap
-msgid "Tails does not boot after automatic upgrade\n"
+msgid "Tails does not boot after automatic upgrade"
 msgstr ""
 
 #. type: Plain text
@@ -1589,7 +1597,7 @@ msgstr "<a id=\"sandisk\"></a>\n"
 
 #. type: Title -
 #, no-wrap
-msgid "Persistent folder disappears and persistent feature configurations do not load\n"
+msgid "Persistent folder disappears and persistent feature configurations do not load"
 msgstr ""
 
 #. type: Plain text
@@ -1823,7 +1831,7 @@ msgstr "Consulte [[!tails_ticket 10576]] para maiores detalhes."
 
 #. type: Title -
 #, no-wrap
-msgid "Some languages do not have the correct keyboard layout set by default\n"
+msgid "Some languages do not have the correct keyboard layout set by default"
 msgstr ""
 
 #. type: Plain text
@@ -1997,6 +2005,13 @@ msgstr ""
 msgid "[[!inline pages=\"doc/anonymous_internet/electrum/phishing.inline\" raw=\"yes\" sort=\"age\"]]\n"
 msgstr ""
 
+#~ msgid ""
+#~ "Mac\n"
+#~ "---\n"
+#~ msgstr ""
+#~ "Mac\n"
+#~ "---\n"
+
 #~ msgid ""
 #~ "For example, when this happened in Tails 3.4 the <span\n"
 #~ "class=\"guimenu\">Applications</span> menu sometimes stops working.\n"
diff --git a/wiki/src/torrents/files/tails-amd64-3.13.1.img.sig b/wiki/src/torrents/files/tails-amd64-3.13.1.img.sig
deleted file mode 100644
index 0900140f333dad9f6cc4c82f703cdcb14306054e..0000000000000000000000000000000000000000
--- a/wiki/src/torrents/files/tails-amd64-3.13.1.img.sig
+++ /dev/null
@@ -1,7 +0,0 @@
------BEGIN PGP SIGNATURE-----
-
-iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCXJVTjwAKCRCQsrS9eu0j
-XyB9AP93icw/i8OljoBxbCcELzFfrMk3/RV2XG+ZqWv8wAXO4AEAtaJI7xhmW/Gn
-H9Cex9+/U1CWIuDngkzNWSFmqiBWbQ0=
-=l4LN
------END PGP SIGNATURE-----
diff --git a/wiki/src/torrents/files/tails-amd64-3.13.1.img.torrent b/wiki/src/torrents/files/tails-amd64-3.13.1.img.torrent
deleted file mode 100644
index 9415ba8237353f83f694a899950937dc4acb1c1b..0000000000000000000000000000000000000000
Binary files a/wiki/src/torrents/files/tails-amd64-3.13.1.img.torrent and /dev/null differ
diff --git a/wiki/src/torrents/files/tails-amd64-3.13.1.iso.sig b/wiki/src/torrents/files/tails-amd64-3.13.1.iso.sig
deleted file mode 100644
index 66598c7e3ab03d5afdf8aeeab363dbf93682f83c..0000000000000000000000000000000000000000
--- a/wiki/src/torrents/files/tails-amd64-3.13.1.iso.sig
+++ /dev/null
@@ -1,7 +0,0 @@
------BEGIN PGP SIGNATURE-----
-
-iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCXJVThgAKCRCQsrS9eu0j
-X1WNAP40vJuEhga2POPiHuBfZ+ooQXS19XQ9vCnNmFSNqyPZtQD8DrsvBvl0uwEy
-r8c32sXeVUFCIdkcPV6WpveZKFT44gw=
-=L/z5
------END PGP SIGNATURE-----
diff --git a/wiki/src/torrents/files/tails-amd64-3.13.1.iso.torrent b/wiki/src/torrents/files/tails-amd64-3.13.1.iso.torrent
deleted file mode 100644
index 1fae33fa4d832026cd248de128204f9df4a1259f..0000000000000000000000000000000000000000
Binary files a/wiki/src/torrents/files/tails-amd64-3.13.1.iso.torrent and /dev/null differ
diff --git a/wiki/src/torrents/files/tails-amd64-3.13.1.build-manifest b/wiki/src/torrents/files/tails-amd64-3.13.2.build-manifest
similarity index 90%
rename from wiki/src/torrents/files/tails-amd64-3.13.1.build-manifest
rename to wiki/src/torrents/files/tails-amd64-3.13.2.build-manifest
index 337c65685d878ca718c7aae5b0deb7e9a8cd36da..48eb71fc585978cf63095f3bdb72e6e210917945 100644
--- a/wiki/src/torrents/files/tails-amd64-3.13.1.build-manifest
+++ b/wiki/src/torrents/files/tails-amd64-3.13.2.build-manifest
@@ -1,9 +1,9 @@
 ---
 origin_references:
   debian:
-    reference: '2019031601'
+    reference: '2019042801'
   debian-security:
-    reference: '2019032203'
+    reference: '2019050503'
   torproject:
     reference: '2019031301'
 packages:
@@ -94,7 +94,7 @@ packages:
     version: 1:019-4
   - arch: amd64
     package: base-files
-    version: 9.9+deb9u8
+    version: 9.9+deb9u9
   - arch: amd64
     package: base-passwd
     version: 3.5.43
@@ -382,7 +382,7 @@ packages:
     version: 2.1.5+deb1+cvs20081104-13.2
   - arch: all
     package: electrum
-    version: 3.1.3-1~bpo9+1
+    version: 3.2.3-1
   - arch: all
     package: emacsen-common
     version: 2.0.8
@@ -494,18 +494,6 @@ packages:
   - arch: amd64
     package: fontconfig
     version: 2.11.0-6.7.0tails4
-  - arch: all
-    package: fonts-arphic-ukai
-    version: 0.2.20080216.2-4
-  - arch: all
-    package: fonts-arphic-uming
-    version: 0.2.20080216.2-7
-  - arch: all
-    package: fonts-beng-extra
-    version: 1.0-5
-  - arch: all
-    package: fonts-beng
-    version: 2:1.2
   - arch: all
     package: fonts-cantarell
     version: 0.0.25-2
@@ -518,237 +506,33 @@ packages:
   - arch: all
     package: fonts-dejavu
     version: 2.37-1
-  - arch: all
-    package: fonts-deva-extra
-    version: 3.0-3
-  - arch: all
-    package: fonts-deva
-    version: 2:1.2
-  - arch: all
-    package: fonts-farsiweb
-    version: 0.4.dfsg-12
-  - arch: all
-    package: fonts-gargi
-    version: 2.0-4
-  - arch: all
-    package: fonts-gubbi
-    version: 1.3-3
-  - arch: all
-    package: fonts-gujr-extra
-    version: 1.0-5
-  - arch: all
-    package: fonts-gujr
-    version: 2:1.2
-  - arch: all
-    package: fonts-guru-extra
-    version: 2.0-3
-  - arch: all
-    package: fonts-guru
-    version: 2:1.2
-  - arch: all
-    package: fonts-indic
-    version: 2:1.2
-  - arch: all
-    package: fonts-kacst
-    version: 2.01+mry-12
-  - arch: all
-    package: fonts-kalapi
-    version: 1.0-2
-  - arch: all
-    package: fonts-khmeros
-    version: 5.0-7
-  - arch: all
-    package: fonts-knda
-    version: 2:1.2
-  - arch: all
-    package: fonts-lao
-    version: 0.0.20060226-9
   - arch: all
     package: fonts-liberation
     version: 1:1.07.4-2
   - arch: all
     package: fonts-linuxlibertine
     version: 5.3.0-2
-  - arch: all
-    package: fonts-lklug-sinhala
-    version: 0.6-3
-  - arch: all
-    package: fonts-lohit-beng-assamese
-    version: 2.5.3-1
-  - arch: all
-    package: fonts-lohit-beng-bengali
-    version: 2.5.3-1
-  - arch: all
-    package: fonts-lohit-deva
-    version: 2.5.3-1
-  - arch: all
-    package: fonts-lohit-gujr
-    version: 2.92.2-2
-  - arch: all
-    package: fonts-lohit-guru
-    version: 2.5.3-2
-  - arch: all
-    package: fonts-lohit-knda
-    version: 2.5.3-2
-  - arch: all
-    package: fonts-lohit-mlym
-    version: 2.5.4-1
-  - arch: all
-    package: fonts-lohit-orya
-    version: 2.5.4.1-1
-  - arch: all
-    package: fonts-lohit-taml-classical
-    version: 2.5.3-2
-  - arch: all
-    package: fonts-lohit-taml
-    version: 2.5.3-1
-  - arch: all
-    package: fonts-lohit-telu
-    version: 2.5.4-2
   - arch: all
     package: fonts-lyx
     version: 2.2.2-1
   - arch: all
-    package: fonts-mlym
-    version: 2:1.2
-  - arch: all
-    package: fonts-nakula
-    version: 1.0-3
-  - arch: all
-    package: fonts-navilu
-    version: 1.2-2
-  - arch: all
-    package: fonts-opensymbol
-    version: 2:102.7+LibO5.2.7-1+deb9u5
-  - arch: all
-    package: fonts-orya-extra
-    version: 2.0-4
-  - arch: all
-    package: fonts-orya
-    version: 2:1.2
-  - arch: all
-    package: fonts-pagul
-    version: 1.0-7
-  - arch: all
-    package: fonts-sahadeva
-    version: 1.0-4
-  - arch: all
-    package: fonts-samyak-deva
-    version: 1.2.2-4
-  - arch: all
-    package: fonts-samyak-gujr
-    version: 1.2.2-4
-  - arch: all
-    package: fonts-samyak-mlym
-    version: 1.2.2-4
-  - arch: all
-    package: fonts-samyak-taml
-    version: 1.2.2-4
-  - arch: all
-    package: fonts-sarai
-    version: 1.0-2
-  - arch: all
-    package: fonts-smc
-    version: 6.0-1
-  - arch: all
-    package: fonts-taml
-    version: 2:1.3
-  - arch: all
-    package: fonts-telu-extra
-    version: 2.0-3
-  - arch: all
-    package: fonts-telu
-    version: 2:1.2
-  - arch: all
-    package: fonts-thai-tlwg
-    version: 1:0.6.3-1
-  - arch: all
-    package: fonts-tlwg-garuda-ttf
-    version: 1:0.6.3-1
-  - arch: all
-    package: fonts-tlwg-garuda
-    version: 1:0.6.3-1
-  - arch: all
-    package: fonts-tlwg-kinnari-ttf
-    version: 1:0.6.3-1
-  - arch: all
-    package: fonts-tlwg-kinnari
-    version: 1:0.6.3-1
-  - arch: all
-    package: fonts-tlwg-laksaman-ttf
-    version: 1:0.6.3-1
-  - arch: all
-    package: fonts-tlwg-laksaman
-    version: 1:0.6.3-1
-  - arch: all
-    package: fonts-tlwg-loma-ttf
-    version: 1:0.6.3-1
-  - arch: all
-    package: fonts-tlwg-loma
-    version: 1:0.6.3-1
-  - arch: all
-    package: fonts-tlwg-mono-ttf
-    version: 1:0.6.3-1
-  - arch: all
-    package: fonts-tlwg-mono
-    version: 1:0.6.3-1
-  - arch: all
-    package: fonts-tlwg-norasi-ttf
-    version: 1:0.6.3-1
-  - arch: all
-    package: fonts-tlwg-norasi
-    version: 1:0.6.3-1
-  - arch: all
-    package: fonts-tlwg-purisa-ttf
-    version: 1:0.6.3-1
-  - arch: all
-    package: fonts-tlwg-purisa
-    version: 1:0.6.3-1
-  - arch: all
-    package: fonts-tlwg-sawasdee-ttf
-    version: 1:0.6.3-1
-  - arch: all
-    package: fonts-tlwg-sawasdee
-    version: 1:0.6.3-1
-  - arch: all
-    package: fonts-tlwg-typewriter-ttf
-    version: 1:0.6.3-1
-  - arch: all
-    package: fonts-tlwg-typewriter
-    version: 1:0.6.3-1
-  - arch: all
-    package: fonts-tlwg-typist-ttf
-    version: 1:0.6.3-1
-  - arch: all
-    package: fonts-tlwg-typist
-    version: 1:0.6.3-1
-  - arch: all
-    package: fonts-tlwg-typo-ttf
-    version: 1:0.6.3-1
-  - arch: all
-    package: fonts-tlwg-typo
-    version: 1:0.6.3-1
-  - arch: all
-    package: fonts-tlwg-umpush-ttf
-    version: 1:0.6.3-1
+    package: fonts-noto-cjk
+    version: 1:20170601+repack1-3
   - arch: all
-    package: fonts-tlwg-umpush
-    version: 1:0.6.3-1
+    package: fonts-noto-core
+    version: 20181227-1
   - arch: all
-    package: fonts-tlwg-waree-ttf
-    version: 1:0.6.3-1
+    package: fonts-noto-mono
+    version: 20181227-1
   - arch: all
-    package: fonts-tlwg-waree
-    version: 1:0.6.3-1
+    package: fonts-noto-ui-core
+    version: 20181227-1
   - arch: all
-    package: fonts-unfonts-core
-    version: 1.0.2-080608-13
+    package: fonts-noto-unhinted
+    version: 20181227-1
   - arch: all
-    package: fonts-wqy-microhei
-    version: 0.2.0-beta-2
-  - arch: all
-    package: fonts-wqy-zenhei
-    version: 0.9.45-6
+    package: fonts-opensymbol
+    version: 2:102.7+LibO5.2.7-1+deb9u7
   - arch: amd64
     package: foomatic-db-engine
     version: 4.0.12-2+b1
@@ -802,7 +586,7 @@ packages:
     version: 0.19.8.1-2
   - arch: amd64
     package: ghostscript
-    version: 9.26a~dfsg-0+deb9u1
+    version: 9.26a~dfsg-0+deb9u2
   - arch: all
     package: gimp-data
     version: 2.8.18-1+deb9u1
@@ -865,7 +649,7 @@ packages:
     version: 3.22.2-1
   - arch: amd64
     package: gir1.2-gst-plugins-base-1.0
-    version: 1.10.4-1
+    version: 1.10.4-1+deb9u1
   - arch: amd64
     package: gir1.2-gstreamer-1.0
     version: 1.10.4-1
@@ -1120,7 +904,7 @@ packages:
     version: 1.10.4-1
   - arch: amd64
     package: gstreamer1.0-plugins-base
-    version: 1.10.4-1
+    version: 1.10.4-1+deb9u1
   - arch: amd64
     package: gstreamer1.0-plugins-good
     version: 1.10.4-1
@@ -1132,7 +916,7 @@ packages:
     version: 1.10.4-1
   - arch: amd64
     package: gstreamer1.0-x
-    version: 1.10.4-1
+    version: 1.10.4-1+deb9u1
   - arch: amd64
     package: gtk-update-icon-cache
     version: 3.22.11-1.0tails5
@@ -1193,9 +977,6 @@ packages:
   - arch: all
     package: hunspell-ar
     version: 3.2-1
-  - arch: all
-    package: hunspell-da
-    version: 1:5.2.5-1
   - arch: all
     package: hunspell-de-de
     version: 20161207-1
@@ -1212,19 +993,13 @@ packages:
     package: hunspell-fr
     version: 1:5.7-1
   - arch: all
-    package: hunspell-he
-    version: 1:5.2.5-1
-  - arch: all
-    package: hunspell-it
+    package: hunspell-hi
     version: 1:5.2.5-1
   - arch: all
-    package: hunspell-ko
-    version: 0.5.6-2
+    package: hunspell-id
+    version: 1:6.2.0-1
   - arch: all
-    package: hunspell-nl
-    version: 1:5.2.5-1
-  - arch: all
-    package: hunspell-pl
+    package: hunspell-it
     version: 1:5.2.5-1
   - arch: all
     package: hunspell-pt-br
@@ -1233,11 +1008,8 @@ packages:
     package: hunspell-ru
     version: 1:5.2.5-1
   - arch: all
-    package: hunspell-sv
-    version: 1:5.2.5-1
-  - arch: all
-    package: hunspell-vi
-    version: 1:5.2.5-1
+    package: hunspell-tr
+    version: 1:6.2.0-1
   - arch: amd64
     package: ibus-anthy
     version: 1.5.9-2
@@ -1270,13 +1042,13 @@ packages:
     version: 0.8.19
   - arch: all
     package: imagemagick-6-common
-    version: 8:6.9.7.4+dfsg-11+deb9u6
+    version: 8:6.9.7.4+dfsg-11+deb9u7
   - arch: amd64
     package: imagemagick-6.q16
-    version: 8:6.9.7.4+dfsg-11+deb9u6
+    version: 8:6.9.7.4+dfsg-11+deb9u7
   - arch: amd64
     package: imagemagick
-    version: 8:6.9.7.4+dfsg-11+deb9u6
+    version: 8:6.9.7.4+dfsg-11+deb9u7
   - arch: all
     package: init-system-helpers
     version: '1.48'
@@ -1297,7 +1069,7 @@ packages:
     version: 3.14-2
   - arch: amd64
     package: intel-microcode
-    version: 3.20180807a.2~deb9u1
+    version: 3.20190312.1~bpo9+1
   - arch: all
     package: intltool-debian
     version: 0.35.0+20060710.4
@@ -1870,7 +1642,7 @@ packages:
     version: 2:1.42-1
   - arch: all
     package: libdatetime-timezone-perl
-    version: 1:2.09-1+2018i
+    version: 1:2.09-1+2019a
   - arch: amd64
     package: libdatrie1
     version: 0.2.10-4+b1
@@ -2443,10 +2215,10 @@ packages:
     version: 0.3.2-2
   - arch: all
     package: libgs9-common
-    version: 9.26a~dfsg-0+deb9u1
+    version: 9.26a~dfsg-0+deb9u2
   - arch: amd64
     package: libgs9
-    version: 9.26a~dfsg-0+deb9u1
+    version: 9.26a~dfsg-0+deb9u2
   - arch: amd64
     package: libgsasl7
     version: 1.8.0-8+b2
@@ -2476,7 +2248,7 @@ packages:
     version: 1.10.4-1
   - arch: amd64
     package: libgstreamer-plugins-base1.0-0
-    version: 1.10.4-1
+    version: 1.10.4-1+deb9u1
   - arch: amd64
     package: libgstreamer1.0-0
     version: 1.10.4-1
@@ -2755,7 +2527,7 @@ packages:
     version: 1.12.1+dfsg-4
   - arch: all
     package: libjs-jquery
-    version: 3.1.1-2
+    version: 3.1.1-2+deb9u1
   - arch: amd64
     package: libjson-glib-1.0-0
     version: 1.2.6-1
@@ -2920,13 +2692,13 @@ packages:
     version: 1:5.30-1+deb9u2
   - arch: amd64
     package: libmagick++-6.q16-7
-    version: 8:6.9.7.4+dfsg-11+deb9u6
+    version: 8:6.9.7.4+dfsg-11+deb9u7
   - arch: amd64
     package: libmagickcore-6.q16-3
-    version: 8:6.9.7.4+dfsg-11+deb9u6
+    version: 8:6.9.7.4+dfsg-11+deb9u7
   - arch: amd64
     package: libmagickwand-6.q16-3
-    version: 8:6.9.7.4+dfsg-11+deb9u6
+    version: 8:6.9.7.4+dfsg-11+deb9u7
   - arch: amd64
     package: libmbim-glib4
     version: 1.14.0-1+b1
@@ -3313,7 +3085,7 @@ packages:
     version: 1.1.8-3.6
   - arch: amd64
     package: libpam-systemd
-    version: 241-1~bpo9+1
+    version: 241-3~bpo9+1
   - arch: amd64
     package: libpam0g
     version: 1.1.8-3.6
@@ -3427,7 +3199,7 @@ packages:
     version: 0.9.2-4
   - arch: amd64
     package: libpng16-16
-    version: 1.6.28-1
+    version: 1.6.28-1+deb9u1
   - arch: amd64
     package: libpodofo0.9.4
     version: 0.9.4-6
@@ -3622,67 +3394,73 @@ packages:
     version: 2016060801-1
   - arch: amd64
     package: libreoffice-base-core
-    version: 1:5.2.7-1+deb9u5
+    version: 1:5.2.7-1+deb9u7
   - arch: amd64
     package: libreoffice-calc
-    version: 1:5.2.7-1+deb9u5
+    version: 1:5.2.7-1+deb9u7
   - arch: all
     package: libreoffice-common
-    version: 1:5.2.7-1+deb9u5
+    version: 1:5.2.7-1+deb9u7
   - arch: amd64
     package: libreoffice-core
-    version: 1:5.2.7-1+deb9u5
+    version: 1:5.2.7-1+deb9u7
   - arch: amd64
     package: libreoffice-draw
-    version: 1:5.2.7-1+deb9u5
+    version: 1:5.2.7-1+deb9u7
   - arch: amd64
     package: libreoffice-gnome
-    version: 1:5.2.7-1+deb9u5
+    version: 1:5.2.7-1+deb9u7
   - arch: amd64
     package: libreoffice-gtk3
-    version: 1:5.2.7-1+deb9u5
+    version: 1:5.2.7-1+deb9u7
   - arch: amd64
     package: libreoffice-impress
-    version: 1:5.2.7-1+deb9u5
+    version: 1:5.2.7-1+deb9u7
   - arch: all
     package: libreoffice-l10n-ar
-    version: 1:5.2.7-1+deb9u5
+    version: 1:5.2.7-1+deb9u7
   - arch: all
     package: libreoffice-l10n-de
-    version: 1:5.2.7-1+deb9u5
+    version: 1:5.2.7-1+deb9u7
   - arch: all
     package: libreoffice-l10n-es
-    version: 1:5.2.7-1+deb9u5
+    version: 1:5.2.7-1+deb9u7
   - arch: all
     package: libreoffice-l10n-fa
-    version: 1:5.2.7-1+deb9u5
+    version: 1:5.2.7-1+deb9u7
   - arch: all
     package: libreoffice-l10n-fr
-    version: 1:5.2.7-1+deb9u5
+    version: 1:5.2.7-1+deb9u7
+  - arch: all
+    package: libreoffice-l10n-hi
+    version: 1:5.2.7-1+deb9u7
+  - arch: all
+    package: libreoffice-l10n-id
+    version: 1:5.2.7-1+deb9u7
   - arch: all
     package: libreoffice-l10n-it
-    version: 1:5.2.7-1+deb9u5
+    version: 1:5.2.7-1+deb9u7
   - arch: all
     package: libreoffice-l10n-pt
-    version: 1:5.2.7-1+deb9u5
+    version: 1:5.2.7-1+deb9u7
   - arch: all
     package: libreoffice-l10n-ru
-    version: 1:5.2.7-1+deb9u5
+    version: 1:5.2.7-1+deb9u7
   - arch: all
-    package: libreoffice-l10n-vi
-    version: 1:5.2.7-1+deb9u5
+    package: libreoffice-l10n-tr
+    version: 1:5.2.7-1+deb9u7
   - arch: all
     package: libreoffice-l10n-zh-cn
-    version: 1:5.2.7-1+deb9u5
+    version: 1:5.2.7-1+deb9u7
   - arch: amd64
     package: libreoffice-math
-    version: 1:5.2.7-1+deb9u5
+    version: 1:5.2.7-1+deb9u7
   - arch: all
     package: libreoffice-style-galaxy
-    version: 1:5.2.7-1+deb9u5
+    version: 1:5.2.7-1+deb9u7
   - arch: amd64
     package: libreoffice-writer
-    version: 1:5.2.7-1+deb9u5
+    version: 1:5.2.7-1+deb9u7
   - arch: amd64
     package: librest-0.7-0
     version: 0.8.0-2
@@ -3790,7 +3568,7 @@ packages:
     version: 2.29.2-1+deb9u1
   - arch: amd64
     package: libsmbclient
-    version: 2:4.5.16+dfsg-1
+    version: 2:4.5.16+dfsg-1+deb9u1
   - arch: amd64
     package: libsnappy1v5
     version: 1.1.3-3
@@ -3868,10 +3646,7 @@ packages:
     version: 0.7.3-2+deb9u2
   - arch: amd64
     package: libssh2-1
-    version: 1.7.0-1
-  - arch: amd64
-    package: libssl1.0.2
-    version: 1.0.2q-1~deb9u1
+    version: 1.7.0-1+deb9u1
   - arch: amd64
     package: libssl1.0.2
     version: 1.0.2r-1~deb9u1
@@ -3946,10 +3721,10 @@ packages:
     version: 0.66-2
   - arch: amd64
     package: libsystemd0
-    version: 232-25+deb9u8
+    version: 232-25+deb9u11
   - arch: amd64
     package: libsystemd0
-    version: 241-1~bpo9+1
+    version: 241-3~bpo9+1
   - arch: amd64
     package: libtag1v5-vanilla
     version: 1.11.1+dfsg.1-0.1
@@ -4060,13 +3835,13 @@ packages:
     version: 6.3.0-18+deb9u1
   - arch: amd64
     package: libudev-dev
-    version: 241-1~bpo9+1
+    version: 241-3~bpo9+1
   - arch: amd64
     package: libudev1
-    version: 232-25+deb9u8
+    version: 232-25+deb9u11
   - arch: amd64
     package: libudev1
-    version: 241-1~bpo9+1
+    version: 241-3~bpo9+1
   - arch: amd64
     package: libudisks2-0
     version: 2.1.8-1.0tails4
@@ -4192,7 +3967,7 @@ packages:
     version: 1.16.0-1~bpo9+1
   - arch: amd64
     package: libwbclient0
-    version: 2:4.5.16+dfsg-1
+    version: 2:4.5.16+dfsg-1+deb9u1
   - arch: amd64
     package: libwebkit2gtk-4.0-37
     version: 2.18.6-1~deb9u1
@@ -4528,7 +4303,7 @@ packages:
     version: 4.19.28-2
   - arch: amd64
     package: linux-libc-dev
-    version: 4.9.144-3
+    version: 4.9.168-1
   - arch: all
     package: linux-source-4.19
     version: 4.19.28-2
@@ -4714,7 +4489,7 @@ packages:
     version: 0.0.7-1+b2
   - arch: all
     package: onioncircuits
-    version: 0.4-3
+    version: 0.6-0.0tails1
   - arch: all
     package: onionshare
     version: 0.9.2-1
@@ -5014,7 +4789,7 @@ packages:
     version: 0.13-2
   - arch: all
     package: python3-electrum
-    version: 3.1.3-1~bpo9+1
+    version: 3.2.3-1
   - arch: all
     package: python3-flask
     version: 0.12.1-1
@@ -5063,9 +4838,6 @@ packages:
   - arch: all
     package: python3-pampy
     version: 1.8.2-1+deb9u1
-  - arch: all
-    package: python3-pbkdf2
-    version: 1.3+20110613.git2a0fb15~ds0-3
   - arch: all
     package: python3-pexpect
     version: 4.2.1-1
@@ -5212,13 +4984,13 @@ packages:
     version: 2-unofficial-mt.14-1+b2
   - arch: amd64
     package: rsync
-    version: 3.1.2-1+deb9u1
+    version: 3.1.2-1+deb9u2
   - arch: amd64
     package: rsyslog
     version: 8.24.0-1
   - arch: amd64
     package: samba-libs
-    version: 2:4.5.16+dfsg-1
+    version: 2:4.5.16+dfsg-1+deb9u1
   - arch: amd64
     package: sane-utils
     version: 1.0.25-4.1
@@ -5317,22 +5089,22 @@ packages:
     version: 1.5.7-3
   - arch: amd64
     package: systemd-sysv
-    version: 232-25+deb9u8
+    version: 232-25+deb9u11
   - arch: amd64
     package: systemd-sysv
-    version: 241-1~bpo9+1
+    version: 241-3~bpo9+1
   - arch: amd64
     package: systemd
-    version: 232-25+deb9u8
+    version: 232-25+deb9u11
   - arch: amd64
     package: systemd
-    version: 241-1~bpo9+1
+    version: 241-3~bpo9+1
   - arch: amd64
     package: sysvinit-utils
     version: 2.88dsf-59.9
   - arch: all
     package: tails-greeter
-    version: 1.0.9
+    version: 1.0.9+feature.9956.1
   - arch: amd64
     package: tails-installer
     version: 5.0.15+dfsg-0tails1
@@ -5344,7 +5116,7 @@ packages:
     version: 2.0.2-1
   - arch: all
     package: tails-persistence-setup
-    version: 2.1.0-1
+    version: 2.1.1-1
   - arch: amd64
     package: tar
     version: 1.29b-1.1
@@ -5363,180 +5135,39 @@ packages:
   - arch: amd64
     package: telnet
     version: 0.17-41
-  - arch: all
-    package: thunderbird-l10n-all
-    version: 1:60.5.1-1~deb9u1.0tails1
   - arch: all
     package: thunderbird-l10n-ar
-    version: 1:60.5.1-1~deb9u1.0tails1
-  - arch: all
-    package: thunderbird-l10n-ast
-    version: 1:60.5.1-1~deb9u1.0tails1
-  - arch: all
-    package: thunderbird-l10n-be
-    version: 1:60.5.1-1~deb9u1.0tails1
-  - arch: all
-    package: thunderbird-l10n-bg
-    version: 1:60.5.1-1~deb9u1.0tails1
-  - arch: all
-    package: thunderbird-l10n-br
-    version: 1:60.5.1-1~deb9u1.0tails1
-  - arch: all
-    package: thunderbird-l10n-ca
-    version: 1:60.5.1-1~deb9u1.0tails1
-  - arch: all
-    package: thunderbird-l10n-cs
-    version: 1:60.5.1-1~deb9u1.0tails1
-  - arch: all
-    package: thunderbird-l10n-da
-    version: 1:60.5.1-1~deb9u1.0tails1
+    version: 1:60.6.1-1~deb9u1.0tails1
   - arch: all
     package: thunderbird-l10n-de
-    version: 1:60.5.1-1~deb9u1.0tails1
-  - arch: all
-    package: thunderbird-l10n-dsb
-    version: 1:60.5.1-1~deb9u1.0tails1
-  - arch: all
-    package: thunderbird-l10n-el
-    version: 1:60.5.1-1~deb9u1.0tails1
-  - arch: all
-    package: thunderbird-l10n-en-gb
-    version: 1:60.5.1-1~deb9u1.0tails1
-  - arch: all
-    package: thunderbird-l10n-es-ar
-    version: 1:60.5.1-1~deb9u1.0tails1
+    version: 1:60.6.1-1~deb9u1.0tails1
   - arch: all
     package: thunderbird-l10n-es-es
-    version: 1:60.5.1-1~deb9u1.0tails1
-  - arch: all
-    package: thunderbird-l10n-et
-    version: 1:60.5.1-1~deb9u1.0tails1
-  - arch: all
-    package: thunderbird-l10n-eu
-    version: 1:60.5.1-1~deb9u1.0tails1
-  - arch: all
-    package: thunderbird-l10n-fi
-    version: 1:60.5.1-1~deb9u1.0tails1
+    version: 1:60.6.1-1~deb9u1.0tails1
   - arch: all
     package: thunderbird-l10n-fr
-    version: 1:60.5.1-1~deb9u1.0tails1
-  - arch: all
-    package: thunderbird-l10n-fy-nl
-    version: 1:60.5.1-1~deb9u1.0tails1
-  - arch: all
-    package: thunderbird-l10n-ga-ie
-    version: 1:60.5.1-1~deb9u1.0tails1
-  - arch: all
-    package: thunderbird-l10n-gd
-    version: 1:60.5.1-1~deb9u1.0tails1
-  - arch: all
-    package: thunderbird-l10n-gl
-    version: 1:60.5.1-1~deb9u1.0tails1
-  - arch: all
-    package: thunderbird-l10n-he
-    version: 1:60.5.1-1~deb9u1.0tails1
-  - arch: all
-    package: thunderbird-l10n-hr
-    version: 1:60.5.1-1~deb9u1.0tails1
-  - arch: all
-    package: thunderbird-l10n-hsb
-    version: 1:60.5.1-1~deb9u1.0tails1
-  - arch: all
-    package: thunderbird-l10n-hu
-    version: 1:60.5.1-1~deb9u1.0tails1
-  - arch: all
-    package: thunderbird-l10n-hy-am
-    version: 1:60.5.1-1~deb9u1.0tails1
+    version: 1:60.6.1-1~deb9u1.0tails1
   - arch: all
     package: thunderbird-l10n-id
-    version: 1:60.5.1-1~deb9u1.0tails1
-  - arch: all
-    package: thunderbird-l10n-is
-    version: 1:60.5.1-1~deb9u1.0tails1
+    version: 1:60.6.1-1~deb9u1.0tails1
   - arch: all
     package: thunderbird-l10n-it
-    version: 1:60.5.1-1~deb9u1.0tails1
-  - arch: all
-    package: thunderbird-l10n-ja
-    version: 1:60.5.1-1~deb9u1.0tails1
-  - arch: all
-    package: thunderbird-l10n-kab
-    version: 1:60.5.1-1~deb9u1.0tails1
-  - arch: all
-    package: thunderbird-l10n-kk
-    version: 1:60.5.1-1~deb9u1.0tails1
-  - arch: all
-    package: thunderbird-l10n-ko
-    version: 1:60.5.1-1~deb9u1.0tails1
-  - arch: all
-    package: thunderbird-l10n-lt
-    version: 1:60.5.1-1~deb9u1.0tails1
-  - arch: all
-    package: thunderbird-l10n-ms
-    version: 1:60.5.1-1~deb9u1.0tails1
-  - arch: all
-    package: thunderbird-l10n-nb-no
-    version: 1:60.5.1-1~deb9u1.0tails1
-  - arch: all
-    package: thunderbird-l10n-nl
-    version: 1:60.5.1-1~deb9u1.0tails1
-  - arch: all
-    package: thunderbird-l10n-nn-no
-    version: 1:60.5.1-1~deb9u1.0tails1
-  - arch: all
-    package: thunderbird-l10n-pl
-    version: 1:60.5.1-1~deb9u1.0tails1
+    version: 1:60.6.1-1~deb9u1.0tails1
   - arch: all
     package: thunderbird-l10n-pt-br
-    version: 1:60.5.1-1~deb9u1.0tails1
-  - arch: all
-    package: thunderbird-l10n-pt-pt
-    version: 1:60.5.1-1~deb9u1.0tails1
-  - arch: all
-    package: thunderbird-l10n-rm
-    version: 1:60.5.1-1~deb9u1.0tails1
-  - arch: all
-    package: thunderbird-l10n-ro
-    version: 1:60.5.1-1~deb9u1.0tails1
+    version: 1:60.6.1-1~deb9u1.0tails1
   - arch: all
     package: thunderbird-l10n-ru
-    version: 1:60.5.1-1~deb9u1.0tails1
-  - arch: all
-    package: thunderbird-l10n-si
-    version: 1:60.5.1-1~deb9u1.0tails1
-  - arch: all
-    package: thunderbird-l10n-sk
-    version: 1:60.5.1-1~deb9u1.0tails1
-  - arch: all
-    package: thunderbird-l10n-sl
-    version: 1:60.5.1-1~deb9u1.0tails1
-  - arch: all
-    package: thunderbird-l10n-sq
-    version: 1:60.5.1-1~deb9u1.0tails1
-  - arch: all
-    package: thunderbird-l10n-sr
-    version: 1:60.5.1-1~deb9u1.0tails1
-  - arch: all
-    package: thunderbird-l10n-sv-se
-    version: 1:60.5.1-1~deb9u1.0tails1
+    version: 1:60.6.1-1~deb9u1.0tails1
   - arch: all
     package: thunderbird-l10n-tr
-    version: 1:60.5.1-1~deb9u1.0tails1
-  - arch: all
-    package: thunderbird-l10n-uk
-    version: 1:60.5.1-1~deb9u1.0tails1
-  - arch: all
-    package: thunderbird-l10n-vi
-    version: 1:60.5.1-1~deb9u1.0tails1
+    version: 1:60.6.1-1~deb9u1.0tails1
   - arch: all
     package: thunderbird-l10n-zh-cn
-    version: 1:60.5.1-1~deb9u1.0tails1
-  - arch: all
-    package: thunderbird-l10n-zh-tw
-    version: 1:60.5.1-1~deb9u1.0tails1
+    version: 1:60.6.1-1~deb9u1.0tails1
   - arch: amd64
     package: thunderbird
-    version: 1:60.5.1-1~deb9u1.0tails1
+    version: 1:60.6.1-1~deb9u1.0tails1
   - arch: amd64
     package: tk8.6-blt2.5
     version: 2.5.3+dfsg-3
@@ -5576,21 +5207,18 @@ packages:
   - arch: all
     package: ttf-dejavu
     version: 2.37-1
-  - arch: all
-    package: ttf-unifont
-    version: 1:9.0.06-2
   - arch: all
     package: tzdata
-    version: 2018i-0+deb9u1
+    version: 2019a-0+deb9u1
   - arch: all
     package: ucf
     version: '3.0036'
   - arch: amd64
     package: udev
-    version: 232-25+deb9u8
+    version: 232-25+deb9u11
   - arch: amd64
     package: udev
-    version: 241-1~bpo9+1
+    version: 241-3~bpo9+1
   - arch: amd64
     package: udisks2
     version: 2.1.8-1.0tails4
@@ -5599,7 +5227,7 @@ packages:
     version: 1.10.1-1+b1
   - arch: amd64
     package: uno-libs3
-    version: 5.2.7-1+deb9u5
+    version: 5.2.7-1+deb9u7
   - arch: all
     package: update-inetd
     version: '4.44'
@@ -5608,7 +5236,7 @@ packages:
     version: 0.99.4-4+b1
   - arch: amd64
     package: ure
-    version: 5.2.7-1+deb9u5
+    version: 5.2.7-1+deb9u7
   - arch: all
     package: usb-modeswitch-data
     version: 20170120-1
@@ -5647,13 +5275,13 @@ packages:
     version: 1.18.4+dfsg-2
   - arch: amd64
     package: wget
-    version: 1.18-5+deb9u2
+    version: 1.18-5+deb9u3
   - arch: amd64
     package: whiptail
     version: 0.52.19-1+b1
   - arch: all
     package: whisperback
-    version: 1.7.21
+    version: 1.7.23
   - arch: amd64
     package: whois
     version: 5.2.17~deb9u1
@@ -5665,7 +5293,7 @@ packages:
     version: 30~pre9-12+b1
   - arch: amd64
     package: wpasupplicant
-    version: 2:2.4-1+deb9u2
+    version: 2:2.4-1+deb9u3
   - arch: amd64
     package: x11-apps
     version: 7.7+6+b1
@@ -5711,21 +5339,9 @@ packages:
   - arch: all
     package: xfonts-base
     version: 1:1.0.4+nmu1
-  - arch: all
-    package: xfonts-bolkhov-koi8r-75dpi
-    version: 1.1.20001007-8
-  - arch: all
-    package: xfonts-bolkhov-koi8r-misc
-    version: 1.1.20001007-8
-  - arch: all
-    package: xfonts-cronyx-koi8r-100dpi
-    version: 2.3.8-8
   - arch: all
     package: xfonts-encodings
     version: 1:1.0.4-2
-  - arch: all
-    package: xfonts-intl-chinese
-    version: 1.2.1-10
   - arch: all
     package: xfonts-scalable
     version: 1:1.0.3-1.1
diff --git a/wiki/src/torrents/files/tails-amd64-3.13.2.img.sig b/wiki/src/torrents/files/tails-amd64-3.13.2.img.sig
new file mode 100644
index 0000000000000000000000000000000000000000..0b1364c25c54a20cac391fb6a6d489b84d1a8d6a
--- /dev/null
+++ b/wiki/src/torrents/files/tails-amd64-3.13.2.img.sig
@@ -0,0 +1,7 @@
+-----BEGIN PGP SIGNATURE-----
+
+iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCXM9E4AAKCRCQsrS9eu0j
+XyAXAQD42dtdE0d4kyS2tDgjQPBU+RWdxTjuz+Fg7Zeb4d0DfgEAoRsFLQoGLixs
+4ld5/XKoVd9nVQ4Ix97/X/Fzo+/UeAE=
+=cB1r
+-----END PGP SIGNATURE-----
diff --git a/wiki/src/torrents/files/tails-amd64-3.13.2.img.torrent b/wiki/src/torrents/files/tails-amd64-3.13.2.img.torrent
new file mode 100644
index 0000000000000000000000000000000000000000..cdad3f5b1d4b7aab5a330231ebef4cc746a97eea
Binary files /dev/null and b/wiki/src/torrents/files/tails-amd64-3.13.2.img.torrent differ
diff --git a/wiki/src/torrents/files/tails-amd64-3.13.2.iso.sig b/wiki/src/torrents/files/tails-amd64-3.13.2.iso.sig
new file mode 100644
index 0000000000000000000000000000000000000000..a939db1a830a1da8bfaa5e6286b4fa86817efec7
--- /dev/null
+++ b/wiki/src/torrents/files/tails-amd64-3.13.2.iso.sig
@@ -0,0 +1,7 @@
+-----BEGIN PGP SIGNATURE-----
+
+iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCXM9E1gAKCRCQsrS9eu0j
+X9UuAQCqO6ME4NKbhj4R40XPLMx0VSqOcUQ9uLzmT7LH/nDT4QD+JrMwYbBYnEf+
+U3/B3PYX6LuPtLxrp7cz9pQ+UESr+AY=
+=Hb5j
+-----END PGP SIGNATURE-----
diff --git a/wiki/src/torrents/files/tails-amd64-3.13.2.iso.torrent b/wiki/src/torrents/files/tails-amd64-3.13.2.iso.torrent
new file mode 100644
index 0000000000000000000000000000000000000000..7ad5f3ab547081963b374f4cf3e7c0539c3ce738
Binary files /dev/null and b/wiki/src/torrents/files/tails-amd64-3.13.2.iso.torrent differ
diff --git a/wiki/src/torrents/files/tails-amd64-3.13.1.packages b/wiki/src/torrents/files/tails-amd64-3.13.2.packages
similarity index 86%
rename from wiki/src/torrents/files/tails-amd64-3.13.1.packages
rename to wiki/src/torrents/files/tails-amd64-3.13.2.packages
index 569307b66e0e3bf70e5954e115f04fa42940c74e..d15c1a2c48df8c027a96054c7601826bb0857c50 100644
--- a/wiki/src/torrents/files/tails-amd64-3.13.1.packages
+++ b/wiki/src/torrents/files/tails-amd64-3.13.2.packages
@@ -22,7 +22,7 @@ audacity	2.1.2-2
 audacity-data	2.1.2-2
 autopoint	0.19.8.1-2
 b43-fwcutter	1:019-4
-base-files	9.9+deb9u8
+base-files	9.9+deb9u9
 base-passwd	3.5.43
 bash	4.4-5
 bash-completion	1:2.1-4.3
@@ -107,7 +107,7 @@ e2fslibs:amd64	1.43.4-2
 e2fsprogs	1.43.4-2
 efibootmgr	14-2
 eject	2.1.5+deb1+cvs20081104-13.2
-electrum	3.1.3-1~bpo9+1
+electrum	3.2.3-1
 emacsen-common	2.0.8
 enigmail	2:2.0.8-5~deb9u1
 eog	3.20.5-1+b1
@@ -144,91 +144,19 @@ firmware-ti-connectivity	20190114-1
 firmware-zd1211	1:1.5-6
 fontconfig	2.11.0-6.7.0tails4
 fontconfig-config	2.11.0-6.7.0tails4
-fonts-arphic-ukai	0.2.20080216.2-4
-fonts-arphic-uming	0.2.20080216.2-7
-fonts-beng	2:1.2
-fonts-beng-extra	1.0-5
 fonts-cantarell	0.0.25-2
 fonts-dejavu	2.37-1
 fonts-dejavu-core	2.37-1
 fonts-dejavu-extra	2.37-1
-fonts-deva	2:1.2
-fonts-deva-extra	3.0-3
-fonts-farsiweb	0.4.dfsg-12
-fonts-gargi	2.0-4
-fonts-gubbi	1.3-3
-fonts-gujr	2:1.2
-fonts-gujr-extra	1.0-5
-fonts-guru	2:1.2
-fonts-guru-extra	2.0-3
-fonts-indic	2:1.2
-fonts-kacst	2.01+mry-12
-fonts-kalapi	1.0-2
-fonts-khmeros	5.0-7
-fonts-knda	2:1.2
-fonts-lao	0.0.20060226-9
 fonts-liberation	1:1.07.4-2
 fonts-linuxlibertine	5.3.0-2
-fonts-lklug-sinhala	0.6-3
-fonts-lohit-beng-assamese	2.5.3-1
-fonts-lohit-beng-bengali	2.5.3-1
-fonts-lohit-deva	2.5.3-1
-fonts-lohit-gujr	2.92.2-2
-fonts-lohit-guru	2.5.3-2
-fonts-lohit-knda	2.5.3-2
-fonts-lohit-mlym	2.5.4-1
-fonts-lohit-orya	2.5.4.1-1
-fonts-lohit-taml	2.5.3-1
-fonts-lohit-taml-classical	2.5.3-2
-fonts-lohit-telu	2.5.4-2
 fonts-lyx	2.2.2-1
-fonts-mlym	2:1.2
-fonts-nakula	1.0-3
-fonts-navilu	1.2-2
-fonts-opensymbol	2:102.7+LibO5.2.7-1+deb9u5
-fonts-orya	2:1.2
-fonts-orya-extra	2.0-4
-fonts-pagul	1.0-7
-fonts-sahadeva	1.0-4
-fonts-samyak-deva	1.2.2-4
-fonts-samyak-gujr	1.2.2-4
-fonts-samyak-mlym	1.2.2-4
-fonts-samyak-taml	1.2.2-4
-fonts-sarai	1.0-2
-fonts-smc	6.0-1
-fonts-taml	2:1.3
-fonts-telu	2:1.2
-fonts-telu-extra	2.0-3
-fonts-thai-tlwg	1:0.6.3-1
-fonts-tlwg-garuda	1:0.6.3-1
-fonts-tlwg-garuda-ttf	1:0.6.3-1
-fonts-tlwg-kinnari	1:0.6.3-1
-fonts-tlwg-kinnari-ttf	1:0.6.3-1
-fonts-tlwg-laksaman	1:0.6.3-1
-fonts-tlwg-laksaman-ttf	1:0.6.3-1
-fonts-tlwg-loma	1:0.6.3-1
-fonts-tlwg-loma-ttf	1:0.6.3-1
-fonts-tlwg-mono	1:0.6.3-1
-fonts-tlwg-mono-ttf	1:0.6.3-1
-fonts-tlwg-norasi	1:0.6.3-1
-fonts-tlwg-norasi-ttf	1:0.6.3-1
-fonts-tlwg-purisa	1:0.6.3-1
-fonts-tlwg-purisa-ttf	1:0.6.3-1
-fonts-tlwg-sawasdee	1:0.6.3-1
-fonts-tlwg-sawasdee-ttf	1:0.6.3-1
-fonts-tlwg-typewriter	1:0.6.3-1
-fonts-tlwg-typewriter-ttf	1:0.6.3-1
-fonts-tlwg-typist	1:0.6.3-1
-fonts-tlwg-typist-ttf	1:0.6.3-1
-fonts-tlwg-typo	1:0.6.3-1
-fonts-tlwg-typo-ttf	1:0.6.3-1
-fonts-tlwg-umpush	1:0.6.3-1
-fonts-tlwg-umpush-ttf	1:0.6.3-1
-fonts-tlwg-waree	1:0.6.3-1
-fonts-tlwg-waree-ttf	1:0.6.3-1
-fonts-unfonts-core	1.0.2-080608-13
-fonts-wqy-microhei	0.2.0-beta-2
-fonts-wqy-zenhei	0.9.45-6
+fonts-noto-cjk	1:20170601+repack1-3
+fonts-noto-core	20181227-1
+fonts-noto-mono	20181227-1
+fonts-noto-ui-core	20181227-1
+fonts-noto-unhinted	20181227-1
+fonts-opensymbol	2:102.7+LibO5.2.7-1+deb9u7
 foomatic-db	20161201-1
 foomatic-db-engine	4.0.12-2+b1
 fuse	2.9.7-1+deb9u2
@@ -242,7 +170,7 @@ genisoimage	9:1.1.11-3+b2
 geoip-database	20170512-1
 gettext	0.19.8.1-2
 gettext-base	0.19.8.1-2
-ghostscript	9.26a~dfsg-0+deb9u1
+ghostscript	9.26a~dfsg-0+deb9u2
 gimp	2.8.18-1+deb9u1
 gimp-data	2.8.18-1+deb9u1
 gir1.2-accountsservice-1.0	0.6.43-1
@@ -263,7 +191,7 @@ gir1.2-glib-2.0:amd64	1.50.0-1.0tails2
 gir1.2-gmenu-3.0	3.13.3-9
 gir1.2-gnomebluetooth-1.0:amd64	3.20.1-1
 gir1.2-gnomedesktop-3.0:amd64	3.22.2-1
-gir1.2-gst-plugins-base-1.0	1.10.4-1
+gir1.2-gst-plugins-base-1.0	1.10.4-1+deb9u1
 gir1.2-gstreamer-1.0	1.10.4-1
 gir1.2-gtk-3.0:amd64	3.22.11-1.0tails5
 gir1.2-gtksource-3.0:amd64	3.22.2-1
@@ -347,11 +275,11 @@ gstreamer1.0-clutter-3.0	3.0.24-1
 gstreamer1.0-libav:amd64	1.10.4-1
 gstreamer1.0-nice:amd64	0.1.13-2
 gstreamer1.0-plugins-bad:amd64	1.10.4-1
-gstreamer1.0-plugins-base:amd64	1.10.4-1
+gstreamer1.0-plugins-base:amd64	1.10.4-1+deb9u1
 gstreamer1.0-plugins-good:amd64	1.10.4-1
 gstreamer1.0-plugins-ugly:amd64	1.10.4-1
 gstreamer1.0-pulseaudio:amd64	1.10.4-1
-gstreamer1.0-x:amd64	1.10.4-1
+gstreamer1.0-x:amd64	1.10.4-1+deb9u1
 gtk-update-icon-cache	3.22.11-1.0tails5
 gtk2-engines-pixbuf:amd64	2.24.31-2.0tails1
 gtkhash	0.7.0-4
@@ -371,21 +299,17 @@ hpijs-ppds	3.16.11+repack0-3
 hplip	3.16.11+repack0-3
 hplip-data	3.16.11+repack0-3
 hunspell-ar	3.2-1
-hunspell-da	1:5.2.5-1
 hunspell-de-de	20161207-1
 hunspell-en-us	20070829-7
 hunspell-es	1:5.2.5-1
 hunspell-fr	1:5.7-1
 hunspell-fr-classical	1:5.7-1
-hunspell-he	1:5.2.5-1
+hunspell-hi	1:5.2.5-1
+hunspell-id	1:6.2.0-1
 hunspell-it	1:5.2.5-1
-hunspell-ko	0.5.6-2
-hunspell-nl	1:5.2.5-1
-hunspell-pl	1:5.2.5-1
 hunspell-pt-br	1:5.2.5-1
 hunspell-ru	1:5.2.5-1
-hunspell-sv	1:5.2.5-1
-hunspell-vi	1:5.2.5-1
+hunspell-tr	1:6.2.0-1
 ibus	1.5.14-3+deb9u1
 ibus-anthy	1.5.9-2
 ibus-chewing	1.5.1-1+b1
@@ -396,16 +320,16 @@ ibus-libpinyin	1.7.3-2
 ibus-qt4	1.3.3-1
 ibus-unikey	0.6.1-1.1+b1
 ifupdown	0.8.19
-imagemagick	8:6.9.7.4+dfsg-11+deb9u6
-imagemagick-6-common	8:6.9.7.4+dfsg-11+deb9u6
-imagemagick-6.q16	8:6.9.7.4+dfsg-11+deb9u6
+imagemagick	8:6.9.7.4+dfsg-11+deb9u7
+imagemagick-6-common	8:6.9.7.4+dfsg-11+deb9u7
+imagemagick-6.q16	8:6.9.7.4+dfsg-11+deb9u7
 init	1.48
 init-system-helpers	1.48
 initramfs-tools	0.130.0tails1
 initramfs-tools-core	0.130.0tails1
 inkscape	0.92.1-1
 inotify-tools	3.14-2
-intel-microcode	3.20180807a.2~deb9u1
+intel-microcode	3.20190312.1~bpo9+1
 iproute2	4.9.0-1+deb9u1
 iptables	1.6.0+snapshot20161117-6
 iputils-ping	3:20161105-1
@@ -589,7 +513,7 @@ libdata-record-perl	0.02-4
 libdatetime-format-dateparse-perl	0.05-2
 libdatetime-locale-perl	1:1.11-1
 libdatetime-perl	2:1.42-1
-libdatetime-timezone-perl	1:2.09-1+2018i
+libdatetime-timezone-perl	1:2.09-1+2019a
 libdatrie1:amd64	0.2.10-4+b1
 libdb5.3:amd64	5.3.28-12+deb9u1
 libdb5.3++:amd64	5.3.28-12+deb9u1
@@ -777,8 +701,8 @@ libgphoto2-port12:amd64	2.5.12-1
 libgpm2:amd64	1.20.4-6.2+b1
 libgraphite2-3:amd64	1.3.10-1
 libgrilo-0.3-0:amd64	0.3.2-2
-libgs9:amd64	9.26a~dfsg-0+deb9u1
-libgs9-common	9.26a~dfsg-0+deb9u1
+libgs9:amd64	9.26a~dfsg-0+deb9u2
+libgs9-common	9.26a~dfsg-0+deb9u2
 libgsasl7	1.8.0-8+b2
 libgsecuredelete0	0.3-1
 libgsl2:amd64	2.3+dfsg-1
@@ -788,7 +712,7 @@ libgspell-1-common	1.2.2-1
 libgssapi-krb5-2:amd64	1.15-1+deb9u1
 libgssdp-1.0-3:amd64	1.0.1-1
 libgstreamer-plugins-bad1.0-0:amd64	1.10.4-1
-libgstreamer-plugins-base1.0-0:amd64	1.10.4-1
+libgstreamer-plugins-base1.0-0:amd64	1.10.4-1+deb9u1
 libgstreamer1.0-0:amd64	1.10.4-1
 libgtk-3-0:amd64	3.22.11-1.0tails5
 libgtk-3-common	3.22.11-1.0tails5
@@ -878,7 +802,7 @@ libjbig0:amd64	2.1-3.1+b2
 libjbig2dec0:amd64	0.13-4.1
 libjim0.76:amd64	0.76-2+b1
 libjpeg62-turbo:amd64	1:1.5.1-2
-libjs-jquery	3.1.1-2
+libjs-jquery	3.1.1-2+deb9u1
 libjs-jquery-ui	1.12.1+dfsg-4
 libjson-glib-1.0-0:amd64	1.2.6-1
 libjson-glib-1.0-common	1.2.6-1
@@ -933,9 +857,9 @@ liblzo2-2:amd64	2.08-1.2+b2
 libmad0:amd64	0.15.1b-8+deb9u1
 libmagic-mgc	1:5.30-1+deb9u2
 libmagic1:amd64	1:5.30-1+deb9u2
-libmagick++-6.q16-7:amd64	8:6.9.7.4+dfsg-11+deb9u6
-libmagickcore-6.q16-3:amd64	8:6.9.7.4+dfsg-11+deb9u6
-libmagickwand-6.q16-3:amd64	8:6.9.7.4+dfsg-11+deb9u6
+libmagick++-6.q16-7:amd64	8:6.9.7.4+dfsg-11+deb9u7
+libmagickcore-6.q16-3:amd64	8:6.9.7.4+dfsg-11+deb9u7
+libmagickwand-6.q16-3:amd64	8:6.9.7.4+dfsg-11+deb9u7
 libmbim-glib4:amd64	1.14.0-1+b1
 libmbim-proxy	1.14.0-1+b1
 libmeanwhile1:amd64	1.0.2-9
@@ -1063,7 +987,7 @@ libpagemaker-0.0-0:amd64	0.0.3-2
 libpam-modules:amd64	1.1.8-3.6
 libpam-modules-bin	1.1.8-3.6
 libpam-runtime	1.1.8-3.6
-libpam-systemd:amd64	241-1~bpo9+1
+libpam-systemd:amd64	241-3~bpo9+1
 libpam0g:amd64	1.1.8-3.6
 libpango-1.0-0:amd64	1.40.5-1
 libpango-perl	1.227-1+b1
@@ -1101,7 +1025,7 @@ libpipeline1:amd64	1.4.1-2
 libpixman-1-0:amd64	0.34.0-1
 libplist3:amd64	1.12+git+1+e37ca00-0.3
 libplymouth4:amd64	0.9.2-4
-libpng16-16:amd64	1.6.28-1
+libpng16-16:amd64	1.6.28-1+deb9u1
 libpodofo0.9.4	0.9.4-6
 libpolkit-agent-1-0:amd64	0.105-18+deb9u1
 libpolkit-backend-1-0:amd64	0.105-18+deb9u1
@@ -1166,27 +1090,29 @@ librdf0:amd64	1.0.17-1.1
 libreadline5:amd64	5.2+dfsg-3+b1
 libreadline7:amd64	7.0-3
 libregexp-common-perl	2016060801-1
-libreoffice-base-core	1:5.2.7-1+deb9u5
-libreoffice-calc	1:5.2.7-1+deb9u5
-libreoffice-common	1:5.2.7-1+deb9u5
-libreoffice-core	1:5.2.7-1+deb9u5
-libreoffice-draw	1:5.2.7-1+deb9u5
-libreoffice-gnome	1:5.2.7-1+deb9u5
-libreoffice-gtk3	1:5.2.7-1+deb9u5
-libreoffice-impress	1:5.2.7-1+deb9u5
-libreoffice-l10n-ar	1:5.2.7-1+deb9u5
-libreoffice-l10n-de	1:5.2.7-1+deb9u5
-libreoffice-l10n-es	1:5.2.7-1+deb9u5
-libreoffice-l10n-fa	1:5.2.7-1+deb9u5
-libreoffice-l10n-fr	1:5.2.7-1+deb9u5
-libreoffice-l10n-it	1:5.2.7-1+deb9u5
-libreoffice-l10n-pt	1:5.2.7-1+deb9u5
-libreoffice-l10n-ru	1:5.2.7-1+deb9u5
-libreoffice-l10n-vi	1:5.2.7-1+deb9u5
-libreoffice-l10n-zh-cn	1:5.2.7-1+deb9u5
-libreoffice-math	1:5.2.7-1+deb9u5
-libreoffice-style-galaxy	1:5.2.7-1+deb9u5
-libreoffice-writer	1:5.2.7-1+deb9u5
+libreoffice-base-core	1:5.2.7-1+deb9u7
+libreoffice-calc	1:5.2.7-1+deb9u7
+libreoffice-common	1:5.2.7-1+deb9u7
+libreoffice-core	1:5.2.7-1+deb9u7
+libreoffice-draw	1:5.2.7-1+deb9u7
+libreoffice-gnome	1:5.2.7-1+deb9u7
+libreoffice-gtk3	1:5.2.7-1+deb9u7
+libreoffice-impress	1:5.2.7-1+deb9u7
+libreoffice-l10n-ar	1:5.2.7-1+deb9u7
+libreoffice-l10n-de	1:5.2.7-1+deb9u7
+libreoffice-l10n-es	1:5.2.7-1+deb9u7
+libreoffice-l10n-fa	1:5.2.7-1+deb9u7
+libreoffice-l10n-fr	1:5.2.7-1+deb9u7
+libreoffice-l10n-hi	1:5.2.7-1+deb9u7
+libreoffice-l10n-id	1:5.2.7-1+deb9u7
+libreoffice-l10n-it	1:5.2.7-1+deb9u7
+libreoffice-l10n-pt	1:5.2.7-1+deb9u7
+libreoffice-l10n-ru	1:5.2.7-1+deb9u7
+libreoffice-l10n-tr	1:5.2.7-1+deb9u7
+libreoffice-l10n-zh-cn	1:5.2.7-1+deb9u7
+libreoffice-math	1:5.2.7-1+deb9u7
+libreoffice-style-galaxy	1:5.2.7-1+deb9u7
+libreoffice-writer	1:5.2.7-1+deb9u7
 librest-0.7-0:amd64	0.8.0-2
 librevenge-0.0-0:amd64	0.0.4-6
 librole-tiny-perl	2.000005-1
@@ -1221,7 +1147,7 @@ libsigc++-2.0-0v5:amd64	2.10.0-1
 libslang2:amd64	2.3.1-5
 libsm6:amd64	2:1.2.2-1+b3
 libsmartcols1:amd64	2.29.2-1+deb9u1
-libsmbclient:amd64	2:4.5.16+dfsg-1
+libsmbclient:amd64	2:4.5.16+dfsg-1+deb9u1
 libsnappy1v5:amd64	1.1.3-3
 libsndfile1:amd64	1.0.27-3
 libsndio6.1:amd64	1.1.0-3
@@ -1247,7 +1173,7 @@ libsratom-0-0:amd64	0.6.0~dfsg0-1
 libsrtp0	1.4.5~20130609~dfsg-2
 libss2:amd64	1.43.4-2
 libssh-gcrypt-4:amd64	0.7.3-2+deb9u2
-libssh2-1:amd64	1.7.0-1
+libssh2-1:amd64	1.7.0-1+deb9u1
 libssl1.0.2:amd64	1.0.2r-1~deb9u1
 libssl1.1:amd64	1.1.0j-1~deb9u1
 libstartup-notification0:amd64	0.12-4+b2
@@ -1271,7 +1197,7 @@ libswscale4:amd64	7:3.2.12-1~deb9u1
 libsyntax-keyword-junction-perl	0.003008-1
 libsyntax-perl	0.004-1
 libsys-statistics-linux-perl	0.66-2
-libsystemd0:amd64	241-1~bpo9+1
+libsystemd0:amd64	241-3~bpo9+1
 libtag1v5:amd64	1.11.1+dfsg.1-0.1
 libtag1v5-vanilla:amd64	1.11.1+dfsg.1-0.1
 libtalloc2:amd64	2.1.8-1
@@ -1305,7 +1231,7 @@ libtwolame0:amd64	0.3.13-2
 libtype-tiny-perl	1.000005-1
 libtype-tiny-xs-perl	0.012-1+b2
 libtypes-path-tiny-perl	0.005-1
-libudev1:amd64	241-1~bpo9+1
+libudev1:amd64	241-3~bpo9+1
 libudisks2-0:amd64	2.1.8-1.0tails4
 libumfpack5:amd64	1:4.5.4-1
 libunicode-linebreak-perl	0.0.20160702-1+b1
@@ -1347,7 +1273,7 @@ libwayland-cursor0:amd64	1.16.0-1~bpo9+1
 libwayland-egl1:amd64	1.16.0-1~bpo9+1
 libwayland-egl1-mesa:amd64	18.2.8-2~bpo9+1
 libwayland-server0:amd64	1.16.0-1~bpo9+1
-libwbclient0:amd64	2:4.5.16+dfsg-1
+libwbclient0:amd64	2:4.5.16+dfsg-1+deb9u1
 libwebkit2gtk-4.0-37:amd64	2.18.6-1~deb9u1
 libwebp6:amd64	0.5.2-1
 libwebpdemux2:amd64	0.5.2-1
@@ -1511,7 +1437,7 @@ nocache	1.0-1
 nodejs	4.8.2~dfsg-1
 ntfs-3g	1:2016.2.22AR.1+dfsg-1+deb9u1
 obfs4proxy	0.0.7-1+b2
-onioncircuits	0.4-3
+onioncircuits	0.6-0.0tails1
 onionshare	0.9.2-1
 open-vm-tools	2:10.1.5-5055683-4+deb9u1
 openpgp-applet	1.1-3
@@ -1610,7 +1536,7 @@ python3-dateutil	2.5.3-2
 python3-dbus	1.2.4-1+b1
 python3-dnspython	1.15.0-1+deb9u1
 python3-ecdsa	0.13-2
-python3-electrum	3.1.3-1~bpo9+1
+python3-electrum	3.2.3-1
 python3-flask	0.12.1-1
 python3-gi	3.22.0-2
 python3-gi-cairo	3.22.0-2
@@ -1626,7 +1552,6 @@ python3-matplotlib	2.0.0+dfsg1-2
 python3-minimal	3.5.3-1
 python3-numpy	1:1.12.1-3
 python3-pampy	1.8.2-1+deb9u1
-python3-pbkdf2	1.3+20110613.git2a0fb15~ds0-3
 python3-pexpect	4.2.1-1
 python3-pil:amd64	4.0.0-4
 python3-pkg-resources	33.1.1-1
@@ -1669,8 +1594,8 @@ readline-common	7.0-3
 rename	0.20-4
 rfkill	0.5-1+b1
 rng-tools	2-unofficial-mt.14-1+b2
-rsync	3.1.2-1+deb9u1
-samba-libs:amd64	2:4.5.16+dfsg-1
+rsync	3.1.2-1+deb9u2
+samba-libs:amd64	2:4.5.16+dfsg-1+deb9u1
 sane-utils	1.0.25-4.1
 scdaemon	2.1.18-8~deb9u4
 scribus	1.4.6+dfsg-4
@@ -1700,75 +1625,28 @@ syslinux-common	3:6.03+dfsg-14.1+deb9u1
 syslinux-efi	3:6.03+dfsg-14.1+deb9u1
 syslinux-utils	3:6.03+dfsg-14.1+deb9u1
 system-config-printer-common	1.5.7-3
-systemd	241-1~bpo9+1
-systemd-sysv	241-1~bpo9+1
+systemd	241-3~bpo9+1
+systemd-sysv	241-3~bpo9+1
 sysvinit-utils	2.88dsf-59.9
-tails-greeter	1.0.9
+tails-greeter	1.0.9+feature.9956.1
 tails-installer	5.0.15+dfsg-0tails1
 tails-iuk	3.5-1
 tails-perl5lib	2.0.2-1
-tails-persistence-setup	2.1.0-1
+tails-persistence-setup	2.1.1-1
 tar	1.29b-1.1
 tcpdump	4.9.2-1~deb9u1
 tcpflow	1.4.5+repack1-3+b1
-thunderbird	1:60.5.1-1~deb9u1.0tails1
-thunderbird-l10n-all	1:60.5.1-1~deb9u1.0tails1
-thunderbird-l10n-ar	1:60.5.1-1~deb9u1.0tails1
-thunderbird-l10n-ast	1:60.5.1-1~deb9u1.0tails1
-thunderbird-l10n-be	1:60.5.1-1~deb9u1.0tails1
-thunderbird-l10n-bg	1:60.5.1-1~deb9u1.0tails1
-thunderbird-l10n-br	1:60.5.1-1~deb9u1.0tails1
-thunderbird-l10n-ca	1:60.5.1-1~deb9u1.0tails1
-thunderbird-l10n-cs	1:60.5.1-1~deb9u1.0tails1
-thunderbird-l10n-da	1:60.5.1-1~deb9u1.0tails1
-thunderbird-l10n-de	1:60.5.1-1~deb9u1.0tails1
-thunderbird-l10n-dsb	1:60.5.1-1~deb9u1.0tails1
-thunderbird-l10n-el	1:60.5.1-1~deb9u1.0tails1
-thunderbird-l10n-en-gb	1:60.5.1-1~deb9u1.0tails1
-thunderbird-l10n-es-ar	1:60.5.1-1~deb9u1.0tails1
-thunderbird-l10n-es-es	1:60.5.1-1~deb9u1.0tails1
-thunderbird-l10n-et	1:60.5.1-1~deb9u1.0tails1
-thunderbird-l10n-eu	1:60.5.1-1~deb9u1.0tails1
-thunderbird-l10n-fi	1:60.5.1-1~deb9u1.0tails1
-thunderbird-l10n-fr	1:60.5.1-1~deb9u1.0tails1
-thunderbird-l10n-fy-nl	1:60.5.1-1~deb9u1.0tails1
-thunderbird-l10n-ga-ie	1:60.5.1-1~deb9u1.0tails1
-thunderbird-l10n-gd	1:60.5.1-1~deb9u1.0tails1
-thunderbird-l10n-gl	1:60.5.1-1~deb9u1.0tails1
-thunderbird-l10n-he	1:60.5.1-1~deb9u1.0tails1
-thunderbird-l10n-hr	1:60.5.1-1~deb9u1.0tails1
-thunderbird-l10n-hsb	1:60.5.1-1~deb9u1.0tails1
-thunderbird-l10n-hu	1:60.5.1-1~deb9u1.0tails1
-thunderbird-l10n-hy-am	1:60.5.1-1~deb9u1.0tails1
-thunderbird-l10n-id	1:60.5.1-1~deb9u1.0tails1
-thunderbird-l10n-is	1:60.5.1-1~deb9u1.0tails1
-thunderbird-l10n-it	1:60.5.1-1~deb9u1.0tails1
-thunderbird-l10n-ja	1:60.5.1-1~deb9u1.0tails1
-thunderbird-l10n-kab	1:60.5.1-1~deb9u1.0tails1
-thunderbird-l10n-kk	1:60.5.1-1~deb9u1.0tails1
-thunderbird-l10n-ko	1:60.5.1-1~deb9u1.0tails1
-thunderbird-l10n-lt	1:60.5.1-1~deb9u1.0tails1
-thunderbird-l10n-ms	1:60.5.1-1~deb9u1.0tails1
-thunderbird-l10n-nb-no	1:60.5.1-1~deb9u1.0tails1
-thunderbird-l10n-nl	1:60.5.1-1~deb9u1.0tails1
-thunderbird-l10n-nn-no	1:60.5.1-1~deb9u1.0tails1
-thunderbird-l10n-pl	1:60.5.1-1~deb9u1.0tails1
-thunderbird-l10n-pt-br	1:60.5.1-1~deb9u1.0tails1
-thunderbird-l10n-pt-pt	1:60.5.1-1~deb9u1.0tails1
-thunderbird-l10n-rm	1:60.5.1-1~deb9u1.0tails1
-thunderbird-l10n-ro	1:60.5.1-1~deb9u1.0tails1
-thunderbird-l10n-ru	1:60.5.1-1~deb9u1.0tails1
-thunderbird-l10n-si	1:60.5.1-1~deb9u1.0tails1
-thunderbird-l10n-sk	1:60.5.1-1~deb9u1.0tails1
-thunderbird-l10n-sl	1:60.5.1-1~deb9u1.0tails1
-thunderbird-l10n-sq	1:60.5.1-1~deb9u1.0tails1
-thunderbird-l10n-sr	1:60.5.1-1~deb9u1.0tails1
-thunderbird-l10n-sv-se	1:60.5.1-1~deb9u1.0tails1
-thunderbird-l10n-tr	1:60.5.1-1~deb9u1.0tails1
-thunderbird-l10n-uk	1:60.5.1-1~deb9u1.0tails1
-thunderbird-l10n-vi	1:60.5.1-1~deb9u1.0tails1
-thunderbird-l10n-zh-cn	1:60.5.1-1~deb9u1.0tails1
-thunderbird-l10n-zh-tw	1:60.5.1-1~deb9u1.0tails1
+thunderbird	1:60.6.1-1~deb9u1.0tails1
+thunderbird-l10n-ar	1:60.6.1-1~deb9u1.0tails1
+thunderbird-l10n-de	1:60.6.1-1~deb9u1.0tails1
+thunderbird-l10n-es-es	1:60.6.1-1~deb9u1.0tails1
+thunderbird-l10n-fr	1:60.6.1-1~deb9u1.0tails1
+thunderbird-l10n-id	1:60.6.1-1~deb9u1.0tails1
+thunderbird-l10n-it	1:60.6.1-1~deb9u1.0tails1
+thunderbird-l10n-pt-br	1:60.6.1-1~deb9u1.0tails1
+thunderbird-l10n-ru	1:60.6.1-1~deb9u1.0tails1
+thunderbird-l10n-tr	1:60.6.1-1~deb9u1.0tails1
+thunderbird-l10n-zh-cn	1:60.6.1-1~deb9u1.0tails1
 tk8.6-blt2.5	2.5.3+dfsg-3
 tor	0.3.5.8-1~d90.stretch+1
 tor-geoipdb	0.3.5.8-1~d90.stretch+1
@@ -1782,16 +1660,15 @@ ttf-bitstream-vera	1.10-8
 ttf-dejavu	2.37-1
 ttf-dejavu-core	2.37-1
 ttf-dejavu-extra	2.37-1
-ttf-unifont	1:9.0.06-2
-tzdata	2018i-0+deb9u1
+tzdata	2019a-0+deb9u1
 ucf	3.0036
-udev	241-1~bpo9+1
+udev	241-3~bpo9+1
 udisks2	2.1.8-1.0tails4
 unar	1.10.1-1+b1
-uno-libs3	5.2.7-1+deb9u5
+uno-libs3	5.2.7-1+deb9u7
 update-inetd	4.44
 upower	0.99.4-4+b1
-ure	5.2.7-1+deb9u5
+ure	5.2.7-1+deb9u7
 usb-modeswitch	2.5.0+repack0-1
 usb-modeswitch-data	20170120-1
 usbutils	1:007-4+b1
@@ -1803,16 +1680,14 @@ virtualbox-guest-dkms-dummy	5.2.24-dfsg-4~bpo9+1+tails.fake1
 virtualbox-guest-utils	5.2.24-dfsg-4~bpo9+1
 virtualbox-guest-x11	5.2.24-dfsg-4~bpo9+1
 webext-ublock-origin	1.18.4+dfsg-2
-wget	1.18-5+deb9u2
+wget	1.18-5+deb9u3
 whiptail	0.52.19-1+b1
-whisperback	1.7.21
+whisperback	1.7.23
 whois	5.2.17~deb9u1
 wireless-regdb	2016.06.10-1
 wireless-tools	30~pre9-12+b1
-wpasupplicant	2:2.4-1+deb9u2
-x11-apps	7.7+6+b1
+wpasupplicant	2:2.4-1+deb9u3
 x11-common	1:7.7+19
-x11-session-utils	7.7+2+b1
 x11-utils	7.7+3+b1
 x11-xkb-utils	7.7+3+b1
 x11-xserver-utils	7.7+7+b1
@@ -1822,20 +1697,10 @@ xdg-user-dirs	0.15-2+b1
 xdg-user-dirs-gtk	0.10-1+b1
 xdg-utils	1.1.1-1+deb9u1
 xdotool	1:3.20160805.1-3
-xfonts-100dpi	1:1.0.4+nmu1
-xfonts-75dpi	1:1.0.4+nmu1
-xfonts-base	1:1.0.4+nmu1
-xfonts-bolkhov-koi8r-75dpi	1.1.20001007-8
-xfonts-bolkhov-koi8r-misc	1.1.20001007-8
-xfonts-cronyx-koi8r-100dpi	2.3.8-8
 xfonts-encodings	1:1.0.4-2
-xfonts-intl-chinese	1.2.1-10
-xfonts-scalable	1:1.0.3-1.1
 xfonts-utils	1:7.7+4
-xinit	1.3.4-3+b1
 xkb-data	2.19-1+deb9u1
 xml-core	0.17
-xorg	1:7.7+19
 xorg-docs-core	1:1.7.1-1
 xsel	1.2.0-2+b1
 xserver-common	2:1.19.2-1+deb9u5
diff --git a/wiki/src/upgrade/v1/Tails/3.12.1/amd64/stable/upgrades.yml b/wiki/src/upgrade/v1/Tails/3.12.1/amd64/stable/upgrades.yml
index 953b0908baa67b02ed742f4edb554ccb5e4f6821..dd91f74c50f40c4fe8fc1f29f05a6e73d657f826 100644
--- a/wiki/src/upgrade/v1/Tails/3.12.1/amd64/stable/upgrades.yml
+++ b/wiki/src/upgrade/v1/Tails/3.12.1/amd64/stable/upgrades.yml
@@ -4,17 +4,17 @@ channel: stable
 product-name: Tails
 product-version: 3.12.1
 upgrades:
-- details-url: https://tails.boum.org/news/version_3.13.1/
+- details-url: https://tails.boum.org/news/version_3.13.2/
   type: major
   upgrade-paths:
   - target-files:
-    - sha256: 4e6b37c588f33b05c6a6909b0182bd31ca02a04e9d5fb6feb296b6e8d287e177
-      size: 1225568256
-      url: http://dl.amnesia.boum.org/tails/stable/tails-amd64-3.13.1/tails-amd64-3.13.1.iso
+    - sha256: f02d8bc7ab8877d666cf3817bdcb600b8d88175c6af99b2ed8fae5334a4b5bd4
+      size: 1200891904
+      url: http://dl.amnesia.boum.org/tails/stable/tails-amd64-3.13.2/tails-amd64-3.13.2.iso
     type: full
   - target-files:
-    - sha256: 3260245ceea163863c2d81031403552830edb402f5ae41871a0e3da69660032b
-      size: 294133760
-      url: http://dl.amnesia.boum.org/tails/stable/iuk/Tails_amd64_3.12.1_to_3.13.1.iuk
+    - sha256: ea68ec348dbca57fee599bd834d42907c3215b60e142252c44f63d7f7d7145c6
+      size: 401940480
+      url: http://dl.amnesia.boum.org/tails/stable/iuk/Tails_amd64_3.12.1_to_3.13.2.iuk
     type: incremental
-  version: 3.13.1
+  version: 3.13.2
diff --git a/wiki/src/upgrade/v1/Tails/3.12.1/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v1/Tails/3.12.1/amd64/stable/upgrades.yml.pgp
index 3882ce1f8e7d8f87e29d501e7327f95dfcef32d0..82491afc64bccd45f6eb1142ddd254fa06ec8f51 100644
--- a/wiki/src/upgrade/v1/Tails/3.12.1/amd64/stable/upgrades.yml.pgp
+++ b/wiki/src/upgrade/v1/Tails/3.12.1/amd64/stable/upgrades.yml.pgp
@@ -1,7 +1,16 @@
 -----BEGIN PGP SIGNATURE-----
 
-iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCXJVbWQAKCRCQsrS9eu0j
-XxJ6AP0Q9hUDLtHo+CFZza4dmgitGQSJkhaeSEKoCv/A/Y/hfAEA4EQMdiM95a05
-T49NDZ8Fcnp9RGLAdZtaAirb4ffiBwA=
-=6hHG
+iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAlzPmqYACgkQqLD05Fsb
+UOJmww/7BxHsCFM552LNmmCjF1EYZLMlyYlnqspeWQ7jn6M3hhCYocLeWopgKfsm
+NSDU/Nl/ndpvJ/rPO+OQ3Hx/MH33n7CtmQ0COS3PMs2HZuXvPWVN+5kWhSaEXLo1
+mZbZRt7VrUmWJnuK4VHGGd9EvZz4qGiYdWMHYVI7WH7YI9SAC+KrnHmnfz73GcIl
+6n5+d3JhP4HcJNW4PnLGtSEDzA2pArfdTN9Z+mwEoxgihOcQavGkj7KpWpNqZh3V
+2T8SQSajze9SyE2iGVw4++jryDvUS71tJvB8qlhaVZ5xGgnBD1zXn9fM8Qrpe8SM
+0OZ+cJaPEeFfRm0KmqH5uW1ks7jZUH1NnzZU3mAZhTltfvtT8OeSZ7v7Tyt5N7lQ
+E5cgp42MqVmfq56lV3H/CKxzVt1J+By3jsQkl/dtJIJmNT9OLsbyob+1NACpoYA/
+DZLsTR/yia5K8+zdc2sNIWVFyT7pBopenGk0TNcoTuw7cOsVqyUrjTND/tLBb8W/
+Tg+OWXdBh2sNmFuoPk9H/fdHQvPxGQoHIohNlIQsTWfabMtUTattUFLBZ23SXaTz
+gQxadXjgIlRl5A0oySrmCuhQvzc1CgwGx+d1y/A5NLweqmzEyf8c13f/lWbIwRAp
+rTELywGP9KJDiyndE5su8gffsLdihJwZFxOLTxrLI1qL9CowhJE=
+=VYgT
 -----END PGP SIGNATURE-----
diff --git a/wiki/src/upgrade/v1/Tails/3.12/amd64/stable/upgrades.yml b/wiki/src/upgrade/v1/Tails/3.12/amd64/stable/upgrades.yml
index d83ead2f276fdeeab29453ce100c0484870fd141..46f3a0d7a1c3f5f36625f6c3ca7108765b26eacb 100644
--- a/wiki/src/upgrade/v1/Tails/3.12/amd64/stable/upgrades.yml
+++ b/wiki/src/upgrade/v1/Tails/3.12/amd64/stable/upgrades.yml
@@ -4,17 +4,17 @@ channel: stable
 product-name: Tails
 product-version: '3.12'
 upgrades:
-- details-url: https://tails.boum.org/news/version_3.13.1/
+- details-url: https://tails.boum.org/news/version_3.13.2/
   type: major
   upgrade-paths:
   - target-files:
-    - sha256: 4e6b37c588f33b05c6a6909b0182bd31ca02a04e9d5fb6feb296b6e8d287e177
-      size: 1225568256
-      url: http://dl.amnesia.boum.org/tails/stable/tails-amd64-3.13.1/tails-amd64-3.13.1.iso
+    - sha256: f02d8bc7ab8877d666cf3817bdcb600b8d88175c6af99b2ed8fae5334a4b5bd4
+      size: 1200891904
+      url: http://dl.amnesia.boum.org/tails/stable/tails-amd64-3.13.2/tails-amd64-3.13.2.iso
     type: full
   - target-files:
-    - sha256: d3bbe680fca0e61f0a830376c626fc824104921773b7f3057f6b79ec2207d8e7
-      size: 368332800
-      url: http://dl.amnesia.boum.org/tails/stable/iuk/Tails_amd64_3.12_to_3.13.1.iuk
+    - sha256: a126c1970dabbccca3b5f762a2a0ea5308c0667b850d3a9e7029e1b809ed44d9
+      size: 438845440
+      url: http://dl.amnesia.boum.org/tails/stable/iuk/Tails_amd64_3.12_to_3.13.2.iuk
     type: incremental
-  version: 3.13.1
+  version: 3.13.2
diff --git a/wiki/src/upgrade/v1/Tails/3.12/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v1/Tails/3.12/amd64/stable/upgrades.yml.pgp
index 058737a5f5894f42137043b9b71d1934861f5402..a25ed38afae8e715787270590de6e088057ebc58 100644
--- a/wiki/src/upgrade/v1/Tails/3.12/amd64/stable/upgrades.yml.pgp
+++ b/wiki/src/upgrade/v1/Tails/3.12/amd64/stable/upgrades.yml.pgp
@@ -1,7 +1,16 @@
 -----BEGIN PGP SIGNATURE-----
 
-iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCXJVbXwAKCRCQsrS9eu0j
-X2KwAQCJJW5eox/FwlYYqqf8Z9ILowMUy/RU3HfRVaixnFVvywEA2l7T/3+Otn9H
-IVytRw2bYqS7ZF8WzkIzF80JTAWoHA4=
-=kJHN
+iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAlzPmrcACgkQqLD05Fsb
+UOIoSQ//Ur3ZsY0AKmqWgkNpyFa+nWCxxlVrSYD9ShBSc75yWH2kpQVx6rg9y1Z5
+YMCLwEVC4TtzKisuElELcwBGrSNx+V0/xS9lQvijU6uF+/hHcXxiB1lFtooZ54qT
+t2p0QEjLZAxqGHZfpyTCDAvR76Vpkgvkh5e6iyJW5wcNSWU/j5xw5LXxO+tCKIYQ
+lsKGvHYmMdbHRfa+h39yZw1mqw2zTLWHPvuhXtyyoTdG0kVClkC7HKiZE7SIJc22
+dXoma12A+jKSWQcOzOsKq7hNe11dk8mZpzDAFZ1tMY7Xe8uAkTMEGFMRIjZaefNs
+WGEpjQ7spBPfzIxgFr3gmLbz8aid/WilZuOexoS7ocLax/7VoofxB1GOuwlBlTPw
+yc0Q7u3XZQsy985sACLCy+VVpsZJnfge0ruQYSzvDcc8F0s9FVH5XSPe30Edxtoa
+KCPDEC2+3+d4OZqDJRVJpQs5IV4tIZcF/hp5qIzhzNlZ/WylsgK0dV5UQ30/FrMB
+JStrgAFiyEpkF1nFUOY1Cu8JT5Aypqhx1NQ6KBGRYCKHTAQXbvf2TODUhlcNNSbZ
+X+Iu2V02jGqN//pkH8yn2O999k5QTfVj4OEQsNA+fHjnwKel9GtR+igRsOtVKKiO
+EadIFL+DNt4hgUUQphs3DJSEgmRn98Hxv8Ybn+tEczwJZTH5rvQ=
+=XzM3
 -----END PGP SIGNATURE-----
diff --git a/wiki/src/upgrade/v1/Tails/3.13.1/amd64/stable/upgrades.yml b/wiki/src/upgrade/v1/Tails/3.13.1/amd64/stable/upgrades.yml
index c45006d3f2a91efaecd26cf127e82c96fd364003..26a49da86fb68af0b10d9f062e7a88355ccce09c 100644
--- a/wiki/src/upgrade/v1/Tails/3.13.1/amd64/stable/upgrades.yml
+++ b/wiki/src/upgrade/v1/Tails/3.13.1/amd64/stable/upgrades.yml
@@ -3,3 +3,18 @@ build-target: amd64
 channel: stable
 product-name: Tails
 product-version: 3.13.1
+upgrades:
+- details-url: https://tails.boum.org/news/version_3.13.2/
+  type: major
+  upgrade-paths:
+  - target-files:
+    - sha256: f02d8bc7ab8877d666cf3817bdcb600b8d88175c6af99b2ed8fae5334a4b5bd4
+      size: 1200891904
+      url: http://dl.amnesia.boum.org/tails/stable/tails-amd64-3.13.2/tails-amd64-3.13.2.iso
+    type: full
+  - target-files:
+    - sha256: 3ed5dd74642767f40f21659f29413ee6fac94463113915bf464a103a2ce4e767
+      size: 290877440
+      url: http://dl.amnesia.boum.org/tails/stable/iuk/Tails_amd64_3.13.1_to_3.13.2.iuk
+    type: incremental
+  version: 3.13.2
diff --git a/wiki/src/upgrade/v1/Tails/3.13.1/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v1/Tails/3.13.1/amd64/stable/upgrades.yml.pgp
index af46c1795b5eb43b7ff090929c0a8c595ec1f67d..2a051bf2eddbc6ededf28659a262db4caac53d5a 100644
--- a/wiki/src/upgrade/v1/Tails/3.13.1/amd64/stable/upgrades.yml.pgp
+++ b/wiki/src/upgrade/v1/Tails/3.13.1/amd64/stable/upgrades.yml.pgp
@@ -1,16 +1,16 @@
 -----BEGIN PGP SIGNATURE-----
 
-iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAlyQXaAACgkQqLD05Fsb
-UOLHGQ//XCwMO9RekPpz+AGNemgcOP2lze7CrWATjbPezV8m0816U79Tk2+8wf06
-EwtElpHV1uMgeC1EmA1Upg4e3RSZPiVjpqqqFWz1uSQt67VE/kdZSdr+18qw72Uh
-F3Bxb6p3zioY6tqKXlL68oK9bovq6uFqTpEU4LeVPtfuBd/0leX8S/SJKQkSrK/E
-f/asmbGfVztTU6mpdCdAhUP0DTLExh1ozC0xao/Mj02x953RfNZGtOjHDrEVsEpI
-skloxuSPAn3x8pvBx2AHmCaDukO4NGWpAXlhgnTQHWH2HJn8qK7sAZrC/3uIQPJ8
-JeGh0lyrSjyPpwq7MD4pFQWLho2RpGzVo+LgSKGyIw2QntIcjYHr1oKzV6JHRTmE
-u3PgGKs5CLJgLy8u8kEfNR9EHl48taVqZxhuDw6VYODWOLqU1MCUb6+ajnJ5fvz1
-ifGPOS7mVn62UE2OJWayd6eH3SGyaMTaeaEY8YU6Hw1WWereEBkB6CSuoW8sKgmN
-XqbbAnaqIWHVa1PGST5CM3vibIdrsm11xhZnHK8x2ALJVwdbzfPF/59gFI0Qe9W1
-XD7Dk6KnxeQjGv8PbQqEIwaCUN5AsNhoteN+dXvFPwYIcwUHpu4+TmpCU2976JLC
-FtjbHDveO2qRXqTY5EDm7IfxskRpWRHXbXfPRDFKsPlhzCYlPs4=
-=X79l
+iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAlzPmr0ACgkQqLD05Fsb
+UOJKBA/+IIQWWkGVYeZf0u/JEkn/oUeVmAo20USTQlBzeKhJrN6j8eEsod+y0a7J
+0sZsGw9N4l85PuNAutqgDgEOKSxXnKAEEoJ9bHtqd13+711JopruLjbqUjUx+rHq
+tZDm3QZmWdgTiDAw5UEW/oVtuSpFdFG/jMYpqUgeqJNKoJ2XS/5t7LUq1UkM9T5e
+pkPUwJV1Zy/EYtNVpN4brLtYayOn/qgzE54Aet0LW4E1B8dGVRA7gRuhdNWPl/P9
+RLKgaKeihNM9KSi2NAUBK31/PlJ8k/v2sB7uDLyWmJzd3Wl0JIzcQ0d2HaJNwOdF
+lVMKgTwOwaPvwqdyHIix5GZG1ssDcO4M31VHtAtopLiVJyHClRwnyXxu8YJTyN0m
+InNaWs5a3D7zSuKshLR5nVefkLezPtrr6wyYjWS58yMx7bfQC6HEV5+I9gwbdHL4
+iIas5ixcfgYs57sejAF6eaXXBFpYj3T4A5a/FLuAwdjCpZDrKTTiIfREStm0GCSz
+62w83mIHvos4L2D2KiXnfFmrkCStIOF0WK4nN0J4qC7BJ6xfxH1nef1flxsEe78g
+eDe7YhBZ4peWQHOGYx/905DYIH90e8ReE4brMAlTeJLpZi0MWkaPY9MKswftgvoh
+844MZBHrdqHWk2Jvc1Pg93AHPVCVnPRFz2iGKvv7gJ+AwJ6dMpo=
+=3kkU
 -----END PGP SIGNATURE-----
diff --git a/wiki/src/upgrade/v1/Tails/3.13.3/amd64/alpha/upgrades.yml b/wiki/src/upgrade/v1/Tails/3.13.3/amd64/alpha/upgrades.yml
new file mode 100644
index 0000000000000000000000000000000000000000..9bd818b3d24a3d1c3d7fe1741ae4f6b2a2fd49b3
--- /dev/null
+++ b/wiki/src/upgrade/v1/Tails/3.13.3/amd64/alpha/upgrades.yml
@@ -0,0 +1,5 @@
+---
+build-target: amd64
+channel: alpha
+product-name: Tails
+product-version: 3.13.3
diff --git a/wiki/src/upgrade/v1/Tails/3.13.3/amd64/alpha/upgrades.yml.pgp b/wiki/src/upgrade/v1/Tails/3.13.3/amd64/alpha/upgrades.yml.pgp
new file mode 100644
index 0000000000000000000000000000000000000000..3ba9dc20671cef8685c2fb99889e3c1ea4403040
--- /dev/null
+++ b/wiki/src/upgrade/v1/Tails/3.13.3/amd64/alpha/upgrades.yml.pgp
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAlzPmsQACgkQqLD05Fsb
+UOJE5A//aByWqDeyg0VY2iN3W/F8o7KoLNcGtoDAWzE6Wwv2XKZNoG3O4URswnC1
+CwOut19XZ8Nm6mqRTEe89K5+nhA+33pUUfJJa1jrQqhZ34faQ525v9sU38jS4zK1
+Medct1OmmYHxrFd5a3s89tm5v6Ua8IFPdL19usqRSYTVUh8PRCqdkXCSf/imk8wR
+u7RSTEo6iIhj2Mpgf7x7AXLnaFhQ6RVQrTWUARYi2PRPNiqy1FmxWYBqvF0L1uLY
+tFjBTov0x/OpD00cdPF6c98IHnBUQKaFDLMIa38vHjvTKXNsajAKd1Q/5PT//1Q+
+n6D6mBZBQTkNg4xkXRhSY1xdP/jlEO98Leeh2gUzoGUH69kwIoXJ0A4ceIaiGVjg
+o3KUZ3FYDZ6lzFbOr8ICcdAlK39hEd+b7Vlkgaye2VVH4pPDcqkjm0dWrDsrLs/F
+qlCgyEVyFCnwf7SLbJRgwvfkNhspgiBdVRf0y2L8wtobbRgwNjU4vdViHGdCGyQs
+KDsSaJid3ctDIjIRKRf1XT1EvCqFG2GefdqNu7GGm9XhaaDdTpmkOw5OZfxLGRe/
+007G7d5C7ZFEGaEmOu/BqUTHEu4+8kQSgaaHiQdQ35Ix3mRSPy74/+qswekZueRR
+wTawNuI8e5mebdrZ4S5nne9oB+X5b6jdiiYsJ9v5K7Hk7PMwrE8=
+=encC
+-----END PGP SIGNATURE-----
diff --git a/wiki/src/upgrade/v1/Tails/3.13.3/amd64/stable/upgrades.yml b/wiki/src/upgrade/v1/Tails/3.13.3/amd64/stable/upgrades.yml
new file mode 100644
index 0000000000000000000000000000000000000000..89fd4242fb717b483d2c82e573fa040f167077c7
--- /dev/null
+++ b/wiki/src/upgrade/v1/Tails/3.13.3/amd64/stable/upgrades.yml
@@ -0,0 +1,5 @@
+---
+build-target: amd64
+channel: stable
+product-name: Tails
+product-version: 3.13.3
diff --git a/wiki/src/upgrade/v1/Tails/3.13.3/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v1/Tails/3.13.3/amd64/stable/upgrades.yml.pgp
new file mode 100644
index 0000000000000000000000000000000000000000..77173d4e29169d1830d62bb3bdee71aef28325ae
--- /dev/null
+++ b/wiki/src/upgrade/v1/Tails/3.13.3/amd64/stable/upgrades.yml.pgp
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAlzPmssACgkQqLD05Fsb
+UOKiKA/9Gdf6/zkdQ8bPx6HB6/zgXMj+z9PeL/a5yOG1Z+ZCucj5+8/0ySlOhcQf
+xbiMyg6Xut9sAqZu0hMWX6LfupGgXBjjLds7T54wsoaueLALIKrrw0Yyr+F/l19W
+rYZ7A33qWjM+3PZvAn+o/E3SOB3wc2ofQ1QYBlIcaGPGT+LXxDkJ0qaF2F065rBE
+IPzZHkJx2Hr8wK7aGMHPcx4mpFn0gCrvqEDGB0b00rN8PNIRQgTluyL4ZJIdvo3o
+ZvIOph5vwM+OafPrCyu+ws7IbcEtwFP1wWdhvM4cKlkhxVWKX3ogWT7NYWVN22jE
+oXGG8C0Z3WK9bkr/BewDsxTbxzV4/yaBLFeltpNFBYnxW0lXGZbAEn4g15jghED0
+QWUZb8zeer3FRltWje898xqfKF1H74HBYwB2Ubi93U0yPfZWxHa89oIIL+WU/4IB
+B5wKAXpgNpe6WKMb5xuPI05qZpdp4R+8o5qoonRag715PFEpCP7Cffyi+KEl/AQV
+m+VH94af+FpD4oyeVa7xnTzXt3sY1oVPap2kiGdKYfhbrNd7Urs7wqjU76bD4qo7
+JAGvtWOEutToAgG7nZmglR8B6YfTe+tVx1PBYlw2rJJV2gNjZ6dy7ppQs6Ekr9Eo
+UjDLrt4SAadQUgk5eMKn+24hVU5h9ALMEB+gwxBlB4p3pRUz+Jo=
+=gifO
+-----END PGP SIGNATURE-----
diff --git a/wiki/src/upgrade/v1/Tails/3.13/amd64/stable/upgrades.yml b/wiki/src/upgrade/v1/Tails/3.13/amd64/stable/upgrades.yml
index 7f8c8e03e2d12e33da85db0de8891058daf1db8b..28d2f2a56cd12bbd27eae7812f0165c5ee5b5abb 100644
--- a/wiki/src/upgrade/v1/Tails/3.13/amd64/stable/upgrades.yml
+++ b/wiki/src/upgrade/v1/Tails/3.13/amd64/stable/upgrades.yml
@@ -4,17 +4,17 @@ channel: stable
 product-name: Tails
 product-version: '3.13'
 upgrades:
-- details-url: https://tails.boum.org/news/version_3.13.1/
+- details-url: https://tails.boum.org/news/version_3.13.2/
   type: major
   upgrade-paths:
   - target-files:
-    - sha256: 4e6b37c588f33b05c6a6909b0182bd31ca02a04e9d5fb6feb296b6e8d287e177
-      size: 1225568256
-      url: http://dl.amnesia.boum.org/tails/stable/tails-amd64-3.13.1/tails-amd64-3.13.1.iso
+    - sha256: f02d8bc7ab8877d666cf3817bdcb600b8d88175c6af99b2ed8fae5334a4b5bd4
+      size: 1200891904
+      url: http://dl.amnesia.boum.org/tails/stable/tails-amd64-3.13.2/tails-amd64-3.13.2.iso
     type: full
   - target-files:
-    - sha256: 4aaa98413ab58d5d2747173260e2bdccbf8db7a65aa555aeed1bff75db216da1
-      size: 112865280
-      url: http://dl.amnesia.boum.org/tails/stable/iuk/Tails_amd64_3.13_to_3.13.1.iuk
+    - sha256: 1ab799ea4aaa5feaf49d96e9f3464c0200f443cd4b2079b1de6b8e139c2c4239
+      size: 303063040
+      url: http://dl.amnesia.boum.org/tails/stable/iuk/Tails_amd64_3.13_to_3.13.2.iuk
     type: incremental
-  version: 3.13.1
+  version: 3.13.2
diff --git a/wiki/src/upgrade/v1/Tails/3.13/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v1/Tails/3.13/amd64/stable/upgrades.yml.pgp
index b90140485cce3304f6394a416b31914a2cada8a6..11a172a6ddf3c697415b8f3a01aa57432863183b 100644
--- a/wiki/src/upgrade/v1/Tails/3.13/amd64/stable/upgrades.yml.pgp
+++ b/wiki/src/upgrade/v1/Tails/3.13/amd64/stable/upgrades.yml.pgp
@@ -1,7 +1,16 @@
 -----BEGIN PGP SIGNATURE-----
 
-iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCXJVbZQAKCRCQsrS9eu0j
-Xx6AAQD2Ll+P44pX9j3TOf9/s0W4ZTLB2sAzGcxtqgTKYrl/XgD8Dj5EHxvHJMyW
-TQEMyzdzQcZwVLqGi7LfN/kuFpghyQM=
-=P/by
+iQIzBAABCgAdFiEE/gKctKrUeI4deCjoqLD05FsbUOIFAlzPmtIACgkQqLD05Fsb
+UOIFDg//XwXqiu9Vl0priRIOjPQo7SJa/20HjuqeCKd3TzBi5V7NuKQQF/nH0cWW
+kyTMtOz4oSL6Lte7F9ChZXvdiDdJFq7ABxme8Duy1wiXzafYDzPO6mrK9rBky1Z3
+jbkL0DKicTKqqvaevoLoQaabDeRRx5l1AAgL8AV4I20WsuQ0OioebzDSSb4joPtd
+G5CZhL0jy8QKNEr8J7z+zZfql9Mqmty9TbXwx578OQX68gN6LkQ/HIwqdhsXzHqP
+lIvr5KApbfWk5tdPzkaxicFFQa30cfFlOR5pDJLDBtjI5KLcK0TvgOA1XRRU4Yno
+5ppv/SdxGZWAa2oi8Z3f0BLMGsMXDEItOySaC+qOBk0lKUfWdZL3i+TTDcdAHFjY
+5BGW8LxmhX09M8nMOc8AAIQ/XodHTgVfGXzrAqcfrDRFXrru+02dDsbaIw8YBigO
+B46ueznVHQxTumOGTIedzsoHYUlqaolpPlyDW1bazInyrrxKVpY6W3YHOG03NeXG
+Od0eF0qWlW68NHoSPtlfSLY3BZoaoC6B6yFGXlvdsqnS8N7q5c+LMJBy8NO8VxRP
+AvvQy8LfB8S4xKAv8eipzi1lULFQ1rIDRX4YdQuXOJJfNr/XWVzu0/hJFkDd2f8P
+DttVVmMVlq+Xoip/yBgDD2eqQpErglFJEkKKRxrWTOEjlx5bfUs=
+=2qTu
 -----END PGP SIGNATURE-----