sv.po 91 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829
  1. # Swedish 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: 2011-12-26 00:58+0900\n"
  11. "PO-Revision-Date: 2010-01-23 21:17+0900\n"
  12. "Last-Translator: Swedie <Unknown>\n"
  13. "Language-Team: Swedish <sv@li.org>\n"
  14. "Language: sv\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: 2010-01-23 09:28+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 "Avslut påbörjat... Tryck ner Ctrl-C igen för att tvinga fram avslut."
  24. #: src/DownloadEngine.cc:232
  25. msgid "Emergency shutdown sequence commencing..."
  26. msgstr "Avslut tvingas..."
  27. #: src/MultiUrlRequestInfo.cc:159
  28. msgid "aria2 will resume download if the transfer is restarted."
  29. msgstr ""
  30. #: src/MultiUrlRequestInfo.cc:160
  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. #: src/MultiUrlRequestInfo.cc:274
  36. #, c-format
  37. msgid "Serialized session to '%s' successfully."
  38. msgstr ""
  39. #: src/MultiUrlRequestInfo.cc:277
  40. #, c-format
  41. msgid "Failed to serialize session to '%s'."
  42. msgstr ""
  43. #: src/RequestGroupMan.cc:342
  44. #, c-format
  45. msgid "Download GID#%lld not complete: %s"
  46. msgstr ""
  47. #: src/RequestGroupMan.cc:607
  48. msgid "Download Results:"
  49. msgstr "Nedladdningsresultat:"
  50. #: src/RequestGroupMan.cc:650
  51. msgid "Status Legend:"
  52. msgstr "Statusförklaring:"
  53. #: src/RequestGroupMan.cc:652
  54. msgid "(OK):download completed."
  55. msgstr ""
  56. #: src/RequestGroupMan.cc:655
  57. msgid "(ERR):error occurred."
  58. msgstr ""
  59. #: src/RequestGroupMan.cc:658
  60. msgid "(INPR):download in-progress."
  61. msgstr ""
  62. #: src/RequestGroupMan.cc:661
  63. msgid "(RM):download removed."
  64. msgstr ""
  65. #: src/OptionHandler.cc:38
  66. msgid " Default: "
  67. msgstr " Standard: "
  68. #: src/OptionHandler.cc:39
  69. msgid " Tags: "
  70. msgstr ""
  71. #: src/OptionHandler.cc:40
  72. msgid " Possible Values: "
  73. msgstr ""
  74. #: src/usage_text.h:37
  75. msgid ""
  76. " -d, --dir=DIR The directory to store the downloaded file."
  77. msgstr ""
  78. #: src/usage_text.h:39
  79. msgid ""
  80. " -o, --out=FILE The file name of the downloaded file. When -Z\n"
  81. " option is used, this option is ignored."
  82. msgstr ""
  83. #: src/usage_text.h:42
  84. msgid ""
  85. " -l, --log=LOG The file name of the log file. If '-' is\n"
  86. " specified, log is written to stdout."
  87. msgstr ""
  88. #: src/usage_text.h:45
  89. msgid ""
  90. " -D, --daemon[=true|false] Run as daemon. The current working directory "
  91. "will\n"
  92. " be changed to \"/\" and standard input, "
  93. "standard\n"
  94. " output and standard error will be redirected "
  95. "to\n"
  96. " \"/dev/null\"."
  97. msgstr ""
  98. #: src/usage_text.h:50
  99. msgid ""
  100. " -s, --split=N Download a file using N connections. If more\n"
  101. " than N URLs are given, first N URLs are used "
  102. "and\n"
  103. " remaining URLs are used for backup. If less "
  104. "than\n"
  105. " N URLs are given, those URLs are used more "
  106. "than\n"
  107. " once so that N connections total are made\n"
  108. " simultaneously. The number of connections to "
  109. "the\n"
  110. " same host is restricted by\n"
  111. " --max-connection-per-server option. See also\n"
  112. " --min-split-size option."
  113. msgstr ""
  114. #: src/usage_text.h:60
  115. #, fuzzy
  116. msgid ""
  117. " --retry-wait=SEC Set the seconds to wait between retries. \n"
  118. " With SEC > 0, aria2 will retry download when "
  119. "the\n"
  120. " HTTP server returns 503 response."
  121. msgstr ""
  122. " --retry-wait=SEC Anger väntetid i sekunder efter att ett fel \n"
  123. " har inträffat."
  124. #: src/usage_text.h:64
  125. msgid " -t, --timeout=SEC Set timeout in seconds."
  126. msgstr ""
  127. #: src/usage_text.h:66
  128. msgid " -m, --max-tries=N Set number of tries. 0 means unlimited."
  129. msgstr ""
  130. #: src/usage_text.h:68
  131. msgid ""
  132. " --http-proxy=PROXY Use this proxy server for HTTP. To erase\n"
  133. " previously defined proxy, use \"\".\n"
  134. " See also --all-proxy option.\n"
  135. " This affects all URLs."
  136. msgstr ""
  137. #: src/usage_text.h:73
  138. msgid ""
  139. " --https-proxy=PROXY Use this proxy server for HTTPS. To erase\n"
  140. " previously defined proxy, use \"\".\n"
  141. " See also --all-proxy option.\n"
  142. " This affects all URLs."
  143. msgstr ""
  144. #: src/usage_text.h:78
  145. msgid ""
  146. " --ftp-proxy=PROXY Use this proxy server for FTP. To erase "
  147. "previously\n"
  148. " defined proxy, use \"\".\n"
  149. " See also --all-proxy option.\n"
  150. " This affects all URLs."
  151. msgstr ""
  152. #: src/usage_text.h:83
  153. msgid ""
  154. " --all-proxy=PROXY Use this proxy server for all protocols. To "
  155. "erase\n"
  156. " previously defined proxy, use \"\".\n"
  157. " You can override this setting and specify a\n"
  158. " proxy server for a particular protocol using\n"
  159. " --http-proxy, --https-proxy and --ftp-proxy\n"
  160. " options.\n"
  161. " This affects all URLs."
  162. msgstr ""
  163. #: src/usage_text.h:91
  164. msgid " --http-user=USER Set HTTP user. This affects all URLs."
  165. msgstr ""
  166. " --http-user=USER Anger HTTP-användare. Angivet värde påverkar \n"
  167. " alla URL:er."
  168. #: src/usage_text.h:93
  169. msgid " --http-passwd=PASSWD Set HTTP password. This affects all URLs."
  170. msgstr ""
  171. " --http-passwd=PASSWD Anger HTTP-lösenordet. Angivet värde påverkar\n"
  172. " alla URL:er."
  173. #: src/usage_text.h:95
  174. msgid " --proxy-method=METHOD Set the method to use in proxy request."
  175. msgstr " --proxy-method=METHOD Anger metod vid förfrågan till proxy-server."
  176. #: src/usage_text.h:97
  177. msgid " --referer=REFERER Set Referer. This affects all URLs."
  178. msgstr ""
  179. " --referer=REFERER Anger varifrån en förfrågan kommer. Angivet värde "
  180. "påverkar alla URL:er."
  181. #: src/usage_text.h:99
  182. msgid " --ftp-user=USER Set FTP user. This affects all URLs."
  183. msgstr ""
  184. " --ftp-user=USER Anger FTP-användare. Angivet värde påverkar alla URL:er."
  185. #: src/usage_text.h:101
  186. msgid " --ftp-passwd=PASSWD Set FTP password. This affects all URLs."
  187. msgstr ""
  188. " --ftp-passwd=PASSWD Anger FTP-lösenord. Angivet värde påverkar alla URL:er."
  189. #: src/usage_text.h:103
  190. msgid " --ftp-type=TYPE Set FTP transfer type."
  191. msgstr " --ftp-type=TYPE Anger överföringstyp."
  192. #: src/usage_text.h:105
  193. msgid ""
  194. " -p, --ftp-pasv[=true|false] Use the passive mode in FTP. If false is "
  195. "given,\n"
  196. " the active mode will be used."
  197. msgstr ""
  198. " -p, --ftp-pasv[=true|false] Anger om FTP-anslutningen ska vara i passivt \n"
  199. " läge eller ej. Värdet false innebär att "
  200. "aktivt \n"
  201. " läge används."
  202. #: src/usage_text.h:108
  203. msgid ""
  204. " --lowest-speed-limit=SPEED Close connection if download speed is lower "
  205. "than\n"
  206. " or equal to this value(bytes per sec).\n"
  207. " 0 means aria2 does not have a lowest speed "
  208. "limit.\n"
  209. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  210. " This option does not affect BitTorrent "
  211. "downloads."
  212. msgstr ""
  213. " --lowest-speed-limit=SPEED Stäng anslutningen om nedladdningshastigheten \n"
  214. " är lägre än eller lika med detta värde "
  215. "(antal \n"
  216. " bytes per sekund). Värdet 0 innebär att "
  217. "aria2 \n"
  218. " inte har någon lägsta nedladdningshastighet. \n"
  219. " Du kan avsluta värdet med ett K eller M \n"
  220. " (1K = 1024 bytes, 1M = 1024K). Detta värde \n"
  221. " påverkar inte BitTorrent-nedladdningar."
  222. #: src/usage_text.h:114
  223. msgid ""
  224. " --max-overall-download-limit=SPEED Set max overall download speed in bytes/"
  225. "sec.\n"
  226. " 0 means unrestricted.\n"
  227. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  228. " To limit the download speed per download, use\n"
  229. " --max-download-limit option."
  230. msgstr ""
  231. " --max-overall-download-limit=SPEED Anger den högsta tillåtna \n"
  232. " nedladdningshastigheten överlag i antal bytes "
  233. "per \n"
  234. " sekund. Värdet 0 är detsamma som obegränsad \n"
  235. " hastighet. Du kan avsluta med ett K eller M \n"
  236. " (1K = 1024 bytes, 1M = 1024K). För att "
  237. "begränsa \n"
  238. " nedladdningshastigheten per nedladdning, "
  239. "använd \n"
  240. " alternativet: --max-download-limit."
  241. #: src/usage_text.h:120
  242. msgid ""
  243. " --max-download-limit=SPEED Set max download speed per each download in\n"
  244. " bytes/sec. 0 means unrestricted.\n"
  245. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  246. " To limit the overall download speed, use\n"
  247. " --max-overall-download-limit option."
  248. msgstr ""
  249. " --max-download-limit=SPEED Anger högsta tillåtna nedladdningshastighet \n"
  250. " per nedladdning i bytes per sekund. Värdet 0 \n"
  251. " innebär en obegränsad hastighet. Du kan "
  252. "avsluta \n"
  253. " med antingen ett K eller M (1K = 1024 bytes, \n"
  254. " 1M = 1024K). För att begränsa hastigheten \n"
  255. " överlag, använd alternativet: \n"
  256. " --max-overall-download-limit."
  257. #: src/usage_text.h:126
  258. #, fuzzy
  259. msgid ""
  260. " --file-allocation=METHOD Specify file allocation method.\n"
  261. " 'none' doesn't pre-allocate file space. "
  262. "'prealloc'\n"
  263. " pre-allocates file space before download "
  264. "begins.\n"
  265. " This may take some time depending on the size "
  266. "of\n"
  267. " the file.\n"
  268. " If you are using newer file systems such as "
  269. "ext4\n"
  270. " (with extents support), btrfs, xfs or NTFS\n"
  271. " (MinGW build only), 'falloc' is your best\n"
  272. " choice. It allocates large(few GiB) files\n"
  273. " almost instantly. Don't use 'falloc' with "
  274. "legacy\n"
  275. " file systems such as ext3 and FAT32 because "
  276. "it\n"
  277. " takes almost same time as 'prealloc' and it\n"
  278. " blocks aria2 entirely until allocation "
  279. "finishes.\n"
  280. " 'falloc' may not be available if your system\n"
  281. " doesn't have posix_fallocate() function."
  282. msgstr ""
  283. " --file-allocation=METHOD Anger filallokeringsmetod. Värdet 'none' \n"
  284. " innebär att inget utrymme allokeras innan \n"
  285. " nedladdning. 'pre-alloc' innebär att utrymme \n"
  286. " allokeras innan nedladdningen inleds, vilket \n"
  287. " kan ta tid beroende på nedladdningsfilens \n"
  288. " storlek. 'falloc' är det bästa alternativet "
  289. "om \n"
  290. " du använder ett filsystem som ext4 (som har \n"
  291. " stöd för extents), btrfs eller xfs, eftersom \n"
  292. " det allokerar stora filer (några GiB) nästan \n"
  293. " omedelbart. Använd aldrig 'falloc' med äldre \n"
  294. " filsystem som ext3 eftersom det tar nästan "
  295. "lika \n"
  296. " lång tid som 'prealloc', vilket blockerar "
  297. "aria2 \n"
  298. " under hela förallokeringsprocessen. Det kan \n"
  299. " hända att 'falloc' inte kan användas om ditt \n"
  300. " system inte har funktionen: posix_fallocate()."
  301. #: src/usage_text.h:142
  302. msgid ""
  303. " --no-file-allocation-limit=SIZE No file allocation is made for files whose\n"
  304. " size is smaller than SIZE.\n"
  305. " You can append K or M(1K = 1024, 1M = 1024K)."
  306. msgstr ""
  307. " --no-file-allocation-limit=SIZE Ingen filallokering görs för filer mindre "
  308. "än \n"
  309. " SIZE. Du kan avsluta med K eller M (1K = "
  310. "1024 \n"
  311. " bytes, 1M = 1024K)."
  312. #: src/usage_text.h:146
  313. msgid ""
  314. " --enable-direct-io[=true|false] Enable directI/O, which lowers cpu usage "
  315. "while\n"
  316. " allocating files.\n"
  317. " Turn off if you encounter any error"
  318. msgstr ""
  319. " --enable-direct-io[=true|false] Aktiverar direktöverföring, vilket "
  320. "minskar \n"
  321. " användningen av processorn när filer "
  322. "allokeras. \n"
  323. " Använd 'false' om du får problem med \n"
  324. " nedladdningen."
  325. #: src/usage_text.h:150
  326. #, fuzzy
  327. msgid ""
  328. " --allow-overwrite[=true|false] Restart download from scratch if the\n"
  329. " corresponding control file doesn't exist. "
  330. "See\n"
  331. " also --auto-file-renaming option."
  332. msgstr ""
  333. " --allow-overwrite[=true|false] Om 'false' används och filen redan "
  334. "existerar \n"
  335. " men tillhörande kontrollfil (filenamn.aria2) \n"
  336. " fattas kommer inte aria2 att ladda ner filen "
  337. "på \n"
  338. " nytt. Se även alternativet: \n"
  339. " --auto-file-renaming."
  340. #: src/usage_text.h:154
  341. msgid ""
  342. " --allow-piece-length-change[=true|false] If false is given, aria2 aborts\n"
  343. " download when a piece length is different "
  344. "from\n"
  345. " one in a control file. If true is given, you "
  346. "can\n"
  347. " proceed but some download progress will be "
  348. "lost."
  349. msgstr ""
  350. #: src/usage_text.h:159
  351. msgid ""
  352. " -Z, --force-sequential[=true|false] Fetch URIs in the command-line "
  353. "sequentially\n"
  354. " and download each URI in a separate session, "
  355. "like\n"
  356. " the usual command-line download utilities."
  357. msgstr ""
  358. " -Z, --force-sequential[=true|false] Hämtar URI:er från kommandoraden i "
  359. "sekvenser \n"
  360. " och laddar ner varje URI i en separat "
  361. "session, \n"
  362. " som är det vanliga beteendet för kommadorads-\n"
  363. " program."
  364. #: src/usage_text.h:163
  365. msgid ""
  366. " --auto-file-renaming[=true|false] Rename file name if the same file "
  367. "already\n"
  368. " exists. This option works only in http(s)/ftp\n"
  369. " download.\n"
  370. " The new file name has a dot and a number"
  371. "(1..9999)\n"
  372. " appended."
  373. msgstr ""
  374. " --auto-file-renaming[=true|false] Döper om filen om en fil med samma namn "
  375. "redan \n"
  376. " finns. Detta alternativ fungerar endast för \n"
  377. " http(s)/ftp-nedladdningar. Det nya filnamnet \n"
  378. " kommer att avslutas med en punkt och en "
  379. "siffra \n"
  380. " (1..9999)."
  381. #: src/usage_text.h:169
  382. msgid ""
  383. " -P, --parameterized-uri[=true|false] Enable parameterized URI support.\n"
  384. " You can specify set of parts:\n"
  385. " http://{sv1,sv2,sv3}/foo.iso\n"
  386. " Also you can specify numeric sequences with "
  387. "step\n"
  388. " counter:\n"
  389. " http://host/image[000-100:2].img\n"
  390. " A step counter can be omitted.\n"
  391. " If all URIs do not point to the same file, "
  392. "such\n"
  393. " as the second example above, -Z option is\n"
  394. " required."
  395. msgstr ""
  396. #: src/usage_text.h:180
  397. msgid ""
  398. " --enable-http-keep-alive[=true|false] Enable HTTP/1.1 persistent connection."
  399. msgstr ""
  400. #: src/usage_text.h:182
  401. msgid " --enable-http-pipelining[=true|false] Enable HTTP/1.1 pipelining."
  402. msgstr ""
  403. " --enable-http-pipelining[=true|false] Aktivera stöd för samtidiga "
  404. "förfrågningar med HTTP/1.1."
  405. #: src/usage_text.h:184
  406. msgid ""
  407. " -V, --check-integrity[=true|false] Check file integrity by validating "
  408. "piece\n"
  409. " hashes or a hash of entire file. This option "
  410. "has\n"
  411. " effect only in BitTorrent, Metalink downloads\n"
  412. " with checksums or HTTP(S)/FTP downloads with\n"
  413. " --checksum option. If piece hashes are "
  414. "provided,\n"
  415. " this option can detect damaged portions of a "
  416. "file\n"
  417. " and re-download them. If a hash of entire file "
  418. "is\n"
  419. " provided, hash check is only done when file "
  420. "has\n"
  421. " been already download. This is determined by "
  422. "file\n"
  423. " length. If hash check fails, file is\n"
  424. " re-downloaded from scratch. If both piece "
  425. "hashes\n"
  426. " and a hash of entire file are provided, only\n"
  427. " piece hashes are used."
  428. msgstr ""
  429. #: src/usage_text.h:198
  430. msgid ""
  431. " --bt-hash-check-seed[=true|false] If true is given, after hash check using\n"
  432. " --check-integrity option and file is "
  433. "complete,\n"
  434. " continue to seed file. If you want to check "
  435. "file\n"
  436. " and download it only when it is damaged or\n"
  437. " incomplete, set this option to false.\n"
  438. " This option has effect only on BitTorrent\n"
  439. " download."
  440. msgstr ""
  441. " --bt-hash-check-seed[=true|false] Om 'true' används kommer filen att ligga "
  442. "öppen \n"
  443. " även efter att hashnycklar verifierats med \n"
  444. " alternativet --check-integrity och filen "
  445. "laddats \n"
  446. " ner i sin helhet. Om du endast vill "
  447. "verifiera \n"
  448. " och ladda ner filen om den är skadad eller \n"
  449. " ofullständig ska du använda värdet 'false'. \n"
  450. " Detta alternativ används bara vid BitTorrent-\n"
  451. " nedladdningar."
  452. #: src/usage_text.h:206
  453. #, fuzzy
  454. msgid ""
  455. " --realtime-chunk-checksum[=true|false] Validate chunk of data by "
  456. "calculating\n"
  457. " checksum while downloading a file if chunk\n"
  458. " checksums are provided."
  459. msgstr ""
  460. " --realtime-chunk-checksum[=true|false] Validera datadelar genom att "
  461. "beräkna \n"
  462. " checksumman under nedladdningen om \n"
  463. " delchecksumman är tillgänglig."
  464. #: src/usage_text.h:210
  465. #, fuzzy
  466. msgid ""
  467. " -c, --continue[=true|false] Continue downloading a partially downloaded\n"
  468. " file. Use this option to resume a download\n"
  469. " started by a web browser or another program\n"
  470. " which downloads files sequentially from the\n"
  471. " beginning. Currently this option is only\n"
  472. " applicable to http(s)/ftp downloads."
  473. msgstr ""
  474. " -c, --continue Fortsätter nedladdningen av en delvis hämtad \n"
  475. " fil. Använd det här alternativet om du vill \n"
  476. " fortsätta en nedladdning startad av en \n"
  477. " webbläsare eller annat program som laddar "
  478. "ner \n"
  479. " filer i sekvenser från filens början. För \n"
  480. " tillfället används detta alternativ endast "
  481. "vid \n"
  482. " http(s)/ftp-hämtningar."
  483. #: src/usage_text.h:217
  484. msgid " -U, --user-agent=USER_AGENT Set user agent for http(s) downloads."
  485. msgstr ""
  486. " -U, --user-agent=USER_AGENT Anger vilken användarklient som ska användas \n"
  487. " för http(s)-nedladdningar."
  488. #: src/usage_text.h:219
  489. msgid " -n, --no-netrc[=true|false] Disables netrc support."
  490. msgstr ""
  491. #: src/usage_text.h:221
  492. msgid ""
  493. " -i, --input-file=FILE Downloads URIs found in FILE. You can specify\n"
  494. " multiple URIs for a single entity: separate\n"
  495. " URIs on a single line using the TAB "
  496. "character.\n"
  497. " Reads input from stdin when '-' is specified.\n"
  498. " Additionally, options can be specified after "
  499. "each\n"
  500. " line of URI. This optional line must start "
  501. "with\n"
  502. " one or more white spaces and have one option "
  503. "per\n"
  504. " single line. See INPUT FILE section of man "
  505. "page\n"
  506. " for details."
  507. msgstr ""
  508. #: src/usage_text.h:231
  509. #, fuzzy
  510. msgid ""
  511. " -j, --max-concurrent-downloads=N Set maximum number of parallel downloads "
  512. "for\n"
  513. " every static (HTTP/FTP) URL, torrent and "
  514. "metalink.\n"
  515. " See also --split option."
  516. msgstr ""
  517. " -j, --max-concurrent-downloads=N Anger högsta tillåtna antal samtidiga \n"
  518. " hämtningar för varje statisk (HTTP/FTP) URL, \n"
  519. " torrent och metalink. Se även alternativen: -"
  520. "s \n"
  521. " och -C."
  522. #: src/usage_text.h:235
  523. msgid ""
  524. " --load-cookies=FILE Load Cookies from FILE using the Firefox3 "
  525. "format\n"
  526. " and Mozilla/Firefox(1.x/2.x)/Netscape format."
  527. msgstr ""
  528. #: src/usage_text.h:238
  529. msgid ""
  530. " --save-cookies=FILE Save Cookies to FILE in Mozilla/Firefox(1.x/2."
  531. "x)/\n"
  532. " Netscape format. If FILE already exists, it "
  533. "is\n"
  534. " overwritten. Session Cookies are also saved "
  535. "and\n"
  536. " their expiry values are treated as 0."
  537. msgstr ""
  538. " --save-cookies=FILE Spara kakor till filen FILE i formatet \n"
  539. " Mozilla/Firefox(1.x/2.x)/Netscape. Om filen \n"
  540. " redan finns, skrivs den över. Sessionskakor \n"
  541. " sparas också och deras utgångsdatum hanteras \n"
  542. " som 0 (=aldrig)."
  543. #: src/usage_text.h:243
  544. #, fuzzy
  545. msgid ""
  546. " -S, --show-files[=true|false] Print file listing of .torrent, .meta4 and\n"
  547. " .metalink file and exit. More detailed\n"
  548. " information will be listed in case of torrent\n"
  549. " file."
  550. msgstr ""
  551. " --allow-overwrite[=true|false] Om 'false' används och filen redan "
  552. "existerar \n"
  553. " men tillhörande kontrollfil (filenamn.aria2) \n"
  554. " fattas kommer inte aria2 att ladda ner filen "
  555. "på \n"
  556. " nytt. Se även alternativet: \n"
  557. " --auto-file-renaming."
  558. #: src/usage_text.h:248
  559. msgid ""
  560. " --select-file=INDEX... Set file to download by specifying its index.\n"
  561. " You can find the file index using the\n"
  562. " --show-files option. Multiple indexes can be\n"
  563. " specified by using ',', for example: \"3,6\".\n"
  564. " You can also use '-' to specify a range: "
  565. "\"1-5\".\n"
  566. " ',' and '-' can be used together.\n"
  567. " When used with the -M option, index may vary\n"
  568. " depending on the query(see --metalink-* "
  569. "options)."
  570. msgstr ""
  571. " --select-file=INDEX Anger index för den fil som ska laddas ner. Du \n"
  572. " kan hitta filens index med alternativet: \n"
  573. " --show-files. Flera index kan ges genom att \n"
  574. " använda kommatecknet ',' som avskiljare. Ett \n"
  575. " exempel: \"3,6\". Du kan också ange ett "
  576. "interval \n"
  577. " genom att använda bindestrecket '-' som \n"
  578. " avskiljare: \"1-5\". ',' och '-' kan användas "
  579. "på \n"
  580. " en och samma gång. När alternativet -M är \n"
  581. " angivet kan index variera beroende på "
  582. "sökningen \n"
  583. " (se alternativen: --metalink-*)"
  584. #: src/usage_text.h:257
  585. msgid " -T, --torrent-file=TORRENT_FILE The path to the .torrent file."
  586. msgstr ""
  587. #: src/usage_text.h:259
  588. msgid ""
  589. " --follow-torrent=true|false|mem If true or mem is specified, when a file\n"
  590. " whose suffix is .torrent or content type is\n"
  591. " application/x-bittorrent is downloaded, aria2\n"
  592. " parses it as a torrent file and downloads "
  593. "files\n"
  594. " mentioned in it.\n"
  595. " If mem is specified, a torrent file is not\n"
  596. " written to the disk, but is just kept in "
  597. "memory.\n"
  598. " If false is specified, the action mentioned "
  599. "above\n"
  600. " is not taken."
  601. msgstr ""
  602. #: src/usage_text.h:269
  603. msgid ""
  604. " --listen-port=PORT... Set TCP port number for BitTorrent downloads.\n"
  605. " Multiple ports can be specified by using ',',\n"
  606. " for example: \"6881,6885\". You can also use "
  607. "'-'\n"
  608. " to specify a range: \"6881-6999\". ',' and '-' "
  609. "can\n"
  610. " be used together."
  611. msgstr ""
  612. #: src/usage_text.h:275
  613. msgid ""
  614. " --max-overall-upload-limit=SPEED Set max overall upload speed in bytes/"
  615. "sec.\n"
  616. " 0 means unrestricted.\n"
  617. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  618. " To limit the upload speed per torrent, use\n"
  619. " --max-upload-limit option."
  620. msgstr ""
  621. #: src/usage_text.h:281
  622. msgid ""
  623. " -u, --max-upload-limit=SPEED Set max upload speed per each torrent in\n"
  624. " bytes/sec. 0 means unrestricted.\n"
  625. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  626. " To limit the overall upload speed, use\n"
  627. " --max-overall-upload-limit option."
  628. msgstr ""
  629. #: src/usage_text.h:287
  630. msgid ""
  631. " --seed-time=MINUTES Specify seeding time in minutes. Also see the\n"
  632. " --seed-ratio option."
  633. msgstr ""
  634. #: src/usage_text.h:290
  635. msgid ""
  636. " --seed-ratio=RATIO Specify share ratio. Seed completed torrents\n"
  637. " until share ratio reaches RATIO.\n"
  638. " You are strongly encouraged to specify equals "
  639. "or\n"
  640. " more than 1.0 here. Specify 0.0 if you intend "
  641. "to\n"
  642. " do seeding regardless of share ratio.\n"
  643. " If --seed-time option is specified along with\n"
  644. " this option, seeding ends when at least one "
  645. "of\n"
  646. " the conditions is satisfied."
  647. msgstr ""
  648. #: src/usage_text.h:299
  649. msgid ""
  650. " --peer-id-prefix=PEER_ID_PREFIX Specify the prefix of peer ID. The peer ID "
  651. "in\n"
  652. " BitTorrent is 20 byte length. If more than 20\n"
  653. " bytes are specified, only first 20 bytes are\n"
  654. " used. If less than 20 bytes are specified, "
  655. "random\n"
  656. " byte data are added to make its length 20 "
  657. "bytes."
  658. msgstr ""
  659. #: src/usage_text.h:305
  660. msgid " --enable-peer-exchange[=true|false] Enable Peer Exchange extension."
  661. msgstr ""
  662. #: src/usage_text.h:307
  663. #, fuzzy
  664. msgid " --enable-dht[=true|false] Enable IPv4 DHT functionality."
  665. msgstr ""
  666. " --enable-http-pipelining[=true|false] Aktivera stöd för samtidiga "
  667. "förfrågningar med HTTP/1.1."
  668. #: src/usage_text.h:309
  669. msgid ""
  670. " --dht-listen-port=PORT... Set UDP listening port for both IPv4 and IPv6\n"
  671. " DHT. Multiple ports can be specified by using\n"
  672. " ',', for example: \"6881,6885\". You can also\n"
  673. " use '-' to specify a range: \"6881-6999\". "
  674. "','\n"
  675. " and '-' can be used together."
  676. msgstr ""
  677. #: src/usage_text.h:315
  678. #, fuzzy
  679. msgid ""
  680. " --dht-entry-point=HOST:PORT Set host and port as an entry point to IPv4 "
  681. "DHT\n"
  682. " network."
  683. msgstr ""
  684. " --retry-wait=SEC Anger väntetid i sekunder efter att ett fel \n"
  685. " har inträffat."
  686. #: src/usage_text.h:318
  687. msgid ""
  688. " --dht-file-path=PATH Change the IPv4 DHT routing table file to PATH."
  689. msgstr ""
  690. #: src/usage_text.h:320
  691. msgid ""
  692. " --bt-min-crypto-level=plain|arc4 Set minimum level of encryption method.\n"
  693. " If several encryption methods are provided by "
  694. "a\n"
  695. " peer, aria2 chooses the lowest one which "
  696. "satisfies\n"
  697. " the given level."
  698. msgstr ""
  699. #: src/usage_text.h:325
  700. msgid ""
  701. " --bt-require-crypto[=true|false] If true is given, aria2 doesn't accept "
  702. "and\n"
  703. " establish connection with legacy BitTorrent\n"
  704. " handshake. Thus aria2 always uses Obfuscation\n"
  705. " handshake."
  706. msgstr ""
  707. #: src/usage_text.h:330
  708. msgid ""
  709. " --bt-request-peer-speed-limit=SPEED If the whole download speed of every\n"
  710. " torrent is lower than SPEED, aria2 "
  711. "temporarily\n"
  712. " increases the number of peers to try for more\n"
  713. " download speed. Configuring this option with "
  714. "your\n"
  715. " preferred download speed can increase your\n"
  716. " download speed in some cases.\n"
  717. " You can append K or M(1K = 1024, 1M = 1024K)."
  718. msgstr ""
  719. #: src/usage_text.h:338
  720. msgid ""
  721. " --bt-max-open-files=NUM Specify maximum number of files to open in "
  722. "each\n"
  723. " BitTorrent download."
  724. msgstr ""
  725. #: src/usage_text.h:341
  726. msgid ""
  727. " --bt-seed-unverified[=true|false] Seed previously downloaded files without\n"
  728. " verifying piece hashes."
  729. msgstr ""
  730. #: src/usage_text.h:344
  731. msgid ""
  732. " --bt-max-peers=NUM Specify the maximum number of peers per "
  733. "torrent.\n"
  734. " 0 means unlimited.\n"
  735. " See also --bt-request-peer-speed-limit option."
  736. msgstr ""
  737. #: src/usage_text.h:348
  738. #, fuzzy
  739. msgid ""
  740. " -M, --metalink-file=METALINK_FILE The file path to the .meta4 and ."
  741. "metalink\n"
  742. " file. Reads input from stdin when '-' is\n"
  743. " specified."
  744. msgstr ""
  745. " --allow-overwrite[=true|false] Om 'false' används och filen redan "
  746. "existerar \n"
  747. " men tillhörande kontrollfil (filenamn.aria2) \n"
  748. " fattas kommer inte aria2 att ladda ner filen "
  749. "på \n"
  750. " nytt. Se även alternativet: \n"
  751. " --auto-file-renaming."
  752. #: src/usage_text.h:352
  753. msgid ""
  754. " -C, --metalink-servers=NUM_SERVERS The number of servers to connect to\n"
  755. " simultaneously. Some Metalinks regulate the\n"
  756. " number of servers to connect. aria2 strictly\n"
  757. " respects them. This means that if Metalink "
  758. "defines\n"
  759. " the maxconnections attribute lower than\n"
  760. " NUM_SERVERS, then aria2 uses the value of\n"
  761. " maxconnections attribute instead of "
  762. "NUM_SERVERS.\n"
  763. " See also -s and -j options."
  764. msgstr ""
  765. #: src/usage_text.h:361
  766. msgid " --metalink-version=VERSION The version of the file to download."
  767. msgstr ""
  768. #: src/usage_text.h:363
  769. msgid " --metalink-language=LANGUAGE The language of the file to download."
  770. msgstr ""
  771. #: src/usage_text.h:365
  772. msgid ""
  773. " --metalink-os=OS The operating system of the file to download."
  774. msgstr ""
  775. #: src/usage_text.h:367
  776. msgid ""
  777. " --metalink-location=LOCATION[,...] The location of the preferred server.\n"
  778. " A comma-delimited list of locations is\n"
  779. " acceptable."
  780. msgstr ""
  781. #: src/usage_text.h:371
  782. msgid ""
  783. " --metalink-preferred-protocol=PROTO Specify preferred protocol. Specify "
  784. "'none'\n"
  785. " if you don't have any preferred protocol."
  786. msgstr ""
  787. #: src/usage_text.h:374
  788. msgid ""
  789. " --follow-metalink=true|false|mem If true or mem is specified, when a file\n"
  790. " whose suffix is .meta4 or .metalink, or "
  791. "content\n"
  792. " type of application/metalink4+xml or\n"
  793. " application/metalink+xml is downloaded, aria2\n"
  794. " parses it as a metalink file and downloads "
  795. "files\n"
  796. " mentioned in it.\n"
  797. " If mem is specified, a metalink file is not\n"
  798. " written to the disk, but is just kept in "
  799. "memory.\n"
  800. " If false is specified, the action mentioned "
  801. "above\n"
  802. " is not taken."
  803. msgstr ""
  804. #: src/usage_text.h:385
  805. msgid ""
  806. " --metalink-enable-unique-protocol[=true|false] If true is given and "
  807. "several\n"
  808. " protocols are available for a mirror in a "
  809. "metalink\n"
  810. " file, aria2 uses one of them.\n"
  811. " Use --metalink-preferred-protocol option to\n"
  812. " specify the preference of protocol."
  813. msgstr ""
  814. #: src/usage_text.h:391
  815. msgid " -v, --version Print the version number and exit."
  816. msgstr ""
  817. #: src/usage_text.h:393
  818. msgid ""
  819. " -h, --help[=TAG|KEYWORD] Print usage and exit.\n"
  820. " The help messages are classified with tags. A "
  821. "tag\n"
  822. " starts with \"#\". For example, type \"--"
  823. "help=#http\"\n"
  824. " to get the usage for the options tagged with\n"
  825. " \"#http\". If non-tag word is given, print the "
  826. "usage\n"
  827. " for the options whose name includes that word."
  828. msgstr ""
  829. #: src/usage_text.h:400
  830. msgid " --no-conf[=true|false] Disable loading aria2.conf file."
  831. msgstr ""
  832. #: src/usage_text.h:402
  833. msgid ""
  834. " --conf-path=PATH Change the configuration file path to PATH."
  835. msgstr ""
  836. #: src/usage_text.h:404
  837. msgid ""
  838. " --stop=SEC Stop application after SEC seconds has "
  839. "passed.\n"
  840. " If 0 is given, this feature is disabled."
  841. msgstr ""
  842. #: src/usage_text.h:407
  843. msgid ""
  844. " --header=HEADER Append HEADER to HTTP request header. You can "
  845. "use\n"
  846. " this option repeatedly to specify more than "
  847. "one\n"
  848. " header:\n"
  849. " aria2c --header=\"X-A: b78\" --header=\"X-B: "
  850. "9J1\"\n"
  851. " http://host/file"
  852. msgstr ""
  853. #: src/usage_text.h:413
  854. msgid " -q, --quiet[=true|false] Make aria2 quiet(no console output)."
  855. msgstr ""
  856. #: src/usage_text.h:415
  857. msgid " --async-dns[=true|false] Enable asynchronous DNS."
  858. msgstr ""
  859. #: src/usage_text.h:417
  860. msgid " --ftp-reuse-connection[=true|false] Reuse connection in FTP."
  861. msgstr ""
  862. #: src/usage_text.h:419
  863. msgid ""
  864. " --summary-interval=SEC Set interval to output download progress "
  865. "summary.\n"
  866. " Setting 0 suppresses the output."
  867. msgstr ""
  868. #: src/usage_text.h:422
  869. msgid " --log-level=LEVEL Set log level to output."
  870. msgstr ""
  871. #: src/usage_text.h:424
  872. msgid ""
  873. " -R, --remote-time[=true|false] Retrieve timestamp of the remote file from "
  874. "the\n"
  875. " remote HTTP/FTP server and if it is "
  876. "available,\n"
  877. " apply it to the local file."
  878. msgstr ""
  879. #: src/usage_text.h:428
  880. msgid ""
  881. " --connect-timeout=SEC Set the connect timeout in seconds to "
  882. "establish\n"
  883. " connection to HTTP/FTP/proxy server. After "
  884. "the\n"
  885. " connection is established, this option makes "
  886. "no\n"
  887. " effect and --timeout option is used instead."
  888. msgstr ""
  889. #: src/usage_text.h:433
  890. msgid ""
  891. " --max-file-not-found=NUM If aria2 receives `file not found' status from "
  892. "the\n"
  893. " remote HTTP/FTP servers NUM times without "
  894. "getting\n"
  895. " a single byte, then force the download to "
  896. "fail.\n"
  897. " Specify 0 to disable this option.\n"
  898. " This options is effective only when using\n"
  899. " HTTP/FTP servers."
  900. msgstr ""
  901. #: src/usage_text.h:440
  902. msgid ""
  903. " --uri-selector=SELECTOR Specify URI selection algorithm.\n"
  904. " If 'inorder' is given, URI is tried in the "
  905. "order\n"
  906. " appeared in the URI list.\n"
  907. " If 'feedback' is given, aria2 uses download "
  908. "speed\n"
  909. " observed in the previous downloads and choose\n"
  910. " fastest server in the URI list. This also\n"
  911. " effectively skips dead mirrors. The observed\n"
  912. " download speed is a part of performance "
  913. "profile\n"
  914. " of servers mentioned in --server-stat-of and\n"
  915. " --server-stat-if options.\n"
  916. " If 'adaptive' is given, selects one of the "
  917. "best\n"
  918. " mirrors for the first and reserved "
  919. "connections.\n"
  920. " For supplementary ones, it returns mirrors "
  921. "which\n"
  922. " has not been tested yet, and if each of them "
  923. "has\n"
  924. " already been tested, returns mirrors which has "
  925. "to\n"
  926. " be tested again. Otherwise, it doesn't select\n"
  927. " anymore mirrors. Like 'feedback', it uses a\n"
  928. " performance profile of servers."
  929. msgstr ""
  930. #: src/usage_text.h:459
  931. msgid ""
  932. " --server-stat-of=FILE Specify the filename to which performance "
  933. "profile\n"
  934. " of the servers is saved. You can load saved "
  935. "data\n"
  936. " using --server-stat-if option."
  937. msgstr ""
  938. #: src/usage_text.h:463
  939. msgid ""
  940. " --server-stat-if=FILE Specify the filename to load performance "
  941. "profile\n"
  942. " of the servers. The loaded data will be used "
  943. "in\n"
  944. " some URI selector such as 'feedback'.\n"
  945. " See also --uri-selector option"
  946. msgstr ""
  947. #: src/usage_text.h:468
  948. msgid ""
  949. " --server-stat-timeout=SEC Specifies timeout in seconds to invalidate\n"
  950. " performance profile of the servers since the "
  951. "last\n"
  952. " contact to them."
  953. msgstr ""
  954. #: src/usage_text.h:472
  955. msgid ""
  956. " --auto-save-interval=SEC Save a control file(*.aria2) every SEC "
  957. "seconds.\n"
  958. " If 0 is given, a control file is not saved "
  959. "during\n"
  960. " download. aria2 saves a control file when it "
  961. "stops\n"
  962. " regardless of the value."
  963. msgstr ""
  964. #: src/usage_text.h:477
  965. msgid ""
  966. " --certificate=FILE Use the client certificate in FILE.\n"
  967. " The certificate must be in PEM format.\n"
  968. " You may use --private-key option to specify "
  969. "the\n"
  970. " private key."
  971. msgstr ""
  972. #: src/usage_text.h:482
  973. msgid ""
  974. " --private-key=FILE Use the private key in FILE.\n"
  975. " The private key must be decrypted and in PEM\n"
  976. " format. See also --certificate option."
  977. msgstr ""
  978. #: src/usage_text.h:486
  979. msgid ""
  980. " --ca-certificate=FILE Use the certificate authorities in FILE to "
  981. "verify\n"
  982. " the peers. The certificate file must be in "
  983. "PEM\n"
  984. " format and can contain multiple CA "
  985. "certificates.\n"
  986. " Use --check-certificate option to enable\n"
  987. " verification."
  988. msgstr ""
  989. #: src/usage_text.h:492
  990. msgid ""
  991. " --check-certificate[=true|false] Verify the peer using certificates "
  992. "specified\n"
  993. " in --ca-certificate option."
  994. msgstr ""
  995. #: src/usage_text.h:495
  996. msgid ""
  997. " --no-proxy=DOMAINS Specify comma separated hostnames, domains or\n"
  998. " network address with or without CIDR block "
  999. "where\n"
  1000. " proxy should not be used."
  1001. msgstr ""
  1002. #: src/usage_text.h:499
  1003. msgid ""
  1004. " --use-head[=true|false] Use HEAD method for the first request to the "
  1005. "HTTP\n"
  1006. " server."
  1007. msgstr ""
  1008. #: src/usage_text.h:502
  1009. msgid " --event-poll=POLL Specify the method for polling events."
  1010. msgstr ""
  1011. #: src/usage_text.h:504
  1012. msgid ""
  1013. " --bt-external-ip=IPADDRESS Specify the external IP address to report to "
  1014. "a\n"
  1015. " BitTorrent tracker. Although this function is\n"
  1016. " named 'external', it can accept any kind of "
  1017. "IP\n"
  1018. " addresses."
  1019. msgstr ""
  1020. #: src/usage_text.h:509
  1021. msgid ""
  1022. " --http-auth-challenge[=true|false] Send HTTP authorization header only when "
  1023. "it\n"
  1024. " is requested by the server. If false is set, "
  1025. "then\n"
  1026. " authorization header is always sent to the "
  1027. "server.\n"
  1028. " There is an exception: if username and "
  1029. "password\n"
  1030. " are embedded in URI, authorization header is\n"
  1031. " always sent to the server regardless of this\n"
  1032. " option."
  1033. msgstr ""
  1034. #: src/usage_text.h:517
  1035. msgid ""
  1036. " -O, --index-out=INDEX=PATH Set file path for file with index=INDEX. You "
  1037. "can\n"
  1038. " find the file index using the --show-files "
  1039. "option.\n"
  1040. " PATH is a relative path to the path specified "
  1041. "in\n"
  1042. " --dir option. You can use this option "
  1043. "multiple\n"
  1044. " times."
  1045. msgstr ""
  1046. #: src/usage_text.h:523
  1047. msgid ""
  1048. " --dry-run[=true|false] If true is given, aria2 just checks whether "
  1049. "the\n"
  1050. " remote file is available and doesn't download\n"
  1051. " data. This option has effect on HTTP/FTP "
  1052. "download.\n"
  1053. " BitTorrent downloads are canceled if true is\n"
  1054. " specified."
  1055. msgstr ""
  1056. #: src/usage_text.h:529
  1057. msgid ""
  1058. " --bt-tracker-interval=SEC Set the interval in seconds between tracker\n"
  1059. " requests. This completely overrides interval "
  1060. "value\n"
  1061. " and aria2 just uses this value and ignores "
  1062. "the\n"
  1063. " min interval and interval value in the "
  1064. "response of\n"
  1065. " tracker. If 0 is set, aria2 determines "
  1066. "interval\n"
  1067. " based on the response of tracker and the "
  1068. "download\n"
  1069. " progress."
  1070. msgstr ""
  1071. #: src/usage_text.h:537
  1072. #, fuzzy
  1073. msgid ""
  1074. " --on-download-complete=COMMAND Set the command to be executed after "
  1075. "download\n"
  1076. " completed.\n"
  1077. " See --on-download-start option for the\n"
  1078. " requirement of COMMAND.\n"
  1079. " See also --on-download-stop option."
  1080. msgstr ""
  1081. " --max-download-limit=SPEED Anger högsta tillåtna nedladdningshastighet \n"
  1082. " per nedladdning i bytes per sekund. Värdet 0 \n"
  1083. " innebär en obegränsad hastighet. Du kan "
  1084. "avsluta \n"
  1085. " med antingen ett K eller M (1K = 1024 bytes, \n"
  1086. " 1M = 1024K). För att begränsa hastigheten \n"
  1087. " överlag, använd alternativet: \n"
  1088. " --max-overall-download-limit."
  1089. #: src/usage_text.h:543
  1090. msgid ""
  1091. " --on-download-start=COMMAND Set the command to be executed after download\n"
  1092. " got started. aria2 passes 3 arguments to "
  1093. "COMMAND:\n"
  1094. " GID, the nubmer of files and file path. See "
  1095. "Event\n"
  1096. " Hook in man page for more details."
  1097. msgstr ""
  1098. #: src/usage_text.h:548
  1099. msgid ""
  1100. " --on-download-pause=COMMAND Set the command to be executed after download\n"
  1101. " was paused.\n"
  1102. " See --on-download-start option for the\n"
  1103. " requirement of COMMAND."
  1104. msgstr ""
  1105. #: src/usage_text.h:553
  1106. #, fuzzy
  1107. msgid ""
  1108. " --on-download-error=COMMAND Set the command to be executed after download\n"
  1109. " aborted due to error.\n"
  1110. " See --on-download-start option for the\n"
  1111. " requirement of COMMAND.\n"
  1112. " See also --on-download-stop option."
  1113. msgstr ""
  1114. " --max-download-limit=SPEED Anger högsta tillåtna nedladdningshastighet \n"
  1115. " per nedladdning i bytes per sekund. Värdet 0 \n"
  1116. " innebär en obegränsad hastighet. Du kan "
  1117. "avsluta \n"
  1118. " med antingen ett K eller M (1K = 1024 bytes, \n"
  1119. " 1M = 1024K). För att begränsa hastigheten \n"
  1120. " överlag, använd alternativet: \n"
  1121. " --max-overall-download-limit."
  1122. #: src/usage_text.h:559
  1123. #, fuzzy
  1124. msgid ""
  1125. " --on-download-stop=COMMAND Set the command to be executed after download\n"
  1126. " stopped. You can override the command to be\n"
  1127. " executed for particular download result using\n"
  1128. " --on-download-complete and --on-download-"
  1129. "error. If\n"
  1130. " they are specified, command specified in this\n"
  1131. " option is not executed.\n"
  1132. " See --on-download-start option for the\n"
  1133. " requirement of COMMAND."
  1134. msgstr ""
  1135. " --bt-hash-check-seed[=true|false] Om 'true' används kommer filen att ligga "
  1136. "öppen \n"
  1137. " även efter att hashnycklar verifierats med \n"
  1138. " alternativet --check-integrity och filen "
  1139. "laddats \n"
  1140. " ner i sin helhet. Om du endast vill "
  1141. "verifiera \n"
  1142. " och ladda ner filen om den är skadad eller \n"
  1143. " ofullständig ska du använda värdet 'false'. \n"
  1144. " Detta alternativ används bara vid BitTorrent-\n"
  1145. " nedladdningar."
  1146. #: src/usage_text.h:568
  1147. msgid ""
  1148. " --bt-stop-timeout=SEC Stop BitTorrent download if download speed is "
  1149. "0 in\n"
  1150. " consecutive SEC seconds. If 0 is given, this\n"
  1151. " feature is disabled."
  1152. msgstr ""
  1153. #: src/usage_text.h:572
  1154. msgid ""
  1155. " --bt-prioritize-piece=head[=SIZE],tail[=SIZE] Try to download first and "
  1156. "last\n"
  1157. " pieces of each file first. This is useful for\n"
  1158. " previewing files. The argument can contain 2\n"
  1159. " keywords:head and tail. To include both "
  1160. "keywords,\n"
  1161. " they must be separated by comma. These "
  1162. "keywords\n"
  1163. " can take one parameter, SIZE. For example, if\n"
  1164. " head=SIZE is specified, pieces in the range "
  1165. "of\n"
  1166. " first SIZE bytes of each file get higher "
  1167. "priority.\n"
  1168. " tail=SIZE means the range of last SIZE bytes "
  1169. "of\n"
  1170. " each file. SIZE can include K or M(1K = 1024, "
  1171. "1M =\n"
  1172. " 1024K). If SIZE is omitted, SIZE=1M is used."
  1173. msgstr ""
  1174. #: src/usage_text.h:584
  1175. msgid ""
  1176. " --interface=INTERFACE Bind sockets to given interface. You can "
  1177. "specify\n"
  1178. " interface name, IP address and hostname."
  1179. msgstr ""
  1180. #: src/usage_text.h:587
  1181. msgid " --disable-ipv6[=true|false] Disable IPv6."
  1182. msgstr ""
  1183. #: src/usage_text.h:589
  1184. msgid ""
  1185. " --bt-save-metadata[=true|false] Save metadata as .torrent file. This option "
  1186. "has\n"
  1187. " effect only when BitTorrent Magnet URI is "
  1188. "used.\n"
  1189. " The filename is hex encoded info hash with "
  1190. "suffix\n"
  1191. " .torrent. The directory to be saved is the "
  1192. "same\n"
  1193. " directory where download file is saved. If "
  1194. "the\n"
  1195. " same file already exists, metadata is not "
  1196. "saved.\n"
  1197. " See also --bt-metadata-only option."
  1198. msgstr ""
  1199. #: src/usage_text.h:597
  1200. msgid ""
  1201. " --http-no-cache[=true|false] Send Cache-Control: no-cache and Pragma: no-"
  1202. "cache\n"
  1203. " header to avoid cached content. If false is\n"
  1204. " given, these headers are not sent and you can "
  1205. "add\n"
  1206. " Cache-Control header with a directive you "
  1207. "like\n"
  1208. " using --header option."
  1209. msgstr ""
  1210. #: src/usage_text.h:603
  1211. msgid ""
  1212. " --bt-metadata-only[=true|false] Download metadata only. The file(s) "
  1213. "described\n"
  1214. " in metadata will not be downloaded. This "
  1215. "option\n"
  1216. " has effect only when BitTorrent Magnet URI is\n"
  1217. " used. See also --bt-save-metadata option."
  1218. msgstr ""
  1219. #: src/usage_text.h:608
  1220. msgid ""
  1221. " --human-readable[=true|false] Print sizes and speed in human readable "
  1222. "format\n"
  1223. " (e.g., 1.2Ki, 3.4Mi) in the console readout."
  1224. msgstr ""
  1225. #: src/usage_text.h:611
  1226. msgid " --bt-enable-lpd[=true|false] Enable Local Peer Discovery."
  1227. msgstr ""
  1228. #: src/usage_text.h:613
  1229. msgid ""
  1230. " --bt-lpd-interface=INTERFACE Use given interface for Local Peer Discovery. "
  1231. "If\n"
  1232. " this option is not specified, the default\n"
  1233. " interface is chosen. You can specify "
  1234. "interface\n"
  1235. " name and IP address."
  1236. msgstr ""
  1237. #: src/usage_text.h:618
  1238. msgid ""
  1239. " --reuse-uri[=true|false] Reuse already used URIs if no unused URIs are\n"
  1240. " left."
  1241. msgstr ""
  1242. #: src/usage_text.h:621
  1243. msgid " --all-proxy-user=USER Set user for --all-proxy option."
  1244. msgstr ""
  1245. #: src/usage_text.h:623
  1246. #, fuzzy
  1247. msgid " --all-proxy-passwd=PASSWD Set password for --all-proxy option."
  1248. msgstr ""
  1249. " --ftp-passwd=PASSWD Anger FTP-lösenord. Angivet värde påverkar alla URL:er."
  1250. #: src/usage_text.h:625
  1251. msgid " --http-proxy-user=USER Set user for --http-proxy option."
  1252. msgstr ""
  1253. #: src/usage_text.h:627
  1254. msgid " --http-proxy-passwd=PASSWD Set password for --http-proxy option."
  1255. msgstr ""
  1256. #: src/usage_text.h:629
  1257. msgid " --https-proxy-user=USER Set user for --https-proxy option."
  1258. msgstr ""
  1259. #: src/usage_text.h:631
  1260. msgid " --https-proxy-passwd=PASSWD Set password for --https-proxy option."
  1261. msgstr ""
  1262. #: src/usage_text.h:633
  1263. msgid " --ftp-proxy-user=USER Set user for --ftp-proxy option."
  1264. msgstr ""
  1265. #: src/usage_text.h:635
  1266. #, fuzzy
  1267. msgid " --ftp-proxy-passwd=PASSWD Set password for --ftp-proxy option."
  1268. msgstr ""
  1269. " --ftp-passwd=PASSWD Anger FTP-lösenord. Angivet värde påverkar alla URL:er."
  1270. #: src/usage_text.h:637
  1271. msgid ""
  1272. " --remove-control-file[=true|false] Remove control file before download. "
  1273. "Using\n"
  1274. " with --allow-overwrite=true, download always\n"
  1275. " starts from scratch. This will be useful for\n"
  1276. " users behind proxy server which disables "
  1277. "resume."
  1278. msgstr ""
  1279. #: src/usage_text.h:642
  1280. msgid ""
  1281. " --always-resume[=true|false] Always resume download. If true is given, "
  1282. "aria2\n"
  1283. " always tries to resume download and if resume "
  1284. "is\n"
  1285. " not possible, aborts download. If false is "
  1286. "given,\n"
  1287. " when all given URIs do not support resume or\n"
  1288. " aria2 encounters N URIs which does not "
  1289. "support\n"
  1290. " resume (N is the value specified using\n"
  1291. " --max-resume-failure-tries option), aria2\n"
  1292. " downloads file from scratch.\n"
  1293. " See --max-resume-failure-tries option."
  1294. msgstr ""
  1295. #: src/usage_text.h:652
  1296. msgid ""
  1297. " --max-resume-failure-tries=N When used with --always-resume=false, aria2\n"
  1298. " downloads file from scratch when aria2 detects "
  1299. "N\n"
  1300. " number of URIs that does not support resume. "
  1301. "If N\n"
  1302. " is 0, aria2 downloads file from scratch when "
  1303. "all\n"
  1304. " given URIs do not support resume.\n"
  1305. " See --always-resume option."
  1306. msgstr ""
  1307. #: src/usage_text.h:659
  1308. msgid " --bt-tracker-timeout=SEC Set timeout in seconds."
  1309. msgstr ""
  1310. #: src/usage_text.h:661
  1311. msgid ""
  1312. " --bt-tracker-connect-timeout=SEC Set the connect timeout in seconds to\n"
  1313. " establish connection to tracker. After the\n"
  1314. " connection is established, this option makes "
  1315. "no\n"
  1316. " effect and --bt-tracker-timeout option is "
  1317. "used\n"
  1318. " instead."
  1319. msgstr ""
  1320. #: src/usage_text.h:667
  1321. msgid " --dht-message-timeout=SEC Set timeout in seconds."
  1322. msgstr ""
  1323. #: src/usage_text.h:669
  1324. msgid ""
  1325. " --http-accept-gzip[=true|false] Send 'Accept: deflate, gzip' request "
  1326. "header\n"
  1327. " and inflate response if remote server "
  1328. "responds\n"
  1329. " with 'Content-Encoding: gzip' or\n"
  1330. " 'Content-Encoding: deflate'."
  1331. msgstr ""
  1332. #: src/usage_text.h:674
  1333. #, fuzzy
  1334. msgid ""
  1335. " --save-session=FILE Save error/unfinished downloads to FILE on "
  1336. "exit.\n"
  1337. " You can pass this output file to aria2c with -"
  1338. "i\n"
  1339. " option on restart. Please note that downloads\n"
  1340. " added by aria2.addTorrent and aria2."
  1341. "addMetalink\n"
  1342. " RPC method and whose metadata could not be "
  1343. "saved\n"
  1344. " as a file will not be saved. Downloads "
  1345. "removed\n"
  1346. " using aria2.remove and aria2.forceRemove will "
  1347. "not\n"
  1348. " be saved."
  1349. msgstr ""
  1350. " --select-file=INDEX Anger index för den fil som ska laddas ner. Du \n"
  1351. " kan hitta filens index med alternativet: \n"
  1352. " --show-files. Flera index kan ges genom att \n"
  1353. " använda kommatecknet ',' som avskiljare. Ett \n"
  1354. " exempel: \"3,6\". Du kan också ange ett "
  1355. "interval \n"
  1356. " genom att använda bindestrecket '-' som \n"
  1357. " avskiljare: \"1-5\". ',' och '-' kan användas "
  1358. "på \n"
  1359. " en och samma gång. När alternativet -M är \n"
  1360. " angivet kan index variera beroende på "
  1361. "sökningen \n"
  1362. " (se alternativen: --metalink-*)"
  1363. #: src/usage_text.h:683
  1364. msgid ""
  1365. " -x, --max-connection-per-server=NUM The maximum number of connections to "
  1366. "one\n"
  1367. " server for each download."
  1368. msgstr ""
  1369. #: src/usage_text.h:686
  1370. msgid ""
  1371. " -k, --min-split-size=SIZE aria2 does not split less than 2*SIZE byte "
  1372. "range.\n"
  1373. " For example, let's consider downloading 20MiB\n"
  1374. " file. If SIZE is 10M, aria2 can split file "
  1375. "into 2\n"
  1376. " range [0-10MiB) and [10MiB-20MiB) and download "
  1377. "it\n"
  1378. " using 2 sources(if --split >= 2, of course).\n"
  1379. " If SIZE is 15M, since 2*15M > 20MiB, aria2 "
  1380. "does\n"
  1381. " not split file and download it using 1 "
  1382. "source.\n"
  1383. " You can append K or M(1K = 1024, 1M = 1024K)."
  1384. msgstr ""
  1385. #: src/usage_text.h:695
  1386. #, fuzzy
  1387. msgid ""
  1388. " --conditional-get[=true|false] Download file only when the local file is "
  1389. "older\n"
  1390. " than remote file. Currently, this function "
  1391. "has\n"
  1392. " many limitations. See man page for details."
  1393. msgstr ""
  1394. " --allow-overwrite[=true|false] Om 'false' används och filen redan "
  1395. "existerar \n"
  1396. " men tillhörande kontrollfil (filenamn.aria2) \n"
  1397. " fattas kommer inte aria2 att ladda ner filen "
  1398. "på \n"
  1399. " nytt. Se även alternativet: \n"
  1400. " --auto-file-renaming."
  1401. #: src/usage_text.h:699
  1402. #, fuzzy
  1403. msgid ""
  1404. " --on-bt-download-complete=COMMAND For BitTorrent, a command specified in\n"
  1405. " --on-download-complete is called after "
  1406. "download\n"
  1407. " completed and seeding is over. On the other "
  1408. "hand,\n"
  1409. " this option sets the command to be executed "
  1410. "after\n"
  1411. " download completed but before seeding.\n"
  1412. " See --on-download-start option for the\n"
  1413. " requirement of COMMAND."
  1414. msgstr ""
  1415. " --bt-hash-check-seed[=true|false] Om 'true' används kommer filen att ligga "
  1416. "öppen \n"
  1417. " även efter att hashnycklar verifierats med \n"
  1418. " alternativet --check-integrity och filen "
  1419. "laddats \n"
  1420. " ner i sin helhet. Om du endast vill "
  1421. "verifiera \n"
  1422. " och ladda ner filen om den är skadad eller \n"
  1423. " ofullständig ska du använda värdet 'false'. \n"
  1424. " Detta alternativ används bara vid BitTorrent-\n"
  1425. " nedladdningar."
  1426. #: src/usage_text.h:707
  1427. #, fuzzy
  1428. msgid ""
  1429. " --enable-async-dns6[=true|false] Enable IPv6 name resolution in "
  1430. "asynchronous\n"
  1431. " DNS resolver. This option will be ignored "
  1432. "when\n"
  1433. " --async-dns=false."
  1434. msgstr ""
  1435. " --enable-direct-io[=true|false] Aktiverar direktöverföring, vilket "
  1436. "minskar \n"
  1437. " användningen av processorn när filer "
  1438. "allokeras. \n"
  1439. " Använd 'false' om du får problem med \n"
  1440. " nedladdningen."
  1441. #: src/usage_text.h:711
  1442. msgid ""
  1443. " --enable-dht6[=true|false] Enable IPv6 DHT functionality.\n"
  1444. " Use --dht-listen-port option to specify port\n"
  1445. " number to listen on. See also --dht-listen-"
  1446. "addr6\n"
  1447. " option."
  1448. msgstr ""
  1449. #: src/usage_text.h:716
  1450. msgid ""
  1451. " --dht-listen-addr6=ADDR Specify address to bind socket for IPv6 DHT. \n"
  1452. " It should be a global unicast IPv6 address of "
  1453. "the\n"
  1454. " host."
  1455. msgstr ""
  1456. #: src/usage_text.h:720
  1457. msgid ""
  1458. " --dht-entry-point6=HOST:PORT Set host and port as an entry point to IPv6 "
  1459. "DHT\n"
  1460. " network."
  1461. msgstr ""
  1462. #: src/usage_text.h:723
  1463. msgid ""
  1464. " --dht-file-path6=PATH Change the IPv6 DHT routing table file to PATH."
  1465. msgstr ""
  1466. #: src/usage_text.h:725
  1467. msgid ""
  1468. " --bt-tracker=URI[,...] Comma separated list of additional BitTorrent\n"
  1469. " tracker's announce URI. These URIs are not\n"
  1470. " affected by --bt-exclude-tracker option "
  1471. "because\n"
  1472. " they are added after URIs in --bt-exclude-"
  1473. "tracker\n"
  1474. " option are removed."
  1475. msgstr ""
  1476. #: src/usage_text.h:731
  1477. msgid ""
  1478. " --bt-exclude-tracker=URI[,...] Comma separated list of BitTorrent "
  1479. "tracker's\n"
  1480. " announce URI to remove. You can use special "
  1481. "value\n"
  1482. " '*' which matches all URIs, thus removes all\n"
  1483. " announce URIs. When specifying '*' in shell\n"
  1484. " command-line, don't forget to escape or quote "
  1485. "it.\n"
  1486. " See also --bt-tracker option."
  1487. msgstr ""
  1488. #: src/usage_text.h:738
  1489. msgid ""
  1490. " --max-download-result=NUM Set maximum number of download result kept in\n"
  1491. " memory. The download results are completed/"
  1492. "error/\n"
  1493. " removed downloads. The download results are "
  1494. "stored\n"
  1495. " in FIFO queue and it can store at most NUM\n"
  1496. " download results. When queue is full and new\n"
  1497. " download result is created, oldest download "
  1498. "result\n"
  1499. " is removed from the front of the queue and new "
  1500. "one\n"
  1501. " is pushed to the back. Setting big number in "
  1502. "this\n"
  1503. " option may result high memory consumption "
  1504. "after\n"
  1505. " thousands of downloads. Specifying 0 means no\n"
  1506. " download result is kept."
  1507. msgstr ""
  1508. #: src/usage_text.h:750
  1509. msgid ""
  1510. " --async-dns-server=IPADDRESS[,...] Comma separated list of DNS server "
  1511. "address\n"
  1512. " used in asynchronous DNS resolver. Usually\n"
  1513. " asynchronous DNS resolver reads DNS server\n"
  1514. " addresses from /etc/resolv.conf. When this "
  1515. "option\n"
  1516. " is used, it uses DNS servers specified in "
  1517. "this\n"
  1518. " option instead of ones in /etc/resolv.conf. "
  1519. "You\n"
  1520. " can specify both IPv4 and IPv6 address. This\n"
  1521. " option is useful when the system does not "
  1522. "have\n"
  1523. " /etc/resolv.conf and user does not have the\n"
  1524. " permission to create it."
  1525. msgstr ""
  1526. #: src/usage_text.h:761
  1527. msgid ""
  1528. " --enable-rpc[=true|false] Enable JSON-RPC/XML-RPC server.\n"
  1529. " It is strongly recommended to set username "
  1530. "and\n"
  1531. " password using --rpc-user and --rpc-passwd\n"
  1532. " option. See also --rpc-listen-port option."
  1533. msgstr ""
  1534. #: src/usage_text.h:766
  1535. msgid ""
  1536. " --rpc-max-request-size=SIZE Set max size of JSON-RPC/XML-RPC request. If "
  1537. "aria2\n"
  1538. " detects the request is more than SIZE bytes, "
  1539. "it\n"
  1540. " drops connection."
  1541. msgstr ""
  1542. #: src/usage_text.h:770
  1543. #, fuzzy
  1544. msgid " --rpc-user=USER Set JSON-RPC/XML-RPC user."
  1545. msgstr ""
  1546. " --ftp-user=USER Anger FTP-användare. Angivet värde påverkar alla URL:er."
  1547. #: src/usage_text.h:772
  1548. #, fuzzy
  1549. msgid " --rpc-passwd=PASSWD Set JSON-RPC/XML-RPC password."
  1550. msgstr ""
  1551. " --ftp-passwd=PASSWD Anger FTP-lösenord. Angivet värde påverkar alla URL:er."
  1552. #: src/usage_text.h:774
  1553. #, fuzzy
  1554. msgid ""
  1555. " --rpc-listen-all[=true|false] Listen incoming JSON-RPC/XML-RPC requests on "
  1556. "all\n"
  1557. " network interfaces. If false is given, listen "
  1558. "only\n"
  1559. " on local loopback interface."
  1560. msgstr ""
  1561. " --allow-overwrite[=true|false] Om 'false' används och filen redan "
  1562. "existerar \n"
  1563. " men tillhörande kontrollfil (filenamn.aria2) \n"
  1564. " fattas kommer inte aria2 att ladda ner filen "
  1565. "på \n"
  1566. " nytt. Se även alternativet: \n"
  1567. " --auto-file-renaming."
  1568. #: src/usage_text.h:778
  1569. msgid ""
  1570. " --rpc-listen-port=PORT Specify a port number for JSON-RPC/XML-RPC "
  1571. "server\n"
  1572. " to listen to."
  1573. msgstr ""
  1574. #: src/usage_text.h:781
  1575. msgid " --show-console-readout[=true|false] Show console readout."
  1576. msgstr ""
  1577. #: src/usage_text.h:783
  1578. #, fuzzy
  1579. msgid ""
  1580. " --metalink-base-uri=URI Specify base URI to resolve relative URI in\n"
  1581. " metalink:url and metalink:metaurl element in "
  1582. "a\n"
  1583. " metalink file stored in local disk. If URI "
  1584. "points\n"
  1585. " to a directory, URI must end with '/'."
  1586. msgstr ""
  1587. " --allow-overwrite[=true|false] Om 'false' används och filen redan "
  1588. "existerar \n"
  1589. " men tillhörande kontrollfil (filenamn.aria2) \n"
  1590. " fattas kommer inte aria2 att ladda ner filen "
  1591. "på \n"
  1592. " nytt. Se även alternativet: \n"
  1593. " --auto-file-renaming."
  1594. #: src/usage_text.h:788
  1595. msgid ""
  1596. " --stream-piece-selector=SELECTOR Specify piece selection algorithm\n"
  1597. " used in HTTP/FTP download. Piece means fixed\n"
  1598. " length segment which is downloaded in "
  1599. "parallel\n"
  1600. " in segmented download. If 'default' is given,\n"
  1601. " aria2 selects piece so that it reduces the\n"
  1602. " number of establishing connection. This is\n"
  1603. " reasonable default behaviour because\n"
  1604. " establishing connection is an expensive\n"
  1605. " operation.\n"
  1606. " If 'inorder' is given, aria2 selects piece "
  1607. "which\n"
  1608. " has minimum index. Index=0 means first of the\n"
  1609. " file. This will be useful to view movie while\n"
  1610. " downloading it. --enable-http-pipelining "
  1611. "option\n"
  1612. " may be useful to reduce reconnection "
  1613. "overhead.\n"
  1614. " Please note that aria2 honors\n"
  1615. " --min-split-size option, so it will be "
  1616. "necessary\n"
  1617. " to specify a reasonable value to\n"
  1618. " --min-split-size option.\n"
  1619. " If 'geom' is given, at the beginning aria2\n"
  1620. " selects piece which has minimum index like\n"
  1621. " 'inorder', but it exponentially increasingly\n"
  1622. " keeps space from previously selected piece. "
  1623. "This\n"
  1624. " will reduce the number of establishing "
  1625. "connection\n"
  1626. " and at the same time it will download the\n"
  1627. " beginning part of the file first. This will "
  1628. "be\n"
  1629. " useful to view movie while downloading it."
  1630. msgstr ""
  1631. #: src/usage_text.h:815
  1632. msgid ""
  1633. " --truncate-console-readout[=true|false] Truncate console readout to fit in\n"
  1634. " a single line."
  1635. msgstr ""
  1636. #: src/usage_text.h:818
  1637. #, fuzzy
  1638. msgid ""
  1639. " --pause[=true|false] Pause download after added. This option is\n"
  1640. " effective only when --enable-rpc=true is given."
  1641. msgstr ""
  1642. " -p, --ftp-pasv[=true|false] Anger om FTP-anslutningen ska vara i passivt \n"
  1643. " läge eller ej. Värdet false innebär att "
  1644. "aktivt \n"
  1645. " läge används."
  1646. #: src/usage_text.h:821
  1647. msgid ""
  1648. " --rpc-allow-origin-all[=true|false] Add Access-Control-Allow-Origin header\n"
  1649. " field with value '*' to the RPC response."
  1650. msgstr ""
  1651. #: src/usage_text.h:824
  1652. msgid ""
  1653. " --download-result=OPT This option changes the way \"Download Results"
  1654. "\"\n"
  1655. " is formatted. If OPT is 'default', print GID,\n"
  1656. " status, average download speed and path/URI. "
  1657. "If\n"
  1658. " multiple files are involved, path/URI of "
  1659. "first\n"
  1660. " requested file is printed and remaining ones "
  1661. "are\n"
  1662. " omitted.\n"
  1663. " If OPT is 'full', print GID, status, average\n"
  1664. " download speed, percentage of progress and\n"
  1665. " path/URI. The percentage of progress and\n"
  1666. " path/URI are printed for each requested file "
  1667. "in\n"
  1668. " each row."
  1669. msgstr ""
  1670. #: src/usage_text.h:836
  1671. #, fuzzy
  1672. msgid ""
  1673. " --hash-check-only[=true|false] If true is given, after hash check using\n"
  1674. " --check-integrity option, abort download "
  1675. "whether\n"
  1676. " or not download is complete."
  1677. msgstr ""
  1678. " --realtime-chunk-checksum[=true|false] Validera datadelar genom att "
  1679. "beräkna \n"
  1680. " checksumman under nedladdningen om \n"
  1681. " delchecksumman är tillgänglig."
  1682. #: src/usage_text.h:840
  1683. msgid ""
  1684. " --checksum=TYPE=DIGEST Set checksum. TYPE is hash type. The "
  1685. "supported\n"
  1686. " hash type is listed in \"Hash Algorithms\" in\n"
  1687. " \"aria2c -v\". DIGEST is hex digest.\n"
  1688. " For example, setting sha-1 digest looks like\n"
  1689. " this:\n"
  1690. " sha-1=0192ba11326fe2298c8cb4de616f4d4140213838\n"
  1691. " This option applies only to HTTP(S)/FTP\n"
  1692. " downloads."
  1693. msgstr ""
  1694. #: src/usage_text.h:849
  1695. msgid ""
  1696. " --piece-length=LENGTH Set a piece length for HTTP/FTP downloads. "
  1697. "This\n"
  1698. " is the boundary when aria2 splits a file. All\n"
  1699. " splits occur at multiple of this length. This\n"
  1700. " option will be ignored in BitTorrent "
  1701. "downloads.\n"
  1702. " It will be also ignored if Metalink file\n"
  1703. " contains piece hashes."
  1704. msgstr ""
  1705. #: src/usage_text.h:856
  1706. msgid ""
  1707. " --stop-with-process=PID Stop application when process PID is not "
  1708. "running.\n"
  1709. " This is useful if aria2 process is forked from "
  1710. "a\n"
  1711. " parent process. The parent process can fork "
  1712. "aria2\n"
  1713. " with its own pid and when parent process "
  1714. "exits\n"
  1715. " for some reason, aria2 can detect it and "
  1716. "shutdown\n"
  1717. " itself."
  1718. msgstr ""
  1719. #: src/version_usage.cc:57
  1720. msgid " version "
  1721. msgstr ""
  1722. #: src/version_usage.cc:61
  1723. msgid ""
  1724. "This program is free software; you can redistribute it and/or modify\n"
  1725. "it under the terms of the GNU General Public License as published by\n"
  1726. "the Free Software Foundation; either version 2 of the License, or\n"
  1727. "(at your option) any later version.\n"
  1728. "\n"
  1729. "This program is distributed in the hope that it will be useful,\n"
  1730. "but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
  1731. "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
  1732. "GNU General Public License for more details.\n"
  1733. msgstr ""
  1734. #: src/version_usage.cc:71
  1735. msgid "** Configuration **"
  1736. msgstr ""
  1737. #: src/version_usage.cc:72
  1738. msgid "Enabled Features"
  1739. msgstr ""
  1740. #: src/version_usage.cc:75
  1741. msgid "Hash Algorithms"
  1742. msgstr ""
  1743. #: src/version_usage.cc:79
  1744. #, c-format
  1745. msgid "Report bugs to %s"
  1746. msgstr ""
  1747. #: src/version_usage.cc:80
  1748. msgid "Visit"
  1749. msgstr ""
  1750. #: src/version_usage.cc:87
  1751. #, c-format
  1752. msgid ""
  1753. "Usage: aria2c [OPTIONS] [URI | MAGNET | TORRENT_FILE | METALINK_FILE]..."
  1754. msgstr ""
  1755. #: src/version_usage.cc:92
  1756. #, c-format
  1757. msgid "See 'aria2c -h'."
  1758. msgstr ""
  1759. #: src/version_usage.cc:99
  1760. #, c-format
  1761. msgid "Printing all options."
  1762. msgstr ""
  1763. #: src/version_usage.cc:101
  1764. #, c-format
  1765. msgid "Printing options tagged with '%s'."
  1766. msgstr ""
  1767. #: src/version_usage.cc:104
  1768. #, c-format
  1769. msgid "See 'aria2c -h#help' to know all available tags."
  1770. msgstr ""
  1771. #: src/version_usage.cc:107 src/version_usage.cc:121
  1772. #, c-format
  1773. msgid "Options:"
  1774. msgstr ""
  1775. #: src/version_usage.cc:118
  1776. #, c-format
  1777. msgid "Printing options whose name includes '%s'."
  1778. msgstr ""
  1779. #: src/version_usage.cc:129
  1780. #, c-format
  1781. msgid "No option matching with '%s'."
  1782. msgstr ""
  1783. #: src/version_usage.cc:137
  1784. #, c-format
  1785. msgid ""
  1786. " You can specify multiple HTTP(S)/FTP URIs. Unless you specify -Z option, "
  1787. "all\n"
  1788. " URIs must point to the same file or downloading will fail."
  1789. msgstr ""
  1790. #: src/version_usage.cc:140
  1791. #, c-format
  1792. msgid ""
  1793. " You can also specify arbitrary number of BitTorrent Magnet URIs, torrent/\n"
  1794. " metalink files stored in a local drive. Please note that they are always\n"
  1795. " treated as a separate download."
  1796. msgstr ""
  1797. #: src/version_usage.cc:144
  1798. #, c-format
  1799. msgid ""
  1800. " You can specify both torrent file with -T option and URIs. By doing this,\n"
  1801. " download a file from both torrent swarm and HTTP/FTP server at the same "
  1802. "time,\n"
  1803. " while the data from HTTP/FTP are uploaded to the torrent swarm. For single "
  1804. "file\n"
  1805. " torrents, URI can be a complete URI pointing to the resource or if URI "
  1806. "ends\n"
  1807. " with '/', 'name' in torrent file is added. For multi-file torrents, 'name' "
  1808. "and\n"
  1809. " 'path' in torrent are added to form a URI for each file."
  1810. msgstr ""
  1811. #: src/version_usage.cc:151
  1812. #, c-format
  1813. msgid ""
  1814. " Make sure that URI is quoted with single(') or double(\") quotation if it\n"
  1815. " contains \"&\" or any characters that have special meaning in shell."
  1816. msgstr ""
  1817. #: src/version_usage.cc:154
  1818. #, c-format
  1819. msgid ""
  1820. "About the number of connections\n"
  1821. " Since 1.10.0 release, aria2 uses 1 connection per host by default and has "
  1822. "20MiB\n"
  1823. " segment size restriction. So whatever value you specify using -s option, "
  1824. "it\n"
  1825. " uses 1 connection per host. To make it behave like 1.9.x, use\n"
  1826. " --max-connection-per-server=4 --min-split-size=1M.\n"
  1827. "\n"
  1828. msgstr ""
  1829. #: src/version_usage.cc:161
  1830. #, c-format
  1831. msgid "Refer to man page for more information."
  1832. msgstr ""
  1833. #: src/option_processing.cc:86
  1834. #, c-format
  1835. msgid "Caught Error while parsing environment variable '%s'"
  1836. msgstr ""
  1837. #: src/option_processing.cc:168
  1838. #, c-format
  1839. msgid "Did you mean:"
  1840. msgstr ""
  1841. #: src/option_processing.cc:237 src/option_processing.cc:246
  1842. #, c-format
  1843. msgid "Parse error in %s"
  1844. msgstr ""
  1845. #: src/option_processing.cc:241 src/option_processing.cc:282
  1846. #, c-format
  1847. msgid "Usage:"
  1848. msgstr ""
  1849. #: src/option_processing.cc:251
  1850. #, c-format
  1851. msgid "Configuration file %s is not found."
  1852. msgstr ""
  1853. #: src/OptionHandlerException.cc:43
  1854. #, c-format
  1855. msgid "We encountered a problem while processing the option '--%s'."
  1856. msgstr ""
  1857. #: src/UnknownOptionException.cc:41
  1858. #, c-format
  1859. msgid "Unknown option '%s'"
  1860. msgstr ""
  1861. #: src/BtSetup.cc:215
  1862. msgid "Errors occurred while binding port.\n"
  1863. msgstr "Ett fel inträffade vid anslutning till port.\n"
  1864. #: src/AbstractCommand.cc:443
  1865. #, c-format
  1866. msgid "CUID#%lld - Failed to resume download. Download from scratch."
  1867. msgstr ""
  1868. #: src/AdaptiveURISelector.cc:228
  1869. #, c-format
  1870. msgid ""
  1871. "Lowering lowest-speed-limit since known max speed is too near (new:%d was:%d "
  1872. "max:%d)"
  1873. msgstr ""
  1874. #: src/AdaptiveURISelector.cc:235
  1875. #, c-format
  1876. msgid ""
  1877. "Lowering lowest-speed-limit since we have no clue about available speed (now:"
  1878. "%d was:%d)"
  1879. msgstr ""
  1880. #: src/BtStopDownloadCommand.cc:64
  1881. #, c-format
  1882. msgid "GID#%lld Stop downloading torrent due to --bt-stop-timeout option."
  1883. msgstr ""
  1884. #: src/DHTConnectionImpl.cc:89
  1885. #, c-format
  1886. msgid "IPv%d DHT: listening to port %u"
  1887. msgstr ""
  1888. #: src/HttpListenCommand.cc:112
  1889. #, c-format
  1890. msgid "IPv%d RPC: listening to port %u"
  1891. msgstr ""
  1892. #: src/PeerListenCommand.cc:83
  1893. #, c-format
  1894. msgid "IPv%d BitTorrent: listening to port %u"
  1895. msgstr ""
  1896. #: src/RequestGroup.cc:381
  1897. msgid ""
  1898. "For BitTorrent Magnet URI, enabling DHT is strongly recommended. See --"
  1899. "enable-dht option."
  1900. msgstr ""
  1901. #: src/RequestGroup.cc:686
  1902. #, c-format
  1903. msgid "Removed control file for %s because it is requested by user."
  1904. msgstr ""
  1905. #: src/SingleFileAllocationIterator.cc:75
  1906. msgid ""
  1907. "Allocating disk space. Use --file-allocation=none to disable it. See --file-"
  1908. "allocation option in man page for more details."
  1909. msgstr ""
  1910. #: src/message.h:57
  1911. #, c-format
  1912. msgid "GID#%lld - Download has already completed: %s"
  1913. msgstr ""
  1914. #: src/message.h:106
  1915. #, c-format
  1916. msgid "Unrecognized URI or unsupported protocol: %s"
  1917. msgstr ""
  1918. #: src/message.h:107
  1919. #, c-format
  1920. msgid "Tracker returned warning message: %s"
  1921. msgstr ""
  1922. #: src/message.h:108
  1923. #, c-format
  1924. msgid "The segment file %s exists."
  1925. msgstr ""
  1926. #: src/message.h:109
  1927. #, c-format
  1928. msgid "The segment file %s does not exist."
  1929. msgstr ""
  1930. #: src/message.h:110
  1931. #, c-format
  1932. msgid "Saving the segment file %s"
  1933. msgstr ""
  1934. #: src/message.h:111
  1935. msgid "The segment file was saved successfully."
  1936. msgstr ""
  1937. #: src/message.h:112
  1938. #, c-format
  1939. msgid "Loading the segment file %s."
  1940. msgstr ""
  1941. #: src/message.h:113
  1942. msgid "The segment file was loaded successfully."
  1943. msgstr ""
  1944. #: src/message.h:114
  1945. msgid "No URI to download. Download aborted."
  1946. msgstr ""
  1947. #: src/message.h:115
  1948. #, c-format
  1949. msgid ""
  1950. "File %s exists, but a control file(*.aria2) does not exist. Download was "
  1951. "canceled in order to prevent your file from being truncated to 0. If you are "
  1952. "sure to download the file all over again, then delete it or add --allow-"
  1953. "overwrite=true option and restart aria2."
  1954. msgstr ""
  1955. #: src/message.h:116
  1956. #, c-format
  1957. msgid "Allocating file %s, %s bytes"
  1958. msgstr ""
  1959. #: src/message.h:117
  1960. msgid "File not found"
  1961. msgstr ""
  1962. #: src/message.h:118
  1963. msgid "Not a directory"
  1964. msgstr ""
  1965. #: src/message.h:119
  1966. #, c-format
  1967. msgid "Insufficient checksums. checksumLength=%d, numChecksum=%d"
  1968. msgstr ""
  1969. #: src/message.h:120
  1970. #, c-format
  1971. msgid "Writing file %s"
  1972. msgstr ""
  1973. #: src/message.h:121
  1974. msgid "No peer list received."
  1975. msgstr ""
  1976. #: src/message.h:122
  1977. #, c-format
  1978. msgid "Adding peer %s:%d"
  1979. msgstr ""
  1980. #: src/message.h:123
  1981. #, c-format
  1982. msgid "Deleting used piece index=%d, fillRate(%%)=%d<=%d"
  1983. msgstr ""
  1984. #: src/message.h:124
  1985. msgid "Download of selected files was complete."
  1986. msgstr ""
  1987. #: src/message.h:125
  1988. msgid "The download was complete."
  1989. msgstr ""
  1990. #: src/message.h:126
  1991. #, c-format
  1992. msgid "Removed %lu have entries."
  1993. msgstr ""
  1994. #: src/message.h:127
  1995. #, c-format
  1996. msgid "Validating file %s"
  1997. msgstr ""
  1998. #: src/message.h:131
  1999. #, c-format
  2000. msgid "Metalink: Queueing %s for download."
  2001. msgstr ""
  2002. #: src/message.h:132
  2003. #, c-format
  2004. msgid "Download complete: %s"
  2005. msgstr ""
  2006. #: src/message.h:133
  2007. msgid "Seeding is over."
  2008. msgstr ""
  2009. #: src/message.h:134
  2010. msgid "No chunk to verify."
  2011. msgstr ""
  2012. #: src/message.h:135
  2013. #, c-format
  2014. msgid "Good chunk checksum. hash=%s"
  2015. msgstr ""
  2016. #: src/message.h:136
  2017. #, c-format
  2018. msgid "Failed to load cookies from %s"
  2019. msgstr ""
  2020. #: src/message.h:137
  2021. #, c-format
  2022. msgid ""
  2023. ".netrc file %s does not have correct permissions. It should be 600. netrc "
  2024. "support disabled."
  2025. msgstr ""
  2026. #: src/message.h:138
  2027. msgid "Logging started."
  2028. msgstr ""
  2029. #: src/message.h:139
  2030. msgid "Specify at least one URL."
  2031. msgstr ""
  2032. #: src/message.h:140
  2033. msgid "daemon failed."
  2034. msgstr ""
  2035. #: src/message.h:141
  2036. #, c-format
  2037. msgid "Verification finished successfully. file=%s"
  2038. msgstr ""
  2039. #: src/message.h:142
  2040. #, c-format
  2041. msgid "Checksum error detected. file=%s"
  2042. msgstr ""
  2043. #: src/message.h:143
  2044. #, c-format
  2045. msgid "Incomplete range specified. %s"
  2046. msgstr ""
  2047. #: src/message.h:144
  2048. #, c-format
  2049. msgid "Failed to convert string into value: %s"
  2050. msgstr ""
  2051. #: src/message.h:145
  2052. msgid "Resource not found"
  2053. msgstr ""
  2054. #: src/message.h:146
  2055. #, c-format
  2056. msgid "File already exists. Renamed to %s."
  2057. msgstr ""
  2058. #: src/message.h:147
  2059. msgid "Cannot parse metalink XML file. XML may be malformed."
  2060. msgstr ""
  2061. #: src/message.h:148
  2062. #, c-format
  2063. msgid "Too small payload size for %s, size=%lu."
  2064. msgstr ""
  2065. #: src/message.h:149
  2066. #, c-format
  2067. msgid ""
  2068. "Removed the defunct control file %s because the download file %s doesn't "
  2069. "exist."
  2070. msgstr ""
  2071. #: src/message.h:150
  2072. #, c-format
  2073. msgid "Your share ratio was %.1f, uploaded/downloaded=%sB/%sB"
  2074. msgstr ""
  2075. #: src/message.h:151
  2076. #, c-format
  2077. msgid "Missing %s in torrent metainfo."
  2078. msgstr ""
  2079. #: src/message.h:152
  2080. msgid "Tracker returned null data."
  2081. msgstr ""
  2082. #: src/message.h:153
  2083. msgid "Windows socket library initialization failed"
  2084. msgstr ""
  2085. #: src/message.h:154
  2086. #, c-format
  2087. msgid "%ld second(s) has passed. Stopping application."
  2088. msgstr ""
  2089. #: src/message.h:155
  2090. #, c-format
  2091. msgid ""
  2092. "Saved signature as %s. Please note that aria2 doesn't verify signatures."
  2093. msgstr ""
  2094. #: src/message.h:157
  2095. #, c-format
  2096. msgid "Saving signature as %s failed. Maybe file already exists."
  2097. msgstr ""
  2098. #: src/message.h:160
  2099. #, c-format
  2100. msgid "Failed to open ServerStat file %s for read."
  2101. msgstr ""
  2102. #: src/message.h:161
  2103. #, c-format
  2104. msgid "ServerStat file %s loaded successfully."
  2105. msgstr ""
  2106. #: src/message.h:162
  2107. #, c-format
  2108. msgid "Failed to read ServerStat from %s."
  2109. msgstr ""
  2110. #: src/message.h:165
  2111. #, c-format
  2112. msgid "Failed to open ServerStat file %s for write."
  2113. msgstr ""
  2114. #: src/message.h:166
  2115. #, c-format
  2116. msgid "ServerStat file %s saved successfully."
  2117. msgstr ""
  2118. #: src/message.h:167
  2119. #, c-format
  2120. msgid "Failed to write ServerStat to %s."
  2121. msgstr ""
  2122. #: src/message.h:170
  2123. #, c-format
  2124. msgid "Failed to establish connection, cause: %s"
  2125. msgstr ""
  2126. #: src/message.h:171
  2127. #, c-format
  2128. msgid "Network problem has occurred. cause:%s"
  2129. msgstr ""
  2130. #: src/message.h:173
  2131. #, c-format
  2132. msgid "Failed to load trusted CA certificates from %s. Cause: %s"
  2133. msgstr ""
  2134. #: src/message.h:175
  2135. #, c-format
  2136. msgid ""
  2137. "Certificate verification failed. Cause: %s See --ca-certificate and --check-"
  2138. "certificate option."
  2139. msgstr ""
  2140. #: src/message.h:177
  2141. msgid "No certificate found."
  2142. msgstr ""
  2143. #: src/message.h:178
  2144. msgid "Hostname not match."
  2145. msgstr ""
  2146. #: src/message.h:179
  2147. msgid "No files to download."
  2148. msgstr ""
  2149. #: src/message.h:181
  2150. msgid ""
  2151. "You may encounter the certificate verification error with HTTPS server. See "
  2152. "--ca-certificate and --check-certificate option."
  2153. msgstr ""
  2154. #: src/message.h:183
  2155. #, c-format
  2156. msgid "Printing the contents of file '%s'..."
  2157. msgstr ""
  2158. #: src/message.h:184
  2159. msgid "This file is neither Torrent nor Metalink file. Skipping."
  2160. msgstr ""
  2161. #: src/message.h:189
  2162. #, c-format
  2163. msgid "Is '%s' a file?"
  2164. msgstr ""
  2165. #: src/message.h:190
  2166. #, c-format
  2167. msgid "Failed to find given interface %s, cause: %s"
  2168. msgstr ""
  2169. #: src/message.h:192
  2170. #, c-format
  2171. msgid "Saved metadata as %s."
  2172. msgstr ""
  2173. #: src/message.h:193
  2174. #, c-format
  2175. msgid "Saving metadata as %s failed. Maybe file already exists."
  2176. msgstr ""
  2177. #: src/message.h:195
  2178. #, c-format
  2179. msgid "Detected directory traversal directive in %s"
  2180. msgstr ""
  2181. #: src/message.h:199
  2182. msgid "Timeout."
  2183. msgstr ""
  2184. #: src/message.h:200
  2185. msgid "Invalid chunk size."
  2186. msgstr ""
  2187. #: src/message.h:201
  2188. #, c-format
  2189. msgid "Too large chunk. size=%d"
  2190. msgstr ""
  2191. #: src/message.h:202
  2192. msgid "Invalid header."
  2193. msgstr ""
  2194. #: src/message.h:203
  2195. msgid "Invalid response."
  2196. msgstr ""
  2197. #: src/message.h:204
  2198. msgid "No header found."
  2199. msgstr ""
  2200. #: src/message.h:205
  2201. msgid "No status header."
  2202. msgstr ""
  2203. #: src/message.h:206
  2204. msgid "Proxy connection failed."
  2205. msgstr ""
  2206. #: src/message.h:207
  2207. msgid "Connection failed."
  2208. msgstr ""
  2209. #: src/message.h:208
  2210. #, c-format
  2211. msgid ""
  2212. "The requested filename and the previously registered one are not same. "
  2213. "Expected:%s Actual:%s"
  2214. msgstr ""
  2215. #: src/message.h:209
  2216. #, c-format
  2217. msgid "The response status is not successful. status=%d"
  2218. msgstr ""
  2219. #: src/message.h:211
  2220. #, c-format
  2221. msgid "Transfer encoding %s is not supported."
  2222. msgstr ""
  2223. #: src/message.h:212
  2224. #, c-format
  2225. msgid "SSL initialization failed: %s"
  2226. msgstr ""
  2227. #: src/message.h:213
  2228. msgid "SSL I/O error"
  2229. msgstr ""
  2230. #: src/message.h:214
  2231. msgid "SSL protocol error"
  2232. msgstr ""
  2233. #: src/message.h:215
  2234. #, c-format
  2235. msgid "SSL unknown error %d"
  2236. msgstr ""
  2237. #: src/message.h:216
  2238. #, c-format
  2239. msgid "SSL initialization failed: OpenSSL connect error %d"
  2240. msgstr ""
  2241. #: src/message.h:218
  2242. msgid "Authorization failed."
  2243. msgstr ""
  2244. #: src/message.h:219
  2245. msgid "Got EOF from the server."
  2246. msgstr ""
  2247. #: src/message.h:220
  2248. msgid "Got EOF from peer."
  2249. msgstr ""
  2250. #: src/message.h:221
  2251. msgid "Malformed meta info."
  2252. msgstr ""
  2253. #: src/message.h:223
  2254. #, c-format
  2255. msgid "Failed to open the file %s, cause: %s"
  2256. msgstr ""
  2257. #: src/message.h:224
  2258. #, c-format
  2259. msgid "Failed to write into the file %s, cause: %s"
  2260. msgstr ""
  2261. #: src/message.h:225
  2262. #, c-format
  2263. msgid "Failed to read from the file %s, cause: %s"
  2264. msgstr ""
  2265. #: src/message.h:226
  2266. msgid "Failed to read data from disk."
  2267. msgstr ""
  2268. #: src/message.h:227
  2269. #, c-format
  2270. msgid "Failed to calculate SHA1 digest of or a part of the file %s, cause: %s"
  2271. msgstr ""
  2272. #: src/message.h:228
  2273. #, c-format
  2274. msgid "Failed to seek the file %s, cause: %s"
  2275. msgstr ""
  2276. #: src/message.h:230
  2277. #, c-format
  2278. msgid "%s is not a directory."
  2279. msgstr ""
  2280. #: src/message.h:231
  2281. #, c-format
  2282. msgid "Failed to make the directory %s, cause: %s"
  2283. msgstr ""
  2284. #: src/message.h:235
  2285. #, c-format
  2286. msgid "Failed to open a socket, cause: %s"
  2287. msgstr ""
  2288. #: src/message.h:236
  2289. #, c-format
  2290. msgid "Failed to set a socket option, cause: %s"
  2291. msgstr ""
  2292. #: src/message.h:237
  2293. #, c-format
  2294. msgid "Failed to set a socket as blocking, cause: %s"
  2295. msgstr ""
  2296. #: src/message.h:238
  2297. #, c-format
  2298. msgid "Failed to set a socket as non-blocking, cause: %s"
  2299. msgstr ""
  2300. #: src/message.h:239
  2301. #, c-format
  2302. msgid "Failed to bind a socket, cause: %s"
  2303. msgstr ""
  2304. #: src/message.h:240
  2305. #, c-format
  2306. msgid "Failed to listen to a socket, cause: %s"
  2307. msgstr ""
  2308. #: src/message.h:241
  2309. #, c-format
  2310. msgid "Failed to accept a peer connection, cause: %s"
  2311. msgstr ""
  2312. #: src/message.h:242
  2313. #, c-format
  2314. msgid "Failed to get the name of socket, cause: %s"
  2315. msgstr ""
  2316. #: src/message.h:243
  2317. #, c-format
  2318. msgid "Failed to get the name of connected peer, cause: %s"
  2319. msgstr ""
  2320. #: src/message.h:244
  2321. #, c-format
  2322. msgid "Failed to resolve the hostname %s, cause: %s"
  2323. msgstr ""
  2324. #: src/message.h:245
  2325. #, c-format
  2326. msgid "Failed to connect to the host %s, cause: %s"
  2327. msgstr ""
  2328. #: src/message.h:246
  2329. #, c-format
  2330. msgid "Failed to check whether the socket is writable, cause: %s"
  2331. msgstr ""
  2332. #: src/message.h:247
  2333. #, c-format
  2334. msgid "Failed to check whether the socket is readable, cause: %s"
  2335. msgstr ""
  2336. #: src/message.h:248
  2337. #, c-format
  2338. msgid "Failed to send data, cause: %s"
  2339. msgstr ""
  2340. #: src/message.h:249
  2341. #, c-format
  2342. msgid "Failed to receive data, cause: %s"
  2343. msgstr ""
  2344. #: src/message.h:250
  2345. #, c-format
  2346. msgid "Failed to peek data, cause: %s"
  2347. msgstr ""
  2348. #: src/message.h:251
  2349. #, c-format
  2350. msgid "Unknown socket error %d (0x%x)"
  2351. msgstr ""
  2352. #: src/message.h:252
  2353. #, c-format
  2354. msgid "File %s exists, but %s does not exist."
  2355. msgstr ""
  2356. #: src/message.h:254
  2357. #, c-format
  2358. msgid "Invalid payload size for %s, size=%lu. It should be %lu."
  2359. msgstr ""
  2360. #: src/message.h:255
  2361. #, c-format
  2362. msgid "Invalid ID=%d for %s. It should be %d."
  2363. msgstr ""
  2364. #: src/message.h:257
  2365. msgid "Download aborted."
  2366. msgstr ""
  2367. #: src/message.h:258
  2368. #, c-format
  2369. msgid "File %s is being downloaded by other command."
  2370. msgstr ""
  2371. #: src/message.h:259
  2372. msgid "Insufficient checksums."
  2373. msgstr ""
  2374. #: src/message.h:260
  2375. #, c-format
  2376. msgid "Tracker returned failure reason: %s"
  2377. msgstr ""
  2378. #: src/message.h:261
  2379. msgid "Flooding detected."
  2380. msgstr ""
  2381. #: src/message.h:263
  2382. #, c-format
  2383. msgid ""
  2384. "Drop connection because no request/piece messages were exchanged in a "
  2385. "certain period(%ld seconds)."
  2386. msgstr ""
  2387. #: src/message.h:265
  2388. msgid "The infoHash in torrent file doesn't match to one in .aria2 file."
  2389. msgstr ""
  2390. #: src/message.h:266
  2391. #, c-format
  2392. msgid "No such file entry %s"
  2393. msgstr ""
  2394. #: src/message.h:267
  2395. #, c-format
  2396. msgid "Too slow Downloading speed: %d <= %d(B/s), host:%s"
  2397. msgstr ""
  2398. #: src/message.h:268
  2399. msgid "No HttpRequestEntry found."
  2400. msgstr ""
  2401. #: src/message.h:269
  2402. #, c-format
  2403. msgid "Got %d status, but no location header provided."
  2404. msgstr ""
  2405. #: src/message.h:271
  2406. msgid "No file matched with your preference."
  2407. msgstr ""
  2408. #: src/message.h:272
  2409. msgid "Exception caught"
  2410. msgstr ""
  2411. #: src/message.h:273
  2412. #, c-format
  2413. msgid "Max payload length exceeded or invalid. length = %u"
  2414. msgstr ""
  2415. #: src/message.h:274
  2416. #, c-format
  2417. msgid "Invalid file length. Cannot continue download %s: local %s, remote %s"
  2418. msgstr ""
  2419. #~ msgid ""
  2420. #~ " -V, --check-integrity[=true|false] Check file integrity by validating "
  2421. #~ "piece\n"
  2422. #~ " hashes. This option has effect only in "
  2423. #~ "BitTorrent\n"
  2424. #~ " and Metalink downloads with chunk "
  2425. #~ "checksums.\n"
  2426. #~ " Use this option to re-download a damaged "
  2427. #~ "portion\n"
  2428. #~ " of a file. See also --bt-hash-check-seed "
  2429. #~ "option."
  2430. #~ msgstr ""
  2431. #~ " -V, --check-integrity[=true|false] Bekräftar filintegriteten genom att "
  2432. #~ "validera \n"
  2433. #~ " nedladdade delar med motsvarande "
  2434. #~ "hashnycklar. \n"
  2435. #~ " Detta alternativ fungerar endast med "
  2436. #~ "BitTorrent \n"
  2437. #~ " och Metalink nedladdningar som använder \n"
  2438. #~ " checksummor för varje del. Använd detta \n"
  2439. #~ " alternativ för att ladda ner en skadad del "
  2440. #~ "av \n"
  2441. #~ " filen på nytt. Se även alternativet: \n"
  2442. #~ " --bt-hash-check-seed."
  2443. #~ msgid "must be between %s and %s."
  2444. #~ msgstr "måste vara mellan %s och %s."
  2445. #~ msgid "must be smaller than or equal to %s."
  2446. #~ msgstr "måste vara mindre än eller lika med %s."
  2447. #~ msgid "must be greater than or equal to %s."
  2448. #~ msgstr "måste vara större än eller lika med %s."
  2449. #~ msgid "must be a number."
  2450. #~ msgstr "måste vara ett numeriskt värde."
  2451. #~ msgid "must be smaller than or equal to %.1f."
  2452. #~ msgstr "måste vara mindre än eller lika med %.1f."
  2453. #~ msgid "must be between %.1f and %.1f."
  2454. #~ msgstr "måste vara mellan %.1f och %.1f."
  2455. #~ msgid "must be greater than or equal to %.1f."
  2456. #~ msgstr "måste vara större än eller lika med %.1f."
  2457. #~ msgid "must be one of the following:"
  2458. #~ msgstr "måste vara ett av följande:"
  2459. #, fuzzy
  2460. #~ msgid "Unrecognized format"
  2461. #~ msgstr "Okänt format för proxy."
  2462. #~ msgid "unrecognized proxy format"
  2463. #~ msgstr "Okänt format för proxy."