summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps_interactive.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2005-11-29 11:23:28 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2005-11-29 11:23:28 +0000
commit18a4f1eb99e5644805fd617e0db6072ddca9b722 (patch)
tree572f55f6e4d648fc1e24edc109a7ef5814607ffc /perl-install/install_steps_interactive.pm
parent289d752cbb02fd99408abdbd280e9e833b5a7c0a (diff)
downloaddrakx-backup-do-not-use-18a4f1eb99e5644805fd617e0db6072ddca9b722.tar
drakx-backup-do-not-use-18a4f1eb99e5644805fd617e0db6072ddca9b722.tar.gz
drakx-backup-do-not-use-18a4f1eb99e5644805fd617e0db6072ddca9b722.tar.bz2
drakx-backup-do-not-use-18a4f1eb99e5644805fd617e0db6072ddca9b722.tar.xz
drakx-backup-do-not-use-18a4f1eb99e5644805fd617e0db6072ddca9b722.zip
set title & icon of banner for most partitionning steps
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r--perl-install/install_steps_interactive.pm4
1 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm
index ec0b47af0..cfb10ef2f 100644
--- a/perl-install/install_steps_interactive.pm
+++ b/perl-install/install_steps_interactive.pm
@@ -275,6 +275,8 @@ sub ask_mntpoint_s { #- }{}
$fstab[0]{mntpoint} = '/';
} else {
$o->ask_from_({ messages => N("Choose the mount points"),
+ title => N("Partitioning"),
+ icon => 'banner-part',
interactive_help_id => 'ask_mntpoint_s',
callbacks => {
complete => sub {
@@ -337,7 +339,7 @@ sub doPartitionDisks {
#------------------------------------------------------------------------------
sub rebootNeeded {
my ($o) = @_;
- $o->ask_warn('', N("You need to reboot for the partition table modifications to take place"));
+ $o->ask_warn(N("Partitionning"), N("You need to reboot for the partition table modifications to take place"), icon => 'banner-part');
install_steps::rebootNeeded($o);
}