summaryrefslogtreecommitdiffstats
path: root/dns_wizard
diff options
context:
space:
mode:
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',