summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <thierry.vignaud@gmail.com>2014-01-19 17:05:54 +0100
committerThierry Vignaud <thierry.vignaud@gmail.com>2014-01-19 17:05:54 +0100
commit972ac98bcd891bf6f7eda1b3462a13726bc6a8e2 (patch)
tree36de9e9401079c3deff323774c32a981790efee1
parent97398293111523cde848b32a41811ab5b8fb5df7 (diff)
downloaddrakguard-972ac98bcd891bf6f7eda1b3462a13726bc6a8e2.tar
drakguard-972ac98bcd891bf6f7eda1b3462a13726bc6a8e2.tar.gz
drakguard-972ac98bcd891bf6f7eda1b3462a13726bc6a8e2.tar.bz2
drakguard-972ac98bcd891bf6f7eda1b3462a13726bc6a8e2.tar.xz
drakguard-972ac98bcd891bf6f7eda1b3462a13726bc6a8e2.zip
add missing spaces (mga#2583)
-rw-r--r--NEWS2
-rwxr-xr-xbin/drakguard4
2 files changed, 4 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 81561f4..a69925a 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,5 @@
+- add missing spaces (mga#2583)
+
1.1
- force label wrapping (mga#12358)
- translations updates
diff --git a/bin/drakguard b/bin/drakguard
index 759a60c..d3ed8bd 100755
--- a/bin/drakguard
+++ b/bin/drakguard
@@ -309,13 +309,13 @@ if (cat_('/boot/config') =~ /_FS_POSIX_ACL=y/ && grep { $_ && !/acl/ && !/^#/ &
# remount filesystem with acl parameter
}
$acl_active = 0;
- $in->ask_warn(N("Warning"), N("The support for Access Control Lists was enabled.") . N("It is necessary to restart your computer to activate it."));
+ $in->ask_warn(N("Warning"), N("The support for Access Control Lists was enabled.") . "\n" . N("It is necessary to restart your computer to activate it."));
}
}
else {
my @mount = `mount`;
if (grep { !/,acl/ && m/ext[23]|reiserfs/ } @mount) {
- $in->ask_warn(N("Warning"), N("The support for Access Control Lists, required by the Block programs feature, is enabled, but not yet activated.") . N("It is necessary to restart your computer to activate it."), $acl_active = 0);
+ $in->ask_warn(N("Warning"), N("The support for Access Control Lists, required by the Block programs feature, is enabled, but not yet activated.") . "\n" . N("It is necessary to restart your computer to activate it."), $acl_active = 0);
} else {
$acl_active = 1 }
}