diff --git a/config/chroot_local-includes/usr/local/sbin/tails-restricted-network-detector b/config/chroot_local-includes/usr/local/sbin/tails-restricted-network-detector
index 874b60e4c83ebe2a989dbd78d8d71b24088ce074..9dc0f18b51d44b769867cbd03809d5b5f07d107f 100755
--- a/config/chroot_local-includes/usr/local/sbin/tails-restricted-network-detector
+++ b/config/chroot_local-includes/usr/local/sbin/tails-restricted-network-detector
@@ -39,8 +39,9 @@ sub notify_maybe_blocked {
my $body = $encoding->decode(gettext(
'It looks like you are blocked from the network. This may be ' .
'related to the MAC spoofing feature. For more information, see the ' .
- 'MAC spoofing documentation.'));
+ 'MAC spoofing ' .
+ 'documentation.'));
# We can't use Desktop::Notify since this script is supposed to be run
# as root (for access to syslog), started in an env without DESKTOP etc,
# which also causes issues with opening links in the text body.
diff --git a/config/chroot_local-includes/usr/local/sbin/tails-spoof-mac b/config/chroot_local-includes/usr/local/sbin/tails-spoof-mac
index a96b9d1ade727b6c290f6c72be51e48b8047e23a..b9b58fe04e9282f6d337415de9d00bbc4cf76970 100755
--- a/config/chroot_local-includes/usr/local/sbin/tails-spoof-mac
+++ b/config/chroot_local-includes/usr/local/sbin/tails-spoof-mac
@@ -26,7 +26,7 @@ notify_panic_success() {
local nic_name
nic="${1}"
nic_name="${2}"
- show_notification "`gettext \"MAC spoofing failure!\"`" "`eval_gettext \"MAC spoofing failed for network device '\\\${nic_name}' (\\\${nic}). The device has been disabled to prevent it from leaking your geographical location. For more information, see the documentation.\"`"
+ show_notification "`gettext \"MAC spoofing failure!\"`" "`eval_gettext \"MAC spoofing failed for network device '\\\${nic_name}' (\\\${nic}). The device has been disabled to prevent it from leaking your geographical location. For more information, see the documentation.\"`"
}
notify_panic_failure() {
@@ -34,7 +34,7 @@ notify_panic_failure() {
local nic_name
nic="${1}"
nic_name="${2}"
- show_notification "`gettext \"MAC spoofing failure!\"`" "`eval_gettext \"MAC spoofing failed for network device '\\\${nic_name}' (\\\${nic}). Because of failures when trying to disable the device, networking has been completely disabled instead. For more information, see the documentation.\"`"
+ show_notification "`gettext \"MAC spoofing failure!\"`" "`eval_gettext \"MAC spoofing failed for network device '\\\${nic_name}' (\\\${nic}). Because of failures when trying to disable the device, networking has been completely disabled instead. For more information, see the documentation.\"`"
}
mac_spoof_panic() {