From 8327763a428364b9c6afa507f479a06bf2f42cb3 Mon Sep 17 00:00:00 2001 From: Valdnet <47037905+Valdnet@users.noreply.github.com> Date: Thu, 28 Jan 2021 09:23:59 +0100 Subject: [PATCH] l10n: Add word "file" --- src/store/fileUploadStore.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store/fileUploadStore.js b/src/store/fileUploadStore.js index 9eedff3fbe..9f835526eb 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 to upload "{fileName}"', { fileName })) + showError(t('spreed', 'Not enough free space to upload file "{fileName}"', { fileName })) } else { showError(t('spreed', 'Error while uploading file "{fileName}"', { fileName })) }