diff options
author | Thierry Vignaud <tv@mandriva.org> | 2008-08-27 18:09:49 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2008-08-27 18:09:49 +0000 |
commit | 98826606f804f5e4497beb7aa584c24264964c89 (patch) | |
tree | 59da893afd5ae2827ff0887a9cc0fb632f952673 | |
parent | 3fae969df8c8805dd9cfa8701d63cfd1bd4b1a4c (diff) | |
download | drakx-98826606f804f5e4497beb7aa584c24264964c89.tar drakx-98826606f804f5e4497beb7aa584c24264964c89.tar.gz drakx-98826606f804f5e4497beb7aa584c24264964c89.tar.bz2 drakx-98826606f804f5e4497beb7aa584c24264964c89.tar.xz drakx-98826606f804f5e4497beb7aa584c24264964c89.zip |
(selectInstallClass) make title be blue
-rw-r--r-- | perl-install/install/steps_interactive.pm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/perl-install/install/steps_interactive.pm b/perl-install/install/steps_interactive.pm index 1d83b3b8b..a3f2a481b 100644 --- a/perl-install/install/steps_interactive.pm +++ b/perl-install/install/steps_interactive.pm @@ -133,10 +133,11 @@ sub selectInstallClass { askInstallClass: my $p; $o->ask_from_({ title => N("Install/Upgrade"), - messages => N("Is this an install or an upgrade?"), interactive_help_id => 'selectInstallClass', }, - [ { val => \$p, + [ + { label => N("Is this an install or an upgrade?"), title => 1 }, + { val => \$p, list => [ @l, N_("_: This is a noun:\nInstall") ], type => 'list', format => sub { ref($_[0]) ? N("Upgrade %s", $_[0]{release}) : translate($_[0]) } |