first commit
This commit is contained in:
91
WebRoot/node_modules/bootstrap-fileinput/js/locales/fi.js
generated
vendored
Normal file
91
WebRoot/node_modules/bootstrap-fileinput/js/locales/fi.js
generated
vendored
Normal file
@ -0,0 +1,91 @@
|
||||
/*!
|
||||
* FileInput Finnish 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.fi = {
|
||||
fileSingle: 'tiedosto',
|
||||
filePlural: 'tiedostot',
|
||||
browseLabel: 'Selaa …',
|
||||
removeLabel: 'Poista',
|
||||
removeTitle: 'Tyhjännä valitut tiedostot',
|
||||
cancelLabel: 'Peruuta',
|
||||
cancelTitle: 'Peruuta lataus',
|
||||
uploadLabel: 'Lataa',
|
||||
uploadTitle: 'Lataa valitut tiedostot',
|
||||
msgNoFilesSelected: '',
|
||||
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: 'Tiedosto "{name}" (<b>{size} Kt</b>) ylittää suurimman sallitun tiedoston koon, joka on <b>{maxSize} Kt</b>. Yritä uudelleen!',
|
||||
msgFilesTooLess: 'Vähintään <b>{n}</b> {files} tiedostoa on valittava ladattavaksi. Ole hyvä ja yritä uudelleen!',
|
||||
msgFilesTooMany: 'Valittujen tiedostojen lukumäärä <b>({n})</b> ylittää suurimman sallitun määrän <b>{m}</b>. Ole hyvä ja yritä uudelleen!',
|
||||
msgFileNotFound: 'Tiedostoa "{name}" ei löydy!',
|
||||
msgFileSecured: 'Tietoturvarajoitukset estävät tiedoston "{name}" lukemisen.',
|
||||
msgFileNotReadable: 'Tiedosto "{name}" ei ole luettavissa.',
|
||||
msgFilePreviewAborted: 'Tiedoston "{name}" esikatselu keskeytetty.',
|
||||
msgFilePreviewError: 'Virhe on tapahtunut luettaessa tiedostoa "{name}".',
|
||||
msgInvalidFileName: 'Invalid or unsupported characters in file name "{name}".',
|
||||
msgInvalidFileType: 'Tiedosto "{name}" on väärän tyyppinen. Ainoastaan tiedostot tyyppiä "{types}" ovat tuettuja.',
|
||||
msgInvalidFileExtension: 'Tiedoston "{name}" tarkenne on epäkelpo. Ainoastaan tarkenteet "{extensions}" ovat tuettuja.',
|
||||
msgFileTypes: {
|
||||
'image': 'Kuva',
|
||||
'html': 'HTML',
|
||||
'text': 'Teksti',
|
||||
'video': 'Video',
|
||||
'audio': 'Ääni',
|
||||
'flash': 'Flash',
|
||||
'pdf': 'PDF',
|
||||
'object': 'Olio'
|
||||
},
|
||||
msgUploadThreshold: 'Käsitellään...',
|
||||
msgUploadBegin: 'Initializing...',
|
||||
msgUploadEnd: 'Done',
|
||||
msgUploadEmpty: 'Ei ladattavaa dataa.',
|
||||
msgUploadError: 'Error',
|
||||
msgValidationError: 'Tiedoston latausvirhe',
|
||||
msgLoading: 'Ladataan tiedostoa {index} / {files} …',
|
||||
msgProgress: 'Ladataan tiedostoa {index} / {files} - {name} - {percent}% valmistunut.',
|
||||
msgSelected: '{n} tiedostoa valittu',
|
||||
msgFoldersNotAllowed: 'Raahaa ja pudota ainoastaan tiedostoja! Ohitettu {n} raahattua kansiota.',
|
||||
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: 'Raahaa ja pudota tiedostot tähän …',
|
||||
dropZoneClickTitle: '<br>(tai valitse hiirellä {files})',
|
||||
fileActionSettings: {
|
||||
removeTitle: 'Poista tiedosto',
|
||||
uploadTitle: 'Upload file',
|
||||
uploadRetryTitle: 'Retry upload',
|
||||
downloadTitle: 'Download file',
|
||||
zoomTitle: 'Yksityiskohdat',
|
||||
dragTitle: 'Siirrä / Järjestele',
|
||||
indicatorNewTitle: 'Ei ladattu',
|
||||
indicatorSuccessTitle: 'Ladattu',
|
||||
indicatorErrorTitle: 'Lataus epäonnistui',
|
||||
indicatorLoadingTitle: 'Ladataan ...'
|
||||
},
|
||||
previewZoomButtonTitles: {
|
||||
prev: 'Seuraava tiedosto',
|
||||
next: 'Edellinen tiedosto',
|
||||
toggleheader: 'Näytä otsikko',
|
||||
fullscreen: 'Kokonäytön tila',
|
||||
borderless: 'Rajaton tila',
|
||||
close: 'Sulje esikatselu'
|
||||
}
|
||||
};
|
||||
|
||||
$.extend($.fn.fileinput.defaults, $.fn.fileinputLocales.fi);
|
||||
})(window.jQuery);
|
||||
Reference in New Issue
Block a user