summaryrefslogtreecommitdiffstats
path: root/perl-install/install/steps_gtk.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2007-08-14 09:10:08 +0000
committerThierry Vignaud <tv@mandriva.org>2007-08-14 09:10:08 +0000
commitecda8e2422b223d015dddff46cae64ef08d0ee28 (patch)
treed4836650018e9f79674a540f0eba829d064e2bdc /perl-install/install/steps_gtk.pm
parentcc16ccfa1133afea66400c387b5c436419593b27 (diff)
downloaddrakx-backup-do-not-use-ecda8e2422b223d015dddff46cae64ef08d0ee28.tar
drakx-backup-do-not-use-ecda8e2422b223d015dddff46cae64ef08d0ee28.tar.gz
drakx-backup-do-not-use-ecda8e2422b223d015dddff46cae64ef08d0ee28.tar.bz2
drakx-backup-do-not-use-ecda8e2422b223d015dddff46cae64ef08d0ee28.tar.xz
drakx-backup-do-not-use-ecda8e2422b223d015dddff46cae64ef08d0ee28.zip
(enteringStep) set default banner's icon & title per install step in order to
have better default banner's title & icon
Diffstat (limited to 'perl-install/install/steps_gtk.pm')
-rw-r--r--perl-install/install/steps_gtk.pm19
1 files changed, 19 insertions, 0 deletions
diff --git a/perl-install/install/steps_gtk.pm b/perl-install/install/steps_gtk.pm
index cc1b9e459..f9c508ba5 100644
--- a/perl-install/install/steps_gtk.pm
+++ b/perl-install/install/steps_gtk.pm
@@ -149,10 +149,29 @@ sub new($$) {
$o;
}
+# (icon, title)
+my %default_step_items = (
+ acceptLicense => [ 'banner-license', N("License agreement") ],
+ selectLanguage => [ 'banner-languages', N("Localization") ],
+ selectKeyboard => [ 'banner-languages', N("Localization") ],
+ doPartitionDisksBefore => [ 'banner-part', N("Partitioning") ],
+ doPartitionDisks => [ 'banner-part', N("Partitioning") ],
+ selectInstallClass => [ 'banner-sys', N("_: Keep these entry short\nInstallation class") ],
+ chooseGroups => [ 'banner-sys', N("Package Group Selection") ],
+ installPackages => [ 'banner-sys', N("Installing") ],
+ summary => [ 'banner-summary', N("Summary") ],
+ auth => [ 'banner-pw', N("Authentication") ],
+ setupBootloaderBefore => [ 'banner-bootL', N("_: Keep these entry short\nBootloader") ],
+ setupBootloader => [ 'banner-bootL', N("_: Keep these entry short\nBootloader") ],
+ installUpdates => [ 'banner-update', N("Updates") ],
+ exitInstall => [ 'banner-exit', N("Exit") ],
+);
+
sub enteringStep {
my ($o, $step) = @_;
printf "Entering step `%s'\n", common::remove_translate_context($o->{steps}{$step}{text});
+ ugtk2::set_default_step_items(@{$default_step_items{$step}}) if $default_step_items{$step};
$o->SUPER::enteringStep($step);
install::gtk::update_steps_position($o);
}