fi.js 4.3 KB

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