summaryrefslogtreecommitdiffstats
path: root/client_wizard
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2004-01-22 19:17:10 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2004-01-22 19:17:10 +0000
commitc517514f630d3832d4a74d54b3615145a83f6969 (patch)
treeba8f08c1908a48b16765ccdf66f663e01a205ec3 /client_wizard
parent5603ced243eb85caeba4a82f7c2012b9a5b52e71 (diff)
downloaddrakwizard-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 'client_wizard')
-rwxr-xr-xclient_wizard/Bind_client.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/client_wizard/Bind_client.pm b/client_wizard/Bind_client.pm
index d6f5649b..8da87403 100755
--- a/client_wizard/Bind_client.pm
+++ b/client_wizard/Bind_client.pm
@@ -52,20 +52,20 @@ my $o = {
$o->{pages} = {
welcome => {
- name => N("DNS Client Wizard") . "\n\n" . N("A client of your local network is a machine connected to the network having its own name and IP number.") . "\n\n" . N("This wizard will help you in adding a new client in your local DNS.") . "\n\n" . N("The server will use the informations you enter here to make the name of the client available to other machines into your network.") . "\n\n" . N("Press next to begin, or Cancel to leave this wizard."),
+ name => N("DNS Client Wizard") . "\n\n" . N("A client of your local network is a machine connected to the network having its own name and IP address.") . "\n\n" . N("This wizard will help you in adding a new client in your local DNS.") . "\n\n" . N("The server will use the informations you enter here to make the name of the client available to other machines into your network.") . "\n\n" . N("Press next to begin, or Cancel to leave this wizard."),
post => sub { $wiz->check_dhcp },
no_back => 1,
next => 'client_id'
},
client_id => {
- 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."),
pre => sub {
$o->{var}{client_ip} = ip();
$o->{var}{client_name} = name();
},
data => [
{ label => N("Name of the machine:"), val => \$o->{var}{client_name} },
- { label => N("IP number of the machine:"), val => \$o->{var}{client_ip} },
+ { label => N("IP address of the machine:"), val => \$o->{var}{client_ip} },
],
next => 'summary'
},