summaryrefslogtreecommitdiffstats
path: root/apps/user_ldap/js
diff options
context:
space:
mode:
authorcmeh <cmeh@users.noreply.github.com>2015-04-28 22:11:24 +0200
committercmeh <cmeh@users.noreply.github.com>2015-04-28 22:11:24 +0200
commit5e3fe7fb06a5c9d0255f2ac7d25b68a0ab9c8063 (patch)
tree08e45645c84e1388b713bfa178ae94a493e2fda8 /apps/user_ldap/js
parent132ce04f319661ac33d3f83e013075a4d4e942d9 (diff)
downloadnextcloud-server-5e3fe7fb06a5c9d0255f2ac7d25b68a0ab9c8063.tar.gz
nextcloud-server-5e3fe7fb06a5c9d0255f2ac7d25b68a0ab9c8063.zip
Update wizardTabElementary.js
Corrected "More then …" to "More than …".
Diffstat (limited to 'apps/user_ldap/js')
-rw-r--r--apps/user_ldap/js/wizard/wizardTabElementary.js2
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');
}