diff options
author | Valdnet <47037905+Valdnet@users.noreply.github.com> | 2021-05-20 11:27:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-20 11:27:24 +0200 |
commit | 7ffee26aa8768736593c77dcb12d17978a6e06b2 (patch) | |
tree | f570754f02d47e081d61a9f0bf783ebd8d7cc780 /apps/files | |
parent | 5432c958be918bece086ccf32ffd86f68bbda675 (diff) | |
parent | dc981623aa040c7e16dfcff16916a7706c689750 (diff) | |
download | nextcloud-server-7ffee26aa8768736593c77dcb12d17978a6e06b2.tar.gz nextcloud-server-7ffee26aa8768736593c77dcb12d17978a6e06b2.zip |
Merge pull request #26511 from nextcloud/Valdnet-patch-4
l10n: Unify spelling
Diffstat (limited to 'apps/files')
-rw-r--r-- | apps/files/js/files.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/files/js/files.js b/apps/files/js/files.js index 6dbd87c1e2e..4de3fb4352f 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -162,24 +162,24 @@ mountPoint = $('#usedSpacePercent').data('mount-point'); if (usedSpacePercent > 98) { if (owner !== OC.getCurrentUser().uid) { - OC.Notification.show(t('files', 'Storage of {owner} is full, files can not be updated or synced anymore!', + OC.Notification.show(t('files', 'Storage of {owner} is full, files cannot be updated or synced anymore!', {owner: ownerDisplayName}), {type: 'error'} ); } else if (mountType === 'group') { OC.Notification.show(t('files', - 'Group folder "{mountPoint}" is full, files can not be updated or synced anymore!', + 'Group folder "{mountPoint}" is full, files cannot be updated or synced anymore!', {mountPoint: mountPoint}), {type: 'error'} ); } else if (mountType === 'external') { OC.Notification.show(t('files', - 'External storage "{mountPoint}" is full, files can not be updated or synced anymore!', + 'External storage "{mountPoint}" is full, files cannot be updated or synced anymore!', {mountPoint: mountPoint}), {type : 'error'} ); } else { OC.Notification.show(t('files', - 'Your storage is full, files can not be updated or synced anymore!'), + 'Your storage is full, files cannot be updated or synced anymore!'), {type: 'error'} ); } |