Skip to content

Commit

Permalink
Replaced overlooked Master/Slave occurences
Browse files Browse the repository at this point in the history
  • Loading branch information
mchf committed Feb 2, 2022
1 parent 8267c25 commit 11b43d9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/include/dns-server/cmdline.rb
Expand Up @@ -272,7 +272,7 @@ def initialize_dns_server_cmdline(include_target)
"type" => "ip4",
# TRANSLATORS: commandline short help for command
"help" => _(
"DNS zone master server"
"DNS zone primary server"
)
},
"zone" => {
Expand Down
6 changes: 3 additions & 3 deletions src/include/dns-server/dialog-main.rb
Expand Up @@ -1685,13 +1685,13 @@ def RedrawZonesListWidget
case Ops.get_string(z, "type", "master")
when "master"
# TRANSLATORS: Table item - Server type
type_trans = _("Master")
type_trans = _("Primary")
when "slave"
# TRANSLATORS: Table item - Server type
type_trans = _("Slave")
type_trans = _("Secondary")
when "stub"
# TRANSLATORS: Table item - Server type
type_trans = _("Slave")
type_trans = _("Secondary")
when "forward"
# TRANSLATORS: Table item - Server type
type_trans = _("Forward")
Expand Down
2 changes: 1 addition & 1 deletion src/include/dns-server/dialog-masterzone.rb
Expand Up @@ -2766,7 +2766,7 @@ def runSlaveZoneTabDialog
if ret == :next
if false
# TRANSLATORS: A popup error message
Report.Error(_("No master DNS server defined."))
Report.Error(_("No primary DNS server defined."))
next
else
# controlling sever name, IP
Expand Down

0 comments on commit 11b43d9

Please sign in to comment.