mirror of
https://github.com/nextcloud/server.git
synced 2026-06-10 17:23:59 -04:00
fix(l10n): use do not instead of don't
Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
This commit is contained in:
parent
2e5fa36e60
commit
32d6ba0129
3 changed files with 3 additions and 3 deletions
|
|
@ -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
|
||||
},
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@
|
|||
</div>
|
||||
<div class="notCreatable notPublic hidden">
|
||||
<div class="icon-alert-outline"></div>
|
||||
<?php p($l->t('You don\'t have permission to upload or create files here.'))?>
|
||||
<?php p($l->t('You do not have permission to upload or create files here.'))?>
|
||||
</div>
|
||||
<?php /* Note: the template attributes are here only for the public page. These are normally loaded
|
||||
through ajax instead (updateStorageStatistics).
|
||||
|
|
|
|||
|
|
@ -708,7 +708,7 @@ export default {
|
|||
},
|
||||
errorPasswordLabel() {
|
||||
if (this.passwordError) {
|
||||
return t('files_sharing', "Password field can't be empty")
|
||||
return t('files_sharing', "Password field cannot be empty")
|
||||
}
|
||||
return undefined
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in a new issue