diff options
author | Valdnet <47037905+Valdnet@users.noreply.github.com> | 2025-02-28 16:16:27 +0100 |
---|---|---|
committer | skjnldsv <skjnldsv@protonmail.com> | 2025-02-28 16:43:14 +0100 |
commit | 288287935a6056c8d156d6bc8a080ade5e107500 (patch) | |
tree | 76aad206f81183410cab62f409336d93d0003d2c /apps/files/src | |
parent | 45b0a0379e5c763a3eec766ee75f3de112f56227 (diff) | |
download | nextcloud-server-288287935a6056c8d156d6bc8a080ade5e107500.tar.gz nextcloud-server-288287935a6056c8d156d6bc8a080ade5e107500.zip |
fix(l10n): use `do not` instead of `don't`
Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
Diffstat (limited to 'apps/files/src')
-rw-r--r-- | apps/files/src/components/DragAndDropNotice.vue | 2 | ||||
-rw-r--r-- | apps/files/src/components/FilesListVirtual.vue | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/src/components/DragAndDropNotice.vue b/apps/files/src/components/DragAndDropNotice.vue index bf9a318657f..38d07c94d80 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 do not have permission to upload or create files here.') } return null }, diff --git a/apps/files/src/components/FilesListVirtual.vue b/apps/files/src/components/FilesListVirtual.vue index 628700f072a..43e043b2c3c 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 do not 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.') |