et.js 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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: 'Upload Error',
  61. msgDeleteError: 'Delete Error',
  62. msgProgressError: 'Error',
  63. msgValidationError: 'Validation Error',
  64. msgLoading: 'Loading file {index} of {files} &hellip;',
  65. msgProgress: 'Loading file {index} of {files} - {name} - {percent}% completed.',
  66. msgSelected: '{n} {files} selected',
  67. msgFoldersNotAllowed: 'Drag & drop files only! Skipped {n} dropped folder(s).',
  68. msgImageWidthSmall: 'Pildi laius peab olema vähemalt {size} px.',
  69. msgImageHeightSmall: 'Pildi kõrgus peab olema vähemalt {size} px.',
  70. msgImageWidthLarge: 'Width of image file "{name}" cannot exceed {size} px.',
  71. msgImageHeightLarge: 'Height of image file "{name}" cannot exceed {size} px.',
  72. msgImageResizeError: 'Could not get the image dimensions to resize.',
  73. msgImageResizeException: 'Error while resizing the image.<pre>{errors}</pre>',
  74. msgAjaxError: 'Something went wrong with the {operation} operation. Please try again later!',
  75. msgAjaxProgressError: '{operation} failed',
  76. msgDuplicateFile: 'File "{name}" of same size "{size} KB" has already been selected earlier. Skipping duplicate selection.',
  77. msgResumableUploadRetriesExceeded: 'Upload aborted beyond <b>{max}</b> retries for file <b>{file}</b>! Error Details: <pre>{error}</pre>',
  78. msgPendingTime: '{time} remaining',
  79. msgCalculatingTime: 'calculating time remaining',
  80. ajaxOperations: {
  81. deleteThumb: 'file delete',
  82. uploadThumb: 'file upload',
  83. uploadBatch: 'batch file upload',
  84. uploadExtra: 'form data upload'
  85. },
  86. dropZoneTitle: 'Lohista failid siia &hellip;',
  87. dropZoneClickTitle: '<br>(or click to select {files})',
  88. fileActionSettings: {
  89. removeTitle: 'Eemalda fail',
  90. uploadTitle: 'Salvesta fail',
  91. uploadRetryTitle: 'Retry upload',
  92. zoomTitle: 'Vaata detaile',
  93. dragTitle: 'Liiguta / Korralda',
  94. indicatorNewTitle: 'Pole veel salvestatud',
  95. indicatorSuccessTitle: 'Uploaded',
  96. indicatorErrorTitle: 'Salvestamise viga',
  97. indicatorPausedTitle: 'Upload Paused',
  98. indicatorLoadingTitle: 'Salvestan ...'
  99. },
  100. previewZoomButtonTitles: {
  101. prev: 'View previous file',
  102. next: 'View next file',
  103. toggleheader: 'Toggle header',
  104. fullscreen: 'Toggle full screen',
  105. borderless: 'Toggle borderless mode',
  106. close: 'Close detailed preview'
  107. }
  108. };
  109. })(window.jQuery);