summaryrefslogtreecommitdiffstats
path: root/install/ui/entity.js
diff options
context:
space:
mode:
Diffstat (limited to 'install/ui/entity.js')
-rw-r--r--install/ui/entity.js9
1 files changed, 8 insertions, 1 deletions
diff --git a/install/ui/entity.js b/install/ui/entity.js
index 026e66f79..8af4af968 100644
--- a/install/ui/entity.js
+++ b/install/ui/entity.js
@@ -809,7 +809,14 @@ IPA.entity_builder = function(){
that.adder_dialog = function(spec) {
spec.factory = spec.factory || IPA.add_dialog;
spec.name = spec.name || 'add';
- spec.title = spec.title || IPA.messages.objects.user.add;
+
+ if (!spec.title) {
+ var messages = IPA.messages.objects[entity.name];
+ if (messages) {
+ spec.title = messages.add;
+ }
+ }
+
return that.dialog(spec);
};