diff --git a/install/ui/src/freeipa/automount.js b/install/ui/src/freeipa/automount.js index ca0729beb..38c0bdef7 100644 --- a/install/ui/src/freeipa/automount.js +++ b/install/ui/src/freeipa/automount.js @@ -64,7 +64,10 @@ return { ], adder_dialog: { fields: [ 'cn' ] - } + }, + deleter_dialog: { + title: '@i18n:objects.automountlocation.remove', + }, };}; var make_map_spec = function() { @@ -151,7 +154,10 @@ return { ] } ] - } + }, + deleter_dialog: { + title: '@i18n:objects.automountmap.remove', + }, };}; var make_key_spec = function() { @@ -202,7 +208,10 @@ return { return false; }, fields:['automountkey','automountinformation'] - } + }, + deleter_dialog: { + title: '@i18n:objects.automountkey.remove', + }, };}; IPA.automount.key_details_facet = function(spec) { @@ -373,4 +382,4 @@ exp.register = function() { phases.on('registration', exp.register); return exp; -}); \ No newline at end of file +}); diff --git a/ipaserver/plugins/internal.py b/ipaserver/plugins/internal.py index b3888185a..b81bceb02 100644 --- a/ipaserver/plugins/internal.py +++ b/ipaserver/plugins/internal.py @@ -423,14 +423,17 @@ class i18n_messages(Command): "usergrouprules": _("User group rules"), }, "automountkey": { + "remove": _("Remove automount keys"), }, "automountlocation": { - "identity": _("Automount Location Settings") + "identity": _("Automount Location Settings"), + "remove": _("Remove automount locations"), }, "automountmap": { "map_type": _("Map Type"), "direct": _("Direct"), "indirect": _("Indirect"), + "remove": _("Remove automount maps"), }, "ca": { "remove": _("Remove certificate authorities"),