fix(l10n): put placeholder like string into variable

Otherwise this is wrongly handled by our translation community.

Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
This commit is contained in:
Ferdinand Thiessen 2025-04-07 18:39:40 +02:00
parent bdf1a24c2f
commit 5211448940
No known key found for this signature in database
GPG key ID: 45FAE7268762B400

View file

@ -538,8 +538,8 @@ class Connection extends LDAPUtility {
if (mb_strpos((string)$this->configuration->ldapLoginFilter, '%uid', 0, 'UTF-8') === false) {
throw new ConfigurationIssueException(
'Login filter does not contain %uid place holder.',
$this->l10n->t('Login filter does not contain %uid place holder'),
'Login filter does not contain %uid placeholder.',
$this->l10n->t('Login filter does not contain %s placeholder.', ['%uid']),
);
}
}