mirror of
https://github.com/mindoc-org/mindoc.git
synced 2025-04-05 20:17:53 +08:00
99 lines
4.6 KiB
Go
99 lines
4.6 KiB
Go
/*!
|
|
* FileInput Estonian Translations
|
|
*
|
|
* This file must be loaded after 'fileinput.js'. Patterns in braces '{}', or
|
|
* any HTML markup tags in the messages must not be converted or translated.
|
|
*
|
|
* @see http://github.com/kartik-v/bootstrap-fileinput
|
|
*
|
|
* NOTE: this file must be saved in UTF-8 encoding.
|
|
*/
|
|
(function ($) {
|
|
"use strict";
|
|
|
|
$.fn.fileinputLocales['et'] = {
|
|
fileSingle: 'fail',
|
|
filePlural: 'failid',
|
|
browseLabel: 'Sirvi …',
|
|
removeLabel: 'Eemalda',
|
|
removeTitle: 'Clear selected files',
|
|
cancelLabel: 'Tühista',
|
|
cancelTitle: 'Abort ongoing upload',
|
|
uploadLabel: 'Salvesta',
|
|
uploadTitle: 'Salvesta valitud failid',
|
|
msgNo: 'No',
|
|
msgNoFilesSelected: 'No files selected',
|
|
msgCancelled: 'Cancelled',
|
|
msgPlaceholder: 'Select {files}...',
|
|
msgZoomModalHeading: 'Detailed Preview',
|
|
msgFileRequired: 'You must select a file to upload.',
|
|
msgSizeTooSmall: 'File "{name}" (<b>{size} KB</b>) is too small and must be larger than <b>{minSize} KB</b>.',
|
|
msgSizeTooLarge: 'Fail "{name}" (<b>{size} KB</b>) ületab lubatu suuruse <b>{maxSize} KB</b>.',
|
|
msgFilesTooLess: 'You must select at least <b>{n}</b> {files} to upload.',
|
|
msgFilesTooMany: 'Number of files selected for upload <b>({n})</b> exceeds maximum allowed limit of <b>{m}</b>.',
|
|
msgFileNotFound: 'File "{name}" not found!',
|
|
msgFileSecured: 'Security restrictions prevent reading the file "{name}".',
|
|
msgFileNotReadable: 'File "{name}" is not readable.',
|
|
msgFilePreviewAborted: 'File preview aborted for "{name}".',
|
|
msgFilePreviewError: 'An error occurred while reading the file "{name}".',
|
|
msgInvalidFileName: 'Invalid or unsupported characters in file name "{name}".',
|
|
msgInvalidFileType: '"{name}" on vale tüüpi. Ainult "{types}" on lubatud.',
|
|
msgInvalidFileExtension: 'Invalid extension for file "{name}". Only "{extensions}" files are supported.',
|
|
msgFileTypes: {
|
|
'image': 'image',
|
|
'html': 'HTML',
|
|
'text': 'text',
|
|
'video': 'video',
|
|
'audio': 'audio',
|
|
'flash': 'flash',
|
|
'pdf': 'PDF',
|
|
'object': 'object'
|
|
},
|
|
msgUploadAborted: 'The file upload was aborted',
|
|
msgUploadThreshold: 'Processing...',
|
|
msgUploadBegin: 'Initializing...',
|
|
msgUploadEnd: 'Done',
|
|
msgUploadEmpty: 'No valid data available for upload.',
|
|
msgUploadError: 'Error',
|
|
msgValidationError: 'Validation Error',
|
|
msgLoading: 'Loading file {index} of {files} …',
|
|
msgProgress: 'Loading file {index} of {files} - {name} - {percent}% completed.',
|
|
msgSelected: '{n} {files} selected',
|
|
msgFoldersNotAllowed: 'Drag & drop files only! Skipped {n} dropped folder(s).',
|
|
msgImageWidthSmall: 'Pildi laius peab olema vähemalt {size} px.',
|
|
msgImageHeightSmall: 'Pildi kõrgus peab olema vähemalt {size} px.',
|
|
msgImageWidthLarge: 'Width of image file "{name}" cannot exceed {size} px.',
|
|
msgImageHeightLarge: 'Height of image file "{name}" cannot exceed {size} px.',
|
|
msgImageResizeError: 'Could not get the image dimensions to resize.',
|
|
msgImageResizeException: 'Error while resizing the image.<pre>{errors}</pre>',
|
|
msgAjaxError: 'Something went wrong with the {operation} operation. Please try again later!',
|
|
msgAjaxProgressError: '{operation} failed',
|
|
ajaxOperations: {
|
|
deleteThumb: 'file delete',
|
|
uploadThumb: 'file upload',
|
|
uploadBatch: 'batch file upload',
|
|
uploadExtra: 'form data upload'
|
|
},
|
|
dropZoneTitle: 'Lohista failid siia …',
|
|
dropZoneClickTitle: '<br>(or click to select {files})',
|
|
fileActionSettings: {
|
|
removeTitle: 'Eemalda fail',
|
|
uploadTitle: 'Salvesta fail',
|
|
uploadRetryTitle: 'Retry upload',
|
|
zoomTitle: 'Vaata detaile',
|
|
dragTitle: 'Liiguta / Korralda',
|
|
indicatorNewTitle: 'Pole veel salvestatud',
|
|
indicatorSuccessTitle: 'Uploaded',
|
|
indicatorErrorTitle: 'Salvestamise viga',
|
|
indicatorLoadingTitle: 'Salvestan ...'
|
|
},
|
|
previewZoomButtonTitles: {
|
|
prev: 'View previous file',
|
|
next: 'View next file',
|
|
toggleheader: 'Toggle header',
|
|
fullscreen: 'Toggle full screen',
|
|
borderless: 'Toggle borderless mode',
|
|
close: 'Close detailed preview'
|
|
}
|
|
};
|
|
})(window.jQuery); |