diff options
author | Antoine Ginies <aginies@mandriva.com> | 2004-03-10 14:47:35 +0000 |
---|---|---|
committer | Antoine Ginies <aginies@mandriva.com> | 2004-03-10 14:47:35 +0000 |
commit | 1be183c7793a0565b7dca285e4075e5d6d87f0e0 (patch) | |
tree | b2bf9f2966f45e11452030101b52d7d6c59bb0d8 | |
parent | aed1cf48b8ac5a58b74358ea1d930578f6f40170 (diff) | |
download | drakwizard-1be183c7793a0565b7dca285e4075e5d6d87f0e0.tar drakwizard-1be183c7793a0565b7dca285e4075e5d6d87f0e0.tar.gz drakwizard-1be183c7793a0565b7dca285e4075e5d6d87f0e0.tar.bz2 drakwizard-1be183c7793a0565b7dca285e4075e5d6d87f0e0.tar.xz drakwizard-1be183c7793a0565b7dca285e4075e5d6d87f0e0.zip |
various typo fix (Diego Iastrubni, Reinout van Schouwen)
-rw-r--r-- | installsrv_wizard/Installsrv.pm | 2 | ||||
-rwxr-xr-x | kolab_wizard/Kolab.pm | 2 | ||||
-rw-r--r-- | nisautofs_wizard/Nisautofs.pm | 2 | ||||
-rw-r--r-- | pxe_wizard/Pxe.pm | 6 |
4 files changed, 6 insertions, 6 deletions
diff --git a/installsrv_wizard/Installsrv.pm b/installsrv_wizard/Installsrv.pm index 4b08c90a..ac0cdd58 100644 --- a/installsrv_wizard/Installsrv.pm +++ b/installsrv_wizard/Installsrv.pm @@ -48,7 +48,7 @@ my $o = { $o->{pages} = { welcome => { - name => N("Configure a MDK install server (via NFS and http)") . "\n\n" . N("Easily configure a Mandrake server installation directory, with NFS and HTTP access."), + name => N("Configure a Mandrake install server (via NFS and http)") . "\n\n" . N("Easily configure a Mandrake server installation directory, with NFS and HTTP access."), no_back => 1, next => 'install_srv', }, diff --git a/kolab_wizard/Kolab.pm b/kolab_wizard/Kolab.pm index c68236a2..a94dcc30 100755 --- a/kolab_wizard/Kolab.pm +++ b/kolab_wizard/Kolab.pm @@ -86,7 +86,7 @@ $o->{pages} = { next => 'config', }, summary => { - name => N("The wizard will now configured Kolab server with this parameters"), + name => N("The wizard will now configure Kolab server with this parameters"), data => [ { label => N("Hostname:"), fixed_val => \$o->{var}{HOSTNAME} }, { label => N("Password:"), fixed_val => \$o->{var}{password} }, diff --git a/nisautofs_wizard/Nisautofs.pm b/nisautofs_wizard/Nisautofs.pm index de312857..13f3c5e0 100644 --- a/nisautofs_wizard/Nisautofs.pm +++ b/nisautofs_wizard/Nisautofs.pm @@ -95,7 +95,7 @@ $o->{pages} = { next => 'summaryclient', }, nis_server => { - name => N("NIS server with autofs map") . "\n\n" . N("A NIS server is useful to create user, hostname database. The wizard also build autofs map, so it provides the capabilities for NIS user to automount their home directory on a NIS client computer.") . "\n\n" . N("NIS server: name of your computer.") . "\n" . N("Home NIS: home base directory for users on NIS server. This directory will be exported through NFS server.") . "\n" . N("NIS domain: NIS domain to use (generally same as your DNS domainaname)."), + name => N("NIS server with autofs map") . "\n\n" . N("A NIS server is useful to create user, hostname database. The wizard also build autofs map, so it provides the capabilities for NIS user to automount their home directory on a NIS client computer.") . "\n\n" . N("NIS server: name of your computer.") . "\n" . N("Home NIS: home base directory for users on NIS server. This directory will be exported through NFS server.") . "\n" . N("NIS domain: NIS domain to use (generally same as your DNS domain name)."), data => [ { label => N("NIS server:"), val => $HOST }, { label => N("Home NIS:"), val => \$o->{var}{HOMENIS} }, diff --git a/pxe_wizard/Pxe.pm b/pxe_wizard/Pxe.pm index 4f95e37f..a4f1af49 100644 --- a/pxe_wizard/Pxe.pm +++ b/pxe_wizard/Pxe.pm @@ -60,7 +60,7 @@ my $o = { name => N("PXE Wizard"), allow_user => 'root', var => { - IMG => '/var/install/92/images/network.img', + IMG => '/var/install/9.2/images/network.img', PXENAME => '92', DESCR => 'install 9.2', IMGTOREMOVE => '', @@ -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. Morever 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 rule of the boot image, ie: Mandrake 9.2 image, Mandrake 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, with no space)"), + name => N("Add a boot image") . "\n\n" . N("To boot through network, the network computer needs a boot image. Morever 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 rule of the boot image, ie: Mandrake 10 image, Mandrake 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, with no space)"), 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 computer need a boot image. Morever we need to name this image, so each boot image is related to a name in PXE menu. So user can choose wich image he wants to boot through PXE.") . "\n\n" . N("PXE description is used to explain the rule of the boot image, ie: Mandrake 9.2 image, Mandrake 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 computer need a boot image. Morever we need to name this image, so each boot image is related to a name in PXE menu. So user can choose wich image he wants to boot through PXE.") . "\n\n" . N("PXE description is used to explain the rule of the boot image, ie: Mandrake 10 image, Mandrake 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)"), data => [ { label => "PXE name:", val => \$o->{var}{PXENAME} }, { label => "PXE description:", val => \$o->{var}{DESCR} }, |