aboutsummaryrefslogtreecommitdiffstats
path: root/apps/user_ldap/lib/Connection.php
diff options
context:
space:
mode:
authorFerdinand Thiessen <opensource@fthiessen.de>2025-04-07 18:39:40 +0200
committerFerdinand Thiessen <opensource@fthiessen.de>2025-04-07 18:39:40 +0200
commit5211448940b5c52f6234a0f548cc1d6f0616668f (patch)
tree47b57b66f48830a4d3bae0372916f2540202c793 /apps/user_ldap/lib/Connection.php
parentbdf1a24c2f2ba6348320b85c62b017f37f440609 (diff)
downloadnextcloud-server-5211448940b5c52f6234a0f548cc1d6f0616668f.tar.gz
nextcloud-server-5211448940b5c52f6234a0f548cc1d6f0616668f.zip
fix(l10n): put placeholder like string into variablefix/l10n-placeholder
Otherwise this is wrongly handled by our translation community. Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to 'apps/user_ldap/lib/Connection.php')
-rw-r--r--apps/user_ldap/lib/Connection.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/user_ldap/lib/Connection.php b/apps/user_ldap/lib/Connection.php
index a4af0d68bd5..78a5f93d29e 100644
--- a/apps/user_ldap/lib/Connection.php
+++ b/apps/user_ldap/lib/Connection.php
@@ -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']),
);
}
}