fileinput_locale_LANG.js 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. msgZoomTitle: 'View details',
  24. msgZoomModalHeading: 'Detailed Preview',
  25. msgSizeTooLarge: 'File "{name}" (<b>{size} KB</b>) exceeds maximum allowed upload size of <b>{maxSize} KB</b>.',
  26. msgFilesTooLess: 'You must select at least <b>{n}</b> {files} to upload.',
  27. msgFilesTooMany: 'Number of files selected for upload <b>({n})</b> exceeds maximum allowed limit of <b>{m}</b>.',
  28. msgFileNotFound: 'File "{name}" not found!',
  29. msgFileSecured: 'Security restrictions prevent reading the file "{name}".',
  30. msgFileNotReadable: 'File "{name}" is not readable.',
  31. msgFilePreviewAborted: 'File preview aborted for "{name}".',
  32. msgFilePreviewError: 'An error occurred while reading the file "{name}".',
  33. msgInvalidFileType: 'Invalid type for file "{name}". Only "{types}" files are supported.',
  34. msgInvalidFileExtension: 'Invalid extension for file "{name}". Only "{extensions}" files are supported.',
  35. msgValidationError: 'File Upload Error',
  36. msgLoading: 'Loading file {index} of {files} &hellip;',
  37. msgProgress: 'Loading file {index} of {files} - {name} - {percent}% completed.',
  38. msgSelected: '{n} {files} selected',
  39. msgFoldersNotAllowed: 'Drag & drop files only! Skipped {n} dropped folder(s).',
  40. msgImageWidthSmall: 'Width of image file "{name}" must be at least {size} px.',
  41. msgImageHeightSmall: 'Height of image file "{name}" must be at least {size} px.',
  42. msgImageWidthLarge: 'Width of image file "{name}" cannot exceed {size} px.',
  43. msgImageHeightLarge: 'Height of image file "{name}" cannot exceed {size} px.',
  44. dropZoneTitle: 'Drag & drop files here &hellip;'
  45. };
  46. })(window.jQuery);