diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-04-29 09:28:27 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-04-29 09:28:27 +0200 |
commit | 416ef1eb62903ba413c62b493e775d7700a5e05a (patch) | |
tree | 143d2092463c601ef6cfa883110d6e9522c3b4ac /apps/user_ldap | |
parent | 52c77584361dec1da92a95885e978fe788e11dc6 (diff) | |
parent | 5e3fe7fb06a5c9d0255f2ac7d25b68a0ab9c8063 (diff) | |
download | nextcloud-server-416ef1eb62903ba413c62b493e775d7700a5e05a.tar.gz nextcloud-server-416ef1eb62903ba413c62b493e775d7700a5e05a.zip |
Merge pull request #15921 from cmeh/patch-4
Spelling in wizardTabElementary.js: Correct "More then …" to "More than …"
Diffstat (limited to 'apps/user_ldap')
-rw-r--r-- | apps/user_ldap/js/wizard/wizardTabElementary.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_ldap/js/wizard/wizardTabElementary.js b/apps/user_ldap/js/wizard/wizardTabElementary.js index 9619f9f4c84..d123a1ea080 100644 --- a/apps/user_ldap/js/wizard/wizardTabElementary.js +++ b/apps/user_ldap/js/wizard/wizardTabElementary.js @@ -263,7 +263,7 @@ OCA = OCA || {}; if(objectsFound < 1) { message = t('user_ldap', 'No object found in the given Base DN. Please revise.'); } else if(objectsFound > 1000) { - message = t('user_ldap', 'More then 1.000 directory entries available.'); + message = t('user_ldap', 'More than 1.000 directory entries available.'); } else { message = t('user_ldap', objectsFound + ' entries available within the provided Base DN'); } |