LANG.js 4.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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. msgUploadEmpty: 'No valid data available for upload.',
  52. msgValidationError: 'Validation Error',
  53. msgLoading: 'Loading file {index} of {files} &hellip;',
  54. msgProgress: 'Loading file {index} of {files} - {name} - {percent}% completed.',
  55. msgSelected: '{n} {files} selected',
  56. msgFoldersNotAllowed: 'Drag & drop files only! Skipped {n} dropped folder(s).',
  57. msgImageWidthSmall: 'Width of image file "{name}" must be at least {size} px.',
  58. msgImageHeightSmall: 'Height of image file "{name}" must be at least {size} px.',
  59. msgImageWidthLarge: 'Width of image file "{name}" cannot exceed {size} px.',
  60. msgImageHeightLarge: 'Height of image file "{name}" cannot exceed {size} px.',
  61. msgImageResizeError: 'Could not get the image dimensions to resize.',
  62. msgImageResizeException: 'Error while resizing the image.<pre>{errors}</pre>',
  63. dropZoneTitle: 'Drag & drop files here &hellip;',
  64. dropZoneClickTitle: '<br>(or click to select {files})',
  65. fileActionSettings: {
  66. removeTitle: 'Remove file',
  67. uploadTitle: 'Upload file',
  68. zoomTitle: 'View details',
  69. dragTitle: 'Move / Rearrange',
  70. indicatorNewTitle: 'Not uploaded yet',
  71. indicatorSuccessTitle: 'Uploaded',
  72. indicatorErrorTitle: 'Upload Error',
  73. indicatorLoadingTitle: 'Uploading ...'
  74. },
  75. previewZoomButtonTitles: {
  76. prev: 'View previous file',
  77. next: 'View next file',
  78. toggleheader: 'Toggle header',
  79. fullscreen: 'Toggle full screen',
  80. borderless: 'Toggle borderless mode',
  81. close: 'Close detailed preview'
  82. }
  83. };
  84. })(window.jQuery);