diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2014-01-19 17:05:54 +0100 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2014-01-19 17:05:54 +0100 |
commit | 972ac98bcd891bf6f7eda1b3462a13726bc6a8e2 (patch) | |
tree | 36de9e9401079c3deff323774c32a981790efee1 | |
parent | 97398293111523cde848b32a41811ab5b8fb5df7 (diff) | |
download | drakguard-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-- | NEWS | 2 | ||||
-rwxr-xr-x | bin/drakguard | 4 |
2 files changed, 4 insertions, 2 deletions
@@ -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 } } |