summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
authorStefan Siegel <siegel@linux-mandrake.com>2001-09-15 16:51:12 +0000
committerStefan Siegel <siegel@linux-mandrake.com>2001-09-15 16:51:12 +0000
commitbae3cdee94703efb04cb3acca0242df9bd26cc5a (patch)
tree2ea277cb3191e42cc3ec05ee294824f109f679bd /perl-install
parentdf2df4ab7803ee9d0e6986d12f5791c038f01373 (diff)
downloaddrakx-backup-do-not-use-bae3cdee94703efb04cb3acca0242df9bd26cc5a.tar
drakx-backup-do-not-use-bae3cdee94703efb04cb3acca0242df9bd26cc5a.tar.gz
drakx-backup-do-not-use-bae3cdee94703efb04cb3acca0242df9bd26cc5a.tar.bz2
drakx-backup-do-not-use-bae3cdee94703efb04cb3acca0242df9bd26cc5a.tar.xz
drakx-backup-do-not-use-bae3cdee94703efb04cb3acca0242df9bd26cc5a.zip
use " instead of ' to get i18n
Diffstat (limited to 'perl-install')
-rwxr-xr-xperl-install/standalone/draksec6
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/standalone/draksec b/perl-install/standalone/draksec
index 231b19a82..7228e232e 100755
--- a/perl-install/standalone/draksec
+++ b/perl-install/standalone/draksec
@@ -62,10 +62,10 @@ $libsafe = $h{LIBSAFE} =~ /yes/i;
if ($in->ask_from('', _("Choose security level") . "\n\n" .
join('', map { "$l{$_}: $help{$_}\n\n" } keys %l),
[
- { label => _('Security level'), val => \$level, list => [ (values %l) ] },
+ { label => _("Security level"), val => \$level, list => [ (values %l) ] },
if_(pkgs_interactive::is_installed('libsafe') && arch() =~ /^i.86/,
- { label => _('Use libsafe for servers'), val => \$libsafe, type => 'bool', text =>
- _('A library which defends against buffer overflow and format string attacks.') }
+ { label => _("Use libsafe for servers"), val => \$libsafe, type => 'bool', text =>
+ _("A library which defends against buffer overflow and format string attacks.") }
)
]
)) {