summaryrefslogtreecommitdiffstats
path: root/perl-install/steps.pm
diff options
context:
space:
mode:
authordamien <damien@mandriva.com>2001-08-28 15:04:44 +0000
committerdamien <damien@mandriva.com>2001-08-28 15:04:44 +0000
commit690e1d3ee04ff3a3db642e808ea07e2b092077e8 (patch)
treec85085e4cf8890da0d98b93ed9009831132e3de0 /perl-install/steps.pm
parent2c349adbcc5062aed193dacda8a9cf65e497adef (diff)
downloaddrakx-backup-do-not-use-690e1d3ee04ff3a3db642e808ea07e2b092077e8.tar
drakx-backup-do-not-use-690e1d3ee04ff3a3db642e808ea07e2b092077e8.tar.gz
drakx-backup-do-not-use-690e1d3ee04ff3a3db642e808ea07e2b092077e8.tar.bz2
drakx-backup-do-not-use-690e1d3ee04ff3a3db642e808ea07e2b092077e8.tar.xz
drakx-backup-do-not-use-690e1d3ee04ff3a3db642e808ea07e2b092077e8.zip
new icons
Diffstat (limited to 'perl-install/steps.pm')
-rw-r--r--perl-install/steps.pm12
1 files changed, 6 insertions, 6 deletions
diff --git a/perl-install/steps.pm b/perl-install/steps.pm
index 07c23bf50..2efaeccf3 100644
--- a/perl-install/steps.pm
+++ b/perl-install/steps.pm
@@ -11,27 +11,27 @@ use common;
my @installStepsFields = qw(text redoable onError hidden needs icon);
#entered reachable toBeDone next done;
my @installSteps = (
- selectLanguage => [ __("Choose your language"), 1, 1, '', '', '' ],
+ selectLanguage => [ __("Choose your language"), 1, 1, '', '', 'language' ],
selectInstallClass => [ __("Select installation class"), 1, 1, '', '', '' ],
setupSCSI => [ __("Hard drive detection"), 1, 0, '', '', 'harddrive' ],
selectMouse => [ __("Configure mouse"), 1, 1, '', "selectInstallClass", 'mouse' ],
selectKeyboard => [ __("Choose your keyboard"), 1, 1, '', "selectInstallClass", 'keyboard' ],
miscellaneous => [ __("Security"), 1, 1, '!$::expert', '', 'security' ],
- doPartitionDisks => [ __("Setup filesystems"), 1, 0, '', "selectInstallClass", '' ],
- formatPartitions => [ __("Format partitions"), 1, -1, '$o->{isUpgrade}', "doPartitionDisks", '' ],
- choosePackages => [ __("Choose packages to install"), 1, -2, '!$::expert', "formatPartitions", '' ],
+ doPartitionDisks => [ __("Setup filesystems"), 1, 0, '', "selectInstallClass", 'partition' ],
+ formatPartitions => [ __("Format partitions"), 1, -1, '$o->{isUpgrade}', "doPartitionDisks", 'partition' ],
+ choosePackages => [ __("Choose packages to install"), 1, -2, '!$::expert', "formatPartitions", 'partition' ],
installPackages => [ __("Install system"), 1, -1, '', ["formatPartitions", "selectInstallClass"], '' ],
setRootPassword => [ __("Set root password"), 1, 1, '', "installPackages", 'rootpasswd' ],
addUser => [ __("Add a user"), 1, 1, '', "installPackages", 'user' ],
configureNetwork => [ __("Configure networking"), 1, 1, '', "formatPartitions", 'network' ],
- summary => [ __("Summary"), 1, 0, '', "installPackages", '' ],
+ summary => [ __("Summary"), 1, 0, '', "installPackages", 'summary' ],
configureServices => [ __("Configure services"), 1, 1, '!$::expert', "installPackages", 'services' ],
if_((arch() !~ /alpha/) && (arch() !~ /ppc/),
createBootdisk => [ __("Create a bootdisk"), 1, 0, '', "installPackages", 'bootdisk' ],
),
setupBootloader => [ __("Install bootloader"), 1, 1, '', "installPackages", 'bootloader' ],
configureX => [ __("Configure X"), 1, 1, '', ["formatPartitions", "setupBootloader"], 'X' ],
- exitInstall => [ __("Exit install"), 0, 0, '!$::expert && !$::live', '', '' ],
+ exitInstall => [ __("Exit install"), 0, 0, '!$::expert && !$::live', '', 'exit' ],
);
for (my $i = 0; $i < @installSteps; $i += 2) {
my %h; @h{@installStepsFields} = @{ $installSteps[$i + 1] };