summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--dns_wizard/Bind.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/dns_wizard/Bind.pm b/dns_wizard/Bind.pm
index 46cfe49d..73593d29 100644
--- a/dns_wizard/Bind.pm
+++ b/dns_wizard/Bind.pm
@@ -141,7 +141,7 @@ $o->{pages} = {
slave => {
name => N("Slave DNS server") . "\n\n" . N("A slave name server will take some of the burden away from your primary name server, and will also function as a backup server, in case your master server is unreachable."),
data => [
- { label => N("Address IP of the master DNS server:"), val => \$o->{var}{IPMASTER} },
+ { label => N("IP Address of the master DNS server:"), val => \$o->{var}{IPMASTER} },
],
post => \&check_ipm,
next => 'summaryslave',
@@ -206,7 +206,7 @@ $o->{pages} = {
summaryslave => {
name => N("Ok Now building your DNS slave configuration") . "\n\n" . N("with this configuration:"),
data => [
- { label => N("Address IP of the master DNS server:"), fixed_val => \$o->{var}{IPMASTER} },
+ { label => N("IP Address of the master DNS server:"), fixed_val => \$o->{var}{IPMASTER} },
],
post => \&do_it_slave,
next => 'end',