mirror of
https://github.com/nextcloud/server.git
synced 2026-06-05 23:06:48 -04:00
fix(user_ldap): Use %n in plural translation to avoid a crash in L10N
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
This commit is contained in:
parent
70bd525c84
commit
e7ae6219cd
1 changed files with 4 additions and 4 deletions
|
|
@ -58,7 +58,7 @@ class LdapConnection implements ISetupCheck {
|
|||
if (!empty($bindFailedConfigurations)) {
|
||||
$output .= $this->l10n->n(
|
||||
'Binding failed for this LDAP configuration: %s',
|
||||
'Binding failed for these LDAP configurations: %s',
|
||||
'Binding failed for %n LDAP configurations: %s',
|
||||
count($bindFailedConfigurations),
|
||||
[implode(',', $bindFailedConfigurations)]
|
||||
)."\n";
|
||||
|
|
@ -66,7 +66,7 @@ class LdapConnection implements ISetupCheck {
|
|||
if (!empty($searchFailedConfigurations)) {
|
||||
$output .= $this->l10n->n(
|
||||
'Searching failed for this LDAP configuration: %s',
|
||||
'Searching failed for these LDAP configurations: %s',
|
||||
'Searching failed for %n LDAP configurations: %s',
|
||||
count($searchFailedConfigurations),
|
||||
[implode(',', $searchFailedConfigurations)]
|
||||
)."\n";
|
||||
|
|
@ -74,7 +74,7 @@ class LdapConnection implements ISetupCheck {
|
|||
if (!empty($inactiveConfigurations)) {
|
||||
$output .= $this->l10n->n(
|
||||
'There is an inactive LDAP configuration: %s',
|
||||
'There are inactive LDAP configurations: %s',
|
||||
'There are %n inactive LDAP configurations: %s',
|
||||
count($inactiveConfigurations),
|
||||
[implode(',', $inactiveConfigurations)]
|
||||
)."\n";
|
||||
|
|
@ -86,7 +86,7 @@ class LdapConnection implements ISetupCheck {
|
|||
}
|
||||
return SetupResult::success($this->l10n->n(
|
||||
'Binding and searching works on the configured LDAP connection (%s)',
|
||||
'Binding and searching works on all of the configured LDAP connections (%s)',
|
||||
'Binding and searching works on all of the %n configured LDAP connections (%s)',
|
||||
count($availableConfigs),
|
||||
[implode(',', $availableConfigs)]
|
||||
));
|
||||
|
|
|
|||
Loading…
Reference in a new issue