From 095ab4419e21b0ea143b6b4441f229bca2e5d0fa Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Wed, 26 Feb 2025 09:54:32 +0100 Subject: fix(l10n): Improve english source strings - No leading/trailing whitespace - Use asci single quote Signed-off-by: Joas Schilling --- apps/files/src/components/FilesListVirtual.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps/files/src/components/FilesListVirtual.vue') diff --git a/apps/files/src/components/FilesListVirtual.vue b/apps/files/src/components/FilesListVirtual.vue index a5646cd73bb..628700f072a 100644 --- a/apps/files/src/components/FilesListVirtual.vue +++ b/apps/files/src/components/FilesListVirtual.vue @@ -189,7 +189,7 @@ export default defineComponent({ caption() { const defaultCaption = t('files', 'List of files and folders.') const viewCaption = this.currentView.caption || defaultCaption - const cantUploadCaption = this.cantUpload ? t('files', 'You don’t have permission to upload or create files here.') : null + const cantUploadCaption = this.cantUpload ? t('files', 'You don\'t have permission to upload or create files here.') : null const quotaExceededCaption = this.isQuotaExceeded ? t('files', 'You have used your space quota and cannot upload files anymore.') : null const sortableCaption = t('files', 'Column headers with buttons are sortable.') const virtualListNote = t('files', 'This list is not fully rendered for performance reasons. The files will be rendered as you navigate through the list.') -- cgit v1.2.3