fi.js 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /*!
  2. * FileInput Finnish 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.fi = {
  14. fileSingle: 'tiedosto',
  15. filePlural: 'tiedostot',
  16. browseLabel: 'Selaa …',
  17. removeLabel: 'Poista',
  18. removeTitle: 'Tyhjännä valitut tiedostot',
  19. cancelLabel: 'Peruuta',
  20. cancelTitle: 'Peruuta lataus',
  21. uploadLabel: 'Lataa',
  22. uploadTitle: 'Lataa valitut tiedostot',
  23. msgSizeTooLarge: 'Tiedosto "{name}" (<b>{size} Kt</b>) ylitt&auml;&auml; suurimman sallitun tiedoston koon, joka on <b>{maxSize} Kt</b>. Yrit&auml; uudelleen!',
  24. msgFilesTooLess: 'V&auml;hint&auml;&auml;n <b>{n}</b> {files} tiedostoa on valittava ladattavaksi. Ole hyv&auml; ja yrit&auml; uudelleen!',
  25. msgFilesTooMany: 'Valittujen tiedostojen lukum&auml;&auml;r&auml; <b>({n})</b> ylitt&auml;&auml; suurimman sallitun m&auml;&auml;r&auml;n <b>{m}</b>. Ole hyv&auml; ja yrit&auml; uudelleen!',
  26. msgFileNotFound: 'Tiedostoa "{name}" ei l&ouml;ydy!',
  27. msgFileSecured: 'Tietoturvarajoitukset est&auml;v&auml;t tiedoston "{name}" lukemisen.',
  28. msgFileNotReadable: 'Tiedosto "{name}" ei ole luettavissa.',
  29. msgFilePreviewAborted: 'Tiedoston "{name}" esikatselu keskeytetty.',
  30. msgFilePreviewError: 'Virhe on tapahtunut luettaessa tiedostoa "{name}".',
  31. msgInvalidFileType: 'Tiedosto "{name}" on v&auml;&auml;r&auml;n tyyppinen. Ainoastaan tiedostot tyyppi&auml; "{types}" ovat tuettuja.',
  32. msgInvalidFileExtension: 'Tiedoston "{name}" tarkenne on ep&auml;kelpo. Ainoastaan tarkenteet "{extensions}" ovat tuettuja.',
  33. msgValidationError: 'Tiedoston latausvirhe',
  34. msgLoading: 'Ladataan tiedostoa {index} / {files} &hellip;',
  35. msgProgress: 'Ladataan tiedostoa {index} / {files} - {name} - {percent}% valmistunut.',
  36. msgSelected: '{n} tiedostoa valittu',
  37. msgFoldersNotAllowed: 'Raahaa ja pudota ainoastaan tiedostoja! Ohitettu {n} raahattua kansiota.',
  38. dropZoneTitle: 'Raahaa ja pudota tiedostot t&auml;h&auml;n &hellip;',
  39. dropZoneClickTitle: '<br>(or click to select {files})',
  40. fileActionSettings: {
  41. removeTitle: 'Remove file',
  42. uploadTitle: 'Upload file',
  43. zoomTitle: 'View Details',
  44. dragTitle: 'Move / Rearrange',
  45. indicatorNewTitle: 'Not uploaded yet',
  46. indicatorSuccessTitle: 'Uploaded',
  47. indicatorErrorTitle: 'Upload Error',
  48. indicatorLoadingTitle: 'Uploading ...'
  49. },
  50. previewZoomButtonTitles: {
  51. prev: 'View previous file',
  52. next: 'View next file',
  53. toggleheader: 'Toggle header',
  54. fullscreen: 'Toggle full screen',
  55. borderless: 'Toggle borderless mode',
  56. close: 'Close detailed preview'
  57. }
  58. };
  59. $.extend($.fn.fileinput.defaults, $.fn.fileinputLocales.fi);
  60. })(window.jQuery);