diff options
author | Joas Schilling <coding@schilljs.com> | 2025-02-26 09:54:32 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2025-02-26 09:54:32 +0100 |
commit | 095ab4419e21b0ea143b6b4441f229bca2e5d0fa (patch) | |
tree | b490b5527397f7b6ce27f7478b8ba16bd6ae1715 /apps/user_ldap | |
parent | 86f3b81de7cc2d9db48d54120fae315d80ad3f75 (diff) | |
download | nextcloud-server-095ab4419e21b0ea143b6b4441f229bca2e5d0fa.tar.gz nextcloud-server-095ab4419e21b0ea143b6b4441f229bca2e5d0fa.zip |
fix(l10n): Improve english source strings
- No leading/trailing whitespace
- Use asci single quote
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/user_ldap')
-rw-r--r-- | apps/user_ldap/lib/Access.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_ldap/lib/Access.php b/apps/user_ldap/lib/Access.php index aa48f7afedf..77679ccc948 100644 --- a/apps/user_ldap/lib/Access.php +++ b/apps/user_ldap/lib/Access.php @@ -344,7 +344,7 @@ class Access extends LDAPUtility { return @$this->invokeLDAPMethod('exopPasswd', $userDN, '', $password) || @$this->invokeLDAPMethod('modReplace', $userDN, $password); } catch (ConstraintViolationException $e) { - throw new HintException('Password change rejected.', Util::getL10N('user_ldap')->t('Password change rejected. Hint: ') . $e->getMessage(), (int)$e->getCode()); + throw new HintException('Password change rejected.', Util::getL10N('user_ldap')->t('Password change rejected. Hint: %s', $e->getMessage()), (int)$e->getCode()); } } |