diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2004-01-22 19:17:10 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2004-01-22 19:17:10 +0000 |
commit | c517514f630d3832d4a74d54b3615145a83f6969 (patch) | |
tree | ba8f08c1908a48b16765ccdf66f663e01a205ec3 /dns_wizard/Bind.pm | |
parent | 5603ced243eb85caeba4a82f7c2012b9a5b52e71 (diff) | |
download | drakwizard-c517514f630d3832d4a74d54b3615145a83f6969.tar drakwizard-c517514f630d3832d4a74d54b3615145a83f6969.tar.gz drakwizard-c517514f630d3832d4a74d54b3615145a83f6969.tar.bz2 drakwizard-c517514f630d3832d4a74d54b3615145a83f6969.tar.xz drakwizard-c517514f630d3832d4a74d54b3615145a83f6969.zip |
s/ip number/IP address/
Diffstat (limited to 'dns_wizard/Bind.pm')
-rw-r--r-- | dns_wizard/Bind.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dns_wizard/Bind.pm b/dns_wizard/Bind.pm index 76693776..b5c7a797 100644 --- a/dns_wizard/Bind.pm +++ b/dns_wizard/Bind.pm @@ -122,10 +122,10 @@ $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 number 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 type 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 number of the machine:"), val => \$o->{var}{CLIENTIP} }, + { label => N("IP address of the machine:"), val => \$o->{var}{CLIENTIP} }, ], post => \&check_iph, next => 'summaryadd', @@ -215,7 +215,7 @@ $o->{pages} = { name => N("Client with this identification will be added to your DNS"), data => [ { label => N("Computer name:"), fixed_val => \$o->{var}{CLIENTNAME} }, - { label => N("Computer IP number:"), fixed_val => \$o->{var}{CLIENTIP} }, + { label => N("Computer IP address:"), fixed_val => \$o->{var}{CLIENTIP} }, ], post => \&do_it_add, next => 'endadd', |