From 32dd46413e739455c119638463293ea378f354ad Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Wed, 26 Feb 2025 16:10:37 +0100 Subject: [PATCH] fix(translation): Fix string concatenation in LDAP endpoint Signed-off-by: Joas Schilling --- apps/user_ldap/ajax/wizard.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/user_ldap/ajax/wizard.php b/apps/user_ldap/ajax/wizard.php index 19980bf492150..056299e1bfffd 100644 --- a/apps/user_ldap/ajax/wizard.php +++ b/apps/user_ldap/ajax/wizard.php @@ -105,8 +105,7 @@ $setParameters = []; $configuration->setConfiguration($cfg, $setParameters); if (!in_array($key, $setParameters)) { - \OC_JSON::error(['message' => $l->t($key . - ' Could not set configuration %s', $setParameters[0])]); + \OC_JSON::error(['message' => $l->t('Could not set configuration %1$s to %2$s', [$key, $setParameters[0]])]); exit; } $configuration->saveConfiguration();