diff options
author | Antoine Ginies <aginies@mandriva.com> | 2004-02-26 17:13:29 +0000 |
---|---|---|
committer | Antoine Ginies <aginies@mandriva.com> | 2004-02-26 17:13:29 +0000 |
commit | 937d60bdd8424358bcb6e02c6c459ffb86b234a2 (patch) | |
tree | 81e05850ffc067ec7fca593eda57aca939015ba8 /nisautofs_wizard/Nisautofs.pm | |
parent | 0a4ecee3cc299489d5d44beb84ab822214164f67 (diff) | |
download | drakwizard-937d60bdd8424358bcb6e02c6c459ffb86b234a2.tar drakwizard-937d60bdd8424358bcb6e02c6c459ffb86b234a2.tar.gz drakwizard-937d60bdd8424358bcb6e02c6c459ffb86b234a2.tar.bz2 drakwizard-937d60bdd8424358bcb6e02c6c459ffb86b234a2.tar.xz drakwizard-937d60bdd8424358bcb6e02c6c459ffb86b234a2.zip |
fix typo (thx Peroyvind Karlsen)
Diffstat (limited to 'nisautofs_wizard/Nisautofs.pm')
-rw-r--r-- | nisautofs_wizard/Nisautofs.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/nisautofs_wizard/Nisautofs.pm b/nisautofs_wizard/Nisautofs.pm index db63d8bf..66ccc20b 100644 --- a/nisautofs_wizard/Nisautofs.pm +++ b/nisautofs_wizard/Nisautofs.pm @@ -74,7 +74,7 @@ my %level = ( $o->{pages} = { welcome => { - name => N("NIS server with autofs map") . "\n\n" . N("Setup a NIS server with autofs map, auto.home and auto.master files.") . "\n\n" . N("User automatically mount their home directory from server, when they log on a NIS client computer network."), + name => N("NIS server with autofs map") . "\n\n" . N("Setup a NIS server with autofs map, auto.home and auto.master files.") . "\n\n" . N("Users automatically mount their home directory from server, when they log on a NIS client computer network."), no_back => 1, pre => sub { $o->{var}{wiz_level} ||= 1 }, post => sub { if ($o->{var}{wiz_level} == 2) { @@ -95,7 +95,7 @@ $o->{pages} = { next => 'summaryclient', }, nis_server => { - name => N("NIS server with autofs map") . "\n\n" . N("A NIS server is usefull to create user, hostname database. The wizard also build autofs map, so it provides the capabilitie 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 export 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 export through NFS server.") . "\n" . N("NIS domain: NIS domain to use (generally same as your DNS domainaname)."), data => [ { label => N("NIS server:"), val => $HOST }, { label => N("Home NIS:"), val => \$o->{var}{HOMENIS} }, @@ -120,7 +120,7 @@ $o->{pages} = { next => 'endserver', }, summaryclient => { - name => N("The YPBIND daemon finds the server for NIS domains and maintains the NIS binding informationdaem.") . "\n\n" . N("NIS server: hostname of the NIS server.") . "\n" . N("NIS domainname: name of NIS domain."), + name => N("The YPBIND daemon finds the server for NIS domains and maintains the NIS binding information.") . "\n\n" . N("NIS server: hostname of the NIS server.") . "\n" . N("NIS domainname: name of NIS domain."), data => [ { label => N("NIS server:"), fixed_val => \$o->{var}{NISSERVER} }, { label => N("NIS domainname:"), fixed_val => \$o->{var}{NISDOMAIN} }, |