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
This commit is contained in:
sylvain 2015-11-12 15:39:57 +09:00
parent 2479363492
commit ff17deecd2
1 changed files with 1 additions and 1 deletions

View File

@ -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');
} }