diff options
Diffstat (limited to 'nfs_wizard/NFS.pm')
-rwxr-xr-x | nfs_wizard/NFS.pm | 8 |
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 }, |