summaryrefslogtreecommitdiffstats
path: root/pxe_wizard
diff options
context:
space:
mode:
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',