summaryrefslogtreecommitdiffstats
path: root/install/ui/src/freeipa/dialog.js
diff options
context:
space:
mode:
authorPetr Vobornik <pvoborni@redhat.com>2013-04-04 14:13:34 +0200
committerPetr Vobornik <pvoborni@redhat.com>2013-05-06 16:22:22 +0200
commitd5c0945890a4f2d360465ac2201ed2928f64dd23 (patch)
treef1fb80432266839bf50c08d054cc18d7ce13c2a7 /install/ui/src/freeipa/dialog.js
parent8ee752c284241bd7ca87de31125716329a110eb5 (diff)
downloadfreeipa-d5c0945890a4f2d360465ac2201ed2928f64dd23.tar.gz
freeipa-d5c0945890a4f2d360465ac2201ed2928f64dd23.tar.xz
freeipa-d5c0945890a4f2d360465ac2201ed2928f64dd23.zip
Replace remaining IPA.messages with text.get calls
https://fedorahosted.org/freeipa/ticket/3235
Diffstat (limited to 'install/ui/src/freeipa/dialog.js')
-rw-r--r--install/ui/src/freeipa/dialog.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/install/ui/src/freeipa/dialog.js b/install/ui/src/freeipa/dialog.js
index b23f5c59e..2316df56b 100644
--- a/install/ui/src/freeipa/dialog.js
+++ b/install/ui/src/freeipa/dialog.js
@@ -467,7 +467,7 @@ IPA.adder_dialog = function(spec) {
}).appendTo(left_panel);
$('<div/>', {
- html: IPA.messages.dialogs.available,
+ html: text.get('@i18n:dialogs.available'),
'class': 'adder-dialog-header ui-widget-header'
}).appendTo(available_panel);
@@ -488,7 +488,7 @@ IPA.adder_dialog = function(spec) {
}).appendTo(right_panel);
$('<div/>', {
- html: IPA.messages.dialogs.prospective,
+ html: text.get('@i18n:dialogs.prospective'),
'class': 'adder-dialog-header ui-widget-header'
}).appendTo(selected_panel);
@@ -537,7 +537,7 @@ IPA.adder_dialog = function(spec) {
}).appendTo(left_panel);
$('<div/>', {
- html: IPA.messages.objects.sudorule.external,
+ html: text.get('@i18n:objects.sudorule.external'),
'class': 'adder-dialog-header ui-widget-header'
}).appendTo(external_panel);