fi.po 79 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397
  1. # Finnish translation for aria2
  2. # Copyright (c) 2007 Rosetta Contributors and Canonical Ltd 2007
  3. # This file is distributed under the same license as the aria2 package.
  4. # FIRST AUTHOR <EMAIL@ADDRESS>, 2007.
  5. #
  6. msgid ""
  7. msgstr ""
  8. "Project-Id-Version: aria2\n"
  9. "Report-Msgid-Bugs-To: http://aria2.sourceforge.net/\n"
  10. "POT-Creation-Date: 2009-02-15 23:45+0900\n"
  11. "PO-Revision-Date: 2008-01-27 16:49+0000\n"
  12. "Last-Translator: Curaga <Unknown>\n"
  13. "Language-Team: Finnish <fi@li.org>\n"
  14. "MIME-Version: 1.0\n"
  15. "Content-Type: text/plain; charset=UTF-8\n"
  16. "Content-Transfer-Encoding: 8bit\n"
  17. "X-Launchpad-Export-Date: 2008-03-01 03:48+0000\n"
  18. "X-Generator: Launchpad (build Unknown)\n"
  19. #: src/DownloadEngine.cc:208
  20. msgid ""
  21. "Shutdown sequence commencing... Press Ctrl-C again for emergency shutdown."
  22. msgstr "Sammutus alkaa... Paina Ctrl-C uudestaan hätäsammutukselle."
  23. #: src/DownloadEngine.cc:214
  24. msgid "Emergency shutdown sequence commencing..."
  25. msgstr "Hätäsammutus alkaa..."
  26. #: src/MultiUrlRequestInfo.cc:96
  27. msgid "aria2 will resume download if the transfer is restarted."
  28. msgstr "aria2 jatkaa latausta, jos siirto käynnistetään uudelleen."
  29. #: src/MultiUrlRequestInfo.cc:98
  30. msgid ""
  31. "If there are any errors, then see the log file. See '-l' option in help/man "
  32. "page for details."
  33. msgstr ""
  34. "Jos virheitä tapahtuu, katso lokitiedostoa. Ks. '-l' parametri ohjeessa/man-"
  35. "sivulla."
  36. #: src/RequestGroupMan.cc:417
  37. msgid "Download Results:"
  38. msgstr "Lataustulokset:"
  39. #: src/RequestGroupMan.cc:458
  40. msgid "Status Legend:"
  41. msgstr "Tilalegenda:"
  42. #: src/OptionHandler.cc:38
  43. msgid " Default: "
  44. msgstr " Oletus: "
  45. #: src/OptionHandler.cc:39
  46. msgid " Tags: "
  47. msgstr " Tagit: "
  48. #: src/OptionHandler.cc:40
  49. #, fuzzy
  50. msgid " Possible Values: "
  51. msgstr " Mahdolliset arvot: "
  52. #: src/OptionHandlerImpl.h:127
  53. msgid "must be either 'true' or 'false'."
  54. msgstr "täytyy olla joko 'true' tai 'false'."
  55. #: src/OptionHandlerImpl.h:160 src/OptionHandlerImpl.h:208
  56. #, c-format
  57. msgid "must be between %s and %s."
  58. msgstr "täytyy olla välillä %s ja %s."
  59. #: src/OptionHandlerImpl.h:205
  60. #, c-format
  61. msgid "must be smaller than or equal to %s."
  62. msgstr "täytyy olla pienempi tai yhtä suuri kuin %s."
  63. #: src/OptionHandlerImpl.h:211
  64. #, c-format
  65. msgid "must be greater than or equal to %s."
  66. msgstr "täytyy olla suurempi tai yhtä suuri kuin %s."
  67. #: src/OptionHandlerImpl.h:214 src/OptionHandlerImpl.h:280
  68. msgid "must be a number."
  69. msgstr "täytyy olla numero."
  70. #: src/OptionHandlerImpl.h:271
  71. #, c-format
  72. msgid "must be smaller than or equal to %.1f."
  73. msgstr "täytyy olla pienempi tai yhtä suuri kuin %.1f."
  74. #: src/OptionHandlerImpl.h:274
  75. #, c-format
  76. msgid "must be between %.1f and %.1f."
  77. msgstr "täytyy olla välillä %.1f ja %.1f"
  78. #: src/OptionHandlerImpl.h:277
  79. #, c-format
  80. msgid "must be greater than or equal to %.1f."
  81. msgstr "täytyy olla suurempi tai yhtä suuri kuin %.1f"
  82. #: src/OptionHandlerImpl.h:428
  83. msgid "must be one of the following:"
  84. msgstr "täytyy olla yksi seuraavista:"
  85. #: src/OptionHandlerImpl.h:477 src/OptionHandlerImpl.h:520
  86. msgid "unrecognized proxy format"
  87. msgstr "tunnistamaton välityspalvelinmuoto"
  88. #: src/usage_text.h:37
  89. msgid ""
  90. " -d, --dir=DIR The directory to store the downloaded file."
  91. msgstr " -d, --dir=DIR Hakemisto jonne talletetaan ladattu tiedosto."
  92. #: src/usage_text.h:39
  93. msgid " -o, --out=FILE The file name of the downloaded file."
  94. msgstr " -o, --out=FILE Ladatun tiedoston nimi."
  95. #: src/usage_text.h:41
  96. msgid ""
  97. " -l, --log=LOG The file name of the log file. If '-' is\n"
  98. " specified, log is written to stdout."
  99. msgstr ""
  100. " -l, --log=LOKI Lokitiedoston nimi. Jos '-',\n"
  101. " loki kirjoitetaan stdout:iin."
  102. #: src/usage_text.h:44
  103. msgid " -D, --daemon Run as daemon."
  104. msgstr " -D, --daemon Aja taustalla"
  105. #: src/usage_text.h:46
  106. #, fuzzy
  107. msgid ""
  108. " -s, --split=N Download a file using N connections. If more\n"
  109. " than N URLs are given, first N URLs are used "
  110. "and\n"
  111. " remaining URLs are used for backup. If less "
  112. "than\n"
  113. " N URLs are given, those URLs are used more "
  114. "than\n"
  115. " once so that N connections total are made\n"
  116. " simultaneously. Please see -j option too.\n"
  117. " Please note that in Metalink download, this\n"
  118. " option has no effect and use -C option instead."
  119. msgstr ""
  120. " -s, --split=N Lataa tiedosto käyttäen N yhteyttä. N täytyy olla\n"
  121. " väliltä 1-5. Tämä asetus vaikuttaa kaikkiin "
  122. "URL:hin.\n"
  123. " Joten aria2 yhdistää jokaiseen URL:iin\n"
  124. " N yhteydellä.\n"
  125. " Oletus: 1"
  126. #: src/usage_text.h:55
  127. #, fuzzy
  128. msgid ""
  129. " --retry-wait=SEC Set the seconds to wait to retry after an "
  130. "error\n"
  131. " has occured."
  132. msgstr ""
  133. " --retry-wait=SEK Montako sekuntia odotetaan virheen jälkeen.\n"
  134. " Arvon oltava väliltä 0 ja 60.\n"
  135. " Oletus: 5"
  136. #: src/usage_text.h:58
  137. #, fuzzy
  138. msgid " -t, --timeout=SEC Set timeout in seconds."
  139. msgstr " -t, --timeout=SEK Aikakatkaisu sekunneissa. Oletus: 60"
  140. #: src/usage_text.h:60
  141. #, fuzzy
  142. msgid " -m, --max-tries=N Set number of tries. 0 means unlimited."
  143. msgstr ""
  144. " -m, --max-tries=N Yritysten määrä. 0 on rajoittamaton.\n"
  145. " OIetus:5"
  146. #: src/usage_text.h:62
  147. #, fuzzy
  148. msgid ""
  149. " --http-proxy=PROXY Use this proxy server for HTTP.\n"
  150. " See also --all-proxy option.\n"
  151. " This affects all URLs."
  152. msgstr ""
  153. " --http-proxy-method=METODI Aseta välityspalvelinpyynnön tyyppi.\n"
  154. " METODI on joko 'get' tai 'tunnel'.\n"
  155. " Oletus: tunnel"
  156. #: src/usage_text.h:66
  157. #, fuzzy
  158. msgid ""
  159. " --https-proxy=PROXY Use this proxy server for HTTPS.\n"
  160. " See also --all-proxy option.\n"
  161. " This affects all URLs."
  162. msgstr ""
  163. " --http-proxy-method=METODI Aseta välityspalvelinpyynnön tyyppi.\n"
  164. " METODI on joko 'get' tai 'tunnel'.\n"
  165. " Oletus: tunnel"
  166. #: src/usage_text.h:70
  167. #, fuzzy
  168. msgid ""
  169. " --ftp-proxy=PROXY Use this proxy server for FTP.\n"
  170. " See also --all-proxy option.\n"
  171. " This affects all URLs."
  172. msgstr ""
  173. " --ftp-type=TYYPPI Aseta ftp-siirron tyyppi. TYYPPI on joko 'binary'\n"
  174. " tai 'ascii'.\n"
  175. " Oletus: binary"
  176. #: src/usage_text.h:74
  177. #, fuzzy
  178. msgid ""
  179. " --all-proxy=PROXY Use this proxy server for all protocols.\n"
  180. " You can override this setting and specify a\n"
  181. " proxy server for a particular protocol using\n"
  182. " --http-proxy, --https-proxy and --ftp-proxy\n"
  183. " options.\n"
  184. " This affects all URLs."
  185. msgstr ""
  186. " -c, --continue Jatka osittain ladatun tiedoston latausta.\n"
  187. " Käytä tätä asetusta jatkaaksesi esim.\n"
  188. " web-selaimen latausta, joka lataa\n"
  189. " lineaarisesti alusta loppuun.\n"
  190. " Tällä hetkellä tämä vaikuttaa vain \n"
  191. " http(s)/ftp-latauksiin."
  192. #: src/usage_text.h:81
  193. msgid " --http-user=USER Set HTTP user. This affects all URLs."
  194. msgstr ""
  195. " -http-user=USER Aseta http-käyttäjänimi. Tämä vaikuttaa kaikkiin URL:hin."
  196. #: src/usage_text.h:83
  197. msgid " --http-passwd=PASSWD Set HTTP password. This affects all URLs."
  198. msgstr ""
  199. " --http-passwd=SALASANA Aseta http-salasana. Tämä vaikuttaa kaikkiin URL:hin."
  200. #: src/usage_text.h:85
  201. msgid " --proxy-method=METHOD Set the method to use in proxy request."
  202. msgstr ""
  203. #: src/usage_text.h:87
  204. #, fuzzy
  205. msgid ""
  206. " --http-auth-scheme=SCHEME Set HTTP authentication scheme. Currently, "
  207. "basic\n"
  208. " is the only supported scheme."
  209. msgstr ""
  210. " --http-auth-scheme=SCHEME Aseta http-tunnistustyyppi. Tällä hetkellä basic\n"
  211. " on ainoa tuettu tyyppi.\n"
  212. " Oletus: basic"
  213. #: src/usage_text.h:90
  214. msgid " --referer=REFERER Set Referer. This affects all URLs."
  215. msgstr " --referer=REFERER Aseta viittaaja. Tämä vaikuttaa kaikkiin URL:hin."
  216. #: src/usage_text.h:92
  217. #, fuzzy
  218. msgid " --ftp-user=USER Set FTP user. This affects all URLs."
  219. msgstr ""
  220. " -http-user=USER Aseta http-käyttäjänimi. Tämä vaikuttaa kaikkiin URL:hin."
  221. #: src/usage_text.h:94
  222. #, fuzzy
  223. msgid " --ftp-passwd=PASSWD Set FTP password. This affects all URLs."
  224. msgstr ""
  225. " --http-passwd=SALASANA Aseta http-salasana. Tämä vaikuttaa kaikkiin URL:hin."
  226. #: src/usage_text.h:96
  227. msgid " --ftp-type=TYPE Set FTP transfer type."
  228. msgstr ""
  229. #: src/usage_text.h:98
  230. msgid ""
  231. " -p, --ftp-pasv[=true|false] Use the passive mode in FTP. If false is "
  232. "given,\n"
  233. " the active mode will be used."
  234. msgstr ""
  235. #: src/usage_text.h:101
  236. #, fuzzy
  237. msgid ""
  238. " --lowest-speed-limit=SPEED Close connection if download speed is lower "
  239. "than\n"
  240. " or equal to this value(bytes per sec).\n"
  241. " 0 means aria2 does not have a lowest speed "
  242. "limit.\n"
  243. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  244. " This option does not affect BitTorrent "
  245. "downloads."
  246. msgstr ""
  247. " --lowest-speed-limit=NOPEUS Sulje yhteys jos latausnopeus on alempi tai\n"
  248. " yhtä suuri kuin tämä arvo (tavua/sek).\n"
  249. " 0 tarkoittaa ettei aria2 käytä alarajaa.\n"
  250. " Voit lisätä perään joko K tai M (1K = 1024, 1M "
  251. "= 1024K)\n"
  252. " Tämä asetus ei vaikuta BitTorrent-latauksiin.\n"
  253. " Oletus: 0"
  254. #: src/usage_text.h:107
  255. #, fuzzy
  256. msgid ""
  257. " --max-download-limit=SPEED Set max download speed in bytes per sec.\n"
  258. " 0 means unrestricted.\n"
  259. " You can append K or M(1K = 1024, 1M = 1024K)."
  260. msgstr ""
  261. " --max-download-limit=NOPEUS Aseta maksimilatausnopeus (tavua/sek).\n"
  262. " 0 on rajoittamaton.\n"
  263. " Voit lisätä perään joko K tai M (1K = 1024, 1M "
  264. "= 1024K)\n"
  265. " Oletus: 0"
  266. #: src/usage_text.h:111
  267. #, fuzzy
  268. msgid ""
  269. " --file-allocation=METHOD Specify file allocation method.\n"
  270. " 'none' doesn't pre-allocate file space. "
  271. "'prealloc'\n"
  272. " pre-allocates file space before download "
  273. "begins.\n"
  274. " This may take some time depending on the size "
  275. "of\n"
  276. " the file."
  277. msgstr ""
  278. " --file-allocation=METODI Aseta tiedostojen varausmetodi. METODI on joko\n"
  279. " 'none' tai 'prealloc'. 'none' ei varaa tilaa "
  280. "etukäteen.\n"
  281. " 'prealloc' varaa tilan etukäteen, ennen "
  282. "latauksen alkua.\n"
  283. " Tämä voi viedä jonkin verran aikaa, riippuen "
  284. "tiedoston koosta.\n"
  285. " Oletus: prealloc"
  286. #: src/usage_text.h:117
  287. msgid ""
  288. " --no-file-allocation-limit=SIZE No file allocation is made for files whose\n"
  289. " size is smaller than SIZE.\n"
  290. " You can append K or M(1K = 1024, 1M = 1024K)."
  291. msgstr ""
  292. " --no-file-allocation-limit=KOKO Tilan varausta ei tehdä tiedostoille,\n"
  293. " joiden koko on pienempi kuin KOKO.\n"
  294. " Voit lisätä perään joko K tai M (1K = 1024, 1M "
  295. "= 1024K)"
  296. #: src/usage_text.h:121
  297. msgid ""
  298. " --enable-direct-io[=true|false] Enable directI/O, which lowers cpu usage "
  299. "while\n"
  300. " allocating files.\n"
  301. " Turn off if you encounter any error"
  302. msgstr ""
  303. " --enable-direct-io[=true|false] Käyttää suoraa I/O:ta, joka laskee "
  304. "tehokäyttöä\n"
  305. " varatessa tilaa.\n"
  306. " Älä käytä, jos kohtaat virheitä"
  307. #: src/usage_text.h:125
  308. #, fuzzy
  309. msgid ""
  310. " --allow-overwrite=true|false If false, aria2 doesn't download a file which\n"
  311. " already exists but the corresponding .aria2 "
  312. "file\n"
  313. " doesn't exist."
  314. msgstr ""
  315. " --allow-overwrite=true|false Jos false, aria2 ei lataa tiedostoa joka\n"
  316. " on jo olemassa mutta jonka vastaavaa .aria2-"
  317. "tiedostoa\n"
  318. " ei ole.\n"
  319. " Oletus: false"
  320. #: src/usage_text.h:129
  321. msgid ""
  322. " --allow-piece-length-change=true|false If false is given, aria2 aborts "
  323. "download\n"
  324. " when a piece length is different from one in\n"
  325. " a control file. If true is given, you can "
  326. "proceed\n"
  327. " but some download progress will be lost."
  328. msgstr ""
  329. " --allow-piece-lenght-change=true|false Jos false, aria2 keskeyttää "
  330. "latauksen kun\n"
  331. " palan koko on eri kuin hallintatiedostossa. Jos "
  332. "true, voit jatkaa\n"
  333. " mutta hieman latausedistystä voidaan menettää."
  334. #: src/usage_text.h:134
  335. #, fuzzy
  336. msgid ""
  337. " -Z, --force-sequential[=true|false] Fetch URIs in the command-line "
  338. "sequentially\n"
  339. " and download each URI in a separate session, "
  340. "like\n"
  341. " the usual command-line download utilities."
  342. msgstr ""
  343. " -Z, --force-sequential[=true|false] Hae osoitteet komentoriviltä "
  344. "lineaarisesti,\n"
  345. " ja lataa jokainen URI eri sessiossa, kuten\n"
  346. " tavalliset komentorivilatausapuohjelmat.\n"
  347. " Oletus: false"
  348. #: src/usage_text.h:138
  349. #, fuzzy
  350. msgid ""
  351. " --auto-file-renaming[=true|false] Rename file name if the same file "
  352. "already\n"
  353. " exists. This option works only in http(s)/ftp\n"
  354. " download.\n"
  355. " The new file name has a dot and a number"
  356. "(1..9999)\n"
  357. " appended."
  358. msgstr ""
  359. " --auto-file-renaming[=true|false] Nimeä tiedosto uudelleen jos sama "
  360. "tiedosto on\n"
  361. " jo olemassa. Tämä asetus toimii vain http(s)/"
  362. "ftp-\n"
  363. " latauksissa. Uudessa tiedostonimessä on piste "
  364. "ja numero\n"
  365. " (1..9999) lisättynä.\n"
  366. " Oletus: true"
  367. #: src/usage_text.h:144
  368. #, fuzzy
  369. msgid ""
  370. " -P, --parameterized-uri[=true|false] Enable parameterized URI support.\n"
  371. " You can specify set of parts:\n"
  372. " http://{sv1,sv2,sv3}/foo.iso\n"
  373. " Also you can specify numeric sequences with "
  374. "step\n"
  375. " counter:\n"
  376. " http://host/image[000-100:2].img\n"
  377. " A step counter can be omitted.\n"
  378. " If all URIs do not point to the same file, "
  379. "such\n"
  380. " as the second example above, -Z option is\n"
  381. " required."
  382. msgstr ""
  383. " -P, --parameterized-uri[=true|false] Käytä paremeterisoituja URI:ja.\n"
  384. " Voit määrittää osia:\n"
  385. " http://{sv1,sv2,sv3}/foo.iso\n"
  386. " Voit myös käyttää numeerisia välejä askelin:\n"
  387. " http://host/img[000-100:2].img\n"
  388. " Askelmittarin voi jättää pois.\n"
  389. " Mikäli kaikki URI:t eivät osoita samaan "
  390. "tiedostoon,\n"
  391. " kuten toisessa esimerkissä, -Z parametri "
  392. "vaaditaan.\n"
  393. " Oletus: false"
  394. #: src/usage_text.h:155
  395. #, fuzzy
  396. msgid ""
  397. " --enable-http-keep-alive[=true|false] Enable HTTP/1.1 persistent connection."
  398. msgstr ""
  399. " --enable-http-keep-alive[=true|false] Käytä HTTP/1.1 säilyvää yhteyttä.\n"
  400. " Oletus: false"
  401. #: src/usage_text.h:157
  402. #, fuzzy
  403. msgid " --enable-http-pipelining[=true|false] Enable HTTP/1.1 pipelining."
  404. msgstr ""
  405. " --enable-http-keep-alive[=true|false] Käytä HTTP/1.1 säilyvää yhteyttä.\n"
  406. " Oletus: false"
  407. #: src/usage_text.h:159
  408. #, fuzzy
  409. msgid ""
  410. " -V, --check-integrity[=true|false] Check file integrity by validating "
  411. "piece\n"
  412. " hashes. This option has effect only in "
  413. "BitTorrent\n"
  414. " and Metalink downloads with chunk checksums.\n"
  415. " Use this option to re-download a damaged "
  416. "portion\n"
  417. " of a file. See also --bt-hash-check-seed "
  418. "option."
  419. msgstr ""
  420. " --check-integrity=true|false Tarkista tiedoston eheys palojen "
  421. "tarkistussummasta.\n"
  422. " Tämä asetus vaikuttaa vain BitTorrent- ja\n"
  423. " Metalink-latauksiin joissa on palojen "
  424. "tarkistussumma.\n"
  425. " Käytä tätä asetusta ladataksesi uudestaan "
  426. "vahingoittunut osa\n"
  427. " tiedostoa.\n"
  428. " Oletus: false"
  429. #: src/usage_text.h:165
  430. #, fuzzy
  431. msgid ""
  432. " --bt-hash-check-seed[=true|false] If true is given, after hash check using\n"
  433. " --check-integrity option and file is "
  434. "complete,\n"
  435. " continue to seed file. If you want to check "
  436. "file\n"
  437. " and download it only when it is damaged or\n"
  438. " incomplete, set this option to false.\n"
  439. " This option has effect only on BitTorrent\n"
  440. " download."
  441. msgstr ""
  442. " --seed-ratio=SUHDE Aseta jakamissuhde. Jaat valmistuneita torrentteja\n"
  443. " kunnes jaon suhde saavuttaa SUHTEEN. 1.0 on\n"
  444. " suositeltava. Käytä 0.0 jakaaksesi "
  445. "välittämättä suhteesta.\n"
  446. " Jos sekä tämä että --seed-time ovat käytössä, "
  447. "jakaminen\n"
  448. " päättyy kun toinen ehdoista täyttyy."
  449. #: src/usage_text.h:173
  450. #, fuzzy
  451. msgid ""
  452. " --realtime-chunk-checksum=true|false Validate chunk of data by "
  453. "calculating\n"
  454. " checksum while downloading a file if chunk\n"
  455. " checksums are provided."
  456. msgstr ""
  457. " --realtime-chunk-checksum=true|false Tarkista palojen tarkistussummat\n"
  458. " ladatessasi tiedostoa Metalink-moodissa. Tämä\n"
  459. " vaikuttaa vain Metalink-latauksiin joissa on "
  460. "palojen\n"
  461. " tarkistussumma.\n"
  462. " Oletus: true"
  463. #: src/usage_text.h:177
  464. msgid ""
  465. " -c, --continue Continue downloading a partially downloaded\n"
  466. " file. Use this option to resume a download\n"
  467. " started by a web browser or another program\n"
  468. " which downloads files sequentially from the\n"
  469. " beginning. Currently this option is only\n"
  470. " applicable to http(s)/ftp downloads."
  471. msgstr ""
  472. " -c, --continue Jatka osittain ladatun tiedoston latausta.\n"
  473. " Käytä tätä asetusta jatkaaksesi esim.\n"
  474. " web-selaimen latausta, joka lataa\n"
  475. " lineaarisesti alusta loppuun.\n"
  476. " Tällä hetkellä tämä vaikuttaa vain \n"
  477. " http(s)/ftp-latauksiin."
  478. #: src/usage_text.h:184
  479. msgid " -U, --user-agent=USER_AGENT Set user agent for http(s) downloads."
  480. msgstr " -U, --user-agent=USER_AGENT Aseta selaimen nimi http(s)-latauksiin."
  481. #: src/usage_text.h:186
  482. msgid " -n, --no-netrc Disables netrc support."
  483. msgstr " -n, --no-netrc Asettaa netrc-tuen pois päältä."
  484. #: src/usage_text.h:188
  485. #, fuzzy
  486. msgid ""
  487. " -i, --input-file=FILE Downloads URIs found in FILE. You can specify\n"
  488. " multiple URIs for a single entity: separate\n"
  489. " URIs on a single line using the TAB "
  490. "character.\n"
  491. " Reads input from stdin when '-' is specified.\n"
  492. " The additional out and dir options can be\n"
  493. " specified after each line of URIs. This "
  494. "optional\n"
  495. " line must start with white space(s). See "
  496. "INPUT\n"
  497. " FILE section of man page for details."
  498. msgstr ""
  499. " -i, --input-file=FILE Lataa URI:t tiedostosta FILE. Voit antaa\n"
  500. " monta osoitetta yhdelle tiedostolle: erota\n"
  501. " URI:t yhdellä rivillä käyttäen TAB-nappia.\n"
  502. " Lukee stdin:stä jos käytät '-' FILE:nä."
  503. #: src/usage_text.h:197
  504. #, fuzzy
  505. msgid ""
  506. " -j, --max-concurrent-downloads=N Set maximum number of parallel downloads "
  507. "for\n"
  508. " every static (HTTP/FTP) URL, torrent and "
  509. "metalink.\n"
  510. " See also -s and -C options."
  511. msgstr ""
  512. " -j, --max-concurrent-downloads=N Aseta yhtäaikaisten latausten maksimi.\n"
  513. " Tätä pitäisi käyttää -i valinnan kanssa.\n"
  514. " Oletus: 5"
  515. #: src/usage_text.h:201
  516. #, fuzzy
  517. msgid ""
  518. " --load-cookies=FILE Load Cookies from FILE using the Firefox3 "
  519. "format\n"
  520. " and Mozilla/Firefox(1.x/2.x)/Netscape format."
  521. msgstr ""
  522. " --load-cookies=FILE Lataa cookiet tiedostosta. Tiedoston formaatti on\n"
  523. " sama kuin Netscapella ja Mozillalla."
  524. #: src/usage_text.h:204
  525. msgid ""
  526. " -S, --show-files Print file listing of .torrent or .metalink "
  527. "file\n"
  528. " and exit. More detailed information will be "
  529. "listed\n"
  530. " in case of torrent file."
  531. msgstr ""
  532. " -S, --show-files Tulosta .torrent- tai .metalink-tiedoston tiedostolista ja "
  533. "lopeta.\n"
  534. " Torrent-tiedostot sisältävät enemmän tietoa."
  535. #: src/usage_text.h:208
  536. #, fuzzy
  537. msgid ""
  538. " --select-file=INDEX... Set file to download by specifying its index.\n"
  539. " You can find the file index using the\n"
  540. " --show-files option. Multiple indexes can be\n"
  541. " specified by using ',', for example: \"3,6\".\n"
  542. " You can also use '-' to specify a range: \"1-5"
  543. "\".\n"
  544. " ',' and '-' can be used together.\n"
  545. " When used with the -M option, index may vary\n"
  546. " depending on the query(see --metalink-* "
  547. "options)."
  548. msgstr ""
  549. " --select-file=INDEKSI... Valitse ladattavat tiedostot niiden indeksin "
  550. "perusteella.\n"
  551. " Voit nähdä indeksin käyttämällä --show-files "
  552. "valintaa.\n"
  553. " Monia indeksejä voi käyttää erottamalla ne "
  554. "pilkulla, esim '3,6'\n"
  555. " Voit myös käyttää '-' alueen merkitsemiseen, "
  556. "esim '1-5'\n"
  557. " Molempia voi käyttää myös yhtäaikaa.\n"
  558. " Käytettäessä -M valinnan kanssa, indeksit "
  559. "voivat vaihdella\n"
  560. " riippuen asetuksista (ks. --metalink-*)"
  561. #: src/usage_text.h:217
  562. msgid " -T, --torrent-file=TORRENT_FILE The path to the .torrent file."
  563. msgstr " -T, --torrent-file=TORRENT käytä ladattua .torrent-tiedostoa"
  564. #: src/usage_text.h:219
  565. msgid ""
  566. " --follow-torrent=true|false|mem If true or mem is specified, when a file\n"
  567. " whose suffix is .torrent or content type is\n"
  568. " application/x-bittorrent is downloaded, aria2\n"
  569. " parses it as a torrent file and downloads "
  570. "files\n"
  571. " mentioned in it.\n"
  572. " If mem is specified, a torrent file is not\n"
  573. " written to the disk, but is just kept in "
  574. "memory.\n"
  575. " If false is specified, the action mentioned "
  576. "above\n"
  577. " is not taken."
  578. msgstr ""
  579. " --follow-torrent=true|false|mem Jos true tai mem, kun lataat tiedoston\n"
  580. " jonka pääte on .torrent tai tyyppi application/"
  581. "x-bittorrent,\n"
  582. " aria2 olettaa sen BitTorrent-tiedostoksi ja "
  583. "lataa kaiken\n"
  584. " siinä mainitun.\n"
  585. " Jos mem, torrent-tiedostoa ei kirjoiteta "
  586. "levylle, vaan\n"
  587. " pidetään muistissa."
  588. #: src/usage_text.h:229
  589. #, fuzzy
  590. msgid ""
  591. " --direct-file-mapping=true|false Directly read from and write to each file\n"
  592. " mentioned in .torrent file."
  593. msgstr ""
  594. " --direct-file-mapping=true|false Lue ja kirjoita suoraan jokaiseen "
  595. "tiedostoon\n"
  596. " joka mainitaan .torrent-tiedostossa\n"
  597. " Oletus: true"
  598. #: src/usage_text.h:232
  599. msgid ""
  600. " --listen-port=PORT... Set TCP port number for BitTorrent downloads.\n"
  601. " Multiple ports can be specified by using ',',\n"
  602. " for example: \"6881,6885\". You can also use "
  603. "'-'\n"
  604. " to specify a range: \"6881-6999\". ',' and '-' "
  605. "can\n"
  606. " be used together."
  607. msgstr ""
  608. " --listen-port=PORTTI ... Aseta TCP-portin numero BitTorrent-latauksiin.\n"
  609. " Monia portteja voi valita käyttämällä pilkkua, "
  610. "esim '6881,6885'\n"
  611. " Voit käyttää myös '-' alueen merkitsemiseen: "
  612. "'6881-6999'\n"
  613. " Molempia voi käyttää yhtäaikaa."
  614. #: src/usage_text.h:238
  615. msgid ""
  616. " --max-overall-upload-limit=SPEED Set max overall upload speed in bytes/"
  617. "sec.\n"
  618. " 0 means unrestricted.\n"
  619. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  620. " To limit the upload speed per torrent, use\n"
  621. " --max-upload-limit option. If non-zero value "
  622. "is\n"
  623. " specified, --max-upload-limit option is "
  624. "ignored."
  625. msgstr ""
  626. #: src/usage_text.h:245
  627. #, fuzzy
  628. msgid ""
  629. " -u, --max-upload-limit=SPEED Set max upload speed per each torrent in\n"
  630. " bytes/sec. 0 means unrestricted.\n"
  631. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  632. " To limit the overall upload speed, use\n"
  633. " --max-overall-upload-limit option."
  634. msgstr ""
  635. " --max-upload-limit=NOPEUS Aseta maksimi-uploadnopeus (tavua/sek)\n"
  636. " 0 on ei rajaa.\n"
  637. " Voit lisätä perään joko K tai M (1K = 1024, 1M "
  638. "= 1024K)\n"
  639. " Oletus: 0"
  640. #: src/usage_text.h:251
  641. msgid ""
  642. " --seed-time=MINUTES Specify seeding time in minutes. Also see the\n"
  643. " --seed-ratio option."
  644. msgstr ""
  645. " --seed-time=MIN Aseta jakamisaika (seeding) minuuteissa. Ks. myös\n"
  646. " --seed-ratio valinta."
  647. #: src/usage_text.h:254
  648. #, fuzzy
  649. msgid ""
  650. " --seed-ratio=RATIO Specify share ratio. Seed completed torrents\n"
  651. " until share ratio reaches RATIO.\n"
  652. " You are strongly encouraged to specify equals "
  653. "or\n"
  654. " more than 1.0 here. Specify 0.0 if you intend "
  655. "to\n"
  656. " do seeding regardless of share ratio.\n"
  657. " If --seed-time option is specified along with\n"
  658. " this option, seeding ends when at least one "
  659. "of\n"
  660. " the conditions is satisfied."
  661. msgstr ""
  662. " --seed-ratio=SUHDE Aseta jakamissuhde. Jaat valmistuneita torrentteja\n"
  663. " kunnes jaon suhde saavuttaa SUHTEEN. 1.0 on\n"
  664. " suositeltava. Käytä 0.0 jakaaksesi "
  665. "välittämättä suhteesta.\n"
  666. " Jos sekä tämä että --seed-time ovat käytössä, "
  667. "jakaminen\n"
  668. " päättyy kun toinen ehdoista täyttyy."
  669. #: src/usage_text.h:263
  670. #, fuzzy
  671. msgid ""
  672. " --peer-id-prefix=PEERI_ID_PREFIX Specify the prefix of peer ID. The peer ID "
  673. "in\n"
  674. " BitTorrent is 20 byte length. If more than 20\n"
  675. " bytes are specified, only first 20\n"
  676. " bytes are used. If less than 20 bytes are\n"
  677. " specified, the random alphabet characters are\n"
  678. " added to make it's length 20 bytes."
  679. msgstr ""
  680. " --peer-id-prefix=TUNNUS Aseta peer ID-tunnus. Sen pituus on\n"
  681. " BitTorrentissa 20 tavua. Jos annat pidemmän,\n"
  682. " vain ensimmäiset 20 tavua käytetään, jos\n"
  683. " taas lyhyemmän, satunnaisia aakkosia "
  684. "lisätään.\n"
  685. " Oletus: -aria2-"
  686. #: src/usage_text.h:270
  687. msgid " --enable-peer-exchange[=true|false] Enable Peer Exchange extension."
  688. msgstr ""
  689. #: src/usage_text.h:272
  690. msgid " --enable-dht[=true|false] Enable DHT functionality."
  691. msgstr ""
  692. #: src/usage_text.h:274
  693. msgid ""
  694. " --dht-listen-port=PORT... Set UDP listening port for DHT.\n"
  695. " Multiple ports can be specified by using ',',\n"
  696. " for example: \"6881,6885\". You can also use "
  697. "'-'\n"
  698. " to specify a range: \"6881-6999\". ',' and '-' "
  699. "can\n"
  700. " be used together."
  701. msgstr ""
  702. #: src/usage_text.h:280
  703. msgid ""
  704. " --dht-entry-point=HOST:PORT Set host and port as an entry point to DHT\n"
  705. " network."
  706. msgstr ""
  707. #: src/usage_text.h:283
  708. #, fuzzy
  709. msgid ""
  710. " --dht-file-path=PATH Change the DHT routing table file to PATH."
  711. msgstr " --conf-path=POLKU Muuta asetustiedoston polkua."
  712. #: src/usage_text.h:285
  713. msgid ""
  714. " --bt-min-crypto-level=plain|arc4 Set minimum level of encryption method.\n"
  715. " If several encryption methods are provided by "
  716. "a\n"
  717. " peer, aria2 chooses the lowest one which "
  718. "satisfies\n"
  719. " the given level."
  720. msgstr ""
  721. #: src/usage_text.h:290
  722. msgid ""
  723. " --bt-require-crypto=true|false If true is given, aria2 doesn't accept and\n"
  724. " establish connection with legacy BitTorrent\n"
  725. " handshake. Thus aria2 always uses Obfuscation\n"
  726. " handshake."
  727. msgstr ""
  728. #: src/usage_text.h:295
  729. #, fuzzy
  730. msgid ""
  731. " --bt-request-peer-speed-limit=SPEED If the whole download speed of every\n"
  732. " torrent is lower than SPEED, aria2 "
  733. "temporarily\n"
  734. " increases the number of peers to try for more\n"
  735. " download speed. Configuring this option with "
  736. "your\n"
  737. " preferred download speed can increase your\n"
  738. " download speed in some cases.\n"
  739. " You can append K or M(1K = 1024, 1M = 1024K)."
  740. msgstr ""
  741. " --no-file-allocation-limit=KOKO Tilan varausta ei tehdä tiedostoille,\n"
  742. " joiden koko on pienempi kuin KOKO.\n"
  743. " Voit lisätä perään joko K tai M (1K = 1024, 1M "
  744. "= 1024K)"
  745. #: src/usage_text.h:303
  746. #, fuzzy
  747. msgid ""
  748. " --bt-max-open-files=NUM Specify maximum number of files to open in "
  749. "each\n"
  750. " BitTorrent download."
  751. msgstr ""
  752. " -m, --max-tries=N Yritysten määrä. 0 on rajoittamaton.\n"
  753. " OIetus:5"
  754. #: src/usage_text.h:306
  755. msgid ""
  756. " --bt-seed-unverified[=true|false] Seed previously downloaded files without\n"
  757. " verifying piece hashes."
  758. msgstr ""
  759. #: src/usage_text.h:309
  760. #, fuzzy
  761. msgid ""
  762. " --bt-max-peers=NUM Specify the maximum number of peers per "
  763. "torrent.\n"
  764. " 0 means unlimited.\n"
  765. " See also --bt-request-peer-speed-limit option."
  766. msgstr ""
  767. " --retry-wait=SEK Montako sekuntia odotetaan virheen jälkeen.\n"
  768. " Arvon oltava väliltä 0 ja 60.\n"
  769. " Oletus: 5"
  770. #: src/usage_text.h:313
  771. msgid " -M, --metalink-file=METALINK_FILE The file path to the .metalink file."
  772. msgstr " -M, --metalink-file=METALINK Käytä ladattua .metalink-tiedostoa."
  773. #: src/usage_text.h:315
  774. #, fuzzy
  775. msgid ""
  776. " -C, --metalink-servers=NUM_SERVERS The number of servers to connect to\n"
  777. " simultaneously. Some Metalinks regulate the\n"
  778. " number of servers to connect. aria2 strictly\n"
  779. " respects them. This means that if Metalink "
  780. "defines\n"
  781. " the maxconnections attribute lower than\n"
  782. " NUM_SERVERS, then aria2 uses the value of\n"
  783. " maxconnections attribute instead of "
  784. "NUM_SERVERS.\n"
  785. " See also -s and -j options."
  786. msgstr ""
  787. " --follow-metalink=true|false|mem Jos true tai mem, kun lataat tiedoston "
  788. "jonka\n"
  789. " pääte on .metalink tai tyyppi application/metalink"
  790. "+xml, aria2\n"
  791. " käsittelee sen metalink-tiedostona ja lataa siinä "
  792. "mainitut tiedostot.\n"
  793. " Jos mem, metalink-tiedostoa ei ladata levylle, "
  794. "vaan pidetään muistissa."
  795. #: src/usage_text.h:324
  796. msgid " --metalink-version=VERSION The version of the file to download."
  797. msgstr " --metalink-version=VERSIO Aseta minkä version tiedostosta haluat."
  798. #: src/usage_text.h:326
  799. msgid " --metalink-language=LANGUAGE The language of the file to download."
  800. msgstr ""
  801. " --metalink-language=KIELI Aseta minkä kielisen version tiedostosta haluat."
  802. #: src/usage_text.h:328
  803. msgid ""
  804. " --metalink-os=OS The operating system of the file to download."
  805. msgstr " --metalink-os=OS Mille käyttöjärjestelmälle lataat tiedostoa."
  806. #: src/usage_text.h:330
  807. #, fuzzy
  808. msgid ""
  809. " --metalink-location=LOCATION[,...] The location of the preferred server.\n"
  810. " A comma-delimited list of locations is\n"
  811. " acceptable."
  812. msgstr ""
  813. " --metalink-location=SIJAINTI[,...] Suosittavan palvelimen sijainti.\n"
  814. " Pilkuilla erotettu lista on hyväksyttävä."
  815. #: src/usage_text.h:334
  816. #, fuzzy
  817. msgid ""
  818. " --metalink-preferred-protocol=PROTO Specify preferred protocol. Specify "
  819. "'none'\n"
  820. " if you don't have any preferred protocol."
  821. msgstr ""
  822. " --metalink-preferred-protocol=PROTO Valitse suositeltava protokolla. "
  823. "Mahdollisia\n"
  824. " valintoja ovat 'http', 'https', 'ftp', ja "
  825. "'none'. Käytä 'none' poistaaksesi\n"
  826. " tämä ominaisuus käytöstä."
  827. #: src/usage_text.h:337
  828. #, fuzzy
  829. msgid ""
  830. " --follow-metalink=true|false|mem If true or mem is specified, when a file\n"
  831. " whose suffix is .metaink or content type of\n"
  832. " application/metalink+xml is downloaded, aria2\n"
  833. " parses it as a metalink file and downloads "
  834. "files\n"
  835. " mentioned in it.\n"
  836. " If mem is specified, a metalink file is not\n"
  837. " written to the disk, but is just kept in "
  838. "memory.\n"
  839. " If false is specified, the action mentioned "
  840. "above\n"
  841. " is not taken."
  842. msgstr ""
  843. " --follow-metalink=true|false|mem Jos true tai mem, kun lataat tiedoston "
  844. "jonka\n"
  845. " pääte on .metalink tai tyyppi application/metalink"
  846. "+xml, aria2\n"
  847. " käsittelee sen metalink-tiedostona ja lataa siinä "
  848. "mainitut tiedostot.\n"
  849. " Jos mem, metalink-tiedostoa ei ladata levylle, "
  850. "vaan pidetään muistissa."
  851. #: src/usage_text.h:347
  852. msgid ""
  853. " --metalink-enable-unique-protocol=true|false If true is given and several\n"
  854. " protocols are available for a mirror in a "
  855. "metalink\n"
  856. " file, aria2 uses one of them.\n"
  857. " Use --metalink-preferred-protocol option to\n"
  858. " specify the preference of protocol."
  859. msgstr ""
  860. " --metalink-enable-unique-protocol=true|false Jos true, ja metalinkissä on "
  861. "useita\n"
  862. " protokollia valittavana, aria2 käyttää vain "
  863. "yhtä.\n"
  864. " Käytä --metalink-preferred-protocol -"
  865. "vaihtoehtoa\n"
  866. " valitaksesi mitä protokollaa käytetään."
  867. #: src/usage_text.h:353
  868. msgid " -v, --version Print the version number and exit."
  869. msgstr " -v, --version Tulosta versionumero ja lopeta."
  870. #: src/usage_text.h:355
  871. #, fuzzy
  872. msgid ""
  873. " -h, --help[=CATEGORY] Print usage and exit.\n"
  874. " The help messages are classified in several\n"
  875. " categories. For example, type \"--help=http\" "
  876. "for\n"
  877. " detailed explanation for the options related "
  878. "to\n"
  879. " http. If no matching category is found, "
  880. "search\n"
  881. " option name using a given word in middle "
  882. "match\n"
  883. " and print the result."
  884. msgstr ""
  885. " --seed-ratio=SUHDE Aseta jakamissuhde. Jaat valmistuneita torrentteja\n"
  886. " kunnes jaon suhde saavuttaa SUHTEEN. 1.0 on\n"
  887. " suositeltava. Käytä 0.0 jakaaksesi "
  888. "välittämättä suhteesta.\n"
  889. " Jos sekä tämä että --seed-time ovat käytössä, "
  890. "jakaminen\n"
  891. " päättyy kun toinen ehdoista täyttyy."
  892. #: src/usage_text.h:363
  893. msgid " --no-conf Disable loading aria2.conf file."
  894. msgstr " --no-conf Estä aria2.conf -asetustiedoston käyttö."
  895. #: src/usage_text.h:365
  896. msgid ""
  897. " --conf-path=PATH Change the configuration file path to PATH."
  898. msgstr " --conf-path=POLKU Muuta asetustiedoston polkua."
  899. #: src/usage_text.h:367
  900. msgid ""
  901. " --stop=SEC Stop application after SEC seconds has "
  902. "passed.\n"
  903. " If 0 is given, this feature is disabled."
  904. msgstr ""
  905. #: src/usage_text.h:370
  906. msgid ""
  907. " --header=HEADER Append HEADER to HTTP request header. You can "
  908. "use\n"
  909. " this option repeatedly to specify more than "
  910. "one\n"
  911. " header:\n"
  912. " aria2c --header=\"X-A: b78\" --header=\"X-B: "
  913. "9J1\"\n"
  914. " http://host/file"
  915. msgstr ""
  916. #: src/usage_text.h:376
  917. msgid " -q, --quiet[=true|false] Make aria2 quiet(no console output)."
  918. msgstr ""
  919. #: src/usage_text.h:378
  920. msgid " --async-dns[=true|false] Enable asynchronous DNS."
  921. msgstr ""
  922. #: src/usage_text.h:380
  923. msgid " --ftp-reuse-connection[=true|false] Reuse connection in FTP."
  924. msgstr ""
  925. #: src/usage_text.h:382
  926. msgid ""
  927. " --summary-interval=SEC Set interval to output download progress "
  928. "summary.\n"
  929. " Setting 0 suppresses the output."
  930. msgstr ""
  931. #: src/usage_text.h:385
  932. msgid " --log-level=LEVEL Set log level to output."
  933. msgstr ""
  934. #: src/usage_text.h:387
  935. #, fuzzy
  936. msgid ""
  937. " -R, --remote-time[=true|false] Retrieve timestamp of the remote file from "
  938. "the\n"
  939. " remote HTTP/FTP server and if it is "
  940. "available,\n"
  941. " apply it to the local file."
  942. msgstr ""
  943. " --direct-file-mapping=true|false Lue ja kirjoita suoraan jokaiseen "
  944. "tiedostoon\n"
  945. " joka mainitaan .torrent-tiedostossa\n"
  946. " Oletus: true"
  947. #: src/usage_text.h:391
  948. msgid ""
  949. " --connect-timeout=SEC Set the connect timeout in seconds to "
  950. "establish\n"
  951. " connection to HTTP/FTP/proxy server. After "
  952. "the\n"
  953. " connection is established, this option makes "
  954. "no\n"
  955. " effect and --timeout option is used instead."
  956. msgstr ""
  957. #: src/usage_text.h:396
  958. #, fuzzy
  959. msgid ""
  960. " --max-file-not-found=NUM If aria2 receives `file not found' status from "
  961. "the\n"
  962. " remote HTTP/FTP servers NUM times without "
  963. "getting\n"
  964. " a single byte, then force the download to "
  965. "fail.\n"
  966. " Specify 0 to disable this option.\n"
  967. " This options is effective only when using\n"
  968. " HTTP/FTP servers."
  969. msgstr ""
  970. " --file-allocation=METODI Aseta tiedostojen varausmetodi. METODI on joko\n"
  971. " 'none' tai 'prealloc'. 'none' ei varaa tilaa "
  972. "etukäteen.\n"
  973. " 'prealloc' varaa tilan etukäteen, ennen "
  974. "latauksen alkua.\n"
  975. " Tämä voi viedä jonkin verran aikaa, riippuen "
  976. "tiedoston koosta.\n"
  977. " Oletus: prealloc"
  978. #: src/usage_text.h:403
  979. #, fuzzy
  980. msgid ""
  981. " --uri-selector=SELECTOR Specify URI selection algorithm.\n"
  982. " If 'inorder' is given, URI is tried in the "
  983. "order\n"
  984. " appeared in the URI list.\n"
  985. " If 'feedback' is given, aria2 uses download "
  986. "speed\n"
  987. " observed in the previous downloads and choose\n"
  988. " fastest server in the URI list. This also\n"
  989. " effectively skips dead mirrors. The observed\n"
  990. " download speed is a part of performance "
  991. "profile\n"
  992. " of servers mentioned in --server-stat-of and\n"
  993. " --server-stat-if options.\n"
  994. " If 'adaptive' is given, selects one of the "
  995. "best\n"
  996. " mirrors for the first and reserved "
  997. "connections.\n"
  998. " For supplementary ones, it returns mirrors "
  999. "which\n"
  1000. " has not been tested yet, and if each of them "
  1001. "has\n"
  1002. " already been tested, returns mirrors which has "
  1003. "to\n"
  1004. " be tested again. Otherwise, it doesn't select\n"
  1005. " anymore mirrors. Like 'feedback', it uses a\n"
  1006. " performance profile of servers."
  1007. msgstr ""
  1008. " --follow-torrent=true|false|mem Jos true tai mem, kun lataat tiedoston\n"
  1009. " jonka pääte on .torrent tai tyyppi application/"
  1010. "x-bittorrent,\n"
  1011. " aria2 olettaa sen BitTorrent-tiedostoksi ja "
  1012. "lataa kaiken\n"
  1013. " siinä mainitun.\n"
  1014. " Jos mem, torrent-tiedostoa ei kirjoiteta "
  1015. "levylle, vaan\n"
  1016. " pidetään muistissa."
  1017. #: src/usage_text.h:422
  1018. #, fuzzy
  1019. msgid ""
  1020. " --server-stat-of=FILE Specify the filename to which performance "
  1021. "profile\n"
  1022. " of the servers is saved. You can load saved "
  1023. "data\n"
  1024. " using --server-stat-if option."
  1025. msgstr ""
  1026. " --retry-wait=SEK Montako sekuntia odotetaan virheen jälkeen.\n"
  1027. " Arvon oltava väliltä 0 ja 60.\n"
  1028. " Oletus: 5"
  1029. #: src/usage_text.h:426
  1030. msgid ""
  1031. " --server-stat-if=FILE Specify the filename to load performance "
  1032. "profile\n"
  1033. " of the servers. The loaded data will be used "
  1034. "in\n"
  1035. " some URI selector such as 'feedback'.\n"
  1036. " See also --uri-selector option"
  1037. msgstr ""
  1038. #: src/usage_text.h:431
  1039. #, fuzzy
  1040. msgid ""
  1041. " --server-stat-timeout=SEC Specifies timeout in seconds to invalidate\n"
  1042. " performance profile of the servers since the "
  1043. "last\n"
  1044. " contact to them."
  1045. msgstr ""
  1046. " --retry-wait=SEK Montako sekuntia odotetaan virheen jälkeen.\n"
  1047. " Arvon oltava väliltä 0 ja 60.\n"
  1048. " Oletus: 5"
  1049. #: src/usage_text.h:435
  1050. msgid ""
  1051. " --auto-save-interval=SEC Save a control file(*.aria2) every SEC "
  1052. "seconds.\n"
  1053. " If 0 is given, a control file is not saved "
  1054. "during\n"
  1055. " download. aria2 saves a control file when it "
  1056. "stops\n"
  1057. " regardless of the value."
  1058. msgstr ""
  1059. #: src/usage_text.h:440
  1060. msgid ""
  1061. " --certificate=FILE Use the client certificate in FILE.\n"
  1062. " The certificate must be in PEM format.\n"
  1063. " You may use --private-key option to specify "
  1064. "the\n"
  1065. " private key."
  1066. msgstr ""
  1067. #: src/usage_text.h:445
  1068. #, fuzzy
  1069. msgid ""
  1070. " --private-key=FILE Use the private key in FILE.\n"
  1071. " The private key must be decrypted and in PEM\n"
  1072. " format. See also --certificate option."
  1073. msgstr ""
  1074. " --retry-wait=SEK Montako sekuntia odotetaan virheen jälkeen.\n"
  1075. " Arvon oltava väliltä 0 ja 60.\n"
  1076. " Oletus: 5"
  1077. #: src/usage_text.h:449
  1078. #, fuzzy
  1079. msgid ""
  1080. " --ca-certificate=FILE Use the certificate authorities in FILE to "
  1081. "verify\n"
  1082. " the peers. The certificate file must be in "
  1083. "PEM\n"
  1084. " format and can contain multiple CA "
  1085. "certificates.\n"
  1086. " Use --check-certificate option to enable\n"
  1087. " verification."
  1088. msgstr ""
  1089. " --file-allocation=METODI Aseta tiedostojen varausmetodi. METODI on joko\n"
  1090. " 'none' tai 'prealloc'. 'none' ei varaa tilaa "
  1091. "etukäteen.\n"
  1092. " 'prealloc' varaa tilan etukäteen, ennen "
  1093. "latauksen alkua.\n"
  1094. " Tämä voi viedä jonkin verran aikaa, riippuen "
  1095. "tiedoston koosta.\n"
  1096. " Oletus: prealloc"
  1097. #: src/usage_text.h:455
  1098. msgid ""
  1099. " --check-certificate[=true|false] Verify the peer using certificates "
  1100. "specified\n"
  1101. " in --ca-certificate option."
  1102. msgstr ""
  1103. #: src/usage_text.h:458
  1104. #, fuzzy
  1105. msgid ""
  1106. " --no-proxy=DOMAINS Specify comma separated hostnames or domains "
  1107. "where\n"
  1108. " proxy should not be used."
  1109. msgstr ""
  1110. " --seed-time=MIN Aseta jakamisaika (seeding) minuuteissa. Ks. myös\n"
  1111. " --seed-ratio valinta."
  1112. #: src/usage_text.h:461
  1113. msgid ""
  1114. " --use-head[=true|false] Use HEAD method for the first request to the "
  1115. "HTTP\n"
  1116. " server."
  1117. msgstr ""
  1118. #: src/usage_text.h:464
  1119. msgid " --event-poll=POLL Specify the method for polling events."
  1120. msgstr ""
  1121. #: src/usage_text.h:477
  1122. msgid ""
  1123. " --bt-external-ip=IPADDRESS Specify the external IP address to report to "
  1124. "a\n"
  1125. " BitTorrent tracker. Although this function is\n"
  1126. " named 'external', it can accept any kind of "
  1127. "IP\n"
  1128. " addresses."
  1129. msgstr ""
  1130. #: src/version_usage.cc:54
  1131. msgid " version "
  1132. msgstr " versio "
  1133. #: src/version_usage.cc:71
  1134. #, c-format
  1135. msgid "Report bugs to %s"
  1136. msgstr "Ilmoita bugit %s:lle."
  1137. #: src/version_usage.cc:76
  1138. #, fuzzy, c-format
  1139. msgid "Usage: %s [OPTIONS] [URL | TORRENT_FILE | METALINK_FILE]..."
  1140. msgstr "Käyttö: %s [parametrit] URL ...\n"
  1141. #: src/version_usage.cc:86
  1142. #, fuzzy, c-format
  1143. msgid "Printing options whose name includes '%s'."
  1144. msgstr "Tulostetaan valinnat, joiden nimi alkaa '%s'"
  1145. #: src/version_usage.cc:89 src/version_usage.cc:111
  1146. msgid "Options:"
  1147. msgstr "Asetukset:"
  1148. #: src/version_usage.cc:94
  1149. #, c-format
  1150. msgid "No help category or option name matching with '%s'."
  1151. msgstr "Ei ohjeosiota tai valintaa nimellä '%s'"
  1152. #: src/version_usage.cc:100
  1153. msgid "Printing all options."
  1154. msgstr "Tulostetaan kaikki valinnat."
  1155. #: src/version_usage.cc:102
  1156. #, c-format
  1157. msgid "Printing options tagged with '%s'."
  1158. msgstr "Tulostetaan valinnat merkittynä '%s':llä."
  1159. #: src/version_usage.cc:106
  1160. #, c-format
  1161. msgid "See -h option to know other command-line options(%s)."
  1162. msgstr "Ks. -h valinta nähdäksesi muita valintoja (%s)"
  1163. #: src/version_usage.cc:120
  1164. msgid ""
  1165. " You can specify multiple URLs. Unless you specify -Z option, all URLs must\n"
  1166. " point to the same file or downloading will fail."
  1167. msgstr ""
  1168. " Voit antaa useita osoitteita. Jos et käytä -Z valintaa, kaikkien\n"
  1169. " osoitteiden täytyy johtaa samaan tiedostoon, tai lataaminen keskeytyy."
  1170. #: src/version_usage.cc:122
  1171. msgid ""
  1172. " You can also specify arbitrary number of torrent files and metalink files\n"
  1173. " stored in a local drive. Please note that they are always treated as a\n"
  1174. " separate download."
  1175. msgstr ""
  1176. #: src/version_usage.cc:127
  1177. msgid ""
  1178. " You can specify both torrent file with -T option and URLs. By doing this,\n"
  1179. " download a file from both torrent swarm and http/ftp server at the same "
  1180. "time,\n"
  1181. " while the data from http/ftp are uploaded to the torrent swarm. Note that\n"
  1182. " only single file torrent can be integrated with http/ftp."
  1183. msgstr ""
  1184. " Voit yhdistää torrent-tiedoston -T:llä osoitteiden kanssa. Näin\n"
  1185. " lataat samaa tiedostoa sekä torrent-parvesta että http/ftp-palvelimelta\n"
  1186. " samaan aikaan, ja jaat http/ftp:ltä saatua dataa torrent-parveen.\n"
  1187. " HUOM: vain yhden tiedoston torrent-tiedostoa voi käyttää näin."
  1188. #: src/version_usage.cc:132
  1189. msgid ""
  1190. " Make sure that URL is quoted with single(') or double(\") quotation if it\n"
  1191. " contains \"&\" or any characters that have special meaning in shell."
  1192. msgstr ""
  1193. " Varmista että URL on eristetty joko yksittäis(') tai tupla(\")"
  1194. "lainausmerkeillä jos\n"
  1195. " siinä on \"&\" tai jokin muu merkki, jolla on erityismerkitys "
  1196. "komentotulkille."
  1197. #: src/version_usage.cc:136
  1198. msgid "Refer to man page for more information."
  1199. msgstr "Ks. man-sivulta lisätietoja."
  1200. #: src/message.h:40
  1201. #, c-format
  1202. msgid "CUID#%d - The download for one segment completed successfully."
  1203. msgstr "CUID#%d - Yhden osan lataus valmistui onnistuneesti."
  1204. #: src/message.h:41
  1205. #, c-format
  1206. msgid "CUID#%d - No segment available."
  1207. msgstr "CUID#%d - Osaa ei ole saatavilla."
  1208. #: src/message.h:42
  1209. #, c-format
  1210. msgid "CUID#%d - Connecting to %s:%d"
  1211. msgstr "CUID#%d - Yhdistää osoitteeseen %s:%d"
  1212. #: src/message.h:43
  1213. #, c-format
  1214. msgid ""
  1215. "CUID#%d - The segment changed. We send the request again with new Range "
  1216. "header."
  1217. msgstr ""
  1218. "CUID#%d - Osa muuttui. Lähetämme pyynnön uudestaan uudella alue-otsikolla."
  1219. #: src/message.h:44
  1220. #, c-format
  1221. msgid "CUID#%d - Redirecting to %s"
  1222. msgstr "CUID#%d - Uudelleenohjataan osoitteeseen %s"
  1223. #: src/message.h:45
  1224. #, c-format
  1225. msgid ""
  1226. "CUID#%d - Requesting:\n"
  1227. "%s"
  1228. msgstr ""
  1229. "CUID#%d - Lähetetään pyyntöä:\n"
  1230. "%s"
  1231. #: src/message.h:46
  1232. #, c-format
  1233. msgid ""
  1234. "CUID#%d - Response received:\n"
  1235. "%s"
  1236. msgstr ""
  1237. "CUID#%d - Vastaus saatu:\n"
  1238. "%s"
  1239. #: src/message.h:47
  1240. #, c-format
  1241. msgid "CUID#%d - Download aborted. URI=%s"
  1242. msgstr "CUID#%d - Lataus lopetettu kesken. URI=%s"
  1243. #: src/message.h:48
  1244. #, c-format
  1245. msgid "CUID#%d - Restarting the download. URI=%s"
  1246. msgstr "CUID#%d - Aloitetaan lataus alusta. URI=%s"
  1247. #: src/message.h:49
  1248. #, c-format
  1249. msgid "CUID#%d - Download aborted."
  1250. msgstr "CUID#%d - Lataus lopetettu kesken."
  1251. #: src/message.h:50
  1252. #, c-format
  1253. msgid "CUID#%d - %d times attempted, but no success. Download aborted."
  1254. msgstr "CUID#%d - yritetty %d kertaa, onnistumatta. Lataus lopetettu kesken."
  1255. #: src/message.h:51
  1256. #, c-format
  1257. msgid "CUID#%d - Unregistering cuid from segmentManager."
  1258. msgstr "CUID#%d - poistetaan tämä cuid osamanagerista."
  1259. #: src/message.h:57
  1260. #, c-format
  1261. msgid "CUID#%d - we got new piece. index=%d"
  1262. msgstr "CUID#%d - saimme uuden osan. Indeksi=%d"
  1263. #: src/message.h:58
  1264. #, c-format
  1265. msgid "CUID#%d - we got wrong piece. index=%d"
  1266. msgstr "CUID#%d - saimme väärän osan. Indeksi=%d"
  1267. #: src/message.h:59
  1268. #, c-format
  1269. msgid "CUID#%d - Download not complete: %s"
  1270. msgstr "CUID#%d - Lataus ei ole valmis: %s"
  1271. #: src/message.h:60
  1272. #, c-format
  1273. msgid "#%d - Download has already completed: %s"
  1274. msgstr "#%d - Lataus on jo valmistunut: %s"
  1275. #: src/message.h:61
  1276. #, c-format
  1277. msgid "CUID#%d - Good checksum: %s"
  1278. msgstr "CUID#%d - Checksum-tarkistus OK: %s"
  1279. #: src/message.h:62
  1280. #, c-format
  1281. msgid "CUID#%d - Bad checksum: %s"
  1282. msgstr "CUID#%d - Checksum-tarkistus epäonnistui: %s"
  1283. #: src/message.h:63
  1284. #, c-format
  1285. msgid "CUID#%d - Resolving hostname %s"
  1286. msgstr "CUID#%d - Etsitään nimeä %s"
  1287. #: src/message.h:64
  1288. #, c-format
  1289. msgid "CUID#%d - Name resolution complete: %s -> %s"
  1290. msgstr "CUID#%d - Nimen etsintä valmis: %s -> %s"
  1291. #: src/message.h:65
  1292. #, c-format
  1293. msgid "CUID#%d - Name resolution for %s failed:%s"
  1294. msgstr "CUID#%d - Nimen %s etsintä epäonnistui: %s"
  1295. #: src/message.h:66
  1296. #, c-format
  1297. msgid "CUID#%d - DNS cache hit: %s -> %s"
  1298. msgstr "CUID #%d - DNS-välimuistin osuma: %s -> %s"
  1299. #: src/message.h:67
  1300. #, c-format
  1301. msgid "CUID#%d - Abort requested."
  1302. msgstr "CUID#%d - Lopetusta kesken pyydetty."
  1303. #: src/message.h:68
  1304. #, c-format
  1305. msgid "CUID#%d - Connecting to the peer %s"
  1306. msgstr "CUID#%d - Yhdistetään koneeseen %s"
  1307. #: src/message.h:69
  1308. #, c-format
  1309. msgid ""
  1310. "CUID#%d - Piece received. index=%d, begin=%d, length=%d, offset=%llu, "
  1311. "blockIndex=%d"
  1312. msgstr ""
  1313. "CUID#%d - Osa vastaanotettu. Indeksi=%d, alku=%d, pituus=%d, offset=%llu, "
  1314. "block-indeksi=%d"
  1315. #: src/message.h:70
  1316. #, c-format
  1317. msgid "CUID#%d - Piece bitfield %s"
  1318. msgstr "CUID#%d - Palan bittikenttä %s"
  1319. #: src/message.h:71
  1320. #, c-format
  1321. msgid ""
  1322. "CUID#%d - Reject piece message in queue because the peer has been choked. "
  1323. "index=%d, begin=%d, length=%d"
  1324. msgstr ""
  1325. "CUID#%d - Hylätään palaviesti jonossa koska yksi käyttäjistä on kuristunut. "
  1326. "Indeksi=%d, alku=%d, pituus=%d"
  1327. #: src/message.h:72
  1328. #, c-format
  1329. msgid ""
  1330. "CUID#%d - Reject piece message in queue because cancel message received. "
  1331. "index=%d, begin=%d, length=%d"
  1332. msgstr ""
  1333. "CUID#%d - Hylätään palaviesti jonossa koska saatiin peruutuspyyntö. Indeksi=%"
  1334. "d, alku=%d, pituus=%d"
  1335. #: src/message.h:73
  1336. #, c-format
  1337. msgid "CUID#%d - Exception caught while validating file integrity."
  1338. msgstr "CUID#%d - Poikkeus löydettiin tutkittaessa tiedoston eheyttä."
  1339. #: src/message.h:74
  1340. #, c-format
  1341. msgid "CUID#%d - Interested in the peer"
  1342. msgstr "CUID#%d - Kiinnostusta käyttäjään"
  1343. #: src/message.h:75
  1344. #, c-format
  1345. msgid "CUID#%d - Not interested in the peer"
  1346. msgstr "CUID#%d - Ei kiinnostusta käyttäjään"
  1347. #: src/message.h:76
  1348. #, c-format
  1349. msgid "CUID#%d - Deleting request slot index=%d, blockIndex=%d"
  1350. msgstr "CUID#%d - Poistetaan pyyntöpaikka indeksi=%d, block-indeksi=%d"
  1351. #: src/message.h:77
  1352. #, c-format
  1353. msgid ""
  1354. "CUID#%d - Deleting request slot index=%d, blockIndex=%d because localhost "
  1355. "got choked."
  1356. msgstr ""
  1357. "CUID#%d - Poistetaan pyyntöpaikka indeksi=%d, block-indeksi=%d koska "
  1358. "localhost kuristui."
  1359. #: src/message.h:78
  1360. #, c-format
  1361. msgid "CUID#%d - Deleting request slot blockIndex=%d because of time out"
  1362. msgstr ""
  1363. "CUID#%d - Poistetaan pyyntöpaikka block-indeksi=%d koska aikaraja tuli "
  1364. "vastaan."
  1365. #: src/message.h:79
  1366. #, c-format
  1367. msgid ""
  1368. "CUID#%d - Deleting request slot blockIndex=%d because the block has been "
  1369. "acquired."
  1370. msgstr ""
  1371. "CUID#%d - Poistetaan pyyntöpaikka block-indeksi=%d koska se pala on jo saatu."
  1372. #: src/message.h:80
  1373. #, c-format
  1374. msgid "CUID#%d - Fast extension enabled."
  1375. msgstr "CUID#%d - Nopea laajennus päällä."
  1376. #: src/message.h:81
  1377. #, c-format
  1378. msgid "CUID#%d - Extended Messaging enabled."
  1379. msgstr "CUID#%d - Laajennettu viestitys käytössä"
  1380. #: src/message.h:82
  1381. #, c-format
  1382. msgid "CUID#%d - Exception caught while allocating file space."
  1383. msgstr "CUID#%d - Poikkeus saatu kiinni varatessa tilaa."
  1384. #: src/message.h:83
  1385. #, c-format
  1386. msgid "CUID#%d - Content-Disposition detected. Use %s as filename"
  1387. msgstr "CUID#%d - Sisällön epäjärjestys havaittu. Käytä %s tiedostonimenä"
  1388. #: src/message.h:84
  1389. #, c-format
  1390. msgid "CUID#%d - Peer %s:%d banned."
  1391. msgstr "CUID#%d - Käyttäjä %s:%d bannattu."
  1392. #: src/message.h:85
  1393. #, c-format
  1394. msgid "CUID#%d - Using port %d for accepting new connections"
  1395. msgstr "CUID#%d - Käytetään porttia %d uusiin yhteyksiin."
  1396. #: src/message.h:86
  1397. #, c-format
  1398. msgid "CUID#%d - An error occurred while binding port=%d"
  1399. msgstr "CUID#%d - Virhe tapahtui sitoessa porttia %d"
  1400. #: src/message.h:87
  1401. #, c-format
  1402. msgid "CUID#%d - Incoming connection, adding new command CUID#%d"
  1403. msgstr "CUID#%d - Saapuva yhteys, lisätään uusi komento CUID#%d"
  1404. #: src/message.h:88
  1405. #, c-format
  1406. msgid "CUID#%d - Error in accepting connection"
  1407. msgstr "CUID#%d - Virhe yhteyden hyväksymisessä"
  1408. #: src/message.h:89
  1409. #, c-format
  1410. msgid "CUID#%d - Error occurred while processing tracker response."
  1411. msgstr "CUID#%d - Virhe tapahtui käsitellessä trackerin vastausta."
  1412. #: src/message.h:90
  1413. #, c-format
  1414. msgid "CUID#%d - Cannot create tracker request."
  1415. msgstr "CUID#%d - Ei voi luoda tracker-pyytöä."
  1416. #: src/message.h:91
  1417. #, c-format
  1418. msgid "CUID#%d - Creating new tracker request command #%d"
  1419. msgstr "CUID#%d - Luodaan uusi tracker-pyyntökäsky #%d"
  1420. #: src/message.h:92
  1421. #, c-format
  1422. msgid "CUID#%d - The peer is DHT-enabled."
  1423. msgstr ""
  1424. #: src/message.h:94
  1425. #, c-format
  1426. msgid "Unrecognized URI or unsupported protocol: %s"
  1427. msgstr "Tunnistamaton URI tai ei-tuettu protokolla: %s"
  1428. #: src/message.h:95
  1429. #, c-format
  1430. msgid "Tracker returned warning message: %s"
  1431. msgstr "Tracker palautti varoituksen: %s"
  1432. #: src/message.h:96
  1433. #, c-format
  1434. msgid "The segment file %s exists."
  1435. msgstr "Osatiedosto %s on jo olemassa."
  1436. #: src/message.h:97
  1437. #, c-format
  1438. msgid "The segment file %s does not exist."
  1439. msgstr "Osatiedostoa %s ei ole olemassa."
  1440. #: src/message.h:98
  1441. #, c-format
  1442. msgid "Saving the segment file %s"
  1443. msgstr "Tallennetaan osatiedostoa %s"
  1444. #: src/message.h:99
  1445. msgid "The segment file was saved successfully."
  1446. msgstr "Osatiedosto tallennettu onnistuneesti."
  1447. #: src/message.h:100
  1448. #, c-format
  1449. msgid "Loading the segment file %s."
  1450. msgstr "Ladataan osatiedostoa %s"
  1451. #: src/message.h:101
  1452. msgid "The segment file was loaded successfully."
  1453. msgstr "Osatiedosto ladattu onnistuneesti."
  1454. #: src/message.h:102
  1455. msgid "No URI to download. Download aborted."
  1456. msgstr "Ei URIa ladattavaksi. Lataus keskeytetty."
  1457. #: src/message.h:103
  1458. #, c-format
  1459. msgid ""
  1460. "File %s exists, but a control file(*.aria2) does not exist. Download was "
  1461. "canceled in order to prevent your file from being truncated to 0. If you are "
  1462. "sure to download the file all over again, then delete it or add --allow-"
  1463. "overwrite=true option and restart aria2."
  1464. msgstr ""
  1465. "Tiedosto %s on jo olemassa, mutta hallintatiedostoa (*.aria2) ei löydy. "
  1466. "Lataus peruutettiin, jotta tiedostoasi ei tyhjennettäisi. Jos olet varma, "
  1467. "että haluat ladata tiedoston uudestaan, joko poista se tai käytä --allow-"
  1468. "overwrite=true valintaa."
  1469. #: src/message.h:104
  1470. #, c-format
  1471. msgid "Allocating file %s, %s bytes"
  1472. msgstr "Varataan tilaa tiedostolla %s, %s tavua"
  1473. #: src/message.h:105
  1474. msgid "File not found"
  1475. msgstr "Tiedostoa ei löydy"
  1476. #: src/message.h:106
  1477. msgid "Not a directory"
  1478. msgstr "Ei ole kansio"
  1479. #: src/message.h:107
  1480. #, c-format
  1481. msgid "Insufficient checksums. checksumLength=%d, numChecksum=%d"
  1482. msgstr "Riittämättömät tarkistussummat. Pituus=%d, numero=%d"
  1483. #: src/message.h:108
  1484. #, c-format
  1485. msgid "Writing file %s"
  1486. msgstr "Kirjoitetaan tiedostoa %s"
  1487. #: src/message.h:109
  1488. msgid "No peer list received."
  1489. msgstr "Ei saatu käyttäjälistaa."
  1490. #: src/message.h:110
  1491. #, c-format
  1492. msgid "Adding peer %s:%d"
  1493. msgstr "Lisätään käyttäjä %s:%d"
  1494. #: src/message.h:111
  1495. #, c-format
  1496. msgid "Deleting used piece index=%d, fillRate(%%)=%d<=%d"
  1497. msgstr "Poistetaan käytetty palaindeksi %d, täyttönopeus(%%)=%d<=%d"
  1498. #: src/message.h:112
  1499. msgid "Download of selected files was complete."
  1500. msgstr "Valittujen tiedostojen lataus on valmis."
  1501. #: src/message.h:113
  1502. msgid "The download was complete."
  1503. msgstr "Lataus on valmis."
  1504. #: src/message.h:114
  1505. #, c-format
  1506. msgid "Removed %d have entries."
  1507. msgstr "Poistettiin %d kohtaa."
  1508. #: src/message.h:115
  1509. #, c-format
  1510. msgid "Validating file %s"
  1511. msgstr "Tarkistetaan tiedostoa %s"
  1512. #: src/message.h:116
  1513. #, c-format
  1514. msgid "%d seconds to allocate %s byte(s)"
  1515. msgstr "%d sekuntia tilan %s varaamiseen"
  1516. #: src/message.h:117
  1517. #, c-format
  1518. msgid "Dispatching FileAllocationCommand for CUID#%d."
  1519. msgstr "Lähetetään FileAllocationCommand CUID#%d:lle"
  1520. #: src/message.h:118
  1521. #, c-format
  1522. msgid "Metalink: Queueing %s for download."
  1523. msgstr "Metalink: Laitetaan %s jonoon latausta varten."
  1524. #: src/message.h:119
  1525. #, c-format
  1526. msgid "Download complete: %s"
  1527. msgstr "Lataus on valmis: %s"
  1528. #: src/message.h:120
  1529. msgid "Seeding is over."
  1530. msgstr "Jakaminen (seeding) lopetettu."
  1531. #: src/message.h:121
  1532. #, c-format
  1533. msgid "CUID#%d cancels segment index=%d. CUID#%d handles it instead."
  1534. msgstr "CUID#%d peruuttaa palan indeksillä %d. CUID#%d hoitaa sen sen sijaan."
  1535. #: src/message.h:122
  1536. msgid "No chunk to verify."
  1537. msgstr "Ei palaa tarkistettavaksi."
  1538. #: src/message.h:123
  1539. #, c-format
  1540. msgid "Good chunk checksum. hash=%s"
  1541. msgstr "OK palan tarkistussumma. hash=%s"
  1542. #: src/message.h:124
  1543. #, c-format
  1544. msgid "Failed to load cookies from %s"
  1545. msgstr "Cookien lataaminen epäonnistui tiedostosta %s"
  1546. #: src/message.h:125
  1547. #, c-format
  1548. msgid ""
  1549. ".netrc file %s does not have correct permissions. It should be 600. netrc "
  1550. "support disabled."
  1551. msgstr ""
  1552. ".netrc-tiedostolla %s ei ole sopivia oikeuksia. Sen pitäisi olla 600. netrc-"
  1553. "tuki pois päältä."
  1554. #: src/message.h:126
  1555. msgid "Logging started."
  1556. msgstr "Loki aloitettu."
  1557. #: src/message.h:127
  1558. msgid "Specify at least one URL."
  1559. msgstr "Anna ainakin yksi osoite."
  1560. #: src/message.h:128
  1561. msgid "daemon failed."
  1562. msgstr "daemon epäonnistui."
  1563. #: src/message.h:129
  1564. #, c-format
  1565. msgid "Verification finished successfully. file=%s"
  1566. msgstr "Tarkistus lopetettu onnistuneesti. Tiedosto=%s"
  1567. #: src/message.h:130
  1568. #, c-format
  1569. msgid "Checksum error detected. file=%s"
  1570. msgstr "Tarkistussumman virhe löydetty. Tiedosto=%s"
  1571. #: src/message.h:131
  1572. #, c-format
  1573. msgid "Incomplete range specified. %s"
  1574. msgstr "Väärä alue annettu: %s"
  1575. #: src/message.h:132
  1576. #, c-format
  1577. msgid "Failed to convert string into value: %s"
  1578. msgstr "Merkkijonon muuttaminen arvoksi epäonnistui: %s"
  1579. #: src/message.h:133
  1580. msgid "Resource not found"
  1581. msgstr "Resurssia ei löydy"
  1582. #: src/message.h:134
  1583. #, c-format
  1584. msgid "File already exists. Renamed to %s."
  1585. msgstr "Tiedosto on jo olemassa. Nimettiin uudelleen %s:ksi"
  1586. #: src/message.h:135
  1587. msgid "Cannot parse metalink XML file. XML may be malformed."
  1588. msgstr "Metalink-xml tiedostoa ei voi käsitellä. Tiedosto voi olla vioittunut."
  1589. #: src/message.h:136
  1590. #, c-format
  1591. msgid "Too small payload size for %s, size=%d."
  1592. msgstr "Liian pieni payload-koko %s:lle, koko=%d"
  1593. #: src/message.h:137
  1594. #, c-format
  1595. msgid ""
  1596. "Removed the defunct control file %s because the download file %s doesn't "
  1597. "exist."
  1598. msgstr "Poistettiin vanha ohjaustiedosto %s koska lataustiedostoa %s ei ole."
  1599. #: src/message.h:138
  1600. #, c-format
  1601. msgid "Your share ratio was %.1f, uploaded/downloaded=%sB/%sB"
  1602. msgstr "Jakosuhteesi oli %.1f, upload/download=%sB/%sB"
  1603. #: src/message.h:139
  1604. #, c-format
  1605. msgid "Missing %s in torrent metainfo."
  1606. msgstr "Torrentin metatiedoista puuttuu %s."
  1607. #: src/message.h:140
  1608. msgid "Tracker returned null data."
  1609. msgstr "Tracker palautti tyhjän."
  1610. #: src/message.h:141
  1611. msgid "Windows socket library initialization failed"
  1612. msgstr "Windowsin socket-kirjaston alustus epäonnistui."
  1613. #: src/message.h:142
  1614. #, c-format
  1615. msgid "%d second(s) has passed. Stopping application."
  1616. msgstr ""
  1617. #: src/message.h:143
  1618. #, c-format
  1619. msgid ""
  1620. "Saved signature as %s. Please note that aria2 doesn't verify signatures."
  1621. msgstr ""
  1622. #: src/message.h:145
  1623. #, c-format
  1624. msgid "Saving signature as %s failed. Maybe file already exists."
  1625. msgstr ""
  1626. #: src/message.h:148
  1627. #, fuzzy, c-format
  1628. msgid "Failed to open ServerStat file %s for read."
  1629. msgstr "Tiedoston %s avaaminen epäonnistui, syy: %s"
  1630. #: src/message.h:149
  1631. #, fuzzy, c-format
  1632. msgid "ServerStat file %s loaded successfully."
  1633. msgstr "Osatiedosto ladattu onnistuneesti."
  1634. #: src/message.h:150
  1635. #, fuzzy, c-format
  1636. msgid "Failed to read ServerStat from %s."
  1637. msgstr "Lukeminen levyltä epäonnistui."
  1638. #: src/message.h:153
  1639. #, fuzzy, c-format
  1640. msgid "Failed to open ServerStat file %s for write."
  1641. msgstr "Tiedoston %s avaaminen epäonnistui, syy: %s"
  1642. #: src/message.h:154
  1643. #, fuzzy, c-format
  1644. msgid "ServerStat file %s saved successfully."
  1645. msgstr "Osatiedosto tallennettu onnistuneesti."
  1646. #: src/message.h:155
  1647. #, fuzzy, c-format
  1648. msgid "Failed to write ServerStat to %s."
  1649. msgstr "Dataa ei voitu vastaanottaa, syy: %s"
  1650. #: src/message.h:158
  1651. #, fuzzy, c-format
  1652. msgid "Failed to establish connection, cause: %s"
  1653. msgstr "Käyttäjäyhteyttä ei voitu hyväksyä, syy: %s"
  1654. #: src/message.h:159
  1655. #, c-format
  1656. msgid "Network problem has occurred. cause:%s"
  1657. msgstr ""
  1658. #: src/message.h:161
  1659. #, fuzzy, c-format
  1660. msgid "Failed to load trusted CA certificates from %s. Cause: %s"
  1661. msgstr "Tiedostosta %s ei voi lukea, syy: %s"
  1662. #: src/message.h:163
  1663. #, c-format
  1664. msgid "Certificate verification failed. Cause: %s"
  1665. msgstr ""
  1666. #: src/message.h:164
  1667. #, fuzzy
  1668. msgid "No certificate found."
  1669. msgstr "Ei löydetty otsaketta."
  1670. #: src/message.h:165
  1671. msgid "Hostname not match."
  1672. msgstr ""
  1673. #: src/message.h:166
  1674. msgid "No files to download."
  1675. msgstr ""
  1676. #: src/message.h:168
  1677. msgid ""
  1678. "You may encounter the certificate verification error with HTTPS server. See "
  1679. "--ca-certificate and --check-certificate option."
  1680. msgstr ""
  1681. #: src/message.h:170
  1682. #, fuzzy, c-format
  1683. msgid "Printing the contents of file '%s'..."
  1684. msgstr "Tulostetaan valinnat, joiden nimi alkaa '%s'"
  1685. #: src/message.h:171
  1686. msgid "This file is neither Torrent nor Metalink file. Skipping."
  1687. msgstr ""
  1688. #: src/message.h:174
  1689. msgid "Timeout."
  1690. msgstr "Aikakatkaisu."
  1691. #: src/message.h:175
  1692. msgid "Invalid chunk size."
  1693. msgstr "Väärä palan koko."
  1694. #: src/message.h:176
  1695. #, c-format
  1696. msgid "Too large chunk. size=%d"
  1697. msgstr "Liian suuri pala. Koko %d"
  1698. #: src/message.h:177
  1699. msgid "Invalid header."
  1700. msgstr "Väärä otsake."
  1701. #: src/message.h:178
  1702. msgid "Invalid response."
  1703. msgstr "Epäkelpo vastaus."
  1704. #: src/message.h:179
  1705. msgid "No header found."
  1706. msgstr "Ei löydetty otsaketta."
  1707. #: src/message.h:180
  1708. msgid "No status header."
  1709. msgstr "Ei tila-otsikkoa."
  1710. #: src/message.h:181
  1711. msgid "Proxy connection failed."
  1712. msgstr "Välityspalvelinyhteys epäonnistui."
  1713. #: src/message.h:182
  1714. msgid "Connection failed."
  1715. msgstr "Yhteys epäonnistui."
  1716. #: src/message.h:183
  1717. #, c-format
  1718. msgid ""
  1719. "The requested filename and the previously registered one are not same. "
  1720. "Expected:%s Actual:%s"
  1721. msgstr ""
  1722. "Pyydetty tiedostonimi ja aiemmin rekisteröity eivät täsmää. Odotettu: %s "
  1723. "Oikea: %s"
  1724. #: src/message.h:184
  1725. #, c-format
  1726. msgid "The response status is not successful. status=%d"
  1727. msgstr "Vastauksen tila ei ole onnistunut. Tila=%d"
  1728. #: src/message.h:185
  1729. #, c-format
  1730. msgid "Too large file size. size=%s"
  1731. msgstr "Tiedostokoko liian suuri. Koko=%s"
  1732. #: src/message.h:186
  1733. #, c-format
  1734. msgid "Transfer encoding %s is not supported."
  1735. msgstr "Siirron koodausta %s ei tueta."
  1736. #: src/message.h:187
  1737. #, c-format
  1738. msgid "SSL initialization failed: %s"
  1739. msgstr "SSL-aloitus epäonnistui: %s"
  1740. #: src/message.h:188
  1741. msgid "SSL I/O error"
  1742. msgstr "SSL I/O-virhe"
  1743. #: src/message.h:189
  1744. msgid "SSL protocol error"
  1745. msgstr "SSL protokollavirhe"
  1746. #: src/message.h:190
  1747. #, c-format
  1748. msgid "SSL unknown error %d"
  1749. msgstr "SSL: tuntematon virhe %d"
  1750. #: src/message.h:191
  1751. #, c-format
  1752. msgid "SSL initialization failed: OpenSSL connect error %d"
  1753. msgstr "SSL valmistelu epäonnistui: OpenSSL yhdistysvirhe %d"
  1754. #: src/message.h:192
  1755. #, c-format
  1756. msgid "Size mismatch Expected:%s Actual:%s"
  1757. msgstr "Koko ei täsmää. Odotettu:%s Oikea:%s"
  1758. #: src/message.h:193
  1759. msgid "Authorization failed."
  1760. msgstr "Kirjautuminen epäonnistui."
  1761. #: src/message.h:194
  1762. msgid "Got EOF from the server."
  1763. msgstr "Saatiin tiedoston lopetus palvelimelta."
  1764. #: src/message.h:195
  1765. msgid "Got EOF from peer."
  1766. msgstr "Saatiin tiedoston lopetus käyttäjältä."
  1767. #: src/message.h:196
  1768. msgid "Malformed meta info."
  1769. msgstr "Vioittunut metatieto."
  1770. #: src/message.h:198
  1771. #, c-format
  1772. msgid "Failed to open the file %s, cause: %s"
  1773. msgstr "Tiedoston %s avaaminen epäonnistui, syy: %s"
  1774. #: src/message.h:199
  1775. #, c-format
  1776. msgid "Failed to write into the file %s, cause: %s"
  1777. msgstr "Tiedostoon %s ei voi kirjoittaa, syy: %s"
  1778. #: src/message.h:200
  1779. #, c-format
  1780. msgid "Failed to read from the file %s, cause: %s"
  1781. msgstr "Tiedostosta %s ei voi lukea, syy: %s"
  1782. #: src/message.h:201
  1783. msgid "Failed to read data from disk."
  1784. msgstr "Lukeminen levyltä epäonnistui."
  1785. #: src/message.h:202
  1786. #, c-format
  1787. msgid "Failed to calculate SHA1 digest of or a part of the file %s, cause: %s"
  1788. msgstr "SHA1-summaa ei voitu laskea tiedostosta tai sen osasta %s, syy: %s"
  1789. #: src/message.h:203
  1790. #, c-format
  1791. msgid "Failed to seek the file %s, cause: %s"
  1792. msgstr "Tiedostoa %s ei löydy, syy: %s"
  1793. #: src/message.h:204
  1794. #, c-format
  1795. msgid "The offset is out of range, offset=%s"
  1796. msgstr "Offset on rajojen ulkopuolella, offset=%s"
  1797. #: src/message.h:205
  1798. #, c-format
  1799. msgid "%s is not a directory."
  1800. msgstr "%s ei ole hakemisto."
  1801. #: src/message.h:206
  1802. #, c-format
  1803. msgid "Failed to make the directory %s, cause: %s"
  1804. msgstr "Hakemistoa %s ei voi luoda, syy: %s"
  1805. #: src/message.h:207
  1806. #, c-format
  1807. msgid "Failed to open the segment file %s, cause: %s"
  1808. msgstr "Osatiedostoa %s ei voi avata, syy: %s"
  1809. #: src/message.h:208
  1810. #, c-format
  1811. msgid "Failed to write into the segment file %s, cause: %s"
  1812. msgstr "Osatiedostoon %s ei voi kirjoittaa, syy: %s"
  1813. #: src/message.h:209
  1814. #, c-format
  1815. msgid "Failed to read from the segment file %s, cause: %s"
  1816. msgstr "Osatiedostosta %s ei voi lukea, syy: %s"
  1817. #: src/message.h:211
  1818. #, c-format
  1819. msgid "Failed to open a socket, cause: %s"
  1820. msgstr "Sockettia ei voi avata, syy: %s"
  1821. #: src/message.h:212
  1822. #, c-format
  1823. msgid "Failed to set a socket option, cause: %s"
  1824. msgstr "Socket-asetuksen asetus epäonnistui, syy: %s"
  1825. #: src/message.h:213
  1826. #, c-format
  1827. msgid "Failed to set a socket as blocking, cause: %s"
  1828. msgstr "Socketin asetus estäväksi epäonnistui, syy: %s"
  1829. #: src/message.h:214
  1830. #, c-format
  1831. msgid "Failed to set a socket as non-blocking, cause: %s"
  1832. msgstr "Socketin asetus ei-estäväksi epäonnistui, syy: %s"
  1833. #: src/message.h:215
  1834. #, c-format
  1835. msgid "Failed to bind a socket, cause: %s"
  1836. msgstr "Socketin sitominen epäonnistui, syy: %s"
  1837. #: src/message.h:216
  1838. #, c-format
  1839. msgid "Failed to listen to a socket, cause: %s"
  1840. msgstr "Socketin kuuntelu epäonnistui, syy: %s"
  1841. #: src/message.h:217
  1842. #, c-format
  1843. msgid "Failed to accept a peer connection, cause: %s"
  1844. msgstr "Käyttäjäyhteyttä ei voitu hyväksyä, syy: %s"
  1845. #: src/message.h:218
  1846. #, c-format
  1847. msgid "Failed to get the name of socket, cause: %s"
  1848. msgstr "Socketin nimen saaminen epäonnistui, syy: %s"
  1849. #: src/message.h:219
  1850. #, c-format
  1851. msgid "Failed to get the name of connected peer, cause: %s"
  1852. msgstr "Yhdistyneen käyttäjän nimeä ei saatu, syy: %s"
  1853. #: src/message.h:220
  1854. #, c-format
  1855. msgid "Failed to resolve the hostname %s, cause: %s"
  1856. msgstr "Koneen %s osoitetta ei pystytty selvittämään, syy: %s"
  1857. #: src/message.h:221
  1858. #, c-format
  1859. msgid "Failed to connect to the host %s, cause: %s"
  1860. msgstr "Yhteyttä koneeseen %s ei saatu, syy: %s"
  1861. #: src/message.h:222
  1862. #, c-format
  1863. msgid "Failed to check whether the socket is writable, cause: %s"
  1864. msgstr "Socketin kirjoitettavuutta ei voitu tarkistaa, syy: %s"
  1865. #: src/message.h:223
  1866. #, c-format
  1867. msgid "Failed to check whether the socket is readable, cause: %s"
  1868. msgstr "Socketin luettavuutta ei voitu tarkistaa, syy: %s"
  1869. #: src/message.h:224
  1870. #, c-format
  1871. msgid "Failed to send data, cause: %s"
  1872. msgstr "Dataa ei voitu lähettää, syy: %s"
  1873. #: src/message.h:225
  1874. #, c-format
  1875. msgid "Failed to receive data, cause: %s"
  1876. msgstr "Dataa ei voitu vastaanottaa, syy: %s"
  1877. #: src/message.h:226
  1878. #, c-format
  1879. msgid "Failed to peek data, cause: %s"
  1880. msgstr "Dataa ei voitu katsoa, syy: %s"
  1881. #: src/message.h:227
  1882. #, c-format
  1883. msgid "Unknown socket error %d (0x%x)"
  1884. msgstr "Tuntematon socket-virhe %d (0x%x)"
  1885. #: src/message.h:228
  1886. #, c-format
  1887. msgid "File %s exists, but %s does not exist."
  1888. msgstr "Tiedosto %s on olemassa, mutta %s ei."
  1889. #: src/message.h:229
  1890. #, c-format
  1891. msgid "Invalid payload size for %s, size=%d. It should be %d."
  1892. msgstr "Väärä payload-koko %s:lla (%d), pitäisi olla %d."
  1893. #: src/message.h:230
  1894. #, c-format
  1895. msgid "Invalid ID=%d for %s. It should be %d."
  1896. msgstr "Epäkelpo ID=%d %s:lla. Pitäisi olla %d."
  1897. #: src/message.h:231
  1898. #, c-format
  1899. msgid ""
  1900. "Chunk checksum validation failed. checksumIndex=%d, offset=%s, expectedHash=%"
  1901. "s, actualHash=%s"
  1902. msgstr ""
  1903. "Palan tarkistussumma ei täsmää. checksumIndex=%d, offset=%s, expectedHash=%"
  1904. "s, actualHash=%s"
  1905. #: src/message.h:232
  1906. msgid "Download aborted."
  1907. msgstr "Lataus keskeytettiin."
  1908. #: src/message.h:233
  1909. #, c-format
  1910. msgid "File %s is being downloaded by other command."
  1911. msgstr "Tiedostoa %s lataa joku toinen komento."
  1912. #: src/message.h:234
  1913. msgid "Insufficient checksums."
  1914. msgstr "Riittämättömät tarkistussummat."
  1915. #: src/message.h:235
  1916. #, c-format
  1917. msgid "Tracker returned failure reason: %s"
  1918. msgstr "Tracker palautti epäonnistumisen syyn: %s"
  1919. #: src/message.h:236
  1920. msgid "Flooding detected."
  1921. msgstr "Tulva huomattu."
  1922. #: src/message.h:237
  1923. #, c-format
  1924. msgid ""
  1925. "Drop connection because no request/piece messages were exchanged in a "
  1926. "certain period(%d seconds)."
  1927. msgstr ""
  1928. "Sulje yhteys koska yhtään pyyntöä/palaa ei vaihdettu tietyssä ajassa (%d "
  1929. "sekunnissa)."
  1930. #: src/message.h:238
  1931. msgid "The infoHash in torrent file doesn't match to one in .aria2 file."
  1932. msgstr "InfoHash torrent-tiedostossa ei täsmää .aria2-tiedostossa olevaan."
  1933. #: src/message.h:239
  1934. #, c-format
  1935. msgid "No such file entry %s"
  1936. msgstr "Tiedostokohtaa %s ei ole."
  1937. #: src/message.h:240
  1938. #, c-format
  1939. msgid "Too slow Downloading speed: %d <= %d(B/s), host:%s"
  1940. msgstr "Liian hidas latausnopeus: %d <= %d(B/s), kone:%s"
  1941. #: src/message.h:241
  1942. msgid "No HttpRequestEntry found."
  1943. msgstr "HttpRequestEntry:ä ei löydy."
  1944. #: src/message.h:242
  1945. #, c-format
  1946. msgid "Got %d status, but no location header provided."
  1947. msgstr "Saatiin %d-tila, mutta ei osoiteotsaketta."
  1948. #: src/message.h:243
  1949. #, c-format
  1950. msgid "Invalid range header. Request: %s-%s/%s, Response: %s-%s/%s"
  1951. msgstr "Epäkelpo rajaotsake. Pyyntö: %s-%s/%s, Vastaus %s-%s/%s"
  1952. #: src/message.h:244
  1953. msgid "No file matched with your preference."
  1954. msgstr "Yksikään tiedosto ei vastaa asetuksiasi."
  1955. #: src/message.h:245
  1956. msgid "Exception caught"
  1957. msgstr "Poikkeus löytyi"
  1958. #: src/message.h:246
  1959. #, c-format
  1960. msgid "Max payload length exceeded or invalid. length = %u"
  1961. msgstr "Suurin payload-koko ylitetty tai väärä. Pituus = %u"
  1962. #: src/message.h:247
  1963. #, c-format
  1964. msgid "Invalid file length. Cannot continue download %s: local %s, remote %s"
  1965. msgstr ""
  1966. "Epäkelpo tiedoston pituus. Latausta %s ei voi jatkaa: paikallinen %s, etä %s"
  1967. #: src/BtSetup.cc:160
  1968. msgid "Errors occurred while binding port.\n"
  1969. msgstr "Virheitä tapahtui sitoessa porttia.\n"
  1970. #: src/Util.cc:724
  1971. msgid "Files:"
  1972. msgstr "Tiedostot:"
  1973. #~ msgid ""
  1974. #~ " --http-proxy=HOST:PORT Use HTTP proxy server. This affects all "
  1975. #~ "URLs."
  1976. #~ msgstr ""
  1977. #~ " --http-proxy=HOST:PORT Käytä http-välityspalvelinta. Tämä vaikuttaa "
  1978. #~ "kaikkiin URL:hin."
  1979. #~ msgid ""
  1980. #~ " --http-proxy-user=USER Set HTTP proxy user. This affects all URLs."
  1981. #~ msgstr ""
  1982. #~ " --http-proxy-user=USER Aseta http-välityspalvelin-käyttäjänimi. Tämä "
  1983. #~ "vaikuttaa kaikkiin URL:hin."
  1984. #~ msgid ""
  1985. #~ " --http-proxy-passwd=PASSWD Set HTTP proxy password. This affects all "
  1986. #~ "URLs."
  1987. #~ msgstr ""
  1988. #~ " --http-proxy-passwd=SALASANA Aseta http-välityspalvelin-salasana. Tämä "
  1989. #~ "vaikuttaa kaikkiin URL:hin."
  1990. #~ msgid " -p, --ftp-pasv Use passive mode in FTP."
  1991. #~ msgstr " -p, --ftp-pasv Käytä passiivista tilaa ftp:ssä."
  1992. #, fuzzy
  1993. #~ msgid ""
  1994. #~ " -C, --metalink-servers=NUM_SERVERS The number of servers to connect to\n"
  1995. #~ " simultaneously."
  1996. #~ msgstr ""
  1997. #~ " -C, --metalink-servers=N Aseta yhtäaikaisten metalink-palvelinyhteyksien "
  1998. #~ "lukumäärä.\n"
  1999. #~ " Oletus: 5"
  2000. #~ msgid ""
  2001. #~ " --ftp-user=USER Set FTP user. This affects all URLs.\n"
  2002. #~ " Default: anonymous"
  2003. #~ msgstr ""
  2004. #~ " --ftp-user=USER Aseta ftp-käyttäjänimi. Tämä vaikuttaa kaikkiin URL:"
  2005. #~ "hin.\n"
  2006. #~ " Oletus: anonymous"
  2007. #~ msgid ""
  2008. #~ " --ftp-passwd=PASSWD Set FTP password. This affects all URLs.\n"
  2009. #~ " Default: ARIA2USER@"
  2010. #~ msgstr ""
  2011. #~ " --ftp-passwd=SALASANA Aseta ftp-salasana. Tämä vaikuttaa kaikkiin URL:"
  2012. #~ "hin.\n"
  2013. #~ " Oletus: ARIA2USER@"
  2014. #~ msgid ""
  2015. #~ " --ftp-via-http-proxy=METHOD Use HTTP proxy in FTP. METHOD is either "
  2016. #~ "'get' or\n"
  2017. #~ " 'tunnel'.\n"
  2018. #~ " Default: tunnel"
  2019. #~ msgstr ""
  2020. #~ " --ftp-via-http-proxy=METODI Käytä http-proxya ftp:ssä. METODI on joko "
  2021. #~ "'get' tai\n"
  2022. #~ " 'tunnel'.\n"
  2023. #~ " Oletus: tunnel"
  2024. #~ msgid ""
  2025. #~ " --enable-http-pipelining[=true|false] Enable HTTP/1.1 pipelining.\n"
  2026. #~ " Default: false"
  2027. #~ msgstr ""
  2028. #~ " --enable-http-pipelining[=true|false] Käytä HTTP/1.1 pipeliningiä.\n"
  2029. #~ " Oletus: false"
  2030. #~ msgid " %s [options] -T TORRENT_FILE URL ...\n"
  2031. #~ msgstr " %s [parametrit] -T TORRENT_TIEDOSTO URL ...\n"
  2032. #~ msgid " %s [options] -M METALINK_FILE\n"
  2033. #~ msgstr " %s [parametrit] -M METALINK_TIEDOSTO\n"
  2034. #~ msgid ""
  2035. #~ "This program is free software; you can redistribute it and/or modify\n"
  2036. #~ "it under the terms of the GNU General Public License as published by\n"
  2037. #~ "the Free Software Foundation; either version 2 of the License, or\n"
  2038. #~ "(at your option) any later version.\n"
  2039. #~ "\n"
  2040. #~ "This program is distributed in the hope that it will be useful,\n"
  2041. #~ "but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
  2042. #~ "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
  2043. #~ "GNU General Public License for more details.\n"
  2044. #~ "\n"
  2045. #~ "You should have received a copy of the GNU General Public License\n"
  2046. #~ "along with this program; if not, write to the Free Software\n"
  2047. #~ "Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-"
  2048. #~ "1301 USA\n"
  2049. #~ msgstr ""
  2050. #~ "Tämä ohjelma on vapaata ohjelmistoa; voit levittää ja/tai muokata\n"
  2051. #~ "sitä GNU General Public Licensen termien mukaan, kuten Free\n"
  2052. #~ "Software Foundation sen julkaisi; joko lisenssin version 2, tai\n"
  2053. #~ "(valintasi mukaan) minkä vain myöhemmän version.\n"
  2054. #~ "\n"
  2055. #~ "Tätä ohjelmaa levitetään siinä toivossa että se on hyödyllinen,\n"
  2056. #~ "mutta ILMAN TAKUUTA; ilman edes oletettua takuuta MARKKINOITAVUUDESTA\n"
  2057. #~ "tai SOPIVUUDESTA TIETTYYN TARKOITUKSEEN. Ks. GNU General\n"
  2058. #~ "Public License:stä lisätietoja.\n"
  2059. #~ "\n"
  2060. #~ "Sinun olisi pitänyt saada kopio GNU General Public Licensestä\n"
  2061. #~ "tämän ohjelman mukana; jos ei, kirjoita Free Software Foundation, Inc:"
  2062. #~ "lle,\n"
  2063. #~ "51 Franklin Streen, Fifth Floor, Boston, MA 02110-1301 USA\n"