et.js 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. /*!
  2. * FileInput Estonian 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['et'] = {
  14. fileSingle: 'fail',
  15. filePlural: 'failid',
  16. browseLabel: 'Sirvi …',
  17. removeLabel: 'Eemalda',
  18. removeTitle: 'Clear selected files',
  19. cancelLabel: 'Tühista',
  20. cancelTitle: 'Abort ongoing upload',
  21. pauseLabel: 'Pause',
  22. pauseTitle: 'Pause ongoing upload',
  23. uploadLabel: 'Salvesta',
  24. uploadTitle: 'Salvesta valitud failid',
  25. msgNo: 'No',
  26. msgNoFilesSelected: 'No files selected',
  27. msgPaused: 'Paused',
  28. msgCancelled: 'Cancelled',
  29. msgPlaceholder: 'Select {files}...',
  30. msgZoomModalHeading: 'Detailed Preview',
  31. msgFileRequired: 'You must select a file to upload.',
  32. msgSizeTooSmall: 'File "{name}" (<b>{size} KB</b>) is too small and must be larger than <b>{minSize} KB</b>.',
  33. msgSizeTooLarge: 'Fail "{name}" (<b>{size} KB</b>) ületab lubatu suuruse <b>{maxSize} KB</b>.',
  34. msgFilesTooLess: 'You must select at least <b>{n}</b> {files} to upload.',
  35. msgFilesTooMany: 'Number of files selected for upload <b>({n})</b> exceeds maximum allowed limit of <b>{m}</b>.',
  36. msgFileNotFound: 'File "{name}" not found!',
  37. msgFileSecured: 'Security restrictions prevent reading the file "{name}".',
  38. msgFileNotReadable: 'File "{name}" is not readable.',
  39. msgFilePreviewAborted: 'File preview aborted for "{name}".',
  40. msgFilePreviewError: 'An error occurred while reading the file "{name}".',
  41. msgInvalidFileName: 'Invalid or unsupported characters in file name "{name}".',
  42. msgInvalidFileType: '"{name}" on vale tüüpi. Ainult "{types}" on lubatud.',
  43. msgInvalidFileExtension: 'Invalid extension for file "{name}". Only "{extensions}" files are supported.',
  44. msgFileTypes: {
  45. 'image': 'image',
  46. 'html': 'HTML',
  47. 'text': 'text',
  48. 'video': 'video',
  49. 'audio': 'audio',
  50. 'flash': 'flash',
  51. 'pdf': 'PDF',
  52. 'object': 'object'
  53. },
  54. msgUploadAborted: 'The file upload was aborted',
  55. msgUploadThreshold: 'Processing...',
  56. msgUploadBegin: 'Initializing...',
  57. msgUploadEnd: 'Done',
  58. msgUploadResume: 'Resuming upload...',
  59. msgUploadEmpty: 'No valid data available for upload.',
  60. msgUploadError: 'Error',
  61. msgValidationError: 'Validation Error',
  62. msgLoading: 'Loading file {index} of {files} &hellip;',
  63. msgProgress: 'Loading file {index} of {files} - {name} - {percent}% completed.',
  64. msgSelected: '{n} {files} selected',
  65. msgFoldersNotAllowed: 'Drag & drop files only! Skipped {n} dropped folder(s).',
  66. msgImageWidthSmall: 'Pildi laius peab olema vähemalt {size} px.',
  67. msgImageHeightSmall: 'Pildi kõrgus peab olema vähemalt {size} px.',
  68. msgImageWidthLarge: 'Width of image file "{name}" cannot exceed {size} px.',
  69. msgImageHeightLarge: 'Height of image file "{name}" cannot exceed {size} px.',
  70. msgImageResizeError: 'Could not get the image dimensions to resize.',
  71. msgImageResizeException: 'Error while resizing the image.<pre>{errors}</pre>',
  72. msgAjaxError: 'Something went wrong with the {operation} operation. Please try again later!',
  73. msgAjaxProgressError: '{operation} failed',
  74. msgDuplicateFile: 'File "{name}" of same size "{size} KB" has already been selected earlier. Skipping duplicate selection.',
  75. msgResumableUploadRetriesExceeded: 'Upload aborted beyond <b>{max}</b> retries for file <b>{file}</b>! Error Details: <pre>{error}</pre>',
  76. msgPendingTime: '{time} remaining',
  77. msgCalculatingTime: 'calculating time remaining',
  78. ajaxOperations: {
  79. deleteThumb: 'file delete',
  80. uploadThumb: 'file upload',
  81. uploadBatch: 'batch file upload',
  82. uploadExtra: 'form data upload'
  83. },
  84. dropZoneTitle: 'Lohista failid siia &hellip;',
  85. dropZoneClickTitle: '<br>(or click to select {files})',
  86. fileActionSettings: {
  87. removeTitle: 'Eemalda fail',
  88. uploadTitle: 'Salvesta fail',
  89. uploadRetryTitle: 'Retry upload',
  90. zoomTitle: 'Vaata detaile',
  91. dragTitle: 'Liiguta / Korralda',
  92. indicatorNewTitle: 'Pole veel salvestatud',
  93. indicatorSuccessTitle: 'Uploaded',
  94. indicatorErrorTitle: 'Salvestamise viga',
  95. indicatorLoadingTitle: 'Salvestan ...'
  96. },
  97. previewZoomButtonTitles: {
  98. prev: 'View previous file',
  99. next: 'View next file',
  100. toggleheader: 'Toggle header',
  101. fullscreen: 'Toggle full screen',
  102. borderless: 'Toggle borderless mode',
  103. close: 'Close detailed preview'
  104. }
  105. };
  106. })(window.jQuery);