summaryrefslogtreecommitdiffstats
path: root/install/ui
diff options
context:
space:
mode:
Diffstat (limited to 'install/ui')
-rw-r--r--install/ui/src/freeipa/ipa.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/install/ui/src/freeipa/ipa.js b/install/ui/src/freeipa/ipa.js
index 526504755..891e928e6 100644
--- a/install/ui/src/freeipa/ipa.js
+++ b/install/ui/src/freeipa/ipa.js
@@ -1651,13 +1651,13 @@ IPA.unauthorized_dialog = function(spec) {
that.title = spec.title || IPA.get_message('login.login', "Login");
- that.message = spec.message || IPA.get_message('ajax.401.message',
+ that.message = text.get(spec.message || '@i18n:ajax.401.message',
"Your session has expired. Please re-login.");
- that.form_auth_msg = spec.form_auth_msg || IPA.get_message('login.form_auth',
+ that.form_auth_msg = text.get(spec.form_auth_msg || '@i18n:login.form_auth',
"To login with username and password, enter them in the fields below then click Login.");
- that.krb_auth_msg = spec.krb_auth_msg || IPA.get_message('login.krb_auth_msg',
+ that.krb_auth_msg = text.get(spec.krb_auth_msg || '@i18n:login.krb_auth_msg',
" To login with Kerberos, please make sure you" +
" have valid tickets (obtainable via kinit) and " +
"<a href='http://${host}/ipa/config/unauthorized.html'>configured</a>" +