diff options
author | Antoine Ginies <aginies@mandriva.com> | 2004-02-20 22:35:29 +0000 |
---|---|---|
committer | Antoine Ginies <aginies@mandriva.com> | 2004-02-20 22:35:29 +0000 |
commit | 1062492c1358cbe707984568ffe263cbcb2e5eec (patch) | |
tree | ebc8c86718f414c3396578d1ab16dbe003f905d0 /dns_wizard | |
parent | 890aab5bdb482f07a1b4785f4639050ef785af32 (diff) | |
download | drakwizard-1062492c1358cbe707984568ffe263cbcb2e5eec.tar drakwizard-1062492c1358cbe707984568ffe263cbcb2e5eec.tar.gz drakwizard-1062492c1358cbe707984568ffe263cbcb2e5eec.tar.bz2 drakwizard-1062492c1358cbe707984568ffe263cbcb2e5eec.tar.xz drakwizard-1062492c1358cbe707984568ffe263cbcb2e5eec.zip |
add information
Diffstat (limited to 'dns_wizard')
-rw-r--r-- | dns_wizard/Bind.pm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dns_wizard/Bind.pm b/dns_wizard/Bind.pm index ff57104a..9d5a3ad1 100644 --- a/dns_wizard/Bind.pm +++ b/dns_wizard/Bind.pm @@ -123,7 +123,7 @@ $o->{pages} = { next => 'ipforward', }, addhost => { - name => N("Client identification:") . "\n\n" . N("Your client on the network will be identified by name, as in clientname.company.net. Every machine on the network must have a (unique) IP address, in the usual dotted syntax.") . "\n\n" . N("(you don't need to type the domain after the name)") . "\n\n" . N("Note that the given IP address and client name should be unique in the network."), + name => N("Client identification:") . "\n\n" . N("Your client on the network will be identified by name, as in clientname.company.net. Every machine on the network must have a (unique) IP address, in the usual dotted syntax.") . "\n\n" . N("(You don't need to add the domain after the name)") . "\n\n" . N("Note that the given IP address and client name should be unique in the network."), data => [ { label => N("Name of the machine:"), val => \$o->{var}{CLIENTNAME} }, { label => N("IP address of the machine:"), val => \$o->{var}{CLIENTIP} }, @@ -132,7 +132,7 @@ $o->{pages} = { next => 'summaryadd', }, removehost => { - name => N("Remove host:") . "\n\n" . N("Remove a host in existing dns configuration.") . "\n\n" . N("Choose the host you want to remove in the following list."), + name => N("Remove host:") . "\n\n" . N("Remove a host in existing DNS configuration.") . "\n\n" . N("Choose the host you want to remove in the following list."), data => [ { label => N("Computer Name:"), val => \$o->{var}{CLIENTNAME}, fixed_list => \@list_hosts }, ], @@ -205,7 +205,7 @@ $o->{pages} = { end => 1, }, summaryslave => { - name => N("Ok Now building your DNS slave configuration") . "\n\n" . N("with this configuration:"), + name => N("Wizard will Now build your DNS slave configuration") . "\n\n" . N("with this configuration:"), data => [ { label => N("IP Address of the master DNS server:"), fixed_val => \$o->{var}{IPMASTER} }, ], @@ -266,7 +266,7 @@ $o->{pages} = { }, error_end => { name => N("Failed"), - data => [ { label => N("Relaunch drakwizard, and try to change some parameters.") } ], + data => [ { label => N("Please Relaunch drakwizard, and try to change some parameters.") } ], no_back => 1, end => 1, next => 0, |