diff options
author | Stefan Siegel <siegel@linux-mandrake.com> | 2001-09-15 16:51:12 +0000 |
---|---|---|
committer | Stefan Siegel <siegel@linux-mandrake.com> | 2001-09-15 16:51:12 +0000 |
commit | bae3cdee94703efb04cb3acca0242df9bd26cc5a (patch) | |
tree | 2ea277cb3191e42cc3ec05ee294824f109f679bd /perl-install/standalone | |
parent | df2df4ab7803ee9d0e6986d12f5791c038f01373 (diff) | |
download | drakx-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/standalone')
-rwxr-xr-x | perl-install/standalone/draksec | 6 |
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.") } ) ] )) { |