fi.js 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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. msgUploadBegin: 'Initializing...',
  48. msgUploadEnd: 'Done',
  49. msgUploadEmpty: 'Ei ladattavaa dataa.',
  50. msgValidationError: 'Tiedoston latausvirhe',
  51. msgLoading: 'Ladataan tiedostoa {index} / {files} &hellip;',
  52. msgProgress: 'Ladataan tiedostoa {index} / {files} - {name} - {percent}% valmistunut.',
  53. msgSelected: '{n} tiedostoa valittu',
  54. msgFoldersNotAllowed: 'Raahaa ja pudota ainoastaan tiedostoja! Ohitettu {n} raahattua kansiota.',
  55. msgAjaxError: 'Something went wrong with the {operation} operation. Please try again later!',
  56. msgAjaxProgressError: '{operation} failed',
  57. ajaxOperations: {
  58. deleteThumb: 'file delete',
  59. uploadThumb: 'file upload',
  60. uploadBatch: 'batch file upload',
  61. uploadExtra: 'form data upload'
  62. },
  63. dropZoneTitle: 'Raahaa ja pudota tiedostot t&auml;h&auml;n &hellip;',
  64. dropZoneClickTitle: '<br>(tai valitse hiirellä {files})',
  65. fileActionSettings: {
  66. removeTitle: 'Poista tiedosto',
  67. uploadTitle: 'Upload file',
  68. zoomTitle: 'Yksityiskohdat',
  69. dragTitle: 'Siirrä / Järjestele',
  70. indicatorNewTitle: 'Ei ladattu',
  71. indicatorSuccessTitle: 'Ladattu',
  72. indicatorErrorTitle: 'Lataus epäonnistui',
  73. indicatorLoadingTitle: 'Ladataan ...'
  74. },
  75. previewZoomButtonTitles: {
  76. prev: 'Seuraava tiedosto',
  77. next: 'Edellinen tiedosto',
  78. toggleheader: 'Näytä otsikko',
  79. fullscreen: 'Kokonäytön tila',
  80. borderless: 'Rajaton tila',
  81. close: 'Sulje esikatselu'
  82. }
  83. };
  84. $.extend($.fn.fileinput.defaults, $.fn.fileinputLocales.fi);
  85. })(window.jQuery);