diff options
author | Antoine Ginies <aginies@mandriva.com> | 2004-03-08 11:35:23 +0000 |
---|---|---|
committer | Antoine Ginies <aginies@mandriva.com> | 2004-03-08 11:35:23 +0000 |
commit | ed68e2e91b0cd795779931f64a6659a77a27b1a3 (patch) | |
tree | 280f23a1e5958945ce9bfa8e7f47828d57a65331 /nisautofs_wizard | |
parent | 418ea68a9ecfa4cba313cf75ce59150f81d5ff37 (diff) | |
download | drakwizard-ed68e2e91b0cd795779931f64a6659a77a27b1a3.tar drakwizard-ed68e2e91b0cd795779931f64a6659a77a27b1a3.tar.gz drakwizard-ed68e2e91b0cd795779931f64a6659a77a27b1a3.tar.bz2 drakwizard-ed68e2e91b0cd795779931f64a6659a77a27b1a3.tar.xz drakwizard-ed68e2e91b0cd795779931f64a6659a77a27b1a3.zip |
typo fix (Reinout Van Schouwen)
Diffstat (limited to 'nisautofs_wizard')
-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 f237853e..de312857 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 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 exported 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} }, @@ -129,11 +129,11 @@ $o->{pages} = { next => 'endclient', }, error_homedir => { - name => N("Error should be a directory."), + name => N("Error: should be a directory."), next => 'nis_server', }, error_nisd => { - name => N("Error nisdomainame should not be 'none' or 'localdomain'") . "\n\n" . N("Please adjust it."), + name => N("Error: nisdomainame should not be 'none' or 'localdomain'.") . "\n\n" . N("Please adjust it."), end => 1, next => 0, }, |