Skip to content

Commit 2882879

Browse files
Valdnetskjnldsv
authored andcommitted
fix(l10n): use do not instead of don't
Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
1 parent 45b0a03 commit 2882879

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

apps/files/src/components/DragAndDropNotice.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ export default defineComponent({
8585
if (this.isQuotaExceeded) {
8686
return this.t('files', 'Your have used your space quota and cannot upload files anymore')
8787
} else if (!this.canUpload) {
88-
return this.t('files', 'You don\'t have permission to upload or create files here.')
88+
return this.t('files', 'You do not have permission to upload or create files here.')
8989
}
9090
return null
9191
},

apps/files/src/components/FilesListVirtual.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ export default defineComponent({
189189
caption() {
190190
const defaultCaption = t('files', 'List of files and folders.')
191191
const viewCaption = this.currentView.caption || defaultCaption
192-
const cantUploadCaption = this.cantUpload ? t('files', 'You don\'t have permission to upload or create files here.') : null
192+
const cantUploadCaption = this.cantUpload ? t('files', 'You do not have permission to upload or create files here.') : null
193193
const quotaExceededCaption = this.isQuotaExceeded ? t('files', 'You have used your space quota and cannot upload files anymore.') : null
194194
const sortableCaption = t('files', 'Column headers with buttons are sortable.')
195195
const virtualListNote = t('files', 'This list is not fully rendered for performance reasons. The files will be rendered as you navigate through the list.')

apps/files/templates/list.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
</div>
1414
<div class="notCreatable notPublic hidden">
1515
<div class="icon-alert-outline"></div>
16-
<?php p($l->t('You don\'t have permission to upload or create files here.'))?>
16+
<?php p($l->t('You do not have permission to upload or create files here.'))?>
1717
</div>
1818
<?php /* Note: the template attributes are here only for the public page. These are normally loaded
1919
through ajax instead (updateStorageStatistics).

apps/files_sharing/src/views/SharingDetailsTab.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -743,7 +743,7 @@ export default {
743743
},
744744
errorPasswordLabel() {
745745
if (this.passwordError) {
746-
return t('files_sharing', "Password field can't be empty")
746+
return t('files_sharing', "Password field cannot be empty")
747747
}
748748
return undefined
749749
},

0 commit comments

Comments
 (0)