LANG.js 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. msgNo: 'No',
  24. msgNoFilesSelected: 'No files selected',
  25. msgCancelled: 'Cancelled',
  26. msgZoomModalHeading: 'Detailed Preview',
  27. msgSizeTooLarge: 'File "{name}" (<b>{size} KB</b>) exceeds maximum allowed upload size of <b>{maxSize} KB</b>.',
  28. msgFilesTooLess: 'You must select at least <b>{n}</b> {files} to upload.',
  29. msgFilesTooMany: 'Number of files selected for upload <b>({n})</b> exceeds maximum allowed limit of <b>{m}</b>.',
  30. msgFileNotFound: 'File "{name}" not found!',
  31. msgFileSecured: 'Security restrictions prevent reading the file "{name}".',
  32. msgFileNotReadable: 'File "{name}" is not readable.',
  33. msgFilePreviewAborted: 'File preview aborted for "{name}".',
  34. msgFilePreviewError: 'An error occurred while reading the file "{name}".',
  35. msgInvalidFileType: 'Invalid type for file "{name}". Only "{types}" files are supported.',
  36. msgInvalidFileExtension: 'Invalid extension for file "{name}". Only "{extensions}" files are supported.',
  37. msgUploadAborted: 'The file upload was aborted',
  38. msgUploadThreshold: 'Processing...',
  39. msgValidationError: 'Validation Error',
  40. msgLoading: 'Loading file {index} of {files} &hellip;',
  41. msgProgress: 'Loading file {index} of {files} - {name} - {percent}% completed.',
  42. msgSelected: '{n} {files} selected',
  43. msgFoldersNotAllowed: 'Drag & drop files only! Skipped {n} dropped folder(s).',
  44. msgImageWidthSmall: 'Width of image file "{name}" must be at least {size} px.',
  45. msgImageHeightSmall: 'Height of image file "{name}" must be at least {size} px.',
  46. msgImageWidthLarge: 'Width of image file "{name}" cannot exceed {size} px.',
  47. msgImageHeightLarge: 'Height of image file "{name}" cannot exceed {size} px.',
  48. msgImageResizeError: 'Could not get the image dimensions to resize.',
  49. msgImageResizeException: 'Error while resizing the image.<pre>{errors}</pre>',
  50. dropZoneTitle: 'Drag & drop files here &hellip;',
  51. dropZoneClickTitle: '<br>(or click to select {files})',
  52. fileActionSettings: {
  53. removeTitle: 'Remove file',
  54. uploadTitle: 'Upload file',
  55. zoomTitle: 'View details',
  56. dragTitle: 'Move / Rearrange',
  57. indicatorNewTitle: 'Not uploaded yet',
  58. indicatorSuccessTitle: 'Uploaded',
  59. indicatorErrorTitle: 'Upload Error',
  60. indicatorLoadingTitle: 'Uploading ...'
  61. },
  62. previewZoomButtonTitles: {
  63. prev: 'View previous file',
  64. next: 'View next file',
  65. toggleheader: 'Toggle header',
  66. fullscreen: 'Toggle full screen',
  67. borderless: 'Toggle borderless mode',
  68. close: 'Close detailed preview'
  69. }
  70. };
  71. })(window.jQuery);