fi.po 126 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591
  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: 2012-06-27 00:55+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. "Language: fi\n"
  15. "MIME-Version: 1.0\n"
  16. "Content-Type: text/plain; charset=UTF-8\n"
  17. "Content-Transfer-Encoding: 8bit\n"
  18. "X-Launchpad-Export-Date: 2008-03-01 03:48+0000\n"
  19. "X-Generator: Launchpad (build Unknown)\n"
  20. #: src/DownloadEngine.cc:225
  21. msgid ""
  22. "Shutdown sequence commencing... Press Ctrl-C again for emergency shutdown."
  23. msgstr "Sammutus alkaa... Paina Ctrl-C uudestaan hätäsammutukselle."
  24. #: src/DownloadEngine.cc:232
  25. msgid "Emergency shutdown sequence commencing..."
  26. msgstr "Hätäsammutus alkaa..."
  27. #: src/MultiUrlRequestInfo.cc:125
  28. msgid "aria2 will resume download if the transfer is restarted."
  29. msgstr "aria2 jatkaa latausta, jos siirto käynnistetään uudelleen."
  30. #: src/MultiUrlRequestInfo.cc:126
  31. msgid ""
  32. "If there are any errors, then see the log file. See '-l' option in help/man "
  33. "page for details."
  34. msgstr ""
  35. "Jos virheitä tapahtuu, katso lokitiedostoa. Ks. '-l' parametri ohjeessa/man-"
  36. "sivulla."
  37. #: src/MultiUrlRequestInfo.cc:250
  38. #, fuzzy, c-format
  39. msgid "Serialized session to '%s' successfully."
  40. msgstr "Osatiedosto tallennettu onnistuneesti."
  41. #: src/MultiUrlRequestInfo.cc:253
  42. #, fuzzy, c-format
  43. msgid "Failed to serialize session to '%s'."
  44. msgstr "Dataa ei voitu vastaanottaa, syy: %s"
  45. #: src/RequestGroupMan.cc:390
  46. #, fuzzy, c-format
  47. msgid "Download GID#%<PRId64> not complete: %s"
  48. msgstr "Lataus on valmis: %s"
  49. #: src/RequestGroupMan.cc:671
  50. msgid "Download Results:"
  51. msgstr "Lataustulokset:"
  52. #: src/RequestGroupMan.cc:714
  53. msgid "Status Legend:"
  54. msgstr "Tilalegenda:"
  55. #: src/RequestGroupMan.cc:716
  56. #, fuzzy
  57. msgid "(OK):download completed."
  58. msgstr "Lataus on valmis."
  59. #: src/RequestGroupMan.cc:719
  60. msgid "(ERR):error occurred."
  61. msgstr ""
  62. #: src/RequestGroupMan.cc:722
  63. msgid "(INPR):download in-progress."
  64. msgstr ""
  65. #: src/RequestGroupMan.cc:725
  66. #, fuzzy
  67. msgid "(RM):download removed."
  68. msgstr "Lataus keskeytettiin."
  69. #: src/OptionHandler.cc:38
  70. msgid " Default: "
  71. msgstr " Oletus: "
  72. #: src/OptionHandler.cc:39
  73. msgid " Tags: "
  74. msgstr " Tagit: "
  75. #: src/OptionHandler.cc:40
  76. #, fuzzy
  77. msgid " Possible Values: "
  78. msgstr " Mahdolliset arvot: "
  79. #: src/usage_text.h:37
  80. msgid ""
  81. " -d, --dir=DIR The directory to store the downloaded file."
  82. msgstr " -d, --dir=DIR Hakemisto jonne talletetaan ladattu tiedosto."
  83. #: src/usage_text.h:39
  84. #, fuzzy
  85. msgid ""
  86. " -o, --out=FILE The file name of the downloaded file. When -Z\n"
  87. " option is used, this option is ignored."
  88. msgstr ""
  89. " -l, --log=LOKI Lokitiedoston nimi. Jos '-',\n"
  90. " loki kirjoitetaan stdout:iin."
  91. #: src/usage_text.h:42
  92. msgid ""
  93. " -l, --log=LOG The file name of the log file. If '-' is\n"
  94. " specified, log is written to stdout."
  95. msgstr ""
  96. " -l, --log=LOKI Lokitiedoston nimi. Jos '-',\n"
  97. " loki kirjoitetaan stdout:iin."
  98. #: src/usage_text.h:45
  99. #, fuzzy
  100. msgid ""
  101. " -D, --daemon[=true|false] Run as daemon. The current working directory "
  102. "will\n"
  103. " be changed to \"/\" and standard input, "
  104. "standard\n"
  105. " output and standard error will be redirected "
  106. "to\n"
  107. " \"/dev/null\"."
  108. msgstr ""
  109. " --allow-piece-lenght-change=true|false Jos false, aria2 keskeyttää "
  110. "latauksen kun\n"
  111. " palan koko on eri kuin hallintatiedostossa. Jos "
  112. "true, voit jatkaa\n"
  113. " mutta hieman latausedistystä voidaan menettää."
  114. #: src/usage_text.h:50
  115. #, fuzzy
  116. msgid ""
  117. " -s, --split=N Download a file using N connections. If more\n"
  118. " than N URLs are given, first N URLs are used "
  119. "and\n"
  120. " remaining URLs are used for backup. If less "
  121. "than\n"
  122. " N URLs are given, those URLs are used more "
  123. "than\n"
  124. " once so that N connections total are made\n"
  125. " simultaneously. The number of connections to "
  126. "the\n"
  127. " same host is restricted by\n"
  128. " --max-connection-per-server option. See also\n"
  129. " --min-split-size option."
  130. msgstr ""
  131. " -s, --split=N Lataa tiedosto käyttäen N yhteyttä. N täytyy olla\n"
  132. " väliltä 1-5. Tämä asetus vaikuttaa kaikkiin "
  133. "URL:hin.\n"
  134. " Joten aria2 yhdistää jokaiseen URL:iin\n"
  135. " N yhteydellä.\n"
  136. " Oletus: 1"
  137. #: src/usage_text.h:60
  138. #, fuzzy
  139. msgid ""
  140. " --retry-wait=SEC Set the seconds to wait between retries. \n"
  141. " With SEC > 0, aria2 will retry download when "
  142. "the\n"
  143. " HTTP server returns 503 response."
  144. msgstr ""
  145. " --retry-wait=SEK Montako sekuntia odotetaan virheen jälkeen.\n"
  146. " Arvon oltava väliltä 0 ja 60.\n"
  147. " Oletus: 5"
  148. #: src/usage_text.h:64
  149. #, fuzzy
  150. msgid " -t, --timeout=SEC Set timeout in seconds."
  151. msgstr " -t, --timeout=SEK Aikakatkaisu sekunneissa. Oletus: 60"
  152. #: src/usage_text.h:66
  153. #, fuzzy
  154. msgid " -m, --max-tries=N Set number of tries. 0 means unlimited."
  155. msgstr ""
  156. " -m, --max-tries=N Yritysten määrä. 0 on rajoittamaton.\n"
  157. " OIetus:5"
  158. #: src/usage_text.h:68
  159. #, fuzzy
  160. msgid ""
  161. " --http-proxy=PROXY Use this proxy server for HTTP. To erase\n"
  162. " previously defined proxy, use \"\".\n"
  163. " See also --all-proxy option.\n"
  164. " This affects all URLs."
  165. msgstr ""
  166. " --http-proxy-method=METODI Aseta välityspalvelinpyynnön tyyppi.\n"
  167. " METODI on joko 'get' tai 'tunnel'.\n"
  168. " Oletus: tunnel"
  169. #: src/usage_text.h:73
  170. #, fuzzy
  171. msgid ""
  172. " --https-proxy=PROXY Use this proxy server for HTTPS. To erase\n"
  173. " previously defined proxy, use \"\".\n"
  174. " See also --all-proxy option.\n"
  175. " This affects all URLs."
  176. msgstr ""
  177. " --http-proxy-method=METODI Aseta välityspalvelinpyynnön tyyppi.\n"
  178. " METODI on joko 'get' tai 'tunnel'.\n"
  179. " Oletus: tunnel"
  180. #: src/usage_text.h:78
  181. #, fuzzy
  182. msgid ""
  183. " --ftp-proxy=PROXY Use this proxy server for FTP. To erase "
  184. "previously\n"
  185. " defined proxy, use \"\".\n"
  186. " See also --all-proxy option.\n"
  187. " This affects all URLs."
  188. msgstr ""
  189. " --ftp-type=TYYPPI Aseta ftp-siirron tyyppi. TYYPPI on joko 'binary'\n"
  190. " tai 'ascii'.\n"
  191. " Oletus: binary"
  192. #: src/usage_text.h:83
  193. #, fuzzy
  194. msgid ""
  195. " --all-proxy=PROXY Use this proxy server for all protocols. To "
  196. "erase\n"
  197. " previously defined proxy, use \"\".\n"
  198. " You can override this setting and specify a\n"
  199. " proxy server for a particular protocol using\n"
  200. " --http-proxy, --https-proxy and --ftp-proxy\n"
  201. " options.\n"
  202. " This affects all URLs."
  203. msgstr ""
  204. " -c, --continue Jatka osittain ladatun tiedoston latausta.\n"
  205. " Käytä tätä asetusta jatkaaksesi esim.\n"
  206. " web-selaimen latausta, joka lataa\n"
  207. " lineaarisesti alusta loppuun.\n"
  208. " Tällä hetkellä tämä vaikuttaa vain \n"
  209. " http(s)/ftp-latauksiin."
  210. #: src/usage_text.h:91
  211. msgid " --http-user=USER Set HTTP user. This affects all URLs."
  212. msgstr ""
  213. " -http-user=USER Aseta http-käyttäjänimi. Tämä vaikuttaa kaikkiin URL:hin."
  214. #: src/usage_text.h:93
  215. msgid " --http-passwd=PASSWD Set HTTP password. This affects all URLs."
  216. msgstr ""
  217. " --http-passwd=SALASANA Aseta http-salasana. Tämä vaikuttaa kaikkiin URL:hin."
  218. #: src/usage_text.h:95
  219. msgid " --proxy-method=METHOD Set the method to use in proxy request."
  220. msgstr ""
  221. #: src/usage_text.h:97
  222. msgid " --referer=REFERER Set Referer. This affects all URLs."
  223. msgstr " --referer=REFERER Aseta viittaaja. Tämä vaikuttaa kaikkiin URL:hin."
  224. #: src/usage_text.h:99
  225. #, fuzzy
  226. msgid " --ftp-user=USER Set FTP user. This affects all URLs."
  227. msgstr ""
  228. " -http-user=USER Aseta http-käyttäjänimi. Tämä vaikuttaa kaikkiin URL:hin."
  229. #: src/usage_text.h:101
  230. #, fuzzy
  231. msgid " --ftp-passwd=PASSWD Set FTP password. This affects all URLs."
  232. msgstr ""
  233. " --http-passwd=SALASANA Aseta http-salasana. Tämä vaikuttaa kaikkiin URL:hin."
  234. #: src/usage_text.h:103
  235. msgid " --ftp-type=TYPE Set FTP transfer type."
  236. msgstr ""
  237. #: src/usage_text.h:105
  238. msgid ""
  239. " -p, --ftp-pasv[=true|false] Use the passive mode in FTP. If false is "
  240. "given,\n"
  241. " the active mode will be used."
  242. msgstr ""
  243. #: src/usage_text.h:108
  244. #, fuzzy
  245. msgid ""
  246. " --lowest-speed-limit=SPEED Close connection if download speed is lower "
  247. "than\n"
  248. " or equal to this value(bytes per sec).\n"
  249. " 0 means aria2 does not have a lowest speed "
  250. "limit.\n"
  251. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  252. " This option does not affect BitTorrent "
  253. "downloads."
  254. msgstr ""
  255. " --lowest-speed-limit=NOPEUS Sulje yhteys jos latausnopeus on alempi tai\n"
  256. " yhtä suuri kuin tämä arvo (tavua/sek).\n"
  257. " 0 tarkoittaa ettei aria2 käytä alarajaa.\n"
  258. " Voit lisätä perään joko K tai M (1K = 1024, 1M "
  259. "= 1024K)\n"
  260. " Tämä asetus ei vaikuta BitTorrent-latauksiin.\n"
  261. " Oletus: 0"
  262. #: src/usage_text.h:114
  263. #, fuzzy
  264. msgid ""
  265. " --max-overall-download-limit=SPEED Set max overall download speed in bytes/"
  266. "sec.\n"
  267. " 0 means unrestricted.\n"
  268. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  269. " To limit the download speed per download, use\n"
  270. " --max-download-limit option."
  271. msgstr ""
  272. " --max-upload-limit=NOPEUS Aseta maksimi-uploadnopeus (tavua/sek)\n"
  273. " 0 on ei rajaa.\n"
  274. " Voit lisätä perään joko K tai M (1K = 1024, 1M "
  275. "= 1024K)\n"
  276. " Oletus: 0"
  277. #: src/usage_text.h:120
  278. #, fuzzy
  279. msgid ""
  280. " --max-download-limit=SPEED Set max download speed per each download in\n"
  281. " bytes/sec. 0 means unrestricted.\n"
  282. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  283. " To limit the overall download speed, use\n"
  284. " --max-overall-download-limit option."
  285. msgstr ""
  286. " --max-upload-limit=NOPEUS Aseta maksimi-uploadnopeus (tavua/sek)\n"
  287. " 0 on ei rajaa.\n"
  288. " Voit lisätä perään joko K tai M (1K = 1024, 1M "
  289. "= 1024K)\n"
  290. " Oletus: 0"
  291. #: src/usage_text.h:126
  292. msgid ""
  293. " --file-allocation=METHOD Specify file allocation method.\n"
  294. " 'none' doesn't pre-allocate file space. "
  295. "'prealloc'\n"
  296. " pre-allocates file space before download "
  297. "begins.\n"
  298. " This may take some time depending on the size "
  299. "of\n"
  300. " the file.\n"
  301. " If you are using newer file systems such as "
  302. "ext4\n"
  303. " (with extents support), btrfs, xfs or NTFS\n"
  304. " (MinGW build only), 'falloc' is your best\n"
  305. " choice. It allocates large(few GiB) files\n"
  306. " almost instantly. Don't use 'falloc' with "
  307. "legacy\n"
  308. " file systems such as ext3 and FAT32 because "
  309. "it\n"
  310. " takes almost same time as 'prealloc' and it\n"
  311. " blocks aria2 entirely until allocation "
  312. "finishes.\n"
  313. " 'falloc' may not be available if your system\n"
  314. " doesn't have posix_fallocate() function."
  315. msgstr ""
  316. #: src/usage_text.h:142
  317. msgid ""
  318. " --no-file-allocation-limit=SIZE No file allocation is made for files whose\n"
  319. " size is smaller than SIZE.\n"
  320. " You can append K or M(1K = 1024, 1M = 1024K)."
  321. msgstr ""
  322. " --no-file-allocation-limit=KOKO Tilan varausta ei tehdä tiedostoille,\n"
  323. " joiden koko on pienempi kuin KOKO.\n"
  324. " Voit lisätä perään joko K tai M (1K = 1024, 1M "
  325. "= 1024K)"
  326. #: src/usage_text.h:146
  327. msgid ""
  328. " --enable-direct-io[=true|false] Enable directI/O, which lowers cpu usage "
  329. "while\n"
  330. " allocating files.\n"
  331. " Turn off if you encounter any error"
  332. msgstr ""
  333. " --enable-direct-io[=true|false] Käyttää suoraa I/O:ta, joka laskee "
  334. "tehokäyttöä\n"
  335. " varatessa tilaa.\n"
  336. " Älä käytä, jos kohtaat virheitä"
  337. #: src/usage_text.h:150
  338. #, fuzzy
  339. msgid ""
  340. " --allow-overwrite[=true|false] Restart download from scratch if the\n"
  341. " corresponding control file doesn't exist. "
  342. "See\n"
  343. " also --auto-file-renaming option."
  344. msgstr ""
  345. " --allow-piece-lenght-change=true|false Jos false, aria2 keskeyttää "
  346. "latauksen kun\n"
  347. " palan koko on eri kuin hallintatiedostossa. Jos "
  348. "true, voit jatkaa\n"
  349. " mutta hieman latausedistystä voidaan menettää."
  350. #: src/usage_text.h:154
  351. #, fuzzy
  352. msgid ""
  353. " --allow-piece-length-change[=true|false] If false is given, aria2 aborts\n"
  354. " download when a piece length is different "
  355. "from\n"
  356. " one in a control file. If true is given, you "
  357. "can\n"
  358. " proceed but some download progress will be "
  359. "lost."
  360. msgstr ""
  361. " --allow-piece-lenght-change=true|false Jos false, aria2 keskeyttää "
  362. "latauksen kun\n"
  363. " palan koko on eri kuin hallintatiedostossa. Jos "
  364. "true, voit jatkaa\n"
  365. " mutta hieman latausedistystä voidaan menettää."
  366. #: src/usage_text.h:159
  367. #, fuzzy
  368. msgid ""
  369. " -Z, --force-sequential[=true|false] Fetch URIs in the command-line "
  370. "sequentially\n"
  371. " and download each URI in a separate session, "
  372. "like\n"
  373. " the usual command-line download utilities."
  374. msgstr ""
  375. " -Z, --force-sequential[=true|false] Hae osoitteet komentoriviltä "
  376. "lineaarisesti,\n"
  377. " ja lataa jokainen URI eri sessiossa, kuten\n"
  378. " tavalliset komentorivilatausapuohjelmat.\n"
  379. " Oletus: false"
  380. #: src/usage_text.h:163
  381. #, fuzzy
  382. msgid ""
  383. " --auto-file-renaming[=true|false] Rename file name if the same file "
  384. "already\n"
  385. " exists. This option works only in http(s)/ftp\n"
  386. " download.\n"
  387. " The new file name has a dot and a number"
  388. "(1..9999)\n"
  389. " appended."
  390. msgstr ""
  391. " --auto-file-renaming[=true|false] Nimeä tiedosto uudelleen jos sama "
  392. "tiedosto on\n"
  393. " jo olemassa. Tämä asetus toimii vain http(s)/"
  394. "ftp-\n"
  395. " latauksissa. Uudessa tiedostonimessä on piste "
  396. "ja numero\n"
  397. " (1..9999) lisättynä.\n"
  398. " Oletus: true"
  399. #: src/usage_text.h:169
  400. #, fuzzy
  401. msgid ""
  402. " -P, --parameterized-uri[=true|false] Enable parameterized URI support.\n"
  403. " You can specify set of parts:\n"
  404. " http://{sv1,sv2,sv3}/foo.iso\n"
  405. " Also you can specify numeric sequences with "
  406. "step\n"
  407. " counter:\n"
  408. " http://host/image[000-100:2].img\n"
  409. " A step counter can be omitted.\n"
  410. " If all URIs do not point to the same file, "
  411. "such\n"
  412. " as the second example above, -Z option is\n"
  413. " required."
  414. msgstr ""
  415. " -P, --parameterized-uri[=true|false] Käytä paremeterisoituja URI:ja.\n"
  416. " Voit määrittää osia:\n"
  417. " http://{sv1,sv2,sv3}/foo.iso\n"
  418. " Voit myös käyttää numeerisia välejä askelin:\n"
  419. " http://host/img[000-100:2].img\n"
  420. " Askelmittarin voi jättää pois.\n"
  421. " Mikäli kaikki URI:t eivät osoita samaan "
  422. "tiedostoon,\n"
  423. " kuten toisessa esimerkissä, -Z parametri "
  424. "vaaditaan.\n"
  425. " Oletus: false"
  426. #: src/usage_text.h:180
  427. #, fuzzy
  428. msgid ""
  429. " --enable-http-keep-alive[=true|false] Enable HTTP/1.1 persistent connection."
  430. msgstr ""
  431. " --enable-http-keep-alive[=true|false] Käytä HTTP/1.1 säilyvää yhteyttä.\n"
  432. " Oletus: false"
  433. #: src/usage_text.h:182
  434. #, fuzzy
  435. msgid " --enable-http-pipelining[=true|false] Enable HTTP/1.1 pipelining."
  436. msgstr ""
  437. " --enable-http-keep-alive[=true|false] Käytä HTTP/1.1 säilyvää yhteyttä.\n"
  438. " Oletus: false"
  439. #: src/usage_text.h:184
  440. msgid ""
  441. " -V, --check-integrity[=true|false] Check file integrity by validating "
  442. "piece\n"
  443. " hashes or a hash of entire file. This option "
  444. "has\n"
  445. " effect only in BitTorrent, Metalink downloads\n"
  446. " with checksums or HTTP(S)/FTP downloads with\n"
  447. " --checksum option. If piece hashes are "
  448. "provided,\n"
  449. " this option can detect damaged portions of a "
  450. "file\n"
  451. " and re-download them. If a hash of entire file "
  452. "is\n"
  453. " provided, hash check is only done when file "
  454. "has\n"
  455. " been already download. This is determined by "
  456. "file\n"
  457. " length. If hash check fails, file is\n"
  458. " re-downloaded from scratch. If both piece "
  459. "hashes\n"
  460. " and a hash of entire file are provided, only\n"
  461. " piece hashes are used."
  462. msgstr ""
  463. #: src/usage_text.h:198
  464. #, fuzzy
  465. msgid ""
  466. " --bt-hash-check-seed[=true|false] If true is given, after hash check using\n"
  467. " --check-integrity option and file is "
  468. "complete,\n"
  469. " continue to seed file. If you want to check "
  470. "file\n"
  471. " and download it only when it is damaged or\n"
  472. " incomplete, set this option to false.\n"
  473. " This option has effect only on BitTorrent\n"
  474. " download."
  475. msgstr ""
  476. " --seed-ratio=SUHDE Aseta jakamissuhde. Jaat valmistuneita torrentteja\n"
  477. " kunnes jaon suhde saavuttaa SUHTEEN. 1.0 on\n"
  478. " suositeltava. Käytä 0.0 jakaaksesi "
  479. "välittämättä suhteesta.\n"
  480. " Jos sekä tämä että --seed-time ovat käytössä, "
  481. "jakaminen\n"
  482. " päättyy kun toinen ehdoista täyttyy."
  483. #: src/usage_text.h:206
  484. #, fuzzy
  485. msgid ""
  486. " --realtime-chunk-checksum[=true|false] Validate chunk of data by "
  487. "calculating\n"
  488. " checksum while downloading a file if chunk\n"
  489. " checksums are provided."
  490. msgstr ""
  491. " --realtime-chunk-checksum=true|false Tarkista palojen tarkistussummat\n"
  492. " ladatessasi tiedostoa Metalink-moodissa. Tämä\n"
  493. " vaikuttaa vain Metalink-latauksiin joissa on "
  494. "palojen\n"
  495. " tarkistussumma.\n"
  496. " Oletus: true"
  497. #: src/usage_text.h:210
  498. #, fuzzy
  499. msgid ""
  500. " -c, --continue[=true|false] Continue downloading a partially downloaded\n"
  501. " file. Use this option to resume a download\n"
  502. " started by a web browser or another program\n"
  503. " which downloads files sequentially from the\n"
  504. " beginning. Currently this option is only\n"
  505. " applicable to http(s)/ftp downloads."
  506. msgstr ""
  507. " -c, --continue Jatka osittain ladatun tiedoston latausta.\n"
  508. " Käytä tätä asetusta jatkaaksesi esim.\n"
  509. " web-selaimen latausta, joka lataa\n"
  510. " lineaarisesti alusta loppuun.\n"
  511. " Tällä hetkellä tämä vaikuttaa vain \n"
  512. " http(s)/ftp-latauksiin."
  513. #: src/usage_text.h:217
  514. msgid " -U, --user-agent=USER_AGENT Set user agent for http(s) downloads."
  515. msgstr " -U, --user-agent=USER_AGENT Aseta selaimen nimi http(s)-latauksiin."
  516. #: src/usage_text.h:219
  517. #, fuzzy
  518. msgid " -n, --no-netrc[=true|false] Disables netrc support."
  519. msgstr " -n, --no-netrc Asettaa netrc-tuen pois päältä."
  520. #: src/usage_text.h:221
  521. #, fuzzy
  522. msgid ""
  523. " -i, --input-file=FILE Downloads URIs found in FILE. You can specify\n"
  524. " multiple URIs for a single entity: separate\n"
  525. " URIs on a single line using the TAB "
  526. "character.\n"
  527. " Reads input from stdin when '-' is specified.\n"
  528. " Additionally, options can be specified after "
  529. "each\n"
  530. " line of URI. This optional line must start "
  531. "with\n"
  532. " one or more white spaces and have one option "
  533. "per\n"
  534. " single line. See INPUT FILE section of man "
  535. "page\n"
  536. " for details. See also --deferred-input option."
  537. msgstr ""
  538. " -i, --input-file=FILE Lataa URI:t tiedostosta FILE. Voit antaa\n"
  539. " monta osoitetta yhdelle tiedostolle: erota\n"
  540. " URI:t yhdellä rivillä käyttäen TAB-nappia.\n"
  541. " Lukee stdin:stä jos käytät '-' FILE:nä."
  542. #: src/usage_text.h:231
  543. #, fuzzy
  544. msgid ""
  545. " -j, --max-concurrent-downloads=N Set maximum number of parallel downloads "
  546. "for\n"
  547. " every static (HTTP/FTP) URL, torrent and "
  548. "metalink.\n"
  549. " See also --split option."
  550. msgstr ""
  551. " -j, --max-concurrent-downloads=N Aseta yhtäaikaisten latausten maksimi.\n"
  552. " Tätä pitäisi käyttää -i valinnan kanssa.\n"
  553. " Oletus: 5"
  554. #: src/usage_text.h:235
  555. #, fuzzy
  556. msgid ""
  557. " --load-cookies=FILE Load Cookies from FILE using the Firefox3 "
  558. "format\n"
  559. " and Mozilla/Firefox(1.x/2.x)/Netscape format."
  560. msgstr ""
  561. " --load-cookies=FILE Lataa cookiet tiedostosta. Tiedoston formaatti on\n"
  562. " sama kuin Netscapella ja Mozillalla."
  563. #: src/usage_text.h:238
  564. msgid ""
  565. " --save-cookies=FILE Save Cookies to FILE in Mozilla/Firefox(1.x/2."
  566. "x)/\n"
  567. " Netscape format. If FILE already exists, it "
  568. "is\n"
  569. " overwritten. Session Cookies are also saved "
  570. "and\n"
  571. " their expiry values are treated as 0."
  572. msgstr ""
  573. #: src/usage_text.h:243
  574. #, fuzzy
  575. msgid ""
  576. " -S, --show-files[=true|false] Print file listing of .torrent, .meta4 and\n"
  577. " .metalink file and exit. More detailed\n"
  578. " information will be listed in case of torrent\n"
  579. " file."
  580. msgstr ""
  581. " -S, --show-files Tulosta .torrent- tai .metalink-tiedoston tiedostolista ja "
  582. "lopeta.\n"
  583. " Torrent-tiedostot sisältävät enemmän tietoa."
  584. #: src/usage_text.h:248
  585. #, fuzzy
  586. msgid ""
  587. " --select-file=INDEX... Set file to download by specifying its index.\n"
  588. " You can find the file index using the\n"
  589. " --show-files option. Multiple indexes can be\n"
  590. " specified by using ',', for example: \"3,6\".\n"
  591. " You can also use '-' to specify a range: "
  592. "\"1-5\".\n"
  593. " ',' and '-' can be used together.\n"
  594. " When used with the -M option, index may vary\n"
  595. " depending on the query(see --metalink-* "
  596. "options)."
  597. msgstr ""
  598. " --select-file=INDEKSI... Valitse ladattavat tiedostot niiden indeksin "
  599. "perusteella.\n"
  600. " Voit nähdä indeksin käyttämällä --show-files "
  601. "valintaa.\n"
  602. " Monia indeksejä voi käyttää erottamalla ne "
  603. "pilkulla, esim '3,6'\n"
  604. " Voit myös käyttää '-' alueen merkitsemiseen, "
  605. "esim '1-5'\n"
  606. " Molempia voi käyttää myös yhtäaikaa.\n"
  607. " Käytettäessä -M valinnan kanssa, indeksit "
  608. "voivat vaihdella\n"
  609. " riippuen asetuksista (ks. --metalink-*)"
  610. #: src/usage_text.h:257
  611. msgid " -T, --torrent-file=TORRENT_FILE The path to the .torrent file."
  612. msgstr " -T, --torrent-file=TORRENT käytä ladattua .torrent-tiedostoa"
  613. #: src/usage_text.h:259
  614. msgid ""
  615. " --follow-torrent=true|false|mem If true or mem is specified, when a file\n"
  616. " whose suffix is .torrent or content type is\n"
  617. " application/x-bittorrent is downloaded, aria2\n"
  618. " parses it as a torrent file and downloads "
  619. "files\n"
  620. " mentioned in it.\n"
  621. " If mem is specified, a torrent file is not\n"
  622. " written to the disk, but is just kept in "
  623. "memory.\n"
  624. " If false is specified, the action mentioned "
  625. "above\n"
  626. " is not taken."
  627. msgstr ""
  628. " --follow-torrent=true|false|mem Jos true tai mem, kun lataat tiedoston\n"
  629. " jonka pääte on .torrent tai tyyppi application/"
  630. "x-bittorrent,\n"
  631. " aria2 olettaa sen BitTorrent-tiedostoksi ja "
  632. "lataa kaiken\n"
  633. " siinä mainitun.\n"
  634. " Jos mem, torrent-tiedostoa ei kirjoiteta "
  635. "levylle, vaan\n"
  636. " pidetään muistissa."
  637. #: src/usage_text.h:269
  638. msgid ""
  639. " --listen-port=PORT... Set TCP port number for BitTorrent downloads.\n"
  640. " Multiple ports can be specified by using ',',\n"
  641. " for example: \"6881,6885\". You can also use "
  642. "'-'\n"
  643. " to specify a range: \"6881-6999\". ',' and '-' "
  644. "can\n"
  645. " be used together."
  646. msgstr ""
  647. " --listen-port=PORTTI ... Aseta TCP-portin numero BitTorrent-latauksiin.\n"
  648. " Monia portteja voi valita käyttämällä pilkkua, "
  649. "esim '6881,6885'\n"
  650. " Voit käyttää myös '-' alueen merkitsemiseen: "
  651. "'6881-6999'\n"
  652. " Molempia voi käyttää yhtäaikaa."
  653. #: src/usage_text.h:275
  654. #, fuzzy
  655. msgid ""
  656. " --max-overall-upload-limit=SPEED Set max overall upload speed in bytes/"
  657. "sec.\n"
  658. " 0 means unrestricted.\n"
  659. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  660. " To limit the upload speed per torrent, use\n"
  661. " --max-upload-limit option."
  662. msgstr ""
  663. " --max-upload-limit=NOPEUS Aseta maksimi-uploadnopeus (tavua/sek)\n"
  664. " 0 on ei rajaa.\n"
  665. " Voit lisätä perään joko K tai M (1K = 1024, 1M "
  666. "= 1024K)\n"
  667. " Oletus: 0"
  668. #: src/usage_text.h:281
  669. #, fuzzy
  670. msgid ""
  671. " -u, --max-upload-limit=SPEED Set max upload speed per each torrent in\n"
  672. " bytes/sec. 0 means unrestricted.\n"
  673. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  674. " To limit the overall upload speed, use\n"
  675. " --max-overall-upload-limit option."
  676. msgstr ""
  677. " --max-upload-limit=NOPEUS Aseta maksimi-uploadnopeus (tavua/sek)\n"
  678. " 0 on ei rajaa.\n"
  679. " Voit lisätä perään joko K tai M (1K = 1024, 1M "
  680. "= 1024K)\n"
  681. " Oletus: 0"
  682. #: src/usage_text.h:287
  683. msgid ""
  684. " --seed-time=MINUTES Specify seeding time in minutes. Also see the\n"
  685. " --seed-ratio option."
  686. msgstr ""
  687. " --seed-time=MIN Aseta jakamisaika (seeding) minuuteissa. Ks. myös\n"
  688. " --seed-ratio valinta."
  689. #: src/usage_text.h:290
  690. #, fuzzy
  691. msgid ""
  692. " --seed-ratio=RATIO Specify share ratio. Seed completed torrents\n"
  693. " until share ratio reaches RATIO.\n"
  694. " You are strongly encouraged to specify equals "
  695. "or\n"
  696. " more than 1.0 here. Specify 0.0 if you intend "
  697. "to\n"
  698. " do seeding regardless of share ratio.\n"
  699. " If --seed-time option is specified along with\n"
  700. " this option, seeding ends when at least one "
  701. "of\n"
  702. " the conditions is satisfied."
  703. msgstr ""
  704. " --seed-ratio=SUHDE Aseta jakamissuhde. Jaat valmistuneita torrentteja\n"
  705. " kunnes jaon suhde saavuttaa SUHTEEN. 1.0 on\n"
  706. " suositeltava. Käytä 0.0 jakaaksesi "
  707. "välittämättä suhteesta.\n"
  708. " Jos sekä tämä että --seed-time ovat käytössä, "
  709. "jakaminen\n"
  710. " päättyy kun toinen ehdoista täyttyy."
  711. #: src/usage_text.h:299
  712. #, fuzzy
  713. msgid ""
  714. " --peer-id-prefix=PEER_ID_PREFIX Specify the prefix of peer ID. The peer ID "
  715. "in\n"
  716. " BitTorrent is 20 byte length. If more than 20\n"
  717. " bytes are specified, only first 20 bytes are\n"
  718. " used. If less than 20 bytes are specified, "
  719. "random\n"
  720. " byte data are added to make its length 20 "
  721. "bytes."
  722. msgstr ""
  723. " --peer-id-prefix=TUNNUS Aseta peer ID-tunnus. Sen pituus on\n"
  724. " BitTorrentissa 20 tavua. Jos annat pidemmän,\n"
  725. " vain ensimmäiset 20 tavua käytetään, jos\n"
  726. " taas lyhyemmän, satunnaisia aakkosia "
  727. "lisätään.\n"
  728. " Oletus: -aria2-"
  729. #: src/usage_text.h:305
  730. msgid " --enable-peer-exchange[=true|false] Enable Peer Exchange extension."
  731. msgstr ""
  732. #: src/usage_text.h:307
  733. #, fuzzy
  734. msgid " --enable-dht[=true|false] Enable IPv4 DHT functionality."
  735. msgstr ""
  736. " --enable-http-keep-alive[=true|false] Käytä HTTP/1.1 säilyvää yhteyttä.\n"
  737. " Oletus: false"
  738. #: src/usage_text.h:309
  739. #, fuzzy
  740. msgid ""
  741. " --dht-listen-port=PORT... Set UDP listening port for both IPv4 and IPv6\n"
  742. " DHT. Multiple ports can be specified by using\n"
  743. " ',', for example: \"6881,6885\". You can also\n"
  744. " use '-' to specify a range: \"6881-6999\". "
  745. "','\n"
  746. " and '-' can be used together."
  747. msgstr ""
  748. " --listen-port=PORTTI ... Aseta TCP-portin numero BitTorrent-latauksiin.\n"
  749. " Monia portteja voi valita käyttämällä pilkkua, "
  750. "esim '6881,6885'\n"
  751. " Voit käyttää myös '-' alueen merkitsemiseen: "
  752. "'6881-6999'\n"
  753. " Molempia voi käyttää yhtäaikaa."
  754. #: src/usage_text.h:315
  755. #, fuzzy
  756. msgid ""
  757. " --dht-entry-point=HOST:PORT Set host and port as an entry point to IPv4 "
  758. "DHT\n"
  759. " network."
  760. msgstr ""
  761. " -m, --max-tries=N Yritysten määrä. 0 on rajoittamaton.\n"
  762. " OIetus:5"
  763. #: src/usage_text.h:318
  764. #, fuzzy
  765. msgid ""
  766. " --dht-file-path=PATH Change the IPv4 DHT routing table file to PATH."
  767. msgstr " --conf-path=POLKU Muuta asetustiedoston polkua."
  768. #: src/usage_text.h:320
  769. msgid ""
  770. " --bt-min-crypto-level=plain|arc4 Set minimum level of encryption method.\n"
  771. " If several encryption methods are provided by "
  772. "a\n"
  773. " peer, aria2 chooses the lowest one which "
  774. "satisfies\n"
  775. " the given level."
  776. msgstr ""
  777. #: src/usage_text.h:325
  778. #, fuzzy
  779. msgid ""
  780. " --bt-require-crypto[=true|false] If true is given, aria2 doesn't accept "
  781. "and\n"
  782. " establish connection with legacy BitTorrent\n"
  783. " handshake. Thus aria2 always uses Obfuscation\n"
  784. " handshake."
  785. msgstr ""
  786. " --allow-piece-lenght-change=true|false Jos false, aria2 keskeyttää "
  787. "latauksen kun\n"
  788. " palan koko on eri kuin hallintatiedostossa. Jos "
  789. "true, voit jatkaa\n"
  790. " mutta hieman latausedistystä voidaan menettää."
  791. #: src/usage_text.h:330
  792. #, fuzzy
  793. msgid ""
  794. " --bt-request-peer-speed-limit=SPEED If the whole download speed of every\n"
  795. " torrent is lower than SPEED, aria2 "
  796. "temporarily\n"
  797. " increases the number of peers to try for more\n"
  798. " download speed. Configuring this option with "
  799. "your\n"
  800. " preferred download speed can increase your\n"
  801. " download speed in some cases.\n"
  802. " You can append K or M(1K = 1024, 1M = 1024K)."
  803. msgstr ""
  804. " --no-file-allocation-limit=KOKO Tilan varausta ei tehdä tiedostoille,\n"
  805. " joiden koko on pienempi kuin KOKO.\n"
  806. " Voit lisätä perään joko K tai M (1K = 1024, 1M "
  807. "= 1024K)"
  808. #: src/usage_text.h:338
  809. #, fuzzy
  810. msgid ""
  811. " --bt-max-open-files=NUM Specify maximum number of files to open in "
  812. "each\n"
  813. " BitTorrent download."
  814. msgstr ""
  815. " -m, --max-tries=N Yritysten määrä. 0 on rajoittamaton.\n"
  816. " OIetus:5"
  817. #: src/usage_text.h:341
  818. msgid ""
  819. " --bt-seed-unverified[=true|false] Seed previously downloaded files without\n"
  820. " verifying piece hashes."
  821. msgstr ""
  822. #: src/usage_text.h:344
  823. #, fuzzy
  824. msgid ""
  825. " --bt-max-peers=NUM Specify the maximum number of peers per "
  826. "torrent.\n"
  827. " 0 means unlimited.\n"
  828. " See also --bt-request-peer-speed-limit option."
  829. msgstr ""
  830. " --retry-wait=SEK Montako sekuntia odotetaan virheen jälkeen.\n"
  831. " Arvon oltava väliltä 0 ja 60.\n"
  832. " Oletus: 5"
  833. #: src/usage_text.h:348
  834. #, fuzzy
  835. msgid ""
  836. " -M, --metalink-file=METALINK_FILE The file path to the .meta4 and ."
  837. "metalink\n"
  838. " file. Reads input from stdin when '-' is\n"
  839. " specified."
  840. msgstr " -M, --metalink-file=METALINK Käytä ladattua .metalink-tiedostoa."
  841. #: src/usage_text.h:352
  842. #, fuzzy
  843. msgid ""
  844. " -C, --metalink-servers=NUM_SERVERS The number of servers to connect to\n"
  845. " simultaneously. Some Metalinks regulate the\n"
  846. " number of servers to connect. aria2 strictly\n"
  847. " respects them. This means that if Metalink "
  848. "defines\n"
  849. " the maxconnections attribute lower than\n"
  850. " NUM_SERVERS, then aria2 uses the value of\n"
  851. " maxconnections attribute instead of "
  852. "NUM_SERVERS.\n"
  853. " See also -s and -j options."
  854. msgstr ""
  855. " --follow-metalink=true|false|mem Jos true tai mem, kun lataat tiedoston "
  856. "jonka\n"
  857. " pääte on .metalink tai tyyppi application/metalink"
  858. "+xml, aria2\n"
  859. " käsittelee sen metalink-tiedostona ja lataa siinä "
  860. "mainitut tiedostot.\n"
  861. " Jos mem, metalink-tiedostoa ei ladata levylle, "
  862. "vaan pidetään muistissa."
  863. #: src/usage_text.h:361
  864. msgid " --metalink-version=VERSION The version of the file to download."
  865. msgstr " --metalink-version=VERSIO Aseta minkä version tiedostosta haluat."
  866. #: src/usage_text.h:363
  867. msgid " --metalink-language=LANGUAGE The language of the file to download."
  868. msgstr ""
  869. " --metalink-language=KIELI Aseta minkä kielisen version tiedostosta haluat."
  870. #: src/usage_text.h:365
  871. msgid ""
  872. " --metalink-os=OS The operating system of the file to download."
  873. msgstr " --metalink-os=OS Mille käyttöjärjestelmälle lataat tiedostoa."
  874. #: src/usage_text.h:367
  875. #, fuzzy
  876. msgid ""
  877. " --metalink-location=LOCATION[,...] The location of the preferred server.\n"
  878. " A comma-delimited list of locations is\n"
  879. " acceptable."
  880. msgstr ""
  881. " --metalink-location=SIJAINTI[,...] Suosittavan palvelimen sijainti.\n"
  882. " Pilkuilla erotettu lista on hyväksyttävä."
  883. #: src/usage_text.h:371
  884. #, fuzzy
  885. msgid ""
  886. " --metalink-preferred-protocol=PROTO Specify preferred protocol. Specify "
  887. "'none'\n"
  888. " if you don't have any preferred protocol."
  889. msgstr ""
  890. " --metalink-preferred-protocol=PROTO Valitse suositeltava protokolla. "
  891. "Mahdollisia\n"
  892. " valintoja ovat 'http', 'https', 'ftp', ja "
  893. "'none'. Käytä 'none' poistaaksesi\n"
  894. " tämä ominaisuus käytöstä."
  895. #: src/usage_text.h:374
  896. #, fuzzy
  897. msgid ""
  898. " --follow-metalink=true|false|mem If true or mem is specified, when a file\n"
  899. " whose suffix is .meta4 or .metalink, or "
  900. "content\n"
  901. " type of application/metalink4+xml or\n"
  902. " application/metalink+xml is downloaded, aria2\n"
  903. " parses it as a metalink file and downloads "
  904. "files\n"
  905. " mentioned in it.\n"
  906. " If mem is specified, a metalink file is not\n"
  907. " written to the disk, but is just kept in "
  908. "memory.\n"
  909. " If false is specified, the action mentioned "
  910. "above\n"
  911. " is not taken."
  912. msgstr ""
  913. " --follow-metalink=true|false|mem Jos true tai mem, kun lataat tiedoston "
  914. "jonka\n"
  915. " pääte on .metalink tai tyyppi application/metalink"
  916. "+xml, aria2\n"
  917. " käsittelee sen metalink-tiedostona ja lataa siinä "
  918. "mainitut tiedostot.\n"
  919. " Jos mem, metalink-tiedostoa ei ladata levylle, "
  920. "vaan pidetään muistissa."
  921. #: src/usage_text.h:385
  922. #, fuzzy
  923. msgid ""
  924. " --metalink-enable-unique-protocol[=true|false] If true is given and "
  925. "several\n"
  926. " protocols are available for a mirror in a "
  927. "metalink\n"
  928. " file, aria2 uses one of them.\n"
  929. " Use --metalink-preferred-protocol option to\n"
  930. " specify the preference of protocol."
  931. msgstr ""
  932. " --metalink-enable-unique-protocol=true|false Jos true, ja metalinkissä on "
  933. "useita\n"
  934. " protokollia valittavana, aria2 käyttää vain "
  935. "yhtä.\n"
  936. " Käytä --metalink-preferred-protocol -"
  937. "vaihtoehtoa\n"
  938. " valitaksesi mitä protokollaa käytetään."
  939. #: src/usage_text.h:391
  940. msgid " -v, --version Print the version number and exit."
  941. msgstr " -v, --version Tulosta versionumero ja lopeta."
  942. #: src/usage_text.h:393
  943. #, fuzzy
  944. msgid ""
  945. " -h, --help[=TAG|KEYWORD] Print usage and exit.\n"
  946. " The help messages are classified with tags. A "
  947. "tag\n"
  948. " starts with \"#\". For example, type \"--"
  949. "help=#http\"\n"
  950. " to get the usage for the options tagged with\n"
  951. " \"#http\". If non-tag word is given, print the "
  952. "usage\n"
  953. " for the options whose name includes that word."
  954. msgstr ""
  955. " --seed-ratio=SUHDE Aseta jakamissuhde. Jaat valmistuneita torrentteja\n"
  956. " kunnes jaon suhde saavuttaa SUHTEEN. 1.0 on\n"
  957. " suositeltava. Käytä 0.0 jakaaksesi "
  958. "välittämättä suhteesta.\n"
  959. " Jos sekä tämä että --seed-time ovat käytössä, "
  960. "jakaminen\n"
  961. " päättyy kun toinen ehdoista täyttyy."
  962. #: src/usage_text.h:400
  963. #, fuzzy
  964. msgid " --no-conf[=true|false] Disable loading aria2.conf file."
  965. msgstr " --no-conf Estä aria2.conf -asetustiedoston käyttö."
  966. #: src/usage_text.h:402
  967. msgid ""
  968. " --conf-path=PATH Change the configuration file path to PATH."
  969. msgstr " --conf-path=POLKU Muuta asetustiedoston polkua."
  970. #: src/usage_text.h:404
  971. msgid ""
  972. " --stop=SEC Stop application after SEC seconds has "
  973. "passed.\n"
  974. " If 0 is given, this feature is disabled."
  975. msgstr ""
  976. #: src/usage_text.h:407
  977. msgid ""
  978. " --header=HEADER Append HEADER to HTTP request header. You can "
  979. "use\n"
  980. " this option repeatedly to specify more than "
  981. "one\n"
  982. " header:\n"
  983. " aria2c --header=\"X-A: b78\" --header=\"X-B: "
  984. "9J1\"\n"
  985. " http://host/file"
  986. msgstr ""
  987. #: src/usage_text.h:413
  988. msgid " -q, --quiet[=true|false] Make aria2 quiet(no console output)."
  989. msgstr ""
  990. #: src/usage_text.h:415
  991. msgid " --async-dns[=true|false] Enable asynchronous DNS."
  992. msgstr ""
  993. #: src/usage_text.h:417
  994. msgid " --ftp-reuse-connection[=true|false] Reuse connection in FTP."
  995. msgstr ""
  996. #: src/usage_text.h:419
  997. msgid ""
  998. " --summary-interval=SEC Set interval to output download progress "
  999. "summary.\n"
  1000. " Setting 0 suppresses the output."
  1001. msgstr ""
  1002. #: src/usage_text.h:422
  1003. msgid " --log-level=LEVEL Set log level to output."
  1004. msgstr ""
  1005. #: src/usage_text.h:424
  1006. #, fuzzy
  1007. msgid ""
  1008. " -R, --remote-time[=true|false] Retrieve timestamp of the remote file from "
  1009. "the\n"
  1010. " remote HTTP/FTP server and if it is "
  1011. "available,\n"
  1012. " apply it to the local file."
  1013. msgstr ""
  1014. " --direct-file-mapping=true|false Lue ja kirjoita suoraan jokaiseen "
  1015. "tiedostoon\n"
  1016. " joka mainitaan .torrent-tiedostossa\n"
  1017. " Oletus: true"
  1018. #: src/usage_text.h:428
  1019. msgid ""
  1020. " --connect-timeout=SEC Set the connect timeout in seconds to "
  1021. "establish\n"
  1022. " connection to HTTP/FTP/proxy server. After "
  1023. "the\n"
  1024. " connection is established, this option makes "
  1025. "no\n"
  1026. " effect and --timeout option is used instead."
  1027. msgstr ""
  1028. #: src/usage_text.h:433
  1029. #, fuzzy
  1030. msgid ""
  1031. " --max-file-not-found=NUM If aria2 receives `file not found' status from "
  1032. "the\n"
  1033. " remote HTTP/FTP servers NUM times without "
  1034. "getting\n"
  1035. " a single byte, then force the download to "
  1036. "fail.\n"
  1037. " Specify 0 to disable this option.\n"
  1038. " This options is effective only when using\n"
  1039. " HTTP/FTP servers."
  1040. msgstr ""
  1041. " --file-allocation=METODI Aseta tiedostojen varausmetodi. METODI on joko\n"
  1042. " 'none' tai 'prealloc'. 'none' ei varaa tilaa "
  1043. "etukäteen.\n"
  1044. " 'prealloc' varaa tilan etukäteen, ennen "
  1045. "latauksen alkua.\n"
  1046. " Tämä voi viedä jonkin verran aikaa, riippuen "
  1047. "tiedoston koosta.\n"
  1048. " Oletus: prealloc"
  1049. #: src/usage_text.h:440
  1050. #, fuzzy
  1051. msgid ""
  1052. " --uri-selector=SELECTOR Specify URI selection algorithm.\n"
  1053. " If 'inorder' is given, URI is tried in the "
  1054. "order\n"
  1055. " appeared in the URI list.\n"
  1056. " If 'feedback' is given, aria2 uses download "
  1057. "speed\n"
  1058. " observed in the previous downloads and choose\n"
  1059. " fastest server in the URI list. This also\n"
  1060. " effectively skips dead mirrors. The observed\n"
  1061. " download speed is a part of performance "
  1062. "profile\n"
  1063. " of servers mentioned in --server-stat-of and\n"
  1064. " --server-stat-if options.\n"
  1065. " If 'adaptive' is given, selects one of the "
  1066. "best\n"
  1067. " mirrors for the first and reserved "
  1068. "connections.\n"
  1069. " For supplementary ones, it returns mirrors "
  1070. "which\n"
  1071. " has not been tested yet, and if each of them "
  1072. "has\n"
  1073. " already been tested, returns mirrors which has "
  1074. "to\n"
  1075. " be tested again. Otherwise, it doesn't select\n"
  1076. " anymore mirrors. Like 'feedback', it uses a\n"
  1077. " performance profile of servers."
  1078. msgstr ""
  1079. " --follow-torrent=true|false|mem Jos true tai mem, kun lataat tiedoston\n"
  1080. " jonka pääte on .torrent tai tyyppi application/"
  1081. "x-bittorrent,\n"
  1082. " aria2 olettaa sen BitTorrent-tiedostoksi ja "
  1083. "lataa kaiken\n"
  1084. " siinä mainitun.\n"
  1085. " Jos mem, torrent-tiedostoa ei kirjoiteta "
  1086. "levylle, vaan\n"
  1087. " pidetään muistissa."
  1088. #: src/usage_text.h:459
  1089. #, fuzzy
  1090. msgid ""
  1091. " --server-stat-of=FILE Specify the filename to which performance "
  1092. "profile\n"
  1093. " of the servers is saved. You can load saved "
  1094. "data\n"
  1095. " using --server-stat-if option."
  1096. msgstr ""
  1097. " --retry-wait=SEK Montako sekuntia odotetaan virheen jälkeen.\n"
  1098. " Arvon oltava väliltä 0 ja 60.\n"
  1099. " Oletus: 5"
  1100. #: src/usage_text.h:463
  1101. msgid ""
  1102. " --server-stat-if=FILE Specify the filename to load performance "
  1103. "profile\n"
  1104. " of the servers. The loaded data will be used "
  1105. "in\n"
  1106. " some URI selector such as 'feedback'.\n"
  1107. " See also --uri-selector option"
  1108. msgstr ""
  1109. #: src/usage_text.h:468
  1110. #, fuzzy
  1111. msgid ""
  1112. " --server-stat-timeout=SEC Specifies timeout in seconds to invalidate\n"
  1113. " performance profile of the servers since the "
  1114. "last\n"
  1115. " contact to them."
  1116. msgstr ""
  1117. " --retry-wait=SEK Montako sekuntia odotetaan virheen jälkeen.\n"
  1118. " Arvon oltava väliltä 0 ja 60.\n"
  1119. " Oletus: 5"
  1120. #: src/usage_text.h:472
  1121. msgid ""
  1122. " --auto-save-interval=SEC Save a control file(*.aria2) every SEC "
  1123. "seconds.\n"
  1124. " If 0 is given, a control file is not saved "
  1125. "during\n"
  1126. " download. aria2 saves a control file when it "
  1127. "stops\n"
  1128. " regardless of the value."
  1129. msgstr ""
  1130. #: src/usage_text.h:477
  1131. msgid ""
  1132. " --certificate=FILE Use the client certificate in FILE.\n"
  1133. " The certificate must be in PEM format.\n"
  1134. " You may use --private-key option to specify "
  1135. "the\n"
  1136. " private key."
  1137. msgstr ""
  1138. #: src/usage_text.h:482
  1139. #, fuzzy
  1140. msgid ""
  1141. " --private-key=FILE Use the private key in FILE.\n"
  1142. " The private key must be decrypted and in PEM\n"
  1143. " format. See also --certificate option."
  1144. msgstr ""
  1145. " --retry-wait=SEK Montako sekuntia odotetaan virheen jälkeen.\n"
  1146. " Arvon oltava väliltä 0 ja 60.\n"
  1147. " Oletus: 5"
  1148. #: src/usage_text.h:486
  1149. #, fuzzy
  1150. msgid ""
  1151. " --ca-certificate=FILE Use the certificate authorities in FILE to "
  1152. "verify\n"
  1153. " the peers. The certificate file must be in "
  1154. "PEM\n"
  1155. " format and can contain multiple CA "
  1156. "certificates.\n"
  1157. " Use --check-certificate option to enable\n"
  1158. " verification."
  1159. msgstr ""
  1160. " --file-allocation=METODI Aseta tiedostojen varausmetodi. METODI on joko\n"
  1161. " 'none' tai 'prealloc'. 'none' ei varaa tilaa "
  1162. "etukäteen.\n"
  1163. " 'prealloc' varaa tilan etukäteen, ennen "
  1164. "latauksen alkua.\n"
  1165. " Tämä voi viedä jonkin verran aikaa, riippuen "
  1166. "tiedoston koosta.\n"
  1167. " Oletus: prealloc"
  1168. #: src/usage_text.h:492
  1169. msgid ""
  1170. " --check-certificate[=true|false] Verify the peer using certificates "
  1171. "specified\n"
  1172. " in --ca-certificate option."
  1173. msgstr ""
  1174. #: src/usage_text.h:495
  1175. #, fuzzy
  1176. msgid ""
  1177. " --no-proxy=DOMAINS Specify comma separated hostnames, domains or\n"
  1178. " network address with or without CIDR block "
  1179. "where\n"
  1180. " proxy should not be used."
  1181. msgstr ""
  1182. " --seed-time=MIN Aseta jakamisaika (seeding) minuuteissa. Ks. myös\n"
  1183. " --seed-ratio valinta."
  1184. #: src/usage_text.h:499
  1185. msgid ""
  1186. " --use-head[=true|false] Use HEAD method for the first request to the "
  1187. "HTTP\n"
  1188. " server."
  1189. msgstr ""
  1190. #: src/usage_text.h:502
  1191. msgid " --event-poll=POLL Specify the method for polling events."
  1192. msgstr ""
  1193. #: src/usage_text.h:504
  1194. msgid ""
  1195. " --bt-external-ip=IPADDRESS Specify the external IP address to report to "
  1196. "a\n"
  1197. " BitTorrent tracker. Although this function is\n"
  1198. " named 'external', it can accept any kind of "
  1199. "IP\n"
  1200. " addresses."
  1201. msgstr ""
  1202. #: src/usage_text.h:509
  1203. #, fuzzy
  1204. msgid ""
  1205. " --http-auth-challenge[=true|false] Send HTTP authorization header only when "
  1206. "it\n"
  1207. " is requested by the server. If false is set, "
  1208. "then\n"
  1209. " authorization header is always sent to the "
  1210. "server.\n"
  1211. " There is an exception: if username and "
  1212. "password\n"
  1213. " are embedded in URI, authorization header is\n"
  1214. " always sent to the server regardless of this\n"
  1215. " option."
  1216. msgstr ""
  1217. " --seed-ratio=SUHDE Aseta jakamissuhde. Jaat valmistuneita torrentteja\n"
  1218. " kunnes jaon suhde saavuttaa SUHTEEN. 1.0 on\n"
  1219. " suositeltava. Käytä 0.0 jakaaksesi "
  1220. "välittämättä suhteesta.\n"
  1221. " Jos sekä tämä että --seed-time ovat käytössä, "
  1222. "jakaminen\n"
  1223. " päättyy kun toinen ehdoista täyttyy."
  1224. #: src/usage_text.h:517
  1225. #, fuzzy
  1226. msgid ""
  1227. " -O, --index-out=INDEX=PATH Set file path for file with index=INDEX. You "
  1228. "can\n"
  1229. " find the file index using the --show-files "
  1230. "option.\n"
  1231. " PATH is a relative path to the path specified "
  1232. "in\n"
  1233. " --dir option. You can use this option "
  1234. "multiple\n"
  1235. " times."
  1236. msgstr ""
  1237. " --file-allocation=METODI Aseta tiedostojen varausmetodi. METODI on joko\n"
  1238. " 'none' tai 'prealloc'. 'none' ei varaa tilaa "
  1239. "etukäteen.\n"
  1240. " 'prealloc' varaa tilan etukäteen, ennen "
  1241. "latauksen alkua.\n"
  1242. " Tämä voi viedä jonkin verran aikaa, riippuen "
  1243. "tiedoston koosta.\n"
  1244. " Oletus: prealloc"
  1245. #: src/usage_text.h:523
  1246. #, fuzzy
  1247. msgid ""
  1248. " --dry-run[=true|false] If true is given, aria2 just checks whether "
  1249. "the\n"
  1250. " remote file is available and doesn't download\n"
  1251. " data. This option has effect on HTTP/FTP "
  1252. "download.\n"
  1253. " BitTorrent downloads are canceled if true is\n"
  1254. " specified."
  1255. msgstr ""
  1256. " --auto-file-renaming[=true|false] Nimeä tiedosto uudelleen jos sama "
  1257. "tiedosto on\n"
  1258. " jo olemassa. Tämä asetus toimii vain http(s)/"
  1259. "ftp-\n"
  1260. " latauksissa. Uudessa tiedostonimessä on piste "
  1261. "ja numero\n"
  1262. " (1..9999) lisättynä.\n"
  1263. " Oletus: true"
  1264. #: src/usage_text.h:529
  1265. #, fuzzy
  1266. msgid ""
  1267. " --bt-tracker-interval=SEC Set the interval in seconds between tracker\n"
  1268. " requests. This completely overrides interval "
  1269. "value\n"
  1270. " and aria2 just uses this value and ignores "
  1271. "the\n"
  1272. " min interval and interval value in the "
  1273. "response of\n"
  1274. " tracker. If 0 is set, aria2 determines "
  1275. "interval\n"
  1276. " based on the response of tracker and the "
  1277. "download\n"
  1278. " progress."
  1279. msgstr ""
  1280. " --seed-ratio=SUHDE Aseta jakamissuhde. Jaat valmistuneita torrentteja\n"
  1281. " kunnes jaon suhde saavuttaa SUHTEEN. 1.0 on\n"
  1282. " suositeltava. Käytä 0.0 jakaaksesi "
  1283. "välittämättä suhteesta.\n"
  1284. " Jos sekä tämä että --seed-time ovat käytössä, "
  1285. "jakaminen\n"
  1286. " päättyy kun toinen ehdoista täyttyy."
  1287. #: src/usage_text.h:537
  1288. #, fuzzy
  1289. msgid ""
  1290. " --on-download-complete=COMMAND Set the command to be executed after "
  1291. "download\n"
  1292. " completed.\n"
  1293. " See --on-download-start option for the\n"
  1294. " requirement of COMMAND.\n"
  1295. " See also --on-download-stop option."
  1296. msgstr ""
  1297. " --max-upload-limit=NOPEUS Aseta maksimi-uploadnopeus (tavua/sek)\n"
  1298. " 0 on ei rajaa.\n"
  1299. " Voit lisätä perään joko K tai M (1K = 1024, 1M "
  1300. "= 1024K)\n"
  1301. " Oletus: 0"
  1302. #: src/usage_text.h:543
  1303. #, fuzzy
  1304. msgid ""
  1305. " --on-download-start=COMMAND Set the command to be executed after download\n"
  1306. " got started. aria2 passes 3 arguments to "
  1307. "COMMAND:\n"
  1308. " GID, the nubmer of files and file path. See "
  1309. "Event\n"
  1310. " Hook in man page for more details."
  1311. msgstr ""
  1312. " --max-upload-limit=NOPEUS Aseta maksimi-uploadnopeus (tavua/sek)\n"
  1313. " 0 on ei rajaa.\n"
  1314. " Voit lisätä perään joko K tai M (1K = 1024, 1M "
  1315. "= 1024K)\n"
  1316. " Oletus: 0"
  1317. #: src/usage_text.h:548
  1318. #, fuzzy
  1319. msgid ""
  1320. " --on-download-pause=COMMAND Set the command to be executed after download\n"
  1321. " was paused.\n"
  1322. " See --on-download-start option for the\n"
  1323. " requirement of COMMAND."
  1324. msgstr ""
  1325. " --max-upload-limit=NOPEUS Aseta maksimi-uploadnopeus (tavua/sek)\n"
  1326. " 0 on ei rajaa.\n"
  1327. " Voit lisätä perään joko K tai M (1K = 1024, 1M "
  1328. "= 1024K)\n"
  1329. " Oletus: 0"
  1330. #: src/usage_text.h:553
  1331. #, fuzzy
  1332. msgid ""
  1333. " --on-download-error=COMMAND Set the command to be executed after download\n"
  1334. " aborted due to error.\n"
  1335. " See --on-download-start option for the\n"
  1336. " requirement of COMMAND.\n"
  1337. " See also --on-download-stop option."
  1338. msgstr ""
  1339. " --max-upload-limit=NOPEUS Aseta maksimi-uploadnopeus (tavua/sek)\n"
  1340. " 0 on ei rajaa.\n"
  1341. " Voit lisätä perään joko K tai M (1K = 1024, 1M "
  1342. "= 1024K)\n"
  1343. " Oletus: 0"
  1344. #: src/usage_text.h:559
  1345. #, fuzzy
  1346. msgid ""
  1347. " --on-download-stop=COMMAND Set the command to be executed after download\n"
  1348. " stopped. You can override the command to be\n"
  1349. " executed for particular download result using\n"
  1350. " --on-download-complete and --on-download-"
  1351. "error. If\n"
  1352. " they are specified, command specified in this\n"
  1353. " option is not executed.\n"
  1354. " See --on-download-start option for the\n"
  1355. " requirement of COMMAND."
  1356. msgstr ""
  1357. " --follow-torrent=true|false|mem Jos true tai mem, kun lataat tiedoston\n"
  1358. " jonka pääte on .torrent tai tyyppi application/"
  1359. "x-bittorrent,\n"
  1360. " aria2 olettaa sen BitTorrent-tiedostoksi ja "
  1361. "lataa kaiken\n"
  1362. " siinä mainitun.\n"
  1363. " Jos mem, torrent-tiedostoa ei kirjoiteta "
  1364. "levylle, vaan\n"
  1365. " pidetään muistissa."
  1366. #: src/usage_text.h:568
  1367. #, fuzzy
  1368. msgid ""
  1369. " --bt-stop-timeout=SEC Stop BitTorrent download if download speed is "
  1370. "0 in\n"
  1371. " consecutive SEC seconds. If 0 is given, this\n"
  1372. " feature is disabled."
  1373. msgstr ""
  1374. " --retry-wait=SEK Montako sekuntia odotetaan virheen jälkeen.\n"
  1375. " Arvon oltava väliltä 0 ja 60.\n"
  1376. " Oletus: 5"
  1377. #: src/usage_text.h:572
  1378. msgid ""
  1379. " --bt-prioritize-piece=head[=SIZE],tail[=SIZE] Try to download first and "
  1380. "last\n"
  1381. " pieces of each file first. This is useful for\n"
  1382. " previewing files. The argument can contain 2\n"
  1383. " keywords:head and tail. To include both "
  1384. "keywords,\n"
  1385. " they must be separated by comma. These "
  1386. "keywords\n"
  1387. " can take one parameter, SIZE. For example, if\n"
  1388. " head=SIZE is specified, pieces in the range "
  1389. "of\n"
  1390. " first SIZE bytes of each file get higher "
  1391. "priority.\n"
  1392. " tail=SIZE means the range of last SIZE bytes "
  1393. "of\n"
  1394. " each file. SIZE can include K or M(1K = 1024, "
  1395. "1M =\n"
  1396. " 1024K). If SIZE is omitted, SIZE=1M is used."
  1397. msgstr ""
  1398. #: src/usage_text.h:584
  1399. msgid ""
  1400. " --interface=INTERFACE Bind sockets to given interface. You can "
  1401. "specify\n"
  1402. " interface name, IP address and hostname."
  1403. msgstr ""
  1404. #: src/usage_text.h:587
  1405. msgid " --disable-ipv6[=true|false] Disable IPv6."
  1406. msgstr ""
  1407. #: src/usage_text.h:589
  1408. #, fuzzy
  1409. msgid ""
  1410. " --bt-save-metadata[=true|false] Save metadata as .torrent file. This option "
  1411. "has\n"
  1412. " effect only when BitTorrent Magnet URI is "
  1413. "used.\n"
  1414. " The filename is hex encoded info hash with "
  1415. "suffix\n"
  1416. " .torrent. The directory to be saved is the "
  1417. "same\n"
  1418. " directory where download file is saved. If "
  1419. "the\n"
  1420. " same file already exists, metadata is not "
  1421. "saved.\n"
  1422. " See also --bt-metadata-only option."
  1423. msgstr ""
  1424. " --seed-ratio=SUHDE Aseta jakamissuhde. Jaat valmistuneita torrentteja\n"
  1425. " kunnes jaon suhde saavuttaa SUHTEEN. 1.0 on\n"
  1426. " suositeltava. Käytä 0.0 jakaaksesi "
  1427. "välittämättä suhteesta.\n"
  1428. " Jos sekä tämä että --seed-time ovat käytössä, "
  1429. "jakaminen\n"
  1430. " päättyy kun toinen ehdoista täyttyy."
  1431. #: src/usage_text.h:597
  1432. msgid ""
  1433. " --http-no-cache[=true|false] Send Cache-Control: no-cache and Pragma: no-"
  1434. "cache\n"
  1435. " header to avoid cached content. If false is\n"
  1436. " given, these headers are not sent and you can "
  1437. "add\n"
  1438. " Cache-Control header with a directive you "
  1439. "like\n"
  1440. " using --header option."
  1441. msgstr ""
  1442. #: src/usage_text.h:603
  1443. #, fuzzy
  1444. msgid ""
  1445. " --bt-metadata-only[=true|false] Download metadata only. The file(s) "
  1446. "described\n"
  1447. " in metadata will not be downloaded. This "
  1448. "option\n"
  1449. " has effect only when BitTorrent Magnet URI is\n"
  1450. " used. See also --bt-save-metadata option."
  1451. msgstr ""
  1452. " --allow-piece-lenght-change=true|false Jos false, aria2 keskeyttää "
  1453. "latauksen kun\n"
  1454. " palan koko on eri kuin hallintatiedostossa. Jos "
  1455. "true, voit jatkaa\n"
  1456. " mutta hieman latausedistystä voidaan menettää."
  1457. #: src/usage_text.h:608
  1458. msgid ""
  1459. " --human-readable[=true|false] Print sizes and speed in human readable "
  1460. "format\n"
  1461. " (e.g., 1.2Ki, 3.4Mi) in the console readout."
  1462. msgstr ""
  1463. #: src/usage_text.h:611
  1464. #, fuzzy
  1465. msgid " --bt-enable-lpd[=true|false] Enable Local Peer Discovery."
  1466. msgstr ""
  1467. " --enable-http-keep-alive[=true|false] Käytä HTTP/1.1 säilyvää yhteyttä.\n"
  1468. " Oletus: false"
  1469. #: src/usage_text.h:613
  1470. #, fuzzy
  1471. msgid ""
  1472. " --bt-lpd-interface=INTERFACE Use given interface for Local Peer Discovery. "
  1473. "If\n"
  1474. " this option is not specified, the default\n"
  1475. " interface is chosen. You can specify "
  1476. "interface\n"
  1477. " name and IP address."
  1478. msgstr ""
  1479. " --allow-piece-lenght-change=true|false Jos false, aria2 keskeyttää "
  1480. "latauksen kun\n"
  1481. " palan koko on eri kuin hallintatiedostossa. Jos "
  1482. "true, voit jatkaa\n"
  1483. " mutta hieman latausedistystä voidaan menettää."
  1484. #: src/usage_text.h:618
  1485. msgid ""
  1486. " --reuse-uri[=true|false] Reuse already used URIs if no unused URIs are\n"
  1487. " left."
  1488. msgstr ""
  1489. #: src/usage_text.h:621
  1490. #, fuzzy
  1491. msgid " --all-proxy-user=USER Set user for --all-proxy option."
  1492. msgstr ""
  1493. " --http-proxy-user=USER Aseta http-välityspalvelin-käyttäjänimi. Tämä "
  1494. "vaikuttaa kaikkiin URL:hin."
  1495. #: src/usage_text.h:623
  1496. #, fuzzy
  1497. msgid " --all-proxy-passwd=PASSWD Set password for --all-proxy option."
  1498. msgstr ""
  1499. " --http-proxy-passwd=SALASANA Aseta http-välityspalvelin-salasana. Tämä "
  1500. "vaikuttaa kaikkiin URL:hin."
  1501. #: src/usage_text.h:625
  1502. #, fuzzy
  1503. msgid " --http-proxy-user=USER Set user for --http-proxy option."
  1504. msgstr ""
  1505. " --http-proxy-user=USER Aseta http-välityspalvelin-käyttäjänimi. Tämä "
  1506. "vaikuttaa kaikkiin URL:hin."
  1507. #: src/usage_text.h:627
  1508. #, fuzzy
  1509. msgid " --http-proxy-passwd=PASSWD Set password for --http-proxy option."
  1510. msgstr ""
  1511. " --http-proxy-passwd=SALASANA Aseta http-välityspalvelin-salasana. Tämä "
  1512. "vaikuttaa kaikkiin URL:hin."
  1513. #: src/usage_text.h:629
  1514. #, fuzzy
  1515. msgid " --https-proxy-user=USER Set user for --https-proxy option."
  1516. msgstr ""
  1517. " --http-proxy-user=USER Aseta http-välityspalvelin-käyttäjänimi. Tämä "
  1518. "vaikuttaa kaikkiin URL:hin."
  1519. #: src/usage_text.h:631
  1520. #, fuzzy
  1521. msgid " --https-proxy-passwd=PASSWD Set password for --https-proxy option."
  1522. msgstr ""
  1523. " --http-proxy-passwd=SALASANA Aseta http-välityspalvelin-salasana. Tämä "
  1524. "vaikuttaa kaikkiin URL:hin."
  1525. #: src/usage_text.h:633
  1526. #, fuzzy
  1527. msgid " --ftp-proxy-user=USER Set user for --ftp-proxy option."
  1528. msgstr ""
  1529. " --http-proxy-user=USER Aseta http-välityspalvelin-käyttäjänimi. Tämä "
  1530. "vaikuttaa kaikkiin URL:hin."
  1531. #: src/usage_text.h:635
  1532. #, fuzzy
  1533. msgid " --ftp-proxy-passwd=PASSWD Set password for --ftp-proxy option."
  1534. msgstr ""
  1535. " --http-proxy-passwd=SALASANA Aseta http-välityspalvelin-salasana. Tämä "
  1536. "vaikuttaa kaikkiin URL:hin."
  1537. #: src/usage_text.h:637
  1538. #, fuzzy
  1539. msgid ""
  1540. " --remove-control-file[=true|false] Remove control file before download. "
  1541. "Using\n"
  1542. " with --allow-overwrite=true, download always\n"
  1543. " starts from scratch. This will be useful for\n"
  1544. " users behind proxy server which disables "
  1545. "resume."
  1546. msgstr ""
  1547. " --allow-piece-lenght-change=true|false Jos false, aria2 keskeyttää "
  1548. "latauksen kun\n"
  1549. " palan koko on eri kuin hallintatiedostossa. Jos "
  1550. "true, voit jatkaa\n"
  1551. " mutta hieman latausedistystä voidaan menettää."
  1552. #: src/usage_text.h:642
  1553. #, fuzzy
  1554. msgid ""
  1555. " --always-resume[=true|false] Always resume download. If true is given, "
  1556. "aria2\n"
  1557. " always tries to resume download and if resume "
  1558. "is\n"
  1559. " not possible, aborts download. If false is "
  1560. "given,\n"
  1561. " when all given URIs do not support resume or\n"
  1562. " aria2 encounters N URIs which does not "
  1563. "support\n"
  1564. " resume (N is the value specified using\n"
  1565. " --max-resume-failure-tries option), aria2\n"
  1566. " downloads file from scratch.\n"
  1567. " See --max-resume-failure-tries option."
  1568. msgstr ""
  1569. " --follow-torrent=true|false|mem Jos true tai mem, kun lataat tiedoston\n"
  1570. " jonka pääte on .torrent tai tyyppi application/"
  1571. "x-bittorrent,\n"
  1572. " aria2 olettaa sen BitTorrent-tiedostoksi ja "
  1573. "lataa kaiken\n"
  1574. " siinä mainitun.\n"
  1575. " Jos mem, torrent-tiedostoa ei kirjoiteta "
  1576. "levylle, vaan\n"
  1577. " pidetään muistissa."
  1578. #: src/usage_text.h:652
  1579. msgid ""
  1580. " --max-resume-failure-tries=N When used with --always-resume=false, aria2\n"
  1581. " downloads file from scratch when aria2 detects "
  1582. "N\n"
  1583. " number of URIs that does not support resume. "
  1584. "If N\n"
  1585. " is 0, aria2 downloads file from scratch when "
  1586. "all\n"
  1587. " given URIs do not support resume.\n"
  1588. " See --always-resume option."
  1589. msgstr ""
  1590. #: src/usage_text.h:659
  1591. #, fuzzy
  1592. msgid " --bt-tracker-timeout=SEC Set timeout in seconds."
  1593. msgstr " -t, --timeout=SEK Aikakatkaisu sekunneissa. Oletus: 60"
  1594. #: src/usage_text.h:661
  1595. #, fuzzy
  1596. msgid ""
  1597. " --bt-tracker-connect-timeout=SEC Set the connect timeout in seconds to\n"
  1598. " establish connection to tracker. After the\n"
  1599. " connection is established, this option makes "
  1600. "no\n"
  1601. " effect and --bt-tracker-timeout option is "
  1602. "used\n"
  1603. " instead."
  1604. msgstr ""
  1605. " --file-allocation=METODI Aseta tiedostojen varausmetodi. METODI on joko\n"
  1606. " 'none' tai 'prealloc'. 'none' ei varaa tilaa "
  1607. "etukäteen.\n"
  1608. " 'prealloc' varaa tilan etukäteen, ennen "
  1609. "latauksen alkua.\n"
  1610. " Tämä voi viedä jonkin verran aikaa, riippuen "
  1611. "tiedoston koosta.\n"
  1612. " Oletus: prealloc"
  1613. #: src/usage_text.h:667
  1614. #, fuzzy
  1615. msgid " --dht-message-timeout=SEC Set timeout in seconds."
  1616. msgstr " -t, --timeout=SEK Aikakatkaisu sekunneissa. Oletus: 60"
  1617. #: src/usage_text.h:669
  1618. msgid ""
  1619. " --http-accept-gzip[=true|false] Send 'Accept: deflate, gzip' request "
  1620. "header\n"
  1621. " and inflate response if remote server "
  1622. "responds\n"
  1623. " with 'Content-Encoding: gzip' or\n"
  1624. " 'Content-Encoding: deflate'."
  1625. msgstr ""
  1626. #: src/usage_text.h:674
  1627. #, fuzzy
  1628. msgid ""
  1629. " --save-session=FILE Save error/unfinished downloads to FILE on "
  1630. "exit.\n"
  1631. " You can pass this output file to aria2c with -"
  1632. "i\n"
  1633. " option on restart. Please note that downloads\n"
  1634. " added by aria2.addTorrent and aria2."
  1635. "addMetalink\n"
  1636. " RPC method and whose metadata could not be "
  1637. "saved\n"
  1638. " as a file will not be saved. Downloads "
  1639. "removed\n"
  1640. " using aria2.remove and aria2.forceRemove will "
  1641. "not\n"
  1642. " be saved."
  1643. msgstr ""
  1644. " --file-allocation=METODI Aseta tiedostojen varausmetodi. METODI on joko\n"
  1645. " 'none' tai 'prealloc'. 'none' ei varaa tilaa "
  1646. "etukäteen.\n"
  1647. " 'prealloc' varaa tilan etukäteen, ennen "
  1648. "latauksen alkua.\n"
  1649. " Tämä voi viedä jonkin verran aikaa, riippuen "
  1650. "tiedoston koosta.\n"
  1651. " Oletus: prealloc"
  1652. #: src/usage_text.h:683
  1653. #, fuzzy
  1654. msgid ""
  1655. " -x, --max-connection-per-server=NUM The maximum number of connections to "
  1656. "one\n"
  1657. " server for each download."
  1658. msgstr ""
  1659. " -m, --max-tries=N Yritysten määrä. 0 on rajoittamaton.\n"
  1660. " OIetus:5"
  1661. #: src/usage_text.h:686
  1662. #, fuzzy
  1663. msgid ""
  1664. " -k, --min-split-size=SIZE aria2 does not split less than 2*SIZE byte "
  1665. "range.\n"
  1666. " For example, let's consider downloading 20MiB\n"
  1667. " file. If SIZE is 10M, aria2 can split file "
  1668. "into 2\n"
  1669. " range [0-10MiB) and [10MiB-20MiB) and download "
  1670. "it\n"
  1671. " using 2 sources(if --split >= 2, of course).\n"
  1672. " If SIZE is 15M, since 2*15M > 20MiB, aria2 "
  1673. "does\n"
  1674. " not split file and download it using 1 "
  1675. "source.\n"
  1676. " You can append K or M(1K = 1024, 1M = 1024K)."
  1677. msgstr ""
  1678. " --no-file-allocation-limit=KOKO Tilan varausta ei tehdä tiedostoille,\n"
  1679. " joiden koko on pienempi kuin KOKO.\n"
  1680. " Voit lisätä perään joko K tai M (1K = 1024, 1M "
  1681. "= 1024K)"
  1682. #: src/usage_text.h:695
  1683. #, fuzzy
  1684. msgid ""
  1685. " --conditional-get[=true|false] Download file only when the local file is "
  1686. "older\n"
  1687. " than remote file. Currently, this function "
  1688. "has\n"
  1689. " many limitations. See man page for details."
  1690. msgstr ""
  1691. " --direct-file-mapping=true|false Lue ja kirjoita suoraan jokaiseen "
  1692. "tiedostoon\n"
  1693. " joka mainitaan .torrent-tiedostossa\n"
  1694. " Oletus: true"
  1695. #: src/usage_text.h:699
  1696. #, fuzzy
  1697. msgid ""
  1698. " --on-bt-download-complete=COMMAND For BitTorrent, a command specified in\n"
  1699. " --on-download-complete is called after "
  1700. "download\n"
  1701. " completed and seeding is over. On the other "
  1702. "hand,\n"
  1703. " this option sets the command to be executed "
  1704. "after\n"
  1705. " download completed but before seeding.\n"
  1706. " See --on-download-start option for the\n"
  1707. " requirement of COMMAND."
  1708. msgstr ""
  1709. " --follow-torrent=true|false|mem Jos true tai mem, kun lataat tiedoston\n"
  1710. " jonka pääte on .torrent tai tyyppi application/"
  1711. "x-bittorrent,\n"
  1712. " aria2 olettaa sen BitTorrent-tiedostoksi ja "
  1713. "lataa kaiken\n"
  1714. " siinä mainitun.\n"
  1715. " Jos mem, torrent-tiedostoa ei kirjoiteta "
  1716. "levylle, vaan\n"
  1717. " pidetään muistissa."
  1718. #: src/usage_text.h:707
  1719. #, fuzzy
  1720. msgid ""
  1721. " --enable-async-dns6[=true|false] Enable IPv6 name resolution in "
  1722. "asynchronous\n"
  1723. " DNS resolver. This option will be ignored "
  1724. "when\n"
  1725. " --async-dns=false."
  1726. msgstr ""
  1727. " --enable-direct-io[=true|false] Käyttää suoraa I/O:ta, joka laskee "
  1728. "tehokäyttöä\n"
  1729. " varatessa tilaa.\n"
  1730. " Älä käytä, jos kohtaat virheitä"
  1731. #: src/usage_text.h:711
  1732. #, fuzzy
  1733. msgid ""
  1734. " --enable-dht6[=true|false] Enable IPv6 DHT functionality.\n"
  1735. " Use --dht-listen-port option to specify port\n"
  1736. " number to listen on. See also --dht-listen-"
  1737. "addr6\n"
  1738. " option."
  1739. msgstr ""
  1740. " --allow-piece-lenght-change=true|false Jos false, aria2 keskeyttää "
  1741. "latauksen kun\n"
  1742. " palan koko on eri kuin hallintatiedostossa. Jos "
  1743. "true, voit jatkaa\n"
  1744. " mutta hieman latausedistystä voidaan menettää."
  1745. #: src/usage_text.h:716
  1746. msgid ""
  1747. " --dht-listen-addr6=ADDR Specify address to bind socket for IPv6 DHT. \n"
  1748. " It should be a global unicast IPv6 address of "
  1749. "the\n"
  1750. " host."
  1751. msgstr ""
  1752. #: src/usage_text.h:720
  1753. #, fuzzy
  1754. msgid ""
  1755. " --dht-entry-point6=HOST:PORT Set host and port as an entry point to IPv6 "
  1756. "DHT\n"
  1757. " network."
  1758. msgstr ""
  1759. " -m, --max-tries=N Yritysten määrä. 0 on rajoittamaton.\n"
  1760. " OIetus:5"
  1761. #: src/usage_text.h:723
  1762. #, fuzzy
  1763. msgid ""
  1764. " --dht-file-path6=PATH Change the IPv6 DHT routing table file to PATH."
  1765. msgstr " --conf-path=POLKU Muuta asetustiedoston polkua."
  1766. #: src/usage_text.h:725
  1767. #, fuzzy
  1768. msgid ""
  1769. " --bt-tracker=URI[,...] Comma separated list of additional BitTorrent\n"
  1770. " tracker's announce URI. These URIs are not\n"
  1771. " affected by --bt-exclude-tracker option "
  1772. "because\n"
  1773. " they are added after URIs in --bt-exclude-"
  1774. "tracker\n"
  1775. " option are removed."
  1776. msgstr ""
  1777. " --file-allocation=METODI Aseta tiedostojen varausmetodi. METODI on joko\n"
  1778. " 'none' tai 'prealloc'. 'none' ei varaa tilaa "
  1779. "etukäteen.\n"
  1780. " 'prealloc' varaa tilan etukäteen, ennen "
  1781. "latauksen alkua.\n"
  1782. " Tämä voi viedä jonkin verran aikaa, riippuen "
  1783. "tiedoston koosta.\n"
  1784. " Oletus: prealloc"
  1785. #: src/usage_text.h:731
  1786. msgid ""
  1787. " --bt-exclude-tracker=URI[,...] Comma separated list of BitTorrent "
  1788. "tracker's\n"
  1789. " announce URI to remove. You can use special "
  1790. "value\n"
  1791. " '*' which matches all URIs, thus removes all\n"
  1792. " announce URIs. When specifying '*' in shell\n"
  1793. " command-line, don't forget to escape or quote "
  1794. "it.\n"
  1795. " See also --bt-tracker option."
  1796. msgstr ""
  1797. #: src/usage_text.h:738
  1798. msgid ""
  1799. " --max-download-result=NUM Set maximum number of download result kept in\n"
  1800. " memory. The download results are completed/"
  1801. "error/\n"
  1802. " removed downloads. The download results are "
  1803. "stored\n"
  1804. " in FIFO queue and it can store at most NUM\n"
  1805. " download results. When queue is full and new\n"
  1806. " download result is created, oldest download "
  1807. "result\n"
  1808. " is removed from the front of the queue and new "
  1809. "one\n"
  1810. " is pushed to the back. Setting big number in "
  1811. "this\n"
  1812. " option may result high memory consumption "
  1813. "after\n"
  1814. " thousands of downloads. Specifying 0 means no\n"
  1815. " download result is kept."
  1816. msgstr ""
  1817. #: src/usage_text.h:750
  1818. msgid ""
  1819. " --async-dns-server=IPADDRESS[,...] Comma separated list of DNS server "
  1820. "address\n"
  1821. " used in asynchronous DNS resolver. Usually\n"
  1822. " asynchronous DNS resolver reads DNS server\n"
  1823. " addresses from /etc/resolv.conf. When this "
  1824. "option\n"
  1825. " is used, it uses DNS servers specified in "
  1826. "this\n"
  1827. " option instead of ones in /etc/resolv.conf. "
  1828. "You\n"
  1829. " can specify both IPv4 and IPv6 address. This\n"
  1830. " option is useful when the system does not "
  1831. "have\n"
  1832. " /etc/resolv.conf and user does not have the\n"
  1833. " permission to create it."
  1834. msgstr ""
  1835. #: src/usage_text.h:761
  1836. #, fuzzy
  1837. msgid ""
  1838. " --enable-rpc[=true|false] Enable JSON-RPC/XML-RPC server.\n"
  1839. " It is strongly recommended to set username "
  1840. "and\n"
  1841. " password using --rpc-user and --rpc-passwd\n"
  1842. " option. See also --rpc-listen-port option."
  1843. msgstr ""
  1844. " --allow-piece-lenght-change=true|false Jos false, aria2 keskeyttää "
  1845. "latauksen kun\n"
  1846. " palan koko on eri kuin hallintatiedostossa. Jos "
  1847. "true, voit jatkaa\n"
  1848. " mutta hieman latausedistystä voidaan menettää."
  1849. #: src/usage_text.h:766
  1850. msgid ""
  1851. " --rpc-max-request-size=SIZE Set max size of JSON-RPC/XML-RPC request. If "
  1852. "aria2\n"
  1853. " detects the request is more than SIZE bytes, "
  1854. "it\n"
  1855. " drops connection."
  1856. msgstr ""
  1857. #: src/usage_text.h:770
  1858. #, fuzzy
  1859. msgid " --rpc-user=USER Set JSON-RPC/XML-RPC user."
  1860. msgstr ""
  1861. " -http-user=USER Aseta http-käyttäjänimi. Tämä vaikuttaa kaikkiin URL:hin."
  1862. #: src/usage_text.h:772
  1863. #, fuzzy
  1864. msgid " --rpc-passwd=PASSWD Set JSON-RPC/XML-RPC password."
  1865. msgstr ""
  1866. " --http-passwd=SALASANA Aseta http-salasana. Tämä vaikuttaa kaikkiin URL:hin."
  1867. #: src/usage_text.h:774
  1868. #, fuzzy
  1869. msgid ""
  1870. " --rpc-listen-all[=true|false] Listen incoming JSON-RPC/XML-RPC requests on "
  1871. "all\n"
  1872. " network interfaces. If false is given, listen "
  1873. "only\n"
  1874. " on local loopback interface."
  1875. msgstr ""
  1876. " -Z, --force-sequential[=true|false] Hae osoitteet komentoriviltä "
  1877. "lineaarisesti,\n"
  1878. " ja lataa jokainen URI eri sessiossa, kuten\n"
  1879. " tavalliset komentorivilatausapuohjelmat.\n"
  1880. " Oletus: false"
  1881. #: src/usage_text.h:778
  1882. #, fuzzy
  1883. msgid ""
  1884. " --rpc-listen-port=PORT Specify a port number for JSON-RPC/XML-RPC "
  1885. "server\n"
  1886. " to listen to."
  1887. msgstr ""
  1888. " -m, --max-tries=N Yritysten määrä. 0 on rajoittamaton.\n"
  1889. " OIetus:5"
  1890. #: src/usage_text.h:781
  1891. msgid " --show-console-readout[=true|false] Show console readout."
  1892. msgstr ""
  1893. #: src/usage_text.h:783
  1894. #, fuzzy
  1895. msgid ""
  1896. " --metalink-base-uri=URI Specify base URI to resolve relative URI in\n"
  1897. " metalink:url and metalink:metaurl element in "
  1898. "a\n"
  1899. " metalink file stored in local disk. If URI "
  1900. "points\n"
  1901. " to a directory, URI must end with '/'."
  1902. msgstr ""
  1903. " -S, --show-files Tulosta .torrent- tai .metalink-tiedoston tiedostolista ja "
  1904. "lopeta.\n"
  1905. " Torrent-tiedostot sisältävät enemmän tietoa."
  1906. #: src/usage_text.h:788
  1907. #, fuzzy
  1908. msgid ""
  1909. " --stream-piece-selector=SELECTOR Specify piece selection algorithm\n"
  1910. " used in HTTP/FTP download. Piece means fixed\n"
  1911. " length segment which is downloaded in "
  1912. "parallel\n"
  1913. " in segmented download. If 'default' is given,\n"
  1914. " aria2 selects piece so that it reduces the\n"
  1915. " number of establishing connection. This is\n"
  1916. " reasonable default behaviour because\n"
  1917. " establishing connection is an expensive\n"
  1918. " operation.\n"
  1919. " If 'inorder' is given, aria2 selects piece "
  1920. "which\n"
  1921. " has minimum index. Index=0 means first of the\n"
  1922. " file. This will be useful to view movie while\n"
  1923. " downloading it. --enable-http-pipelining "
  1924. "option\n"
  1925. " may be useful to reduce reconnection "
  1926. "overhead.\n"
  1927. " Please note that aria2 honors\n"
  1928. " --min-split-size option, so it will be "
  1929. "necessary\n"
  1930. " to specify a reasonable value to\n"
  1931. " --min-split-size option.\n"
  1932. " If 'geom' is given, at the beginning aria2\n"
  1933. " selects piece which has minimum index like\n"
  1934. " 'inorder', but it exponentially increasingly\n"
  1935. " keeps space from previously selected piece. "
  1936. "This\n"
  1937. " will reduce the number of establishing "
  1938. "connection\n"
  1939. " and at the same time it will download the\n"
  1940. " beginning part of the file first. This will "
  1941. "be\n"
  1942. " useful to view movie while downloading it."
  1943. msgstr ""
  1944. " --follow-torrent=true|false|mem Jos true tai mem, kun lataat tiedoston\n"
  1945. " jonka pääte on .torrent tai tyyppi application/"
  1946. "x-bittorrent,\n"
  1947. " aria2 olettaa sen BitTorrent-tiedostoksi ja "
  1948. "lataa kaiken\n"
  1949. " siinä mainitun.\n"
  1950. " Jos mem, torrent-tiedostoa ei kirjoiteta "
  1951. "levylle, vaan\n"
  1952. " pidetään muistissa."
  1953. #: src/usage_text.h:815
  1954. #, fuzzy
  1955. msgid ""
  1956. " --truncate-console-readout[=true|false] Truncate console readout to fit in\n"
  1957. " a single line."
  1958. msgstr ""
  1959. " --direct-file-mapping=true|false Lue ja kirjoita suoraan jokaiseen "
  1960. "tiedostoon\n"
  1961. " joka mainitaan .torrent-tiedostossa\n"
  1962. " Oletus: true"
  1963. #: src/usage_text.h:818
  1964. msgid ""
  1965. " --pause[=true|false] Pause download after added. This option is\n"
  1966. " effective only when --enable-rpc=true is given."
  1967. msgstr ""
  1968. #: src/usage_text.h:821
  1969. msgid ""
  1970. " --rpc-allow-origin-all[=true|false] Add Access-Control-Allow-Origin header\n"
  1971. " field with value '*' to the RPC response."
  1972. msgstr ""
  1973. #: src/usage_text.h:824
  1974. msgid ""
  1975. " --download-result=OPT This option changes the way \"Download Results"
  1976. "\"\n"
  1977. " is formatted. If OPT is 'default', print GID,\n"
  1978. " status, average download speed and path/URI. "
  1979. "If\n"
  1980. " multiple files are involved, path/URI of "
  1981. "first\n"
  1982. " requested file is printed and remaining ones "
  1983. "are\n"
  1984. " omitted.\n"
  1985. " If OPT is 'full', print GID, status, average\n"
  1986. " download speed, percentage of progress and\n"
  1987. " path/URI. The percentage of progress and\n"
  1988. " path/URI are printed for each requested file "
  1989. "in\n"
  1990. " each row."
  1991. msgstr ""
  1992. #: src/usage_text.h:836
  1993. #, fuzzy
  1994. msgid ""
  1995. " --hash-check-only[=true|false] If true is given, after hash check using\n"
  1996. " --check-integrity option, abort download "
  1997. "whether\n"
  1998. " or not download is complete."
  1999. msgstr ""
  2000. " --realtime-chunk-checksum=true|false Tarkista palojen tarkistussummat\n"
  2001. " ladatessasi tiedostoa Metalink-moodissa. Tämä\n"
  2002. " vaikuttaa vain Metalink-latauksiin joissa on "
  2003. "palojen\n"
  2004. " tarkistussumma.\n"
  2005. " Oletus: true"
  2006. #: src/usage_text.h:840
  2007. msgid ""
  2008. " --checksum=TYPE=DIGEST Set checksum. TYPE is hash type. The "
  2009. "supported\n"
  2010. " hash type is listed in \"Hash Algorithms\" in\n"
  2011. " \"aria2c -v\". DIGEST is hex digest.\n"
  2012. " For example, setting sha-1 digest looks like\n"
  2013. " this:\n"
  2014. " sha-1=0192ba11326fe2298c8cb4de616f4d4140213838\n"
  2015. " This option applies only to HTTP(S)/FTP\n"
  2016. " downloads."
  2017. msgstr ""
  2018. #: src/usage_text.h:849
  2019. msgid ""
  2020. " --piece-length=LENGTH Set a piece length for HTTP/FTP downloads. "
  2021. "This\n"
  2022. " is the boundary when aria2 splits a file. All\n"
  2023. " splits occur at multiple of this length. This\n"
  2024. " option will be ignored in BitTorrent "
  2025. "downloads.\n"
  2026. " It will be also ignored if Metalink file\n"
  2027. " contains piece hashes."
  2028. msgstr ""
  2029. #: src/usage_text.h:856
  2030. msgid ""
  2031. " --stop-with-process=PID Stop application when process PID is not "
  2032. "running.\n"
  2033. " This is useful if aria2 process is forked from "
  2034. "a\n"
  2035. " parent process. The parent process can fork "
  2036. "aria2\n"
  2037. " with its own pid and when parent process "
  2038. "exits\n"
  2039. " for some reason, aria2 can detect it and "
  2040. "shutdown\n"
  2041. " itself."
  2042. msgstr ""
  2043. #: src/usage_text.h:863
  2044. #, fuzzy
  2045. msgid ""
  2046. " --deferred-input[=true|false] If true is given, aria2 does not read all "
  2047. "URIs\n"
  2048. " and options from file specified by -i option "
  2049. "at\n"
  2050. " startup, but it reads one by one when it "
  2051. "needs\n"
  2052. " later. This may reduce memory usage if input\n"
  2053. " file contains a lot of URIs to download.\n"
  2054. " If false is given, aria2 reads all URIs and\n"
  2055. " options at startup."
  2056. msgstr ""
  2057. " --seed-ratio=SUHDE Aseta jakamissuhde. Jaat valmistuneita torrentteja\n"
  2058. " kunnes jaon suhde saavuttaa SUHTEEN. 1.0 on\n"
  2059. " suositeltava. Käytä 0.0 jakaaksesi "
  2060. "välittämättä suhteesta.\n"
  2061. " Jos sekä tämä että --seed-time ovat käytössä, "
  2062. "jakaminen\n"
  2063. " päättyy kun toinen ehdoista täyttyy."
  2064. #: src/usage_text.h:871
  2065. #, fuzzy
  2066. msgid ""
  2067. " --bt-remove-unselected-file[=true|false] Removes the unselected files when\n"
  2068. " download is completed in BitTorrent. To\n"
  2069. " select files, use --select-file option. If\n"
  2070. " it is not used, all files are assumed to be\n"
  2071. " selected. Please use this option with care\n"
  2072. " because it will actually remove files from\n"
  2073. " your disk."
  2074. msgstr ""
  2075. " --seed-ratio=SUHDE Aseta jakamissuhde. Jaat valmistuneita torrentteja\n"
  2076. " kunnes jaon suhde saavuttaa SUHTEEN. 1.0 on\n"
  2077. " suositeltava. Käytä 0.0 jakaaksesi "
  2078. "välittämättä suhteesta.\n"
  2079. " Jos sekä tämä että --seed-time ovat käytössä, "
  2080. "jakaminen\n"
  2081. " päättyy kun toinen ehdoista täyttyy."
  2082. #: src/usage_text.h:879
  2083. #, fuzzy
  2084. msgid " --enable-mmap[=true|false] Map files into memory."
  2085. msgstr ""
  2086. " --enable-http-keep-alive[=true|false] Käytä HTTP/1.1 säilyvää yhteyttä.\n"
  2087. " Oletus: false"
  2088. #: src/version_usage.cc:57
  2089. msgid " version "
  2090. msgstr " versio "
  2091. #: src/version_usage.cc:61
  2092. #, fuzzy
  2093. msgid ""
  2094. "This program is free software; you can redistribute it and/or modify\n"
  2095. "it under the terms of the GNU General Public License as published by\n"
  2096. "the Free Software Foundation; either version 2 of the License, or\n"
  2097. "(at your option) any later version.\n"
  2098. "\n"
  2099. "This program is distributed in the hope that it will be useful,\n"
  2100. "but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
  2101. "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
  2102. "GNU General Public License for more details.\n"
  2103. msgstr ""
  2104. "Tämä ohjelma on vapaata ohjelmistoa; voit levittää ja/tai muokata\n"
  2105. "sitä GNU General Public Licensen termien mukaan, kuten Free\n"
  2106. "Software Foundation sen julkaisi; joko lisenssin version 2, tai\n"
  2107. "(valintasi mukaan) minkä vain myöhemmän version.\n"
  2108. "\n"
  2109. "Tätä ohjelmaa levitetään siinä toivossa että se on hyödyllinen,\n"
  2110. "mutta ILMAN TAKUUTA; ilman edes oletettua takuuta MARKKINOITAVUUDESTA\n"
  2111. "tai SOPIVUUDESTA TIETTYYN TARKOITUKSEEN. Ks. GNU General\n"
  2112. "Public License:stä lisätietoja.\n"
  2113. "\n"
  2114. "Sinun olisi pitänyt saada kopio GNU General Public Licensestä\n"
  2115. "tämän ohjelman mukana; jos ei, kirjoita Free Software Foundation, Inc:lle,\n"
  2116. "51 Franklin Streen, Fifth Floor, Boston, MA 02110-1301 USA\n"
  2117. #: src/version_usage.cc:71
  2118. msgid "** Configuration **"
  2119. msgstr ""
  2120. #: src/version_usage.cc:72
  2121. msgid "Enabled Features"
  2122. msgstr ""
  2123. #: src/version_usage.cc:75
  2124. msgid "Hash Algorithms"
  2125. msgstr ""
  2126. #: src/version_usage.cc:79
  2127. #, c-format
  2128. msgid "Report bugs to %s"
  2129. msgstr "Ilmoita bugit %s:lle."
  2130. #: src/version_usage.cc:80
  2131. msgid "Visit"
  2132. msgstr ""
  2133. #: src/version_usage.cc:87
  2134. #, fuzzy, c-format
  2135. msgid ""
  2136. "Usage: aria2c [OPTIONS] [URI | MAGNET | TORRENT_FILE | METALINK_FILE]..."
  2137. msgstr "Käyttö: %s [parametrit] URL ...\n"
  2138. #: src/version_usage.cc:92
  2139. #, c-format
  2140. msgid "See 'aria2c -h'."
  2141. msgstr ""
  2142. #: src/version_usage.cc:99
  2143. #, c-format
  2144. msgid "Printing all options."
  2145. msgstr "Tulostetaan kaikki valinnat."
  2146. #: src/version_usage.cc:101
  2147. #, c-format
  2148. msgid "Printing options tagged with '%s'."
  2149. msgstr "Tulostetaan valinnat merkittynä '%s':llä."
  2150. #: src/version_usage.cc:104
  2151. #, c-format
  2152. msgid "See 'aria2c -h#help' to know all available tags."
  2153. msgstr ""
  2154. #: src/version_usage.cc:107 src/version_usage.cc:121
  2155. #, c-format
  2156. msgid "Options:"
  2157. msgstr "Asetukset:"
  2158. #: src/version_usage.cc:118
  2159. #, fuzzy, c-format
  2160. msgid "Printing options whose name includes '%s'."
  2161. msgstr "Tulostetaan valinnat, joiden nimi alkaa '%s'"
  2162. #: src/version_usage.cc:129
  2163. #, fuzzy, c-format
  2164. msgid "No option matching with '%s'."
  2165. msgstr "Ei ohjeosiota tai valintaa nimellä '%s'"
  2166. #: src/version_usage.cc:137
  2167. #, fuzzy, c-format
  2168. msgid ""
  2169. " You can specify multiple HTTP(S)/FTP URIs. Unless you specify -Z option, "
  2170. "all\n"
  2171. " URIs must point to the same file or downloading will fail."
  2172. msgstr ""
  2173. " Voit antaa useita osoitteita. Jos et käytä -Z valintaa, kaikkien\n"
  2174. " osoitteiden täytyy johtaa samaan tiedostoon, tai lataaminen keskeytyy."
  2175. #: src/version_usage.cc:140
  2176. #, c-format
  2177. msgid ""
  2178. " You can also specify arbitrary number of BitTorrent Magnet URIs, torrent/\n"
  2179. " metalink files stored in a local drive. Please note that they are always\n"
  2180. " treated as a separate download."
  2181. msgstr ""
  2182. #: src/version_usage.cc:144
  2183. #, fuzzy, c-format
  2184. msgid ""
  2185. " You can specify both torrent file with -T option and URIs. By doing this,\n"
  2186. " download a file from both torrent swarm and HTTP/FTP server at the same "
  2187. "time,\n"
  2188. " while the data from HTTP/FTP are uploaded to the torrent swarm. For single "
  2189. "file\n"
  2190. " torrents, URI can be a complete URI pointing to the resource or if URI "
  2191. "ends\n"
  2192. " with '/', 'name' in torrent file is added. For multi-file torrents, 'name' "
  2193. "and\n"
  2194. " 'path' in torrent are added to form a URI for each file."
  2195. msgstr ""
  2196. " Voit yhdistää torrent-tiedoston -T:llä osoitteiden kanssa. Näin\n"
  2197. " lataat samaa tiedostoa sekä torrent-parvesta että http/ftp-palvelimelta\n"
  2198. " samaan aikaan, ja jaat http/ftp:ltä saatua dataa torrent-parveen.\n"
  2199. " HUOM: vain yhden tiedoston torrent-tiedostoa voi käyttää näin."
  2200. #: src/version_usage.cc:151
  2201. #, fuzzy, c-format
  2202. msgid ""
  2203. " Make sure that URI is quoted with single(') or double(\") quotation if it\n"
  2204. " contains \"&\" or any characters that have special meaning in shell."
  2205. msgstr ""
  2206. " Varmista että URL on eristetty joko yksittäis(') tai tupla(\")"
  2207. "lainausmerkeillä jos\n"
  2208. " siinä on \"&\" tai jokin muu merkki, jolla on erityismerkitys "
  2209. "komentotulkille."
  2210. #: src/version_usage.cc:154
  2211. #, c-format
  2212. msgid ""
  2213. "About the number of connections\n"
  2214. " Since 1.10.0 release, aria2 uses 1 connection per host by default and has "
  2215. "20MiB\n"
  2216. " segment size restriction. So whatever value you specify using -s option, "
  2217. "it\n"
  2218. " uses 1 connection per host. To make it behave like 1.9.x, use\n"
  2219. " --max-connection-per-server=4 --min-split-size=1M.\n"
  2220. "\n"
  2221. msgstr ""
  2222. #: src/version_usage.cc:161
  2223. #, c-format
  2224. msgid "Refer to man page for more information."
  2225. msgstr "Ks. man-sivulta lisätietoja."
  2226. #: src/option_processing.cc:86
  2227. #, c-format
  2228. msgid "Caught Error while parsing environment variable '%s'"
  2229. msgstr ""
  2230. #: src/option_processing.cc:168
  2231. #, c-format
  2232. msgid "Did you mean:"
  2233. msgstr ""
  2234. #: src/option_processing.cc:235 src/option_processing.cc:244
  2235. #, c-format
  2236. msgid "Parse error in %s"
  2237. msgstr ""
  2238. #: src/option_processing.cc:239 src/option_processing.cc:280
  2239. #, c-format
  2240. msgid "Usage:"
  2241. msgstr ""
  2242. #: src/option_processing.cc:249
  2243. #, c-format
  2244. msgid "Configuration file %s is not found."
  2245. msgstr ""
  2246. #: src/OptionHandlerException.cc:43
  2247. #, c-format
  2248. msgid "We encountered a problem while processing the option '--%s'."
  2249. msgstr ""
  2250. #: src/UnknownOptionException.cc:41
  2251. #, c-format
  2252. msgid "Unknown option '%s'"
  2253. msgstr ""
  2254. #: src/BtSetup.cc:215
  2255. msgid "Errors occurred while binding port.\n"
  2256. msgstr "Virheitä tapahtui sitoessa porttia.\n"
  2257. #: src/AbstractCommand.cc:443
  2258. #, c-format
  2259. msgid "CUID#%<PRId64> - Failed to resume download. Download from scratch."
  2260. msgstr ""
  2261. #: src/AdaptiveURISelector.cc:228
  2262. #, c-format
  2263. msgid ""
  2264. "Lowering lowest-speed-limit since known max speed is too near (new:%d was:%d "
  2265. "max:%d)"
  2266. msgstr ""
  2267. #: src/AdaptiveURISelector.cc:235
  2268. #, c-format
  2269. msgid ""
  2270. "Lowering lowest-speed-limit since we have no clue about available speed (now:"
  2271. "%d was:%d)"
  2272. msgstr ""
  2273. #: src/BtStopDownloadCommand.cc:64
  2274. #, c-format
  2275. msgid "GID#%<PRId64> Stop downloading torrent due to --bt-stop-timeout option."
  2276. msgstr ""
  2277. #: src/DHTConnectionImpl.cc:89
  2278. #, c-format
  2279. msgid "IPv%d DHT: listening to port %u"
  2280. msgstr ""
  2281. #: src/HttpListenCommand.cc:112
  2282. #, c-format
  2283. msgid "IPv%d RPC: listening to port %u"
  2284. msgstr ""
  2285. #: src/PeerListenCommand.cc:83
  2286. #, c-format
  2287. msgid "IPv%d BitTorrent: listening to port %u"
  2288. msgstr ""
  2289. #: src/RequestGroup.cc:377
  2290. msgid ""
  2291. "For BitTorrent Magnet URI, enabling DHT is strongly recommended. See --"
  2292. "enable-dht option."
  2293. msgstr ""
  2294. #: src/RequestGroup.cc:682
  2295. #, fuzzy, c-format
  2296. msgid "Removed control file for %s because it is requested by user."
  2297. msgstr "Poistettiin vanha ohjaustiedosto %s koska lataustiedostoa %s ei ole."
  2298. #: src/SingleFileAllocationIterator.cc:75
  2299. msgid ""
  2300. "Allocating disk space. Use --file-allocation=none to disable it. See --file-"
  2301. "allocation option in man page for more details."
  2302. msgstr ""
  2303. #: src/message.h:57
  2304. #, fuzzy, c-format
  2305. msgid "GID#%<PRId64> - Download has already completed: %s"
  2306. msgstr "#%d - Lataus on jo valmistunut: %s"
  2307. #: src/message.h:106
  2308. #, c-format
  2309. msgid "Unrecognized URI or unsupported protocol: %s"
  2310. msgstr "Tunnistamaton URI tai ei-tuettu protokolla: %s"
  2311. #: src/message.h:107
  2312. #, c-format
  2313. msgid "Tracker returned warning message: %s"
  2314. msgstr "Tracker palautti varoituksen: %s"
  2315. #: src/message.h:108
  2316. #, c-format
  2317. msgid "The segment file %s exists."
  2318. msgstr "Osatiedosto %s on jo olemassa."
  2319. #: src/message.h:109
  2320. #, c-format
  2321. msgid "The segment file %s does not exist."
  2322. msgstr "Osatiedostoa %s ei ole olemassa."
  2323. #: src/message.h:110
  2324. #, c-format
  2325. msgid "Saving the segment file %s"
  2326. msgstr "Tallennetaan osatiedostoa %s"
  2327. #: src/message.h:111
  2328. msgid "The segment file was saved successfully."
  2329. msgstr "Osatiedosto tallennettu onnistuneesti."
  2330. #: src/message.h:112
  2331. #, c-format
  2332. msgid "Loading the segment file %s."
  2333. msgstr "Ladataan osatiedostoa %s"
  2334. #: src/message.h:113
  2335. msgid "The segment file was loaded successfully."
  2336. msgstr "Osatiedosto ladattu onnistuneesti."
  2337. #: src/message.h:114
  2338. msgid "No URI to download. Download aborted."
  2339. msgstr "Ei URIa ladattavaksi. Lataus keskeytetty."
  2340. #: src/message.h:115
  2341. #, c-format
  2342. msgid ""
  2343. "File %s exists, but a control file(*.aria2) does not exist. Download was "
  2344. "canceled in order to prevent your file from being truncated to 0. If you are "
  2345. "sure to download the file all over again, then delete it or add --allow-"
  2346. "overwrite=true option and restart aria2."
  2347. msgstr ""
  2348. "Tiedosto %s on jo olemassa, mutta hallintatiedostoa (*.aria2) ei löydy. "
  2349. "Lataus peruutettiin, jotta tiedostoasi ei tyhjennettäisi. Jos olet varma, "
  2350. "että haluat ladata tiedoston uudestaan, joko poista se tai käytä --allow-"
  2351. "overwrite=true valintaa."
  2352. #: src/message.h:116
  2353. #, c-format
  2354. msgid "Allocating file %s, %s bytes"
  2355. msgstr "Varataan tilaa tiedostolla %s, %s tavua"
  2356. #: src/message.h:117
  2357. msgid "File not found"
  2358. msgstr "Tiedostoa ei löydy"
  2359. #: src/message.h:118
  2360. msgid "Not a directory"
  2361. msgstr "Ei ole kansio"
  2362. #: src/message.h:119
  2363. #, c-format
  2364. msgid "Insufficient checksums. checksumLength=%d, numChecksum=%d"
  2365. msgstr "Riittämättömät tarkistussummat. Pituus=%d, numero=%d"
  2366. #: src/message.h:120
  2367. #, c-format
  2368. msgid "Writing file %s"
  2369. msgstr "Kirjoitetaan tiedostoa %s"
  2370. #: src/message.h:121
  2371. msgid "No peer list received."
  2372. msgstr "Ei saatu käyttäjälistaa."
  2373. #: src/message.h:122
  2374. #, c-format
  2375. msgid "Adding peer %s:%d"
  2376. msgstr "Lisätään käyttäjä %s:%d"
  2377. #: src/message.h:123
  2378. #, c-format
  2379. msgid "Deleting used piece index=%d, fillRate(%%)=%d<=%d"
  2380. msgstr "Poistetaan käytetty palaindeksi %d, täyttönopeus(%%)=%d<=%d"
  2381. #: src/message.h:124
  2382. msgid "Download of selected files was complete."
  2383. msgstr "Valittujen tiedostojen lataus on valmis."
  2384. #: src/message.h:125
  2385. msgid "The download was complete."
  2386. msgstr "Lataus on valmis."
  2387. #: src/message.h:126
  2388. #, fuzzy, c-format
  2389. msgid "Removed %lu have entries."
  2390. msgstr "Poistettiin %d kohtaa."
  2391. #: src/message.h:127
  2392. #, c-format
  2393. msgid "Validating file %s"
  2394. msgstr "Tarkistetaan tiedostoa %s"
  2395. #: src/message.h:131
  2396. #, c-format
  2397. msgid "Metalink: Queueing %s for download."
  2398. msgstr "Metalink: Laitetaan %s jonoon latausta varten."
  2399. #: src/message.h:132
  2400. #, c-format
  2401. msgid "Download complete: %s"
  2402. msgstr "Lataus on valmis: %s"
  2403. #: src/message.h:133
  2404. msgid "Seeding is over."
  2405. msgstr "Jakaminen (seeding) lopetettu."
  2406. #: src/message.h:134
  2407. msgid "No chunk to verify."
  2408. msgstr "Ei palaa tarkistettavaksi."
  2409. #: src/message.h:135
  2410. #, c-format
  2411. msgid "Good chunk checksum. hash=%s"
  2412. msgstr "OK palan tarkistussumma. hash=%s"
  2413. #: src/message.h:136
  2414. #, c-format
  2415. msgid "Failed to load cookies from %s"
  2416. msgstr "Cookien lataaminen epäonnistui tiedostosta %s"
  2417. #: src/message.h:137
  2418. #, c-format
  2419. msgid ""
  2420. ".netrc file %s does not have correct permissions. It should be 600. netrc "
  2421. "support disabled."
  2422. msgstr ""
  2423. ".netrc-tiedostolla %s ei ole sopivia oikeuksia. Sen pitäisi olla 600. netrc-"
  2424. "tuki pois päältä."
  2425. #: src/message.h:138
  2426. msgid "Logging started."
  2427. msgstr "Loki aloitettu."
  2428. #: src/message.h:139
  2429. msgid "Specify at least one URL."
  2430. msgstr "Anna ainakin yksi osoite."
  2431. #: src/message.h:140
  2432. msgid "daemon failed."
  2433. msgstr "daemon epäonnistui."
  2434. #: src/message.h:141
  2435. #, c-format
  2436. msgid "Verification finished successfully. file=%s"
  2437. msgstr "Tarkistus lopetettu onnistuneesti. Tiedosto=%s"
  2438. #: src/message.h:142
  2439. #, c-format
  2440. msgid "Checksum error detected. file=%s"
  2441. msgstr "Tarkistussumman virhe löydetty. Tiedosto=%s"
  2442. #: src/message.h:143
  2443. #, c-format
  2444. msgid "Incomplete range specified. %s"
  2445. msgstr "Väärä alue annettu: %s"
  2446. #: src/message.h:144
  2447. #, c-format
  2448. msgid "Failed to convert string into value: %s"
  2449. msgstr "Merkkijonon muuttaminen arvoksi epäonnistui: %s"
  2450. #: src/message.h:145
  2451. msgid "Resource not found"
  2452. msgstr "Resurssia ei löydy"
  2453. #: src/message.h:146
  2454. #, c-format
  2455. msgid "File already exists. Renamed to %s."
  2456. msgstr "Tiedosto on jo olemassa. Nimettiin uudelleen %s:ksi"
  2457. #: src/message.h:147
  2458. msgid "Cannot parse metalink XML file. XML may be malformed."
  2459. msgstr "Metalink-xml tiedostoa ei voi käsitellä. Tiedosto voi olla vioittunut."
  2460. #: src/message.h:148
  2461. #, fuzzy, c-format
  2462. msgid "Too small payload size for %s, size=%lu."
  2463. msgstr "Liian pieni payload-koko %s:lle, koko=%d"
  2464. #: src/message.h:149
  2465. #, c-format
  2466. msgid ""
  2467. "Removed the defunct control file %s because the download file %s doesn't "
  2468. "exist."
  2469. msgstr "Poistettiin vanha ohjaustiedosto %s koska lataustiedostoa %s ei ole."
  2470. #: src/message.h:150
  2471. #, c-format
  2472. msgid "Your share ratio was %.1f, uploaded/downloaded=%sB/%sB"
  2473. msgstr "Jakosuhteesi oli %.1f, upload/download=%sB/%sB"
  2474. #: src/message.h:151
  2475. #, c-format
  2476. msgid "Missing %s in torrent metainfo."
  2477. msgstr "Torrentin metatiedoista puuttuu %s."
  2478. #: src/message.h:152
  2479. msgid "Tracker returned null data."
  2480. msgstr "Tracker palautti tyhjän."
  2481. #: src/message.h:153
  2482. msgid "Windows socket library initialization failed"
  2483. msgstr "Windowsin socket-kirjaston alustus epäonnistui."
  2484. #: src/message.h:154
  2485. #, c-format
  2486. msgid "%ld second(s) has passed. Stopping application."
  2487. msgstr ""
  2488. #: src/message.h:155
  2489. #, c-format
  2490. msgid ""
  2491. "Saved signature as %s. Please note that aria2 doesn't verify signatures."
  2492. msgstr ""
  2493. #: src/message.h:157
  2494. #, c-format
  2495. msgid "Saving signature as %s failed. Maybe file already exists."
  2496. msgstr ""
  2497. #: src/message.h:160
  2498. #, fuzzy, c-format
  2499. msgid "Failed to open ServerStat file %s for read."
  2500. msgstr "Tiedoston %s avaaminen epäonnistui, syy: %s"
  2501. #: src/message.h:161
  2502. #, fuzzy, c-format
  2503. msgid "ServerStat file %s loaded successfully."
  2504. msgstr "Osatiedosto ladattu onnistuneesti."
  2505. #: src/message.h:162
  2506. #, fuzzy, c-format
  2507. msgid "Failed to read ServerStat from %s."
  2508. msgstr "Lukeminen levyltä epäonnistui."
  2509. #: src/message.h:165
  2510. #, fuzzy, c-format
  2511. msgid "Failed to open ServerStat file %s for write."
  2512. msgstr "Tiedoston %s avaaminen epäonnistui, syy: %s"
  2513. #: src/message.h:166
  2514. #, fuzzy, c-format
  2515. msgid "ServerStat file %s saved successfully."
  2516. msgstr "Osatiedosto tallennettu onnistuneesti."
  2517. #: src/message.h:167
  2518. #, fuzzy, c-format
  2519. msgid "Failed to write ServerStat to %s."
  2520. msgstr "Dataa ei voitu vastaanottaa, syy: %s"
  2521. #: src/message.h:170
  2522. #, fuzzy, c-format
  2523. msgid "Failed to establish connection, cause: %s"
  2524. msgstr "Käyttäjäyhteyttä ei voitu hyväksyä, syy: %s"
  2525. #: src/message.h:171
  2526. #, c-format
  2527. msgid "Network problem has occurred. cause:%s"
  2528. msgstr ""
  2529. #: src/message.h:173
  2530. #, fuzzy, c-format
  2531. msgid "Failed to load trusted CA certificates from %s. Cause: %s"
  2532. msgstr "Tiedostosta %s ei voi lukea, syy: %s"
  2533. #: src/message.h:175
  2534. #, c-format
  2535. msgid ""
  2536. "Certificate verification failed. Cause: %s See --ca-certificate and --check-"
  2537. "certificate option."
  2538. msgstr ""
  2539. #: src/message.h:177
  2540. #, fuzzy
  2541. msgid "No certificate found."
  2542. msgstr "Ei löydetty otsaketta."
  2543. #: src/message.h:178
  2544. msgid "Hostname not match."
  2545. msgstr ""
  2546. #: src/message.h:179
  2547. msgid "No files to download."
  2548. msgstr ""
  2549. #: src/message.h:181
  2550. msgid ""
  2551. "You may encounter the certificate verification error with HTTPS server. See "
  2552. "--ca-certificate and --check-certificate option."
  2553. msgstr ""
  2554. #: src/message.h:183
  2555. #, fuzzy, c-format
  2556. msgid "Printing the contents of file '%s'..."
  2557. msgstr "Tulostetaan valinnat, joiden nimi alkaa '%s'"
  2558. #: src/message.h:184
  2559. msgid "This file is neither Torrent nor Metalink file. Skipping."
  2560. msgstr ""
  2561. #: src/message.h:189
  2562. #, c-format
  2563. msgid "Is '%s' a file?"
  2564. msgstr ""
  2565. #: src/message.h:190
  2566. #, fuzzy, c-format
  2567. msgid "Failed to find given interface %s, cause: %s"
  2568. msgstr "Tiedoston %s avaaminen epäonnistui, syy: %s"
  2569. #: src/message.h:192
  2570. #, c-format
  2571. msgid "Saved metadata as %s."
  2572. msgstr ""
  2573. #: src/message.h:193
  2574. #, c-format
  2575. msgid "Saving metadata as %s failed. Maybe file already exists."
  2576. msgstr ""
  2577. #: src/message.h:195
  2578. #, c-format
  2579. msgid "Detected directory traversal directive in %s"
  2580. msgstr ""
  2581. #: src/message.h:198
  2582. #, c-format
  2583. msgid "GID#%<PRId64> - Removing unselected file."
  2584. msgstr ""
  2585. #: src/message.h:199
  2586. #, c-format
  2587. msgid "File %s removed."
  2588. msgstr ""
  2589. #: src/message.h:200
  2590. #, c-format
  2591. msgid "File %s could not be removed."
  2592. msgstr ""
  2593. #: src/message.h:202
  2594. msgid "Timeout."
  2595. msgstr "Aikakatkaisu."
  2596. #: src/message.h:203
  2597. msgid "Invalid chunk size."
  2598. msgstr "Väärä palan koko."
  2599. #: src/message.h:204
  2600. #, c-format
  2601. msgid "Too large chunk. size=%d"
  2602. msgstr "Liian suuri pala. Koko %d"
  2603. #: src/message.h:205
  2604. msgid "Invalid header."
  2605. msgstr "Väärä otsake."
  2606. #: src/message.h:206
  2607. msgid "Invalid response."
  2608. msgstr "Epäkelpo vastaus."
  2609. #: src/message.h:207
  2610. msgid "No header found."
  2611. msgstr "Ei löydetty otsaketta."
  2612. #: src/message.h:208
  2613. msgid "No status header."
  2614. msgstr "Ei tila-otsikkoa."
  2615. #: src/message.h:209
  2616. msgid "Proxy connection failed."
  2617. msgstr "Välityspalvelinyhteys epäonnistui."
  2618. #: src/message.h:210
  2619. msgid "Connection failed."
  2620. msgstr "Yhteys epäonnistui."
  2621. #: src/message.h:211
  2622. #, c-format
  2623. msgid ""
  2624. "The requested filename and the previously registered one are not same. "
  2625. "Expected:%s Actual:%s"
  2626. msgstr ""
  2627. "Pyydetty tiedostonimi ja aiemmin rekisteröity eivät täsmää. Odotettu: %s "
  2628. "Oikea: %s"
  2629. #: src/message.h:212
  2630. #, c-format
  2631. msgid "The response status is not successful. status=%d"
  2632. msgstr "Vastauksen tila ei ole onnistunut. Tila=%d"
  2633. #: src/message.h:214
  2634. #, c-format
  2635. msgid "Transfer encoding %s is not supported."
  2636. msgstr "Siirron koodausta %s ei tueta."
  2637. #: src/message.h:215
  2638. #, c-format
  2639. msgid "SSL initialization failed: %s"
  2640. msgstr "SSL-aloitus epäonnistui: %s"
  2641. #: src/message.h:216
  2642. msgid "SSL I/O error"
  2643. msgstr "SSL I/O-virhe"
  2644. #: src/message.h:217
  2645. msgid "SSL protocol error"
  2646. msgstr "SSL protokollavirhe"
  2647. #: src/message.h:218
  2648. #, c-format
  2649. msgid "SSL unknown error %d"
  2650. msgstr "SSL: tuntematon virhe %d"
  2651. #: src/message.h:219
  2652. #, c-format
  2653. msgid "SSL initialization failed: OpenSSL connect error %d"
  2654. msgstr "SSL valmistelu epäonnistui: OpenSSL yhdistysvirhe %d"
  2655. #: src/message.h:221
  2656. msgid "Authorization failed."
  2657. msgstr "Kirjautuminen epäonnistui."
  2658. #: src/message.h:222
  2659. msgid "Got EOF from the server."
  2660. msgstr "Saatiin tiedoston lopetus palvelimelta."
  2661. #: src/message.h:223
  2662. msgid "Got EOF from peer."
  2663. msgstr "Saatiin tiedoston lopetus käyttäjältä."
  2664. #: src/message.h:224
  2665. msgid "Malformed meta info."
  2666. msgstr "Vioittunut metatieto."
  2667. #: src/message.h:226
  2668. #, c-format
  2669. msgid "Failed to open the file %s, cause: %s"
  2670. msgstr "Tiedoston %s avaaminen epäonnistui, syy: %s"
  2671. #: src/message.h:227
  2672. #, c-format
  2673. msgid "Failed to write into the file %s, cause: %s"
  2674. msgstr "Tiedostoon %s ei voi kirjoittaa, syy: %s"
  2675. #: src/message.h:228
  2676. #, c-format
  2677. msgid "Failed to read from the file %s, cause: %s"
  2678. msgstr "Tiedostosta %s ei voi lukea, syy: %s"
  2679. #: src/message.h:229
  2680. msgid "Failed to read data from disk."
  2681. msgstr "Lukeminen levyltä epäonnistui."
  2682. #: src/message.h:230
  2683. #, c-format
  2684. msgid "Failed to calculate SHA1 digest of or a part of the file %s, cause: %s"
  2685. msgstr "SHA1-summaa ei voitu laskea tiedostosta tai sen osasta %s, syy: %s"
  2686. #: src/message.h:231
  2687. #, c-format
  2688. msgid "Failed to seek the file %s, cause: %s"
  2689. msgstr "Tiedostoa %s ei löydy, syy: %s"
  2690. #: src/message.h:233
  2691. #, c-format
  2692. msgid "%s is not a directory."
  2693. msgstr "%s ei ole hakemisto."
  2694. #: src/message.h:234
  2695. #, c-format
  2696. msgid "Failed to make the directory %s, cause: %s"
  2697. msgstr "Hakemistoa %s ei voi luoda, syy: %s"
  2698. #: src/message.h:238
  2699. #, c-format
  2700. msgid "Failed to open a socket, cause: %s"
  2701. msgstr "Sockettia ei voi avata, syy: %s"
  2702. #: src/message.h:239
  2703. #, c-format
  2704. msgid "Failed to set a socket option, cause: %s"
  2705. msgstr "Socket-asetuksen asetus epäonnistui, syy: %s"
  2706. #: src/message.h:240
  2707. #, c-format
  2708. msgid "Failed to set a socket as blocking, cause: %s"
  2709. msgstr "Socketin asetus estäväksi epäonnistui, syy: %s"
  2710. #: src/message.h:241
  2711. #, c-format
  2712. msgid "Failed to set a socket as non-blocking, cause: %s"
  2713. msgstr "Socketin asetus ei-estäväksi epäonnistui, syy: %s"
  2714. #: src/message.h:242
  2715. #, c-format
  2716. msgid "Failed to bind a socket, cause: %s"
  2717. msgstr "Socketin sitominen epäonnistui, syy: %s"
  2718. #: src/message.h:243
  2719. #, c-format
  2720. msgid "Failed to listen to a socket, cause: %s"
  2721. msgstr "Socketin kuuntelu epäonnistui, syy: %s"
  2722. #: src/message.h:244
  2723. #, c-format
  2724. msgid "Failed to accept a peer connection, cause: %s"
  2725. msgstr "Käyttäjäyhteyttä ei voitu hyväksyä, syy: %s"
  2726. #: src/message.h:245
  2727. #, c-format
  2728. msgid "Failed to get the name of socket, cause: %s"
  2729. msgstr "Socketin nimen saaminen epäonnistui, syy: %s"
  2730. #: src/message.h:246
  2731. #, c-format
  2732. msgid "Failed to get the name of connected peer, cause: %s"
  2733. msgstr "Yhdistyneen käyttäjän nimeä ei saatu, syy: %s"
  2734. #: src/message.h:247
  2735. #, c-format
  2736. msgid "Failed to resolve the hostname %s, cause: %s"
  2737. msgstr "Koneen %s osoitetta ei pystytty selvittämään, syy: %s"
  2738. #: src/message.h:248
  2739. #, c-format
  2740. msgid "Failed to connect to the host %s, cause: %s"
  2741. msgstr "Yhteyttä koneeseen %s ei saatu, syy: %s"
  2742. #: src/message.h:249
  2743. #, c-format
  2744. msgid "Failed to check whether the socket is writable, cause: %s"
  2745. msgstr "Socketin kirjoitettavuutta ei voitu tarkistaa, syy: %s"
  2746. #: src/message.h:250
  2747. #, c-format
  2748. msgid "Failed to check whether the socket is readable, cause: %s"
  2749. msgstr "Socketin luettavuutta ei voitu tarkistaa, syy: %s"
  2750. #: src/message.h:251
  2751. #, c-format
  2752. msgid "Failed to send data, cause: %s"
  2753. msgstr "Dataa ei voitu lähettää, syy: %s"
  2754. #: src/message.h:252
  2755. #, c-format
  2756. msgid "Failed to receive data, cause: %s"
  2757. msgstr "Dataa ei voitu vastaanottaa, syy: %s"
  2758. #: src/message.h:253
  2759. #, c-format
  2760. msgid "Failed to peek data, cause: %s"
  2761. msgstr "Dataa ei voitu katsoa, syy: %s"
  2762. #: src/message.h:254
  2763. #, c-format
  2764. msgid "Unknown socket error %d (0x%x)"
  2765. msgstr "Tuntematon socket-virhe %d (0x%x)"
  2766. #: src/message.h:255
  2767. #, c-format
  2768. msgid "File %s exists, but %s does not exist."
  2769. msgstr "Tiedosto %s on olemassa, mutta %s ei."
  2770. #: src/message.h:257
  2771. #, fuzzy, c-format
  2772. msgid "Invalid payload size for %s, size=%lu. It should be %lu."
  2773. msgstr "Väärä payload-koko %s:lla (%d), pitäisi olla %d."
  2774. #: src/message.h:258
  2775. #, c-format
  2776. msgid "Invalid ID=%d for %s. It should be %d."
  2777. msgstr "Epäkelpo ID=%d %s:lla. Pitäisi olla %d."
  2778. #: src/message.h:260
  2779. msgid "Download aborted."
  2780. msgstr "Lataus keskeytettiin."
  2781. #: src/message.h:261
  2782. #, c-format
  2783. msgid "File %s is being downloaded by other command."
  2784. msgstr "Tiedostoa %s lataa joku toinen komento."
  2785. #: src/message.h:262
  2786. msgid "Insufficient checksums."
  2787. msgstr "Riittämättömät tarkistussummat."
  2788. #: src/message.h:263
  2789. #, c-format
  2790. msgid "Tracker returned failure reason: %s"
  2791. msgstr "Tracker palautti epäonnistumisen syyn: %s"
  2792. #: src/message.h:264
  2793. msgid "Flooding detected."
  2794. msgstr "Tulva huomattu."
  2795. #: src/message.h:266
  2796. #, fuzzy, c-format
  2797. msgid ""
  2798. "Drop connection because no request/piece messages were exchanged in a "
  2799. "certain period(%ld seconds)."
  2800. msgstr ""
  2801. "Sulje yhteys koska yhtään pyyntöä/palaa ei vaihdettu tietyssä ajassa (%d "
  2802. "sekunnissa)."
  2803. #: src/message.h:268
  2804. msgid "The infoHash in torrent file doesn't match to one in .aria2 file."
  2805. msgstr "InfoHash torrent-tiedostossa ei täsmää .aria2-tiedostossa olevaan."
  2806. #: src/message.h:269
  2807. #, c-format
  2808. msgid "No such file entry %s"
  2809. msgstr "Tiedostokohtaa %s ei ole."
  2810. #: src/message.h:270
  2811. #, c-format
  2812. msgid "Too slow Downloading speed: %d <= %d(B/s), host:%s"
  2813. msgstr "Liian hidas latausnopeus: %d <= %d(B/s), kone:%s"
  2814. #: src/message.h:271
  2815. msgid "No HttpRequestEntry found."
  2816. msgstr "HttpRequestEntry:ä ei löydy."
  2817. #: src/message.h:272
  2818. #, c-format
  2819. msgid "Got %d status, but no location header provided."
  2820. msgstr "Saatiin %d-tila, mutta ei osoiteotsaketta."
  2821. #: src/message.h:274
  2822. msgid "No file matched with your preference."
  2823. msgstr "Yksikään tiedosto ei vastaa asetuksiasi."
  2824. #: src/message.h:275
  2825. msgid "Exception caught"
  2826. msgstr "Poikkeus löytyi"
  2827. #: src/message.h:276
  2828. #, c-format
  2829. msgid "Max payload length exceeded or invalid. length = %u"
  2830. msgstr "Suurin payload-koko ylitetty tai väärä. Pituus = %u"
  2831. #: src/message.h:277
  2832. #, c-format
  2833. msgid "Invalid file length. Cannot continue download %s: local %s, remote %s"
  2834. msgstr ""
  2835. "Epäkelpo tiedoston pituus. Latausta %s ei voi jatkaa: paikallinen %s, etä %s"
  2836. #~ msgid "See -h option to know other command-line options(%s)."
  2837. #~ msgstr "Ks. -h valinta nähdäksesi muita valintoja (%s)"
  2838. #, fuzzy
  2839. #~ msgid "%ld seconds to allocate %s byte(s)"
  2840. #~ msgstr "%d sekuntia tilan %s varaamiseen"
  2841. #~ msgid "Too large file size. size=%s"
  2842. #~ msgstr "Tiedostokoko liian suuri. Koko=%s"
  2843. #~ msgid "Size mismatch Expected:%s Actual:%s"
  2844. #~ msgstr "Koko ei täsmää. Odotettu:%s Oikea:%s"
  2845. #~ msgid "The offset is out of range, offset=%s"
  2846. #~ msgstr "Offset on rajojen ulkopuolella, offset=%s"
  2847. #, fuzzy
  2848. #~ msgid ""
  2849. #~ "Chunk checksum validation failed. checksumIndex=%lu, offset=%s, "
  2850. #~ "expectedHash=%s, actualHash=%s"
  2851. #~ msgstr ""
  2852. #~ "Palan tarkistussumma ei täsmää. checksumIndex=%d, offset=%s, expectedHash="
  2853. #~ "%s, actualHash=%s"
  2854. #~ msgid "Invalid range header. Request: %s-%s/%s, Response: %s-%s/%s"
  2855. #~ msgstr "Epäkelpo rajaotsake. Pyyntö: %s-%s/%s, Vastaus %s-%s/%s"
  2856. #, fuzzy
  2857. #~ msgid ""
  2858. #~ " -V, --check-integrity[=true|false] Check file integrity by validating "
  2859. #~ "piece\n"
  2860. #~ " hashes. This option has effect only in "
  2861. #~ "BitTorrent\n"
  2862. #~ " and Metalink downloads with chunk "
  2863. #~ "checksums.\n"
  2864. #~ " Use this option to re-download a damaged "
  2865. #~ "portion\n"
  2866. #~ " of a file. See also --bt-hash-check-seed "
  2867. #~ "option."
  2868. #~ msgstr ""
  2869. #~ " --check-integrity=true|false Tarkista tiedoston eheys palojen "
  2870. #~ "tarkistussummasta.\n"
  2871. #~ " Tämä asetus vaikuttaa vain BitTorrent- ja\n"
  2872. #~ " Metalink-latauksiin joissa on palojen "
  2873. #~ "tarkistussumma.\n"
  2874. #~ " Käytä tätä asetusta ladataksesi uudestaan "
  2875. #~ "vahingoittunut osa\n"
  2876. #~ " tiedostoa.\n"
  2877. #~ " Oletus: false"
  2878. #, fuzzy
  2879. #~ msgid " --enable-xml-rpc[=true|false] Deprecated. Use --enable-rpc instead."
  2880. #~ msgstr ""
  2881. #~ " --enable-http-keep-alive[=true|false] Käytä HTTP/1.1 säilyvää yhteyttä.\n"
  2882. #~ " Oletus: false"
  2883. #, fuzzy
  2884. #~ msgid " --xml-rpc-user=USER Deprecated. Use --rpc-user instead."
  2885. #~ msgstr ""
  2886. #~ " -http-user=USER Aseta http-käyttäjänimi. Tämä vaikuttaa kaikkiin URL:hin."
  2887. #, fuzzy
  2888. #~ msgid " --xml-rpc-passwd=PASSWD Deprecated. Use --rpc-passwd instead."
  2889. #~ msgstr ""
  2890. #~ " --http-passwd=SALASANA Aseta http-salasana. Tämä vaikuttaa kaikkiin URL:"
  2891. #~ "hin."
  2892. #~ msgid "must be either 'true' or 'false'."
  2893. #~ msgstr "täytyy olla joko 'true' tai 'false'."
  2894. #~ msgid "must be between %s and %s."
  2895. #~ msgstr "täytyy olla välillä %s ja %s."
  2896. #~ msgid "must be smaller than or equal to %s."
  2897. #~ msgstr "täytyy olla pienempi tai yhtä suuri kuin %s."
  2898. #~ msgid "must be greater than or equal to %s."
  2899. #~ msgstr "täytyy olla suurempi tai yhtä suuri kuin %s."
  2900. #~ msgid "must be a number."
  2901. #~ msgstr "täytyy olla numero."
  2902. #~ msgid "must be smaller than or equal to %.1f."
  2903. #~ msgstr "täytyy olla pienempi tai yhtä suuri kuin %.1f."
  2904. #~ msgid "must be between %.1f and %.1f."
  2905. #~ msgstr "täytyy olla välillä %.1f ja %.1f"
  2906. #~ msgid "must be greater than or equal to %.1f."
  2907. #~ msgstr "täytyy olla suurempi tai yhtä suuri kuin %.1f"
  2908. #~ msgid "must be one of the following:"
  2909. #~ msgstr "täytyy olla yksi seuraavista:"
  2910. #, fuzzy
  2911. #~ msgid "Unrecognized format"
  2912. #~ msgstr "tunnistamaton välityspalvelinmuoto"
  2913. #~ msgid "unrecognized proxy format"
  2914. #~ msgstr "tunnistamaton välityspalvelinmuoto"
  2915. #~ msgid "Failed to open the segment file %s, cause: %s"
  2916. #~ msgstr "Osatiedostoa %s ei voi avata, syy: %s"
  2917. #~ msgid "Failed to write into the segment file %s, cause: %s"
  2918. #~ msgstr "Osatiedostoon %s ei voi kirjoittaa, syy: %s"
  2919. #~ msgid "Failed to read from the segment file %s, cause: %s"
  2920. #~ msgstr "Osatiedostosta %s ei voi lukea, syy: %s"
  2921. #~ msgid "CUID#%d - The download for one segment completed successfully."
  2922. #~ msgstr "CUID#%d - Yhden osan lataus valmistui onnistuneesti."
  2923. #~ msgid "CUID#%d - No segment available."
  2924. #~ msgstr "CUID#%d - Osaa ei ole saatavilla."
  2925. #~ msgid "CUID#%d - Connecting to %s:%d"
  2926. #~ msgstr "CUID#%d - Yhdistää osoitteeseen %s:%d"
  2927. #~ msgid ""
  2928. #~ "CUID#%d - The segment changed. We send the request again with new Range "
  2929. #~ "header."
  2930. #~ msgstr ""
  2931. #~ "CUID#%d - Osa muuttui. Lähetämme pyynnön uudestaan uudella alue-otsikolla."
  2932. #~ msgid "CUID#%d - Redirecting to %s"
  2933. #~ msgstr "CUID#%d - Uudelleenohjataan osoitteeseen %s"
  2934. #~ msgid ""
  2935. #~ "CUID#%d - Requesting:\n"
  2936. #~ "%s"
  2937. #~ msgstr ""
  2938. #~ "CUID#%d - Lähetetään pyyntöä:\n"
  2939. #~ "%s"
  2940. #~ msgid ""
  2941. #~ "CUID#%d - Response received:\n"
  2942. #~ "%s"
  2943. #~ msgstr ""
  2944. #~ "CUID#%d - Vastaus saatu:\n"
  2945. #~ "%s"
  2946. #~ msgid "CUID#%d - Download aborted. URI=%s"
  2947. #~ msgstr "CUID#%d - Lataus lopetettu kesken. URI=%s"
  2948. #~ msgid "CUID#%d - Restarting the download. URI=%s"
  2949. #~ msgstr "CUID#%d - Aloitetaan lataus alusta. URI=%s"
  2950. #~ msgid "CUID#%d - Download aborted."
  2951. #~ msgstr "CUID#%d - Lataus lopetettu kesken."
  2952. #~ msgid "CUID#%d - %d times attempted, but no success. Download aborted."
  2953. #~ msgstr ""
  2954. #~ "CUID#%d - yritetty %d kertaa, onnistumatta. Lataus lopetettu kesken."
  2955. #~ msgid "CUID#%d - we got new piece. index=%d"
  2956. #~ msgstr "CUID#%d - saimme uuden osan. Indeksi=%d"
  2957. #~ msgid "CUID#%d - we got wrong piece. index=%d"
  2958. #~ msgstr "CUID#%d - saimme väärän osan. Indeksi=%d"
  2959. #~ msgid "CUID#%d - Download not complete: %s"
  2960. #~ msgstr "CUID#%d - Lataus ei ole valmis: %s"
  2961. #~ msgid "CUID#%d - Good checksum: %s"
  2962. #~ msgstr "CUID#%d - Checksum-tarkistus OK: %s"
  2963. #~ msgid "CUID#%d - Bad checksum: %s"
  2964. #~ msgstr "CUID#%d - Checksum-tarkistus epäonnistui: %s"
  2965. #~ msgid "CUID#%d - Resolving hostname %s"
  2966. #~ msgstr "CUID#%d - Etsitään nimeä %s"
  2967. #~ msgid "CUID#%d - Name resolution complete: %s -> %s"
  2968. #~ msgstr "CUID#%d - Nimen etsintä valmis: %s -> %s"
  2969. #~ msgid "CUID#%d - Name resolution for %s failed:%s"
  2970. #~ msgstr "CUID#%d - Nimen %s etsintä epäonnistui: %s"
  2971. #~ msgid "CUID#%d - DNS cache hit: %s -> %s"
  2972. #~ msgstr "CUID #%d - DNS-välimuistin osuma: %s -> %s"
  2973. #~ msgid "CUID#%d - Abort requested."
  2974. #~ msgstr "CUID#%d - Lopetusta kesken pyydetty."
  2975. #~ msgid "CUID#%d - Connecting to the peer %s"
  2976. #~ msgstr "CUID#%d - Yhdistetään koneeseen %s"
  2977. #~ msgid ""
  2978. #~ "CUID#%d - Piece received. index=%d, begin=%d, length=%d, offset=%llu, "
  2979. #~ "blockIndex=%d"
  2980. #~ msgstr ""
  2981. #~ "CUID#%d - Osa vastaanotettu. Indeksi=%d, alku=%d, pituus=%d, offset=%llu, "
  2982. #~ "block-indeksi=%d"
  2983. #~ msgid "CUID#%d - Piece bitfield %s"
  2984. #~ msgstr "CUID#%d - Palan bittikenttä %s"
  2985. #~ msgid ""
  2986. #~ "CUID#%d - Reject piece message in queue because the peer has been choked. "
  2987. #~ "index=%d, begin=%d, length=%d"
  2988. #~ msgstr ""
  2989. #~ "CUID#%d - Hylätään palaviesti jonossa koska yksi käyttäjistä on "
  2990. #~ "kuristunut. Indeksi=%d, alku=%d, pituus=%d"
  2991. #~ msgid ""
  2992. #~ "CUID#%d - Reject piece message in queue because cancel message received. "
  2993. #~ "index=%d, begin=%d, length=%d"
  2994. #~ msgstr ""
  2995. #~ "CUID#%d - Hylätään palaviesti jonossa koska saatiin peruutuspyyntö. "
  2996. #~ "Indeksi=%d, alku=%d, pituus=%d"
  2997. #~ msgid "CUID#%d - Exception caught while validating file integrity."
  2998. #~ msgstr "CUID#%d - Poikkeus löydettiin tutkittaessa tiedoston eheyttä."
  2999. #~ msgid "CUID#%d - Interested in the peer"
  3000. #~ msgstr "CUID#%d - Kiinnostusta käyttäjään"
  3001. #~ msgid "CUID#%d - Not interested in the peer"
  3002. #~ msgstr "CUID#%d - Ei kiinnostusta käyttäjään"
  3003. #~ msgid "CUID#%d - Deleting request slot index=%d, blockIndex=%d"
  3004. #~ msgstr "CUID#%d - Poistetaan pyyntöpaikka indeksi=%d, block-indeksi=%d"
  3005. #~ msgid ""
  3006. #~ "CUID#%d - Deleting request slot index=%d, blockIndex=%d because localhost "
  3007. #~ "got choked."
  3008. #~ msgstr ""
  3009. #~ "CUID#%d - Poistetaan pyyntöpaikka indeksi=%d, block-indeksi=%d koska "
  3010. #~ "localhost kuristui."
  3011. #~ msgid "CUID#%d - Deleting request slot blockIndex=%d because of time out"
  3012. #~ msgstr ""
  3013. #~ "CUID#%d - Poistetaan pyyntöpaikka block-indeksi=%d koska aikaraja tuli "
  3014. #~ "vastaan."
  3015. #~ msgid ""
  3016. #~ "CUID#%d - Deleting request slot blockIndex=%d because the block has been "
  3017. #~ "acquired."
  3018. #~ msgstr ""
  3019. #~ "CUID#%d - Poistetaan pyyntöpaikka block-indeksi=%d koska se pala on jo "
  3020. #~ "saatu."
  3021. #~ msgid "CUID#%d - Fast extension enabled."
  3022. #~ msgstr "CUID#%d - Nopea laajennus päällä."
  3023. #~ msgid "CUID#%d - Extended Messaging enabled."
  3024. #~ msgstr "CUID#%d - Laajennettu viestitys käytössä"
  3025. #~ msgid "CUID#%d - Exception caught while allocating file space."
  3026. #~ msgstr "CUID#%d - Poikkeus saatu kiinni varatessa tilaa."
  3027. #~ msgid "CUID#%d - Content-Disposition detected. Use %s as filename"
  3028. #~ msgstr "CUID#%d - Sisällön epäjärjestys havaittu. Käytä %s tiedostonimenä"
  3029. #~ msgid "CUID#%d - Peer %s:%d banned."
  3030. #~ msgstr "CUID#%d - Käyttäjä %s:%d bannattu."
  3031. #~ msgid "CUID#%d - Using port %d for accepting new connections"
  3032. #~ msgstr "CUID#%d - Käytetään porttia %d uusiin yhteyksiin."
  3033. #~ msgid "CUID#%d - An error occurred while binding port=%d"
  3034. #~ msgstr "CUID#%d - Virhe tapahtui sitoessa porttia %d"
  3035. #~ msgid "CUID#%d - Incoming connection, adding new command CUID#%d"
  3036. #~ msgstr "CUID#%d - Saapuva yhteys, lisätään uusi komento CUID#%d"
  3037. #~ msgid "CUID#%d - Error in accepting connection"
  3038. #~ msgstr "CUID#%d - Virhe yhteyden hyväksymisessä"
  3039. #~ msgid "CUID#%d - Error occurred while processing tracker response."
  3040. #~ msgstr "CUID#%d - Virhe tapahtui käsitellessä trackerin vastausta."
  3041. #~ msgid "CUID#%d - Cannot create tracker request."
  3042. #~ msgstr "CUID#%d - Ei voi luoda tracker-pyytöä."
  3043. #~ msgid "CUID#%d - Creating new tracker request command #%d"
  3044. #~ msgstr "CUID#%d - Luodaan uusi tracker-pyyntökäsky #%d"
  3045. #~ msgid "Dispatching FileAllocationCommand for CUID#%d."
  3046. #~ msgstr "Lähetetään FileAllocationCommand CUID#%d:lle"
  3047. #~ msgid "CUID#%d cancels segment index=%d. CUID#%d handles it instead."
  3048. #~ msgstr ""
  3049. #~ "CUID#%d peruuttaa palan indeksillä %d. CUID#%d hoitaa sen sen sijaan."
  3050. #~ msgid " -o, --out=FILE The file name of the downloaded file."
  3051. #~ msgstr " -o, --out=FILE Ladatun tiedoston nimi."
  3052. #, fuzzy
  3053. #~ msgid ""
  3054. #~ " --http-auth-scheme=SCHEME Set HTTP authentication scheme. Currently, "
  3055. #~ "basic\n"
  3056. #~ " is the only supported scheme."
  3057. #~ msgstr ""
  3058. #~ " --http-auth-scheme=SCHEME Aseta http-tunnistustyyppi. Tällä hetkellä "
  3059. #~ "basic\n"
  3060. #~ " on ainoa tuettu tyyppi.\n"
  3061. #~ " Oletus: basic"
  3062. #~ msgid " -D, --daemon Run as daemon."
  3063. #~ msgstr " -D, --daemon Aja taustalla"
  3064. #~ msgid "CUID#%d - Unregistering cuid from segmentManager."
  3065. #~ msgstr "CUID#%d - poistetaan tämä cuid osamanagerista."
  3066. #~ msgid "Files:"
  3067. #~ msgstr "Tiedostot:"
  3068. #, fuzzy
  3069. #~ msgid ""
  3070. #~ " --allow-overwrite=true|false If false, aria2 doesn't download a file "
  3071. #~ "which\n"
  3072. #~ " already exists but the corresponding .aria2 "
  3073. #~ "file\n"
  3074. #~ " doesn't exist."
  3075. #~ msgstr ""
  3076. #~ " --allow-overwrite=true|false Jos false, aria2 ei lataa tiedostoa joka\n"
  3077. #~ " on jo olemassa mutta jonka vastaavaa .aria2-"
  3078. #~ "tiedostoa\n"
  3079. #~ " ei ole.\n"
  3080. #~ " Oletus: false"
  3081. #, fuzzy
  3082. #~ msgid ""
  3083. #~ " --max-download-limit=SPEED Set max download speed in bytes per sec.\n"
  3084. #~ " 0 means unrestricted.\n"
  3085. #~ " You can append K or M(1K = 1024, 1M = "
  3086. #~ "1024K)."
  3087. #~ msgstr ""
  3088. #~ " --max-download-limit=NOPEUS Aseta maksimilatausnopeus (tavua/sek).\n"
  3089. #~ " 0 on rajoittamaton.\n"
  3090. #~ " Voit lisätä perään joko K tai M (1K = 1024, "
  3091. #~ "1M = 1024K)\n"
  3092. #~ " Oletus: 0"
  3093. #~ msgid ""
  3094. #~ " --http-proxy=HOST:PORT Use HTTP proxy server. This affects all "
  3095. #~ "URLs."
  3096. #~ msgstr ""
  3097. #~ " --http-proxy=HOST:PORT Käytä http-välityspalvelinta. Tämä vaikuttaa "
  3098. #~ "kaikkiin URL:hin."
  3099. #~ msgid " -p, --ftp-pasv Use passive mode in FTP."
  3100. #~ msgstr " -p, --ftp-pasv Käytä passiivista tilaa ftp:ssä."
  3101. #, fuzzy
  3102. #~ msgid ""
  3103. #~ " -C, --metalink-servers=NUM_SERVERS The number of servers to connect to\n"
  3104. #~ " simultaneously."
  3105. #~ msgstr ""
  3106. #~ " -C, --metalink-servers=N Aseta yhtäaikaisten metalink-palvelinyhteyksien "
  3107. #~ "lukumäärä.\n"
  3108. #~ " Oletus: 5"
  3109. #~ msgid ""
  3110. #~ " --ftp-user=USER Set FTP user. This affects all URLs.\n"
  3111. #~ " Default: anonymous"
  3112. #~ msgstr ""
  3113. #~ " --ftp-user=USER Aseta ftp-käyttäjänimi. Tämä vaikuttaa kaikkiin URL:"
  3114. #~ "hin.\n"
  3115. #~ " Oletus: anonymous"
  3116. #~ msgid ""
  3117. #~ " --ftp-passwd=PASSWD Set FTP password. This affects all URLs.\n"
  3118. #~ " Default: ARIA2USER@"
  3119. #~ msgstr ""
  3120. #~ " --ftp-passwd=SALASANA Aseta ftp-salasana. Tämä vaikuttaa kaikkiin URL:"
  3121. #~ "hin.\n"
  3122. #~ " Oletus: ARIA2USER@"
  3123. #~ msgid ""
  3124. #~ " --ftp-via-http-proxy=METHOD Use HTTP proxy in FTP. METHOD is either "
  3125. #~ "'get' or\n"
  3126. #~ " 'tunnel'.\n"
  3127. #~ " Default: tunnel"
  3128. #~ msgstr ""
  3129. #~ " --ftp-via-http-proxy=METODI Käytä http-proxya ftp:ssä. METODI on joko "
  3130. #~ "'get' tai\n"
  3131. #~ " 'tunnel'.\n"
  3132. #~ " Oletus: tunnel"
  3133. #~ msgid ""
  3134. #~ " --enable-http-pipelining[=true|false] Enable HTTP/1.1 pipelining.\n"
  3135. #~ " Default: false"
  3136. #~ msgstr ""
  3137. #~ " --enable-http-pipelining[=true|false] Käytä HTTP/1.1 pipeliningiä.\n"
  3138. #~ " Oletus: false"
  3139. #~ msgid " %s [options] -T TORRENT_FILE URL ...\n"
  3140. #~ msgstr " %s [parametrit] -T TORRENT_TIEDOSTO URL ...\n"
  3141. #~ msgid " %s [options] -M METALINK_FILE\n"
  3142. #~ msgstr " %s [parametrit] -M METALINK_TIEDOSTO\n"