diff options
author | Volkan Gezer <volkangezer@gmail.com> | 2014-05-27 16:39:22 +0200 |
---|---|---|
committer | Volkan Gezer <volkangezer@gmail.com> | 2014-05-27 16:39:22 +0200 |
commit | 8eee8e76d1a8740c4a9b7cc9fb2396116aa6949c (patch) | |
tree | 30213af5d5b340567af0f6bbb4ef656108de4d28 /apps/user_ldap/js | |
parent | e70ed36d8eb59f511e5f16b03869b742a4eed267 (diff) | |
download | nextcloud-server-8eee8e76d1a8740c4a9b7cc9fb2396116aa6949c.tar.gz nextcloud-server-8eee8e76d1a8740c4a9b7cc9fb2396116aa6949c.zip |
forgotten infobox messages translations
Diffstat (limited to 'apps/user_ldap/js')
-rw-r--r-- | apps/user_ldap/js/settings.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/user_ldap/js/settings.js b/apps/user_ldap/js/settings.js index 15a02abb065..8c18cc4c58c 100644 --- a/apps/user_ldap/js/settings.js +++ b/apps/user_ldap/js/settings.js @@ -241,8 +241,8 @@ var LdapWizard = { }, function (result) { LdapWizard.hideSpinner('#ldap_base'); - LdapWizard.showInfoBox('Please specify a Base DN'); - LdapWizard.showInfoBox('Could not determine Base DN'); + LdapWizard.showInfoBox(t('user_ldap', 'Please specify a Base DN')); + LdapWizard.showInfoBox(t('user_ldap', 'Could not determine Base DN')); $('#ldap_base').prop('disabled', false); } ); @@ -273,7 +273,7 @@ var LdapWizard = { function (result) { LdapWizard.hideSpinner('#ldap_port'); $('#ldap_port').prop('disabled', false); - LdapWizard.showInfoBox('Please specify the port'); + LdapWizard.showInfoBox(t('user_ldap', 'Please specify the port')); } ); } @@ -688,7 +688,7 @@ var LdapWizard = { }, showInfoBox: function(text) { - $('#ldapWizard1 .ldapWizardInfo').text(t('user_ldap', text)); + $('#ldapWizard1 .ldapWizardInfo').text(text); $('#ldapWizard1 .ldapWizardInfo').removeClass('invisible'); LdapWizard.checkInfoShown = true; }, |