Skip to content

Commit 403c33a

Browse files
authored
Merge pull request nextcloud#52005 from nextcloud/fix/l10n-placeholder
fix(l10n): put placeholder like string into variable
2 parents bdf1a24 + 5211448 commit 403c33a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

apps/user_ldap/lib/Connection.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -538,8 +538,8 @@ private function doCriticalValidation(): void {
538538

539539
if (mb_strpos((string)$this->configuration->ldapLoginFilter, '%uid', 0, 'UTF-8') === false) {
540540
throw new ConfigurationIssueException(
541-
'Login filter does not contain %uid place holder.',
542-
$this->l10n->t('Login filter does not contain %uid place holder'),
541+
'Login filter does not contain %uid placeholder.',
542+
$this->l10n->t('Login filter does not contain %s placeholder.', ['%uid']),
543543
);
544544
}
545545
}

0 commit comments

Comments
 (0)