summaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authorf varas <tatico@gmail.com>2021-02-09 22:12:48 +0100
committerGitHub <noreply@github.com>2021-02-10 07:12:48 +1000
commit3ab82de433cd260303e933628e4a07c96df5154a (patch)
tree81f21f37d779671b41f22f96287f37f7a1355edb /static
parenta920d7b0a8fc2c657a27a39c1ad5582bbfb7ba7f (diff)
fixes issue 30 (#32)
Diffstat (limited to 'static')
-rw-r--r--static/upload.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/static/upload.js b/static/upload.js
index 95b121d..f4da351 100644
--- a/static/upload.js
+++ b/static/upload.js
@@ -124,7 +124,7 @@ const fileSelected = (_file) => {
if (!file) return
if (file.size > iMaxFilesize) {
- setMessage('Your file is very big. We can\'t accept it. Please select more small file.', true)
+ setMessage('Your file is too big. It can\'t be accepted. Please select a smaller file.', true)
return
}