Skip to content

Commit 847963e

Browse files
committed
fix(l10n): Fix leading spaces and unicode single quotes
Signed-off-by: Joas Schilling <coding@schilljs.com> [skip ci]
1 parent 79352a9 commit 847963e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

apps/encryption/templates/settings-personal.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<br />
2020
<?php p($l->t("Set your old private key password to your current log-in password:")); ?>
2121
<?php if ($_["recoveryEnabledForUser"]):
22-
p($l->t(" If you don't remember your old password you can ask your administrator to recover your files."));
22+
p(' ' . $l->t('If you do not remember your old password you can ask your administrator to recover your files.'));
2323
endif; ?>
2424
<br />
2525
<input

apps/files/src/views/FilesList.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ export default defineComponent({
420420
if (this.isQuotaExceeded) {
421421
return this.t('files', 'Your have used your space quota and cannot upload files anymore')
422422
}
423-
return this.t('files', 'You don’t have permission to upload or create files here')
423+
return this.t('files', 'You do not have permission to upload or create files here')
424424
},
425425
426426
/**

0 commit comments

Comments
 (0)