summaryrefslogtreecommitdiffstats
path: root/nfs_wizard
diff options
context:
space:
mode:
authorAntoine Ginies <aginies@mandriva.com>2004-02-26 13:16:40 +0000
committerAntoine Ginies <aginies@mandriva.com>2004-02-26 13:16:40 +0000
commit62910e828cf0f3c916fda70020371ef1e5cc771c (patch)
tree9d1b763d43dc655866af43bc74fa2f5e31e0c875 /nfs_wizard
parente6281154053e1b0c3d94a19891cb39dcde981279 (diff)
downloaddrakwizard-62910e828cf0f3c916fda70020371ef1e5cc771c.tar
drakwizard-62910e828cf0f3c916fda70020371ef1e5cc771c.tar.gz
drakwizard-62910e828cf0f3c916fda70020371ef1e5cc771c.tar.bz2
drakwizard-62910e828cf0f3c916fda70020371ef1e5cc771c.tar.xz
drakwizard-62910e828cf0f3c916fda70020371ef1e5cc771c.zip
typo fix
Diffstat (limited to 'nfs_wizard')
-rwxr-xr-xnfs_wizard/NFS.pm8
1 files changed, 4 insertions, 4 deletions
diff --git a/nfs_wizard/NFS.pm b/nfs_wizard/NFS.pm
index 80b94ce6..6474e75c 100755
--- a/nfs_wizard/NFS.pm
+++ b/nfs_wizard/NFS.pm
@@ -48,12 +48,12 @@ my %level = (
$o->{pages} = {
welcome => {
- name => N("NFS Server Configuration Wizard") . "\n\n" . N("This wizard will help you configuring the NFS Server for your network."),
+ name => N("NFS Server Configuration Wizard") . "\n\n" . N("This wizard will help you configuring the NFS server for your network."),
no_back => 1,
next => 'nfs'
},
nfs => {
- name => N("NFS Server"),
+ name => N("NFS server"),
post => \&check,
data => [
{ label => N("Directory:"), val => \$o->{var}{wiz_nfs_dir} },
@@ -61,7 +61,7 @@ $o->{pages} = {
next => 'ask_level'
},
ask_level => {
- name => N("Access Control") . "\n\n" . N("NFS can be restricted to a certain ip class") . "\n\n" . N("Choose the level that suits your needs. If you don't know, the Local Network level is usually the most appropriate. Beware that the All level may be not secure."),
+ name => N("Access control") . "\n\n" . N("NFS can be restricted to a certain ip class") . "\n\n" . N("Choose the level that suits your needs. If you don't know, the local network level is usually the most appropriate. Beware that the all level may be not secure."),
pre => sub {
$o->{var}{wiz_netmask} = network_mask() if !$o->{var}{wiz_netmask} || $o->{var}{wiz_netmask} eq '0.0.0.0/0.0.0.0'
},
@@ -99,7 +99,7 @@ $o->{pages} = {
next => 'end'
},
end => {
- name => N("Congratulations") . "\n\n" . N("The wizard successfully configured your NFS Server"),
+ name => N("Congratulations") . "\n\n" . N("The wizard successfully configured your NFS server"),
end => 1,
next => 0
},