fi.js 4.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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. msgNoFilesSelected: '',
  24. msgSizeTooSmall: 'File "{name}" (<b>{size} KB</b>) is too small and must be larger than <b>{minSize} KB</b>.',
  25. msgSizeTooLarge: 'Tiedosto "{name}" (<b>{size} Kt</b>) ylitt&auml;&auml; suurimman sallitun tiedoston koon, joka on <b>{maxSize} Kt</b>. Yrit&auml; uudelleen!',
  26. msgFilesTooLess: 'V&auml;hint&auml;&auml;n <b>{n}</b> {files} tiedostoa on valittava ladattavaksi. Ole hyv&auml; ja yrit&auml; uudelleen!',
  27. 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!',
  28. msgFileNotFound: 'Tiedostoa "{name}" ei l&ouml;ydy!',
  29. msgFileSecured: 'Tietoturvarajoitukset est&auml;v&auml;t tiedoston "{name}" lukemisen.',
  30. msgFileNotReadable: 'Tiedosto "{name}" ei ole luettavissa.',
  31. msgFilePreviewAborted: 'Tiedoston "{name}" esikatselu keskeytetty.',
  32. msgFilePreviewError: 'Virhe on tapahtunut luettaessa tiedostoa "{name}".',
  33. msgInvalidFileName: 'Invalid or unsupported characters in file name "{name}".',
  34. msgInvalidFileType: 'Tiedosto "{name}" on v&auml;&auml;r&auml;n tyyppinen. Ainoastaan tiedostot tyyppi&auml; "{types}" ovat tuettuja.',
  35. msgInvalidFileExtension: 'Tiedoston "{name}" tarkenne on ep&auml;kelpo. Ainoastaan tarkenteet "{extensions}" ovat tuettuja.',
  36. msgFileTypes: {
  37. 'image': 'Kuva',
  38. 'html': 'HTML',
  39. 'text': 'Teksti',
  40. 'video': 'Video',
  41. 'audio': 'Ääni',
  42. 'flash': 'Flash',
  43. 'pdf': 'PDF',
  44. 'object': 'Olio'
  45. },
  46. msgUploadThreshold: 'Käsitellään...',
  47. msgUploadEmpty: 'Ei ladattavaa dataa.',
  48. msgValidationError: 'Tiedoston latausvirhe',
  49. msgLoading: 'Ladataan tiedostoa {index} / {files} &hellip;',
  50. msgProgress: 'Ladataan tiedostoa {index} / {files} - {name} - {percent}% valmistunut.',
  51. msgSelected: '{n} tiedostoa valittu',
  52. msgFoldersNotAllowed: 'Raahaa ja pudota ainoastaan tiedostoja! Ohitettu {n} raahattua kansiota.',
  53. msgAjaxError: 'Something went wrong with the {operation} operation. Please try again later!',
  54. msgAjaxProgressError: '{operation} failed',
  55. ajaxOperations: {
  56. deleteThumb: 'file delete',
  57. uploadThumb: 'single file upload',
  58. uploadBatch: 'batch file upload',
  59. uploadExtra: 'form data upload'
  60. },
  61. dropZoneTitle: 'Raahaa ja pudota tiedostot t&auml;h&auml;n &hellip;',
  62. dropZoneClickTitle: '<br>(tai valitse hiirellä {files})',
  63. fileActionSettings: {
  64. removeTitle: 'Poista tiedosto',
  65. uploadTitle: 'Upload file',
  66. zoomTitle: 'Yksityiskohdat',
  67. dragTitle: 'Siirrä / Järjestele',
  68. indicatorNewTitle: 'Ei ladattu',
  69. indicatorSuccessTitle: 'Ladattu',
  70. indicatorErrorTitle: 'Lataus epäonnistui',
  71. indicatorLoadingTitle: 'Ladataan ...'
  72. },
  73. previewZoomButtonTitles: {
  74. prev: 'Seuraava tiedosto',
  75. next: 'Edellinen tiedosto',
  76. toggleheader: 'Näytä otsikko',
  77. fullscreen: 'Kokonäytön tila',
  78. borderless: 'Rajaton tila',
  79. close: 'Sulje esikatselu'
  80. }
  81. };
  82. $.extend($.fn.fileinput.defaults, $.fn.fileinputLocales.fi);
  83. })(window.jQuery);