diff options
author | sylvain <seal20@users.noreply.github.com> | 2015-11-12 15:39:57 +0900 |
---|---|---|
committer | sylvain <seal20@users.noreply.github.com> | 2015-11-12 15:39:57 +0900 |
commit | ff17deecd213f0749d37a98aa55112b4caf9aca4 (patch) | |
tree | 4461f04fefe4704ce0ae9ed61d68612f94ec5e14 | |
parent | 24793634924abe13c68061027462285bece2eb4c (diff) | |
download | nextcloud-server-ff17deecd213f0749d37a98aa55112b4caf9aca4.tar.gz nextcloud-server-ff17deecd213f0749d37a98aa55112b4caf9aca4.zip |
changed 1.000 to 1,000
The string "More than 1,000 directory entries available." would mean only 1 entry, in english it should be 1,000 . Found it while translating
-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'); } |