Skip to content
Snippets Groups Projects
Commit 3fb440ec authored by Thomas Müller's avatar Thomas Müller
Browse files

Merge pull request #20469 from seal20/seal20-fix-one-string-in-user_ldap

changed 1.000 to 1,000
parents e967d88d ff17deec
No related branches found
No related tags found
No related merge requests found
...@@ -275,7 +275,7 @@ OCA = OCA || {}; ...@@ -275,7 +275,7 @@ OCA = OCA || {};
if(objectsFound < 1) { if(objectsFound < 1) {
message = t('user_ldap', 'No object found in the given Base DN. Please revise.'); message = t('user_ldap', 'No object found in the given Base DN. Please revise.');
} else if(objectsFound > 1000) { } 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 { } else {
message = t('user_ldap', objectsFound + ' entries available within the provided Base DN'); message = t('user_ldap', objectsFound + ' entries available within the provided Base DN');
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment