diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2005-08-27 03:40:55 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2005-08-27 03:40:55 +0000 |
commit | ae2d143860cc759166784c2d11c9acc2de0a4211 (patch) | |
tree | f7a23a74aed2de36ba627166e946e2ff9c83426e /perl-install/any.pm | |
parent | caa4e01ea7ce33370a842d302b46157c77fece58 (diff) | |
download | drakx-ae2d143860cc759166784c2d11c9acc2de0a4211.tar drakx-ae2d143860cc759166784c2d11c9acc2de0a4211.tar.gz drakx-ae2d143860cc759166784c2d11c9acc2de0a4211.tar.bz2 drakx-ae2d143860cc759166784c2d11c9acc2de0a4211.tar.xz drakx-ae2d143860cc759166784c2d11c9acc2de0a4211.zip |
fill in missing titles for banners and specify icons
Diffstat (limited to 'perl-install/any.pm')
-rw-r--r-- | perl-install/any.pm | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm index 3afd3275e..a30487992 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -267,6 +267,8 @@ sub setupBootloader__general { $::Wizard_title = N("Boot Style Configuration"); if (arch() !~ /ppc/) { $in->ask_from_({ messages => N("Bootloader main options"), + title => N("Bootloader main options"), + icon => 'banner-bootL', interactive_help_id => 'setupBootloader', callbacks => { complete => sub { @@ -299,6 +301,8 @@ sub setupBootloader__general { } else { $b->{boot} = $partition_table::mac::bootstrap_part; $in->ask_from_({ messages => N("Bootloader main options"), + title => N("Bootloader main options"), + icon => 'banner-bootL', interactive_help_id => 'setupYabootGeneral', }, [ { label => N("Bootloader to use"), val => \$b->{method}, list => \@method_choices, format => \&bootloader::method2text }, @@ -623,6 +627,7 @@ sub ask_user_one { }; my $ret = $in->ask_from_( { title => N("Add user"), + icon => 'banner-adduser', messages => N("Enter a user\n%s", $options{additional_msg} || $names), interactive_help_id => 'addUser', focus_first => 1, @@ -711,6 +716,7 @@ sub selectLanguage_install { my $common = { messages => N("Please choose a language to use."), title => N("Language choice"), + icon => 'banner-languages.png', interactive_help_id => 'selectLanguage' }; my $lang = $locale->{lang}; @@ -830,6 +836,7 @@ sub selectCountry { $in->ask_from_( { title => N("Country / Region"), + icon => 'banner-languages', messages => N("Please choose your country."), interactive_help_id => 'selectCountry', if_(@best, advanced_messages => N("Here is the full list of available countries")), |