mirror of
https://github.com/nextcloud/server.git
synced 2026-06-09 08:44:07 -04:00
forgotten infobox messages translations
This commit is contained in:
parent
e70ed36d8e
commit
8eee8e76d1
1 changed files with 4 additions and 4 deletions
|
|
@ -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;
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in a new issue