From d5c0945890a4f2d360465ac2201ed2928f64dd23 Mon Sep 17 00:00:00 2001 From: Petr Vobornik Date: Thu, 4 Apr 2013 14:13:34 +0200 Subject: Replace remaining IPA.messages with text.get calls https://fedorahosted.org/freeipa/ticket/3235 --- install/ui/src/freeipa/dialog.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'install/ui/src/freeipa/dialog.js') diff --git a/install/ui/src/freeipa/dialog.js b/install/ui/src/freeipa/dialog.js index b23f5c59..2316df56 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); $('
', { - 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); $('
', { - 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); $('
', { - html: IPA.messages.objects.sudorule.external, + html: text.get('@i18n:objects.sudorule.external'), 'class': 'adder-dialog-header ui-widget-header' }).appendTo(external_panel); -- cgit