diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2001-09-18 17:35:50 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2001-09-18 17:35:50 +0000 |
commit | 5e3eb914b5cfe9ce164c37d2cc69a2848332c2c4 (patch) | |
tree | 0f9606275c7a32fa86f192a568f48482b3d554ba /perl-install/standalone/drakautoinst | |
parent | 8d89d76d2ea24f088b943c420ef71a1ca0a0acb5 (diff) | |
download | drakx-backup-do-not-use-5e3eb914b5cfe9ce164c37d2cc69a2848332c2c4.tar drakx-backup-do-not-use-5e3eb914b5cfe9ce164c37d2cc69a2848332c2c4.tar.gz drakx-backup-do-not-use-5e3eb914b5cfe9ce164c37d2cc69a2848332c2c4.tar.bz2 drakx-backup-do-not-use-5e3eb914b5cfe9ce164c37d2cc69a2848332c2c4.tar.xz drakx-backup-do-not-use-5e3eb914b5cfe9ce164c37d2cc69a2848332c2c4.zip |
have "manual" and "replay" translated
Diffstat (limited to 'perl-install/standalone/drakautoinst')
-rwxr-xr-x | perl-install/standalone/drakautoinst | 7 |
1 files changed, 5 insertions, 2 deletions
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 ... #- |