LANG.js 4.0 KB

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