diff options
author | Pablo Saratxaga <pablo@mandriva.com> | 2004-08-23 15:01:26 +0000 |
---|---|---|
committer | Pablo Saratxaga <pablo@mandriva.com> | 2004-08-23 15:01:26 +0000 |
commit | 384b535654f619dd1c682c837d7a06bedcdb6499 (patch) | |
tree | 2e92500f9ba3bf06ba7851a6c54f1c08a8f60f92 /pxe_wizard | |
parent | 99eeab5b312753764aff9f7009c736934ca754a0 (diff) | |
download | drakwizard-384b535654f619dd1c682c837d7a06bedcdb6499.tar drakwizard-384b535654f619dd1c682c837d7a06bedcdb6499.tar.gz drakwizard-384b535654f619dd1c682c837d7a06bedcdb6499.tar.bz2 drakwizard-384b535654f619dd1c682c837d7a06bedcdb6499.tar.xz drakwizard-384b535654f619dd1c682c837d7a06bedcdb6499.zip |
's/a word/an ASCII word/' (it can't be in greek or cyrillic...)
Diffstat (limited to 'pxe_wizard')
-rw-r--r-- | pxe_wizard/Pxe.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pxe_wizard/Pxe.pm b/pxe_wizard/Pxe.pm index 81e1e99b..972eba00 100644 --- a/pxe_wizard/Pxe.pm +++ b/pxe_wizard/Pxe.pm @@ -129,7 +129,7 @@ $o->{pages} = { next => 'pxeserver', }, addimg => { - name => N("Add a boot image") . "\n\n" . N("To boot through network, the network computer needs a boot image. Moreover we need to name this image, so each boot image is related to a name in PXE menu. User can then choose which image he wants to boot through PXE.") . "\n\n" . N("PXE description is used to explain the role of the boot image, ie: Mandrakelinux 10 image, Mandrakelinux cooker image..") . "\n\n" . N("Path to image: provide the full path to the network boot image") . "\n\n" . N("PXE name: the name displayed in PXE menu (please provide a word or a number, without space)"), + name => N("Add a boot image") . "\n\n" . N("To boot through network, the network computer needs a boot image. Moreover we need to name this image, so each boot image is related to a name in PXE menu. User can then choose which image he wants to boot through PXE.") . "\n\n" . N("PXE description is used to explain the role of the boot image, ie: Mandrakelinux 10 image, Mandrakelinux cooker image..") . "\n\n" . N("Path to image: provide the full path to the network boot image") . "\n\n" . N("PXE name: the name displayed in PXE menu (please provide an ASCII word or a number, without spaces)"), data => [ { label => "PXE name:", val => \$o->{var}{PXENAME} }, { label => "PXE description:", val => \$o->{var}{DESCR} }, @@ -139,7 +139,7 @@ $o->{pages} = { next => 'summaryadd', }, addimgrdz => { - name => N("Add all.rdz boot image") . "\n\n" . N("To boot through network, network computers need boot image. Moreover we need to name this image, so each boot image is related to a name in PXE menu. So user can choose whfich image he wants to boot through PXE.") . "\n\n" . N("PXE description is used to explain the role of the boot image, ie: Mandrakelinux 10 image, Mandrakelinux cooker image..") . N("For technical reason, in case of multiple boot image, it's more simple to boot network computer through a kernel (vmlinuz), and provide one file with all drivers needed (in our case all.rdz).") . "\n\n" . N("Path to all.rdz: provide the full path to all.rdz image") . "\n\n" . N("PXE name: the name displayed in PXE menu (please provide a word or a number, with no space)"), + name => N("Add all.rdz boot image") . "\n\n" . N("To boot through network, network computers need boot image. Moreover we need to name this image, so each boot image is related to a name in PXE menu. So user can choose whfich image he wants to boot through PXE.") . "\n\n" . N("PXE description is used to explain the role of the boot image, ie: Mandrakelinux 10 image, Mandrakelinux cooker image..") . N("For technical reason, in case of multiple boot image, it's more simple to boot network computer through a kernel (vmlinuz), and provide one file with all drivers needed (in our case all.rdz).") . "\n\n" . N("Path to all.rdz: provide the full path to all.rdz image") . "\n\n" . N("PXE name: the name displayed in PXE menu (please provide an ASCII word or a number, with no spaces)"), data => [ { label => "PXE name:", val => \$o->{var}{PXENAME} }, { label => "PXE description:", val => \$o->{var}{DESCR} }, @@ -217,7 +217,7 @@ $o->{pages} = { next => 'addimgrdz', }, error_name => { - name => N("Please provide a correct PXE name: one word or one number with no space."), + name => N("Please provide a correct PXE name: one ASCII word or one number with no spaces."), next => 'addimg', }, error_needpxe => { |