Browse Source
Use variable for proper translations
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
pull/8633/head
Roeland Jago Douma
8 years ago
No known key found for this signature in database
GPG Key ID: F941078878347C0C
1 changed files with
8 additions and
1 deletions
-
apps/user_ldap/js/wizard/wizardTabElementary.js
|
|
|
@ -286,7 +286,14 @@ OCA = OCA || {}; |
|
|
|
} else if(objectsFound > 1000) { |
|
|
|
message = t('user_ldap', 'More than 1,000 directory entries available.'); |
|
|
|
} else { |
|
|
|
message = t('user_ldap', objectsFound + 'Entries available within the provided Base DN'); |
|
|
|
message = n( |
|
|
|
'user_ldap', |
|
|
|
'{objectsFound} entry available within the provided Base DN', |
|
|
|
'{objectsFound} entries available within the provided Base DN', |
|
|
|
objectsFound, |
|
|
|
{ |
|
|
|
objectsFound: objectsFound |
|
|
|
}); |
|
|
|
} |
|
|
|
} else { |
|
|
|
message = view.overrideErrorMessage(payload.data.message); |
|
|
|
|