From 5e3eb914b5cfe9ce164c37d2cc69a2848332c2c4 Mon Sep 17 00:00:00 2001 From: Guillaume Cottenceau Date: Tue, 18 Sep 2001 17:35:50 +0000 Subject: have "manual" and "replay" translated --- perl-install/standalone/drakautoinst | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'perl-install/standalone/drakautoinst') diff --git a/perl-install/standalone/drakautoinst b/perl-install/standalone/drakautoinst index 2cb665b6c..11bbbd150 100755 --- a/perl-install/standalone/drakautoinst +++ b/perl-install/standalone/drakautoinst @@ -63,7 +63,7 @@ my $st = \%steps::installSteps; for (my $f = $st->{first}; $f; $f = $st->{$f}{next}) { next if member($f, @manual_steps); my $def_choice = 'replay'; - push @choices, { label => _($st->{$f}{text}), val => \$def_choice, list => [ 'replay', 'manual' ] }; + push @choices, { label => _($st->{$f}{text}), val => \$def_choice, list => [ _('replay'), _('manual') ] }; push @all_steps, [ $f, \$def_choice ]; } @@ -72,7 +72,7 @@ $in->ask_from(_("Automatic Steps Configuration"), \@choices ) or quit_global($in, 0); -${$_->[1]} eq 'manual' and push @manual_steps, $_->[0] foreach @all_steps; +${$_->[1]} eq _('manual') and push @manual_steps, $_->[0] foreach @all_steps; my $mountdir = "/root/tmp/drakautoinst-mountdir"; -d $mountdir or mkdir $mountdir, 0755; my $floppy = detect_devices::floppy(); @@ -125,6 +125,9 @@ sub quit_global { #------------------------------------------------- #- $Log$ +#- Revision 1.7 2001/09/18 17:35:50 gc +#- have "manual" and "replay" translated +#- #- Revision 1.6 2001/09/14 17:30:23 siegel #- Check exisence of "/root/replay_install.img" before anything else ... #- -- cgit v1.2.1