fi.js 4.2 KB

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