diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-08-19 23:06:47 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-08-19 23:06:47 +0000 |
commit | c2140930b7392193bc6da6d1796fcc4580638dca (patch) | |
tree | 59251848745f03446b0b0cefe16435b873fcd938 /perl-install | |
parent | c8ff21c4b74246771574d2e2fbd62e53c146cf54 (diff) | |
download | drakx-c2140930b7392193bc6da6d1796fcc4580638dca.tar drakx-c2140930b7392193bc6da6d1796fcc4580638dca.tar.gz drakx-c2140930b7392193bc6da6d1796fcc4580638dca.tar.bz2 drakx-c2140930b7392193bc6da6d1796fcc4580638dca.tar.xz drakx-c2140930b7392193bc6da6d1796fcc4580638dca.zip |
do translate choices N_("Yes"), N_("No"), N_("See hardware info")
(thanks to Arpad Biro)
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/modules/interactive.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/modules/interactive.pm b/perl-install/modules/interactive.pm index 3acc1bfa2..c746e1f02 100644 --- a/perl-install/modules/interactive.pm +++ b/perl-install/modules/interactive.pm @@ -62,7 +62,7 @@ sub load_category__prompt_for_more { $in->ask_from_({ messages => $msg, if_($category =~ m|disk/scsi|, interactive_help_id => 'setupSCSI'), }, - [ { list => [ N_("Yes"), N_("No"), N_("See hardware info") ], val => \$r, type => 'list' } ]); + [ { list => [ N_("Yes"), N_("No"), N_("See hardware info") ], val => \$r, type => 'list', format => \&translate } ]); if ($r eq "No") { return @l } if ($r eq "Yes") { push @l, load_category__prompt($in, $category) || next; |