mirror of
https://github.com/nextcloud/server.git
synced 2026-06-09 08:44:07 -04:00
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:
parent
bdf1a24c2f
commit
5211448940
1 changed files with 2 additions and 2 deletions
|
|
@ -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']),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue