diff options
author | Joas Schilling <coding@schilljs.com> | 2025-03-05 16:55:07 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2025-03-05 16:58:03 +0100 |
commit | b0b70d5e2ddf12071eba72a3625afa8545a51c41 (patch) | |
tree | e13479b0c97a847e7047fc007c9a4855e016590c | |
parent | f617637cad0e6e00d62f5f05da99a6b5540b3d2e (diff) | |
download | nextcloud-server-bugfix/l10n-leading-spaces.tar.gz nextcloud-server-bugfix/l10n-leading-spaces.zip |
fix(l10n): Remove leading space from translation stringbugfix/l10n-leading-spaces
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rw-r--r-- | apps/encryption/templates/settings-personal.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/encryption/templates/settings-personal.php b/apps/encryption/templates/settings-personal.php index 6fdc253f7d2..0dd431b8251 100644 --- a/apps/encryption/templates/settings-personal.php +++ b/apps/encryption/templates/settings-personal.php @@ -25,7 +25,7 @@ <br /> <?php p($l->t('Set your old private key password to your current log-in password:')); ?> <?php if ($_['recoveryEnabledForUser']): - p($l->t(" If you don't remember your old password you can ask your administrator to recover your files.")); + p(' ' . $l->t("If you do not remember your old password you can ask your administrator to recover your files.")); endif; ?> <br /> <input |