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/files/src/components | |
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/files/src/components')
-rw-r--r-- | apps/files/src/components/DragAndDropNotice.vue | 2 | ||||
-rw-r--r-- | apps/files/src/components/FilesListTableHeaderActions.vue | 2 | ||||
-rw-r--r-- | apps/files/src/components/FilesListVirtual.vue | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/apps/files/src/components/DragAndDropNotice.vue b/apps/files/src/components/DragAndDropNotice.vue index 23ebf7cd296..bf9a318657f 100644 --- a/apps/files/src/components/DragAndDropNotice.vue +++ b/apps/files/src/components/DragAndDropNotice.vue @@ -85,7 +85,7 @@ export default defineComponent({ if (this.isQuotaExceeded) { return this.t('files', 'Your have used your space quota and cannot upload files anymore') } else if (!this.canUpload) { - return this.t('files', 'You don’t have permission to upload or create files here') + return this.t('files', 'You don\'t have permission to upload or create files here.') } return null }, diff --git a/apps/files/src/components/FilesListTableHeaderActions.vue b/apps/files/src/components/FilesListTableHeaderActions.vue index ff7dc39589a..4d2f2f361e6 100644 --- a/apps/files/src/components/FilesListTableHeaderActions.vue +++ b/apps/files/src/components/FilesListTableHeaderActions.vue @@ -300,7 +300,7 @@ export default defineComponent({ return } - showError(this.t('files', '"{displayName}" failed on some elements ', { displayName })) + showError(this.t('files', '"{displayName}" failed on some elements', { displayName })) return } 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.') |