summaryrefslogtreecommitdiffstats
path: root/perl-install/modules
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2003-08-19 23:06:47 +0000
committerPascal Rigaux <pixel@mandriva.com>2003-08-19 23:06:47 +0000
commitc2140930b7392193bc6da6d1796fcc4580638dca (patch)
tree59251848745f03446b0b0cefe16435b873fcd938 /perl-install/modules
parentc8ff21c4b74246771574d2e2fbd62e53c146cf54 (diff)
downloaddrakx-backup-do-not-use-c2140930b7392193bc6da6d1796fcc4580638dca.tar
drakx-backup-do-not-use-c2140930b7392193bc6da6d1796fcc4580638dca.tar.gz
drakx-backup-do-not-use-c2140930b7392193bc6da6d1796fcc4580638dca.tar.bz2
drakx-backup-do-not-use-c2140930b7392193bc6da6d1796fcc4580638dca.tar.xz
drakx-backup-do-not-use-c2140930b7392193bc6da6d1796fcc4580638dca.zip
do translate choices N_("Yes"), N_("No"), N_("See hardware info")
(thanks to Arpad Biro)
Diffstat (limited to 'perl-install/modules')
-rw-r--r--perl-install/modules/interactive.pm2
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;