diff options
author | damien <damien@mandriva.com> | 2001-08-25 11:50:26 +0000 |
---|---|---|
committer | damien <damien@mandriva.com> | 2001-08-25 11:50:26 +0000 |
commit | d57406ae8c7c87553e81ca414ac39f03da9c6d51 (patch) | |
tree | 70cd1d7f7d04ef9c25f6d4489bdfd2f099f5b989 /perl-install/steps.pm | |
parent | 691b2956a846459d2dc0092190c1aedcc6e70571 (diff) | |
download | drakx-d57406ae8c7c87553e81ca414ac39f03da9c6d51.tar drakx-d57406ae8c7c87553e81ca414ac39f03da9c6d51.tar.gz drakx-d57406ae8c7c87553e81ca414ac39f03da9c6d51.tar.bz2 drakx-d57406ae8c7c87553e81ca414ac39f03da9c6d51.tar.xz drakx-d57406ae8c7c87553e81ca414ac39f03da9c6d51.zip |
icon correction
Diffstat (limited to 'perl-install/steps.pm')
-rw-r--r-- | perl-install/steps.pm | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/perl-install/steps.pm b/perl-install/steps.pm index 9fca2354f..07c23bf50 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, '', '', 'default' ], - selectInstallClass => [ __("Select installation class"), 1, 1, '', '', 'default' ], + selectLanguage => [ __("Choose your language"), 1, 1, '', '', '' ], + 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", 'default' ], - formatPartitions => [ __("Format partitions"), 1, -1, '$o->{isUpgrade}', "doPartitionDisks", 'default' ], - choosePackages => [ __("Choose packages to install"), 1, -2, '!$::expert', "formatPartitions", 'default' ], + doPartitionDisks => [ __("Setup filesystems"), 1, 0, '', "selectInstallClass", '' ], + formatPartitions => [ __("Format partitions"), 1, -1, '$o->{isUpgrade}', "doPartitionDisks", '' ], + choosePackages => [ __("Choose packages to install"), 1, -2, '!$::expert', "formatPartitions", '' ], 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", 'default' ], + summary => [ __("Summary"), 1, 0, '', "installPackages", '' ], 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', '', 'default' ], + exitInstall => [ __("Exit install"), 0, 0, '!$::expert && !$::live', '', '' ], ); for (my $i = 0; $i < @installSteps; $i += 2) { my %h; @h{@installStepsFields} = @{ $installSteps[$i + 1] }; |