summaryrefslogtreecommitdiffstats
path: root/pxe_wizard
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2004-01-22 19:29:16 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2004-01-22 19:29:16 +0000
commit608043603a6c3ca2819811d814a4e124fa933409 (patch)
tree559f6595a743bfbd91e6ae98bfd7d883217070cd /pxe_wizard
parent9a32a8c5335f78e8680debd90949893a92cb981b (diff)
downloaddrakwizard-608043603a6c3ca2819811d814a4e124fa933409.tar
drakwizard-608043603a6c3ca2819811d814a4e124fa933409.tar.gz
drakwizard-608043603a6c3ca2819811d814a4e124fa933409.tar.bz2
drakwizard-608043603a6c3ca2819811d814a4e124fa933409.tar.xz
drakwizard-608043603a6c3ca2819811d814a4e124fa933409.zip
upcase acpi and apic
Diffstat (limited to 'pxe_wizard')
-rw-r--r--pxe_wizard/Pxe.pm12
1 files changed, 6 insertions, 6 deletions
diff --git a/pxe_wizard/Pxe.pm b/pxe_wizard/Pxe.pm
index 9927139f..9a3125df 100644
--- a/pxe_wizard/Pxe.pm
+++ b/pxe_wizard/Pxe.pm
@@ -160,13 +160,13 @@ $o->{pages} = {
next => 'gomodify2',
},
gomodify2 => {
- name => N("Network client interface: through wich interface client should be installed.") . "\n" . N("Ramsize: adjust ramsize on boot disk.") . "\n" . N("VGA option: if you encounter some problem whith VGA, please adjust. ") . "\n" . N("Acpi option: Advanced Configuration and Power Interface"),
+ name => N("Network client interface: through wich interface client should be installed.") . "\n" . N("Ramsize: adjust ramsize on boot disk.") . "\n" . N("VGA option: if you encounter some problem whith VGA, please adjust. ") . "\n" . N("ACPI option: Advanced Configuration and Power Interface"),
data => [
{ label => N("Network client interface:"), val => \$o->{var}{ETH}, fixed_list => \@list_eth },
{ label => N("Ramsize:"), val => \$o->{var}{RAM}, fixed_list => \@list_ram },
{ label => N("VGA option:"), val => \$o->{var}{VGA}, fixed_list => \@list_vga },
- { label => N("Acpi option:"), val => \$o->{var}{ACPI}, fixed_list => \@list_acpi },
- { label => N("Apic option:"), val => \$o->{var}{APIC}, fixed_list => \@list_apic },
+ { label => N("ACPI option:"), val => \$o->{var}{ACPI}, fixed_list => \@list_acpi },
+ { label => N("APIC option:"), val => \$o->{var}{APIC}, fixed_list => \@list_apic },
],
next => 'summarymodify',
},
@@ -179,7 +179,7 @@ $o->{pages} = {
next => 'addimg',
},
error_path_img => {
- name => N("Please choose an image from a different directory than $IMGPATH."),
+ name => N("Please choose an image from a different directory than %s.", $IMGPATH),
next => 'addimg',
},
error_name => {
@@ -215,8 +215,8 @@ $o->{pages} = {
{ label => N("Network client interface:"), fixed_val => \$o->{var}{ETH} },
{ label => N("Ramsize:"), fixed_val => \$o->{var}{RAM} },
{ label => N("VGA option:"), fixed_val => \$o->{var}{VGA} },
- { label => N("Acpi option:"), fixed_val => \$o->{var}{ACPI} },
- { label => N("Apic option:"), fixed_val => \$o->{var}{APIC} },
+ { label => N("ACPI option:"), fixed_val => \$o->{var}{ACPI} },
+ { label => N("APIC option:"), fixed_val => \$o->{var}{APIC} },
],
post => \&do_it_modify,
next => 'endmodify',