diff options
author | Pablo Saratxaga <pablo@mandriva.com> | 2002-08-06 00:51:10 +0000 |
---|---|---|
committer | Pablo Saratxaga <pablo@mandriva.com> | 2002-08-06 00:51:10 +0000 |
commit | 38484acd48eaa17770a6c8960736aeab28fe16bb (patch) | |
tree | 2a6d7ab4d1c1b315bc3be122d397660eed5436ab | |
parent | a5b4d025329e10fc08f5984177afd077ad7b3fac (diff) | |
download | drakx-backup-do-not-use-38484acd48eaa17770a6c8960736aeab28fe16bb.tar drakx-backup-do-not-use-38484acd48eaa17770a6c8960736aeab28fe16bb.tar.gz drakx-backup-do-not-use-38484acd48eaa17770a6c8960736aeab28fe16bb.tar.bz2 drakx-backup-do-not-use-38484acd48eaa17770a6c8960736aeab28fe16bb.tar.xz drakx-backup-do-not-use-38484acd48eaa17770a6c8960736aeab28fe16bb.zip |
Put _() around two strings in security level choosing
-rw-r--r-- | perl-install/any.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm index d01bafa02..2420e6979 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -1096,8 +1096,8 @@ connections from many clients. Note: if your machine is only a client on the Int delete $l{5} if !$::expert; $in->ask_from( - ("DrakSec Basic Options"), - ("Please choose the desired security level") . "\n\n" . + _("DrakSec Basic Options"), + _("Please choose the desired security level") . "\n\n" . join('', map { "$l{$_}: " . formatAlaTeX($help{$_}) . "\n\n" } keys %l), [ { label => _("Security level"), val => $security, list => [ sort keys %l ], format => sub { $l{$_} } }, |