fileinput_locale_LANG.js 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /*!
  2. * FileInput <_LANG_> Translations
  3. *
  4. * This file must be loaded after 'fileinput.js'. Patterns in braces '{}', or
  5. * any HTML markup tags in the messages must not be converted or translated.
  6. *
  7. * @see http://github.com/kartik-v/bootstrap-fileinput
  8. *
  9. * NOTE: this file must be saved in UTF-8 encoding.
  10. */
  11. (function ($) {
  12. "use strict";
  13. $.fn.fileinputLocales['_LANG_'] = {
  14. fileSingle: 'file',
  15. filePlural: 'files',
  16. browseLabel: 'Browse &hellip;',
  17. removeLabel: 'Remove',
  18. removeTitle: 'Clear selected files',
  19. cancelLabel: 'Cancel',
  20. cancelTitle: 'Abort ongoing upload',
  21. uploadLabel: 'Upload',
  22. uploadTitle: 'Upload selected files',
  23. msgSizeTooLarge: 'File "{name}" (<b>{size} KB</b>) exceeds maximum allowed upload size of <b>{maxSize} KB</b>. Please retry your upload!',
  24. msgFilesTooLess: 'You must select at least <b>{n}</b> {files} to upload. Please retry your upload!',
  25. msgFilesTooMany: 'Number of files selected for upload <b>({n})</b> exceeds maximum allowed limit of <b>{m}</b>. Please retry your upload!',
  26. msgFileNotFound: 'File "{name}" not found!',
  27. msgFileSecured: 'Security restrictions prevent reading the file "{name}".',
  28. msgFileNotReadable: 'File "{name}" is not readable.',
  29. msgFilePreviewAborted: 'File preview aborted for "{name}".',
  30. msgFilePreviewError: 'An error occurred while reading the file "{name}".',
  31. msgInvalidFileType: 'Invalid type for file "{name}". Only "{types}" files are supported.',
  32. msgInvalidFileExtension: 'Invalid extension for file "{name}". Only "{extensions}" files are supported.',
  33. msgValidationError: 'File Upload Error',
  34. msgLoading: 'Loading file {index} of {files} &hellip;',
  35. msgProgress: 'Loading file {index} of {files} - {name} - {percent}% completed.',
  36. msgSelected: '{n} {files} selected',
  37. msgFoldersNotAllowed: 'Drag & drop files only! Skipped {n} dropped folder(s).',
  38. msgImageWidthSmall: 'Width of image file "{name}" must be at least {size} px.',
  39. msgImageHeightSmall: 'Height of image file "{name}" must be at least {size} px.',
  40. msgImageWidthLarge: 'Width of image file "{name}" cannot exceed {size} px.',
  41. msgImageHeightLarge: 'Height of image file "{name}" cannot exceed {size} px.',
  42. dropZoneTitle: 'Drag & drop files here &hellip;'
  43. };
  44. })(window.jQuery);