From 8f9c5cf8429ed54fd8ba5dac74d00dea4153acb3 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Wed, 21 Jan 2004 15:16:36 +0000 Subject: use N("...") rather than N('...') for perl_checker --- pxe_wizard/Pxe.pm | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) (limited to 'pxe_wizard') diff --git a/pxe_wizard/Pxe.pm b/pxe_wizard/Pxe.pm index a3f6209f..87d127bc 100644 --- a/pxe_wizard/Pxe.pm +++ b/pxe_wizard/Pxe.pm @@ -173,19 +173,19 @@ $o->{pages} = { next => 'summaryserver', }, error_img => { - name => N('Please provide a bootable image...'), + name => N("Please provide a bootable image..."), next => 'addimg', }, error_name => { - name => N('Please provide a correct name in PXE entry (one word)'), + name => N("Please provide a correct name in PXE entry (one word)"), next => 'addimg', }, simmilar_entry => { - name => N('Similar name is already used in PXE menu entry') . "\n\n" . N("Please provide another PXE Menu name"), + name => N("Similar name is already used in PXE menu entry") . "\n\n" . N("Please provide another PXE Menu name"), next => 'addimg', }, summaryserver => { - name => N('Now will prepare all default files to set the PXE server'), + name => N("Now will prepare all default files to set the PXE server"), data => [ { label => N("Tftp directory:"), fixed_val => \$TFTPDIR }, { label => N("Boot image path:"), fixed_val => \$IMGPATH }, @@ -196,7 +196,7 @@ $o->{pages} = { next => 'endserver', }, summarymodify => { - name => N('Now will modify boot options in image'), + name => N("Now will modify boot options in image"), data => [ { label => N("Boot image to modify:"), fixed_val => \$o->{var}{i} }, { label => N("Server IP:"), fixed_val => \$o->{var}{IP} }, @@ -212,7 +212,7 @@ $o->{pages} = { next => 'endmodify', }, summaryremove => { - name => N('Now will remove your PXE boot image'), + name => N("Now will remove your PXE boot image"), data => [ { label => N("PXE entry to remove:"), fixed_val => \$o->{var}{IMGTOREMOVE} }, ], @@ -220,7 +220,7 @@ $o->{pages} = { next => 'endremove', }, summaryadd => { - name => N('Now will add your PXE boot image'), + name => N("Now will add your PXE boot image"), data => [ { label => "PXE name:", fixed_val => \$o->{var}{PXENAME} }, { label => "PXE description:", fixed_val => \$o->{var}{DESCR} }, @@ -230,23 +230,23 @@ $o->{pages} = { next => 'endadd', }, endadd => { - name => N('Congratulations'), - data => [ { label => N('The wizard successfully add a PXE boot image.') } ], + name => N("Congratulations"), + data => [ { label => N("The wizard successfully add a PXE boot image.") } ], next => 'welcome', }, endremove => { - name => N('Congratulations'), - data => [ { label => N('The wizard successfully remove a PXE boot image.') } ], + name => N("Congratulations"), + data => [ { label => N("The wizard successfully remove a PXE boot image.") } ], next => 'welcome', }, endmodify => { - name => N('Congratulations'), - data => [ { label => N('The wizard successfully modify image(s).') } ], + name => N("Congratulations"), + data => [ { label => N("The wizard successfully modify image(s).") } ], next => 'welcome', }, endserver => { - name => N('Congratulations'), - data => [ { label => N('The wizard successfully configured your PXE server.') } ], + name => N("Congratulations"), + data => [ { label => N("The wizard successfully configured your PXE server.") } ], no_back => 1, end => 1, next => 0 -- cgit v1.2.1