summaryrefslogtreecommitdiffstats
path: root/src/store/fileUploadStore.js
diff options
context:
space:
mode:
authorVincent Petry <vincent@nextcloud.com>2021-01-27 16:47:04 +0100
committerVincent Petry <vincent@nextcloud.com>2021-01-27 16:47:04 +0100
commit42db03c1e29d9f8ece8528f2af95e93ad13782f5 (patch)
treec2abfbc8de6663eb00c9ece94b6805df17668143 /src/store/fileUploadStore.js
parentbaa64bc74875554f629393a857471596c97a5ac3 (diff)
Fix free space wording
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
Diffstat (limited to 'src/store/fileUploadStore.js')
-rw-r--r--src/store/fileUploadStore.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/store/fileUploadStore.js b/src/store/fileUploadStore.js
index 03c21591b..9eedff3fb 100644
--- a/src/store/fileUploadStore.js
+++ b/src/store/fileUploadStore.js
@@ -251,7 +251,7 @@ const actions = {
let reason = 'failed-upload'
if (exception.response.status === 507) {
reason = 'quota'
- showError(t('spreed', 'Not enough free space for uploading "{fileName}"', { fileName }))
+ showError(t('spreed', 'Not enough free space to upload "{fileName}"', { fileName }))
} else {
showError(t('spreed', 'Error while uploading file "{fileName}"', { fileName }))
}