diff options
author | Thierry Vignaud <tv@mandriva.org> | 2007-08-09 16:34:15 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2007-08-09 16:34:15 +0000 |
commit | dcd0d1426d5eb0dbc63a901f90576ea3d56fb995 (patch) | |
tree | 60039904c15777d0245a2dc398048edc2f3aef2a /perl-install | |
parent | 3b29f9c55564c106f0b63054d63ec752e724d1a5 (diff) | |
download | drakx-dcd0d1426d5eb0dbc63a901f90576ea3d56fb995.tar drakx-dcd0d1426d5eb0dbc63a901f90576ea3d56fb995.tar.gz drakx-dcd0d1426d5eb0dbc63a901f90576ea3d56fb995.tar.bz2 drakx-dcd0d1426d5eb0dbc63a901f90576ea3d56fb995.tar.xz drakx-dcd0d1426d5eb0dbc63a901f90576ea3d56fb995.zip |
(partitionWizardSolutions) add missing title
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/fs/partitioning_wizard.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fs/partitioning_wizard.pm b/perl-install/fs/partitioning_wizard.pm index 8e1404494..067e47a8c 100644 --- a/perl-install/fs/partitioning_wizard.pm +++ b/perl-install/fs/partitioning_wizard.pm @@ -164,7 +164,7 @@ Be careful: this operation is dangerous. If you have not already done so, you fi When sure, press %s.", N("Next")))) or return; my $mb_size = to_Mb($part->{size}); - $in->ask_from('', N("Which size do you want to keep for Microsoft Windows® on partition %s?", partition_table::description($part)), [ + $in->ask_from(N("Partitionning"), N("Which size do you want to keep for Microsoft Windows® on partition %s?", partition_table::description($part)), [ { label => N("Size"), val => \$mb_size, min => to_Mb($min_win), max => to_Mb($part->{size} - $min_linux - $min_swap), type => 'range' }, ]) or return; |