diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2004-01-21 15:16:36 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2004-01-21 15:16:36 +0000 |
commit | 8f9c5cf8429ed54fd8ba5dac74d00dea4153acb3 (patch) | |
tree | 3345057f1832fde8964b5c8a13f8adc7ba4a302a /pxe_wizard | |
parent | f9ec0c7fa589dbd025596b18eca712ce1b18053c (diff) | |
download | drakwizard-8f9c5cf8429ed54fd8ba5dac74d00dea4153acb3.tar drakwizard-8f9c5cf8429ed54fd8ba5dac74d00dea4153acb3.tar.gz drakwizard-8f9c5cf8429ed54fd8ba5dac74d00dea4153acb3.tar.bz2 drakwizard-8f9c5cf8429ed54fd8ba5dac74d00dea4153acb3.tar.xz drakwizard-8f9c5cf8429ed54fd8ba5dac74d00dea4153acb3.zip |
use N("...") rather than N('...') for perl_checker
Diffstat (limited to 'pxe_wizard')
-rw-r--r-- | pxe_wizard/Pxe.pm | 30 |
1 files changed, 15 insertions, 15 deletions
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 |