summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2004-02-02 18:48:16 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2004-02-02 18:48:16 +0000
commit9fb6ab32e9cca926548d09aee2befafa31493077 (patch)
treec8bb3a6b86bb29b755f99a516ecf57908cbb62ed /perl-install
parent1e3d77e2749e8b5a52a5675d566203822f56f780 (diff)
downloaddrakx-backup-do-not-use-9fb6ab32e9cca926548d09aee2befafa31493077.tar
drakx-backup-do-not-use-9fb6ab32e9cca926548d09aee2befafa31493077.tar.gz
drakx-backup-do-not-use-9fb6ab32e9cca926548d09aee2befafa31493077.tar.bz2
drakx-backup-do-not-use-9fb6ab32e9cca926548d09aee2befafa31493077.tar.xz
drakx-backup-do-not-use-9fb6ab32e9cca926548d09aee2befafa31493077.zip
fix drakboot layout: use checkboxes own labels rather than packing extra
labels
Diffstat (limited to 'perl-install')
-rw-r--r--perl-install/any.pm12
1 files changed, 6 insertions, 6 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm
index ee0342b16..b9dd0ec5a 100644
--- a/perl-install/any.pm
+++ b/perl-install/any.pm
@@ -211,21 +211,21 @@ sub setupBootloader__general {
{ label => N("Bootloader installation"), val => \$b->{use_partition}, list => [ 0, 1 ], format => sub { $silo_install_lang[$_[0]] } },
) : if_(arch() !~ /ia64/,
{ label => N("Boot device"), val => \$b->{boot}, list => [ map { "/dev/$_" } (map { $_->{device} } (@{$all_hds->{hds}}, grep { !isFat_or_NTFS($_) } @$fstab)), detect_devices::floppies_dev() ], not_edit => !$::expert },
- { label => N("Compact"), val => \$b->{compact}, type => "bool", text => N("compact"), advanced => 1 },
+ { text => N("Compact"), val => \$b->{compact}, type => "bool", text => N("compact"), advanced => 1 },
{ label => N("Video mode"), val => \$b->{vga}, list => [ keys %bootloader::vga_modes ], not_edit => !$::expert, format => sub { $bootloader::vga_modes{$_[0]} }, advanced => 1 },
),
{ label => N("Delay before booting default image"), val => \$b->{timeout} },
- { label => N("Enable ACPI"), val => \$force_acpi, type => 'bool' },
- { label => N("Force No APIC"), val => \$force_noapic, type => 'bool' },
+ { text => N("Enable ACPI"), val => \$force_acpi, type => 'bool' },
+ { text => N("Force No APIC"), val => \$force_noapic, type => 'bool' },
if_($security >= 4 || $b->{password} || $b->{restricted},
{ label => N("Password"), val => \$b->{password}, hidden => 1 },
{ label => N("Password (again)"), val => \$b->{password2}, hidden => 1 },
- { label => N("Restrict command line options"), val => \$b->{restricted}, type => "bool", text => N("restrict") },
+ { text => N("Restrict command line options"), val => \$b->{restricted}, type => "bool", text => N("restrict") },
),
- { label => N("Clean /tmp at each boot"), val => \$clean_tmp, type => 'bool', advanced => 1 },
+ { text => N("Clean /tmp at each boot"), val => \$clean_tmp, type => 'bool', advanced => 1 },
{ label => N("Precise RAM size if needed (found %d MB)", availableRamMB()), val => \$memsize, advanced => 1 },
if_(detect_devices::isLaptop(),
- { label => N("Enable multiple profiles"), val => \$profiles, type => 'bool', advanced => 1 },
+ { text => N("Enable multiple profiles"), val => \$profiles, type => 'bool', advanced => 1 },
),
],
complete => sub {