summaryrefslogtreecommitdiffstats
path: root/dns_wizard
diff options
context:
space:
mode:
authorAntoine Ginies <aginies@mandriva.com>2004-01-22 15:43:20 +0000
committerAntoine Ginies <aginies@mandriva.com>2004-01-22 15:43:20 +0000
commit277179a4209ad2ca75210d81a46c296c09c460c2 (patch)
treee2e52e09c095f9f875326c247d91b1605e21a8e7 /dns_wizard
parent7887901676943fb8ca39b935affca641f620e3b2 (diff)
downloaddrakwizard-277179a4209ad2ca75210d81a46c296c09c460c2.tar
drakwizard-277179a4209ad2ca75210d81a46c296c09c460c2.tar.gz
drakwizard-277179a4209ad2ca75210d81a46c296c09c460c2.tar.bz2
drakwizard-277179a4209ad2ca75210d81a46c296c09c460c2.tar.xz
drakwizard-277179a4209ad2ca75210d81a46c296c09c460c2.zip
update typo
Diffstat (limited to 'dns_wizard')
-rw-r--r--dns_wizard/Bind.pm8
1 files changed, 4 insertions, 4 deletions
diff --git a/dns_wizard/Bind.pm b/dns_wizard/Bind.pm
index 9df7464f..76693776 100644
--- a/dns_wizard/Bind.pm
+++ b/dns_wizard/Bind.pm
@@ -150,7 +150,7 @@ $o->{pages} = {
ipforward => {
name => N("IP of your forwarder") . "\n\n" . N("Forwarding occurs on only those queries for which the server is not authoritative and does not have the answer in its cache.") . "\n\n" . N("So if you need it and know your ip forwarder enter IP address of it, if you dont know leave it blank"),
data => [
- { label => N("IP forwarder:"), val => \$o->{var}{IPOFFORWARDER} },
+ { label => N("External DNS:"), val => \$o->{var}{IPOFFORWARDER} },
],
post => \&check_ipf,
next => 'addsearch',
@@ -159,7 +159,7 @@ $o->{pages} = {
name => N("Add search domain") . "\n\n" . N("Search list for host-name lookup. The search list is normally determined from the local domain name; by default, it contains only the local domain name. This may be changed by listing the desired domain search path following the search keyword") . "\n\n" . N("Domainname of this server is automatically added, and you dont need to add it here."),
data => [
- { label => N("Add search domain:"), val => \$o->{var}{ADDSEARCH} },
+ { label => N("Default domain name to search:"), val => \$o->{var}{ADDSEARCH} },
],
next => 'summary',
},
@@ -233,8 +233,8 @@ $o->{pages} = {
data => [
{ label => N("Server Hostname:"), fixed_val => \$o->{var}{SHORTHOSTNAME} },
{ label => N("Domainname:"), fixed_val => \$o->{var}{DOMAINNAME} },
- { label => N("IP forwarder:"), fixed_val => \$o->{var}{IPOFFORWARDER} },
- { label => N("add search domain:"), fixed_val => \$o->{var}{ADDSEARCH} },
+ { label => N("External DNS:"), fixed_val => \$o->{var}{IPOFFORWARDER} },
+ { label => N("Default domain name to search:"), fixed_val => \$o->{var}{ADDSEARCH} },
],
post => \&do_it_master,
next => 'end',