diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-11-12 13:48:55 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-11-12 13:48:55 +0100 |
commit | 3fb440ecf3ab7da587d8d457e6c725052fc0e95f (patch) | |
tree | 5e83c00bd1fdec50eddb8df70b4a619d0f95cc8e | |
parent | e967d88dd7fb05526bd4f9db597fd2a20180f587 (diff) | |
parent | ff17deecd213f0749d37a98aa55112b4caf9aca4 (diff) | |
download | nextcloud-server-3fb440ecf3ab7da587d8d457e6c725052fc0e95f.tar.gz nextcloud-server-3fb440ecf3ab7da587d8d457e6c725052fc0e95f.zip |
Merge pull request #20469 from seal20/seal20-fix-one-string-in-user_ldap
changed 1.000 to 1,000
-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 f5232e91010..c8cb308952b 100644 --- a/apps/user_ldap/js/wizard/wizardTabElementary.js +++ b/apps/user_ldap/js/wizard/wizardTabElementary.js @@ -275,7 +275,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 than 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'); } |