locale.js 792 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. * jQuery File Upload Plugin Localization Example 6.5.1
  3. * https://github.com/blueimp/jQuery-File-Upload
  4. *
  5. * Copyright 2012, Sebastian Tschan
  6. * https://blueimp.net
  7. *
  8. * Licensed under the MIT license:
  9. * http://www.opensource.org/licenses/MIT
  10. */
  11. /*global window */
  12. window.locale = {
  13. "fileupload": {
  14. "errors": {
  15. "maxFileSize": "File is too big",
  16. "minFileSize": "File is too small",
  17. "acceptFileTypes": "Filetype not allowed",
  18. "maxNumberOfFiles": "Max number of files exceeded",
  19. "uploadedBytes": "Uploaded bytes exceed file size",
  20. "emptyResult": "Empty file upload result"
  21. },
  22. "error": "Error",
  23. "start": "Start",
  24. "cancel": "Cancel",
  25. "destroy": "Delete"
  26. }
  27. };