summaryrefslogtreecommitdiffstats
path: root/install/ui/netgroup.js
diff options
context:
space:
mode:
Diffstat (limited to 'install/ui/netgroup.js')
-rw-r--r--install/ui/netgroup.js9
1 files changed, 6 insertions, 3 deletions
diff --git a/install/ui/netgroup.js b/install/ui/netgroup.js
index 14be6c0a0..251ffa4d2 100644
--- a/install/ui/netgroup.js
+++ b/install/ui/netgroup.js
@@ -33,7 +33,7 @@ IPA.entity_factories.netgroup = function() {
that.facet(
IPA.search_facet({
name: 'search',
- label: 'Search',
+ label: IPA.messages.facets.search,
entity_name: that.name
}).
column({name:'cn'}).
@@ -41,7 +41,7 @@ IPA.entity_factories.netgroup = function() {
dialog(
IPA.add_dialog({
name: 'add',
- title: 'Add Netgroup'
+ title: IPA.messages.objects.netgroup.add
}).
field(IPA.text_widget({ name: 'cn', undo: false})).
field(IPA.text_widget({ name: 'description', undo: false}))));
@@ -49,7 +49,10 @@ IPA.entity_factories.netgroup = function() {
that.facet(
IPA.details_facet({name: 'details'}).
section(
- IPA.stanza({name: 'identity', label: 'Netgroup Settings'}).
+ IPA.stanza({
+ name: 'identity',
+ label: IPA.messages.objects.netgroup.identity
+ }).
input({name: 'cn'}).
input({name: 'description'}).
input({name: 'nisdomainname'})));