Add 'skip overlap check' checkbox into add zone dialog

https://fedorahosted.org/freeipa/ticket/5773

Reviewed-By: Martin Basti <mbasti@redhat.com>
This commit is contained in:
Pavel Vomacka
2016-04-22 10:11:48 +02:00
committed by Martin Basti
parent a023dcbc5c
commit f446792353
3 changed files with 15 additions and 0 deletions
+13
View File
@@ -298,6 +298,19 @@ return {
validators: ['network']
}
]
},
{
name: 'options',
fields: [
{
$type: 'checkbox',
name: 'skip_overlap_check',
label: '@i18n:objects.dnszone.skip_overlap_check',
tooltip: {
title: '@mc-opt:dnszone_add:skip_overlap_check:doc'
}
}
]
}
],
policies: [
+1
View File
@@ -324,6 +324,7 @@
"remove_permission": "Remove Permission",
"remove_permission_confirm": "Are you sure you want to remove permission for DNS Zone ${object}?",
"skip_dns_check": "Skip DNS check",
"skip_overlap_check": "Skip overlap check",
"soamname_change_message": "Do you want to check if new authoritative nameserver address is in DNS",
"soamname_change_title": "Authoritative nameserver change"
},
+1
View File
@@ -469,6 +469,7 @@ class i18n_messages(Command):
"remove_permission": _("Remove Permission"),
"remove_permission_confirm": _("Are you sure you want to remove permission for DNS Zone ${object}?"),
"skip_dns_check": _("Skip DNS check"),
"skip_overlap_check": _("Skip overlap check"),
"soamname_change_message": _("Do you want to check if new authoritative nameserver address is in DNS"),
"soamname_change_title": _("Authoritative nameserver change"),
},