1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-01 23:20:51 +00:00

[fileupload] fixed error msg

This commit is contained in:
llj
2017-09-25 15:29:27 +08:00
parent 71b089f9b3
commit c66a0bf6a7
2 changed files with 2 additions and 2 deletions

View File

@@ -74,7 +74,7 @@ window.locale = {
"maxFileSize": "{% trans "File is too big" %}", "maxFileSize": "{% trans "File is too big" %}",
"minFileSize": "{% trans "File is too small" %}", "minFileSize": "{% trans "File is too small" %}",
"acceptFileTypes": "{% trans "Filetype not allowed" %}", "acceptFileTypes": "{% trans "Filetype not allowed" %}",
"maxNumberOfFiles": "{% trans "Max number of files exceeded" %}", "maxNumberOfFiles": "{% trans "Maximum number of files exceeded" %}",
"uploadedBytes": "{% trans "Uploaded bytes exceed file size" %}", "uploadedBytes": "{% trans "Uploaded bytes exceed file size" %}",
"emptyResult": "{% trans "Empty file upload result" %}" "emptyResult": "{% trans "Empty file upload result" %}"
}, },

View File

@@ -10,7 +10,7 @@ define([
"maxFileSize": gettext("File is too big"), "maxFileSize": gettext("File is too big"),
"minFileSize": gettext("File is too small"), "minFileSize": gettext("File is too small"),
"acceptFileTypes": gettext("Filetype not allowed"), "acceptFileTypes": gettext("Filetype not allowed"),
"maxNumberOfFiles": gettext("Max number of files exceeded"), "maxNumberOfFiles": gettext("Maximum number of files exceeded"),
"uploadedBytes": gettext("Uploaded bytes exceed file size"), "uploadedBytes": gettext("Uploaded bytes exceed file size"),
"emptyResult": gettext("Empty file upload result") "emptyResult": gettext("Empty file upload result")
}, },