From 9fb6ab32e9cca926548d09aee2befafa31493077 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Mon, 2 Feb 2004 18:48:16 +0000 Subject: fix drakboot layout: use checkboxes own labels rather than packing extra labels --- perl-install/any.pm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'perl-install') 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 { -- cgit v1.2.1